From 403d0cc3688e9787da65a2cc2bd79350a7b9fd24 Mon Sep 17 00:00:00 2001 From: Spencer Judge Date: Mon, 18 Dec 2023 10:28:13 -0800 Subject: [PATCH] Typescript Support & KS Workflow (#49) --- .github/workflows/all-docker-images.yml | 15 + .github/workflows/ci.yml | 34 +- README.md | 3 +- cmd/prepare_worker.go | 42 +- cmd/run_worker.go | 12 +- dockerfiles/typescript.Dockerfile | 44 + go.mod | 46 +- go.sum | 1842 +- loadgen/kitchen-sink-gen/src/main.rs | 17 +- workers/go/go.mod | 22 +- workers/go/go.sum | 1703 +- workers/go/kitchensink/kitchen_sink.go | 5 +- workers/java/build.gradle | 4 + .../java/io/temporal/omes/KitchenSink.java | 22180 +++++++--------- workers/proto/api_upstream | 2 +- workers/typescript/.eslintignore | 5 + workers/typescript/.eslintrc.js | 50 + workers/typescript/.gitignore | 4 + workers/typescript/.prettierignore | 2 + workers/typescript/.prettierrc | 2 + workers/typescript/package-lock.json | 4351 +++ workers/typescript/package.json | 42 + workers/typescript/protogen.js | 99 + workers/typescript/src/activities.ts | 5 + workers/typescript/src/omes.ts | 195 + workers/typescript/src/payload-converter.ts | 59 + workers/typescript/src/protos/root.js | 5 + workers/typescript/src/workflows/index.ts | 1 + .../typescript/src/workflows/kitchen_sink.ts | 312 + workers/typescript/tsconfig.json | 13 + 30 files changed, 14980 insertions(+), 16136 deletions(-) create mode 100644 dockerfiles/typescript.Dockerfile create mode 100644 workers/typescript/.eslintignore create mode 100644 workers/typescript/.eslintrc.js create mode 100644 workers/typescript/.gitignore create mode 100644 workers/typescript/.prettierignore create mode 100644 workers/typescript/.prettierrc create mode 100644 workers/typescript/package-lock.json create mode 100644 workers/typescript/package.json create mode 100644 workers/typescript/protogen.js create mode 100644 workers/typescript/src/activities.ts create mode 100644 workers/typescript/src/omes.ts create mode 100644 workers/typescript/src/payload-converter.ts create mode 100644 workers/typescript/src/protos/root.js create mode 100644 workers/typescript/src/workflows/index.ts create mode 100644 workers/typescript/src/workflows/kitchen_sink.ts create mode 100644 workers/typescript/tsconfig.json diff --git a/.github/workflows/all-docker-images.yml b/.github/workflows/all-docker-images.yml index 0fa14ed..6243e7e 100644 --- a/.github/workflows/all-docker-images.yml +++ b/.github/workflows/all-docker-images.yml @@ -12,6 +12,9 @@ on: java-version: description: Java SDK version to build. Skipped if not specified. Must start with v. type: string + ts-ver: + description: TypeScript SDK ver to build. Skipped if not specified. Must start with v. + type: string do-push: description: If set, push the built images to Docker Hub. type: boolean @@ -29,6 +32,9 @@ on: java-version: description: Java SDK version to build. Skipped if not specified. Must start with v. type: string + ts-ver: + description: TypeScript SDK ver to build. Skipped if not specified. Must start with v. + type: string do-push: description: If set, push the built images to Docker Hub. type: boolean @@ -62,3 +68,12 @@ jobs: lang: java sdk-version: ${{ inputs.java-version }} do-push: ${{ inputs.do-push }} + + build-typescript-docker-images: + if: inputs.ts-ver + uses: ./.github/workflows/docker-images.yml + secrets: inherit + with: + lang: typescript + sdk-version: ${{ inputs.ts-ver }} + do-push: ${{ inputs.do-push }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eaf4f12..45aa638 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,9 +25,9 @@ jobs: - name: Run local scenario with worker run: ./temporal-omes run-scenario-with-worker --scenario workflow_with_single_noop_activity --log-level debug --language go --embedded-server --iterations 5 - name: Build worker image - run: ./temporal-omes build-worker-image --language go --version v1.24.0 --tag-as-latest + run: ./temporal-omes build-worker-image --language go --version v1.25.2-0.20231129171107-288a04f72145 --tag-as-latest - name: Run worker image - run: docker run --rm --detach -i -p 10233:10233 omes:go-1.24.0 --scenario workflow_with_single_noop_activity --log-level debug --language go --run-id {{ github.run_id }} --embedded-server-address 0.0.0.0:10233 + run: docker run --rm --detach -i -p 10233:10233 omes:go-1.25.2-0.20231129171107-288a04f72145 --scenario workflow_with_single_noop_activity --log-level debug --language go --run-id {{ github.run_id }} --embedded-server-address 0.0.0.0:10233 - name: Run scenario against image run: ./temporal-omes run-scenario --scenario workflow_with_single_noop_activity --log-level debug --server-address 127.0.0.1:10233 --run-id {{ github.run_id }} --connect-timeout 1m --iterations 5 @@ -94,6 +94,36 @@ jobs: - name: Run scenario against image run: ./temporal-omes run-scenario --scenario workflow_with_single_noop_activity --log-level debug --server-address 127.0.0.1:10233 --run-id {{ github.run_id }} --connect-timeout 1m --iterations 5 + build-lint-test-typescript: + runs-on: ubuntu-latest + steps: + - name: Print build information + run: "echo head_ref: ${{ github.head_ref }}, ref: ${{ github.ref }}" + - name: Checkout repo + uses: actions/checkout@v2 + with: + submodules: 'true' + - name: Setup TypeScript + uses: actions/setup-node@v4 + - name: Initialize TypeScript worker + run: cd workers/typescript && npm ci && npm run build + - name: Lint TypeScript worker + run: cd workers/typescript && npm run lint-ci + - name: Setup Go + uses: actions/setup-go@v2 + with: + go-version: "^1.20" + - name: Build exe + run: go build -o temporal-omes ./cmd + - name: Run local scenario with worker + run: ./temporal-omes run-scenario-with-worker --scenario workflow_with_single_noop_activity --log-level debug --language ts --embedded-server --iterations 5 + - name: Build worker image + run: ./temporal-omes build-worker-image --language ts --version 1.9.0-rc.0 --tag-as-latest + - name: Run worker image + run: docker run --rm --detach -i -p 10233:10233 omes:typescript-1.9.0-rc.0 --scenario workflow_with_single_noop_activity --log-level debug --language ts --run-id {{ github.run_id }} --embedded-server-address 0.0.0.0:10233 + - name: Run scenario against image + run: ./temporal-omes run-scenario --scenario workflow_with_single_noop_activity --log-level debug --server-address 127.0.0.1:10233 --run-id {{ github.run_id }} --connect-timeout 1m --iterations 5 + build-ks-gen-and-ensure-protos-up-to-date: runs-on: ubuntu-latest steps: diff --git a/README.md b/README.md index ed156f6..9322f39 100644 --- a/README.md +++ b/README.md @@ -134,4 +134,5 @@ workflow that waits for a signal for a configurable amount of time. ## Fuzzer trophy case * Python upsert SA with no initial attributes: [PR](https://github.com/temporalio/sdk-python/pull/440) -* Core cancel-before-start on abandon activities: [PR](https://github.com/temporalio/sdk-core/pull/652) \ No newline at end of file +* Core cancel-before-start on abandon activities: [PR](https://github.com/temporalio/sdk-core/pull/652) +* Core panic on evicting run with buffered tasks: [PR](https://github.com/temporalio/sdk-core/pull/660) \ No newline at end of file diff --git a/cmd/prepare_worker.go b/cmd/prepare_worker.go index ce21558..eb18003 100644 --- a/cmd/prepare_worker.go +++ b/cmd/prepare_worker.go @@ -80,6 +80,8 @@ func (b *workerBuilder) build(ctx context.Context) (sdkbuild.Program, error) { return b.buildPython(ctx, baseDir) case "java": return b.buildJava(ctx, baseDir) + case "typescript": + return b.buildTypeScript(ctx, baseDir) default: return nil, fmt.Errorf("unrecognized language %v", lang) } @@ -119,7 +121,7 @@ func (b *workerBuilder) buildPython(ctx context.Context, baseDir string) (sdkbui if version == "" { b, err := os.ReadFile(filepath.Join(baseDir, "pyproject.toml")) if err != nil { - return nil, fmt.Errorf("failed reading package.json: %w", err) + return nil, fmt.Errorf("failed reading pyproject.toml: %w", err) } for _, line := range strings.Split(string(b), "\n") { line = strings.TrimSpace(line) @@ -161,6 +163,40 @@ func (b *workerBuilder) buildJava(ctx context.Context, baseDir string) (sdkbuild return prog, nil } +func (b *workerBuilder) buildTypeScript(ctx context.Context, baseDir string) (sdkbuild.Program, error) { + // If version not provided, try to read it from package.json + version := b.version + if version == "" { + b, err := os.ReadFile(filepath.Join(baseDir, "package.json")) + if err != nil { + return nil, fmt.Errorf("failed reading package.json: %w", err) + } + for _, line := range strings.Split(string(b), "\n") { + line = strings.TrimSpace(line) + if strings.HasPrefix(line, "\"temporalio\":") { + split := strings.Split(line, "\"") + version = split[len(split)-2] + break + } + } + if version == "" { + return nil, fmt.Errorf("version not found in package.json") + } + } + prog, err := sdkbuild.BuildTypeScriptProgram(ctx, sdkbuild.BuildTypeScriptProgramOptions{ + BaseDir: baseDir, + Version: version, + TSConfigPaths: map[string][]string{"@temporalio/omes": {"src/omes.ts"}}, + DirName: b.dirName, + ApplyToCommand: nil, + Includes: []string{"../src/**/*.ts", "../src/protos/json-module.js", "../src/protos/root.js"}, + }) + if err != nil { + return nil, fmt.Errorf("failed preparing: %w", err) + } + return prog, nil +} + func rootDir() string { _, currFile, _, _ := runtime.Caller(0) return filepath.Dir(filepath.Dir(currFile)) @@ -168,9 +204,11 @@ func rootDir() string { func normalizeLangName(lang string) (string, error) { switch lang { - case "go", "python", "java": + case "go", "python", "java", "typescript": case "py": lang = "python" + case "ts": + lang = "typescript" default: return "", fmt.Errorf("invalid language %q, must be one of: go or python", lang) } diff --git a/cmd/run_worker.go b/cmd/run_worker.go index c73bfea..ba033a2 100644 --- a/cmd/run_worker.go +++ b/cmd/run_worker.go @@ -139,13 +139,16 @@ func (r *workerRunner) run(ctx context.Context) error { return err } } else { + loadDir := filepath.Join(baseDir, r.dirName) switch lang { case "go": - prog, err = sdkbuild.GoProgramFromDir(filepath.Join(baseDir, r.dirName)) + prog, err = sdkbuild.GoProgramFromDir(loadDir) case "python": - prog, err = sdkbuild.PythonProgramFromDir(filepath.Join(baseDir, r.dirName)) + prog, err = sdkbuild.PythonProgramFromDir(loadDir) case "java": - prog, err = sdkbuild.JavaProgramFromDir(filepath.Join(baseDir, r.dirName)) + prog, err = sdkbuild.JavaProgramFromDir(loadDir) + case "typescript": + prog, err = sdkbuild.TypeScriptProgramFromDir(loadDir) default: return fmt.Errorf("unrecognized language %v", lang) } @@ -159,6 +162,9 @@ func (r *workerRunner) run(ctx context.Context) error { if lang == "python" { // Python needs module name first args = append(args, "main") + } else if lang == "typescript" { + // Node also needs module + args = append(args, "./tslib/omes.js") } args = append(args, "--task-queue", loadgen.TaskQueueForRun(r.scenario, r.runID)) if r.taskQueueIndexSuffixEnd > 0 { diff --git a/dockerfiles/typescript.Dockerfile b/dockerfiles/typescript.Dockerfile new file mode 100644 index 0000000..b985708 --- /dev/null +++ b/dockerfiles/typescript.Dockerfile @@ -0,0 +1,44 @@ +# Build in a full featured container +FROM node:20-bullseye as build + +RUN apt-get update \ + && DEBIAN_FRONTEND=noninteractive \ + apt-get install --no-install-recommends --assume-yes \ + protobuf-compiler=3.12.4-1+deb11u1 libprotobuf-dev=3.12.4-1+deb11u1 + +# Get go compiler +ARG PLATFORM=amd64 +RUN wget -q https://go.dev/dl/go1.20.4.linux-${PLATFORM}.tar.gz \ + && tar -C /usr/local -xzf go1.20.4.linux-${PLATFORM}.tar.gz + +WORKDIR /app + +# Copy CLI build dependencies +COPY cmd ./cmd +COPY loadgen ./loadgen +COPY scenarios ./scenarios +COPY workers ./workers +COPY go.mod go.sum ./ + +# Build the CLI +RUN CGO_ENABLED=0 /usr/local/go/bin/go build -o temporal-omes ./cmd + +ARG SDK_VERSION + +# Optional SDK dir to copy, defaults to unimportant file +ARG SDK_DIR=.gitignore +COPY ${SDK_DIR} ./repo + +# Build the worker +RUN CGO_ENABLED=0 ./temporal-omes prepare-worker --language ts --dir-name prepared --version "$SDK_VERSION" + +# Copy the CLI and prepared feature to a "run" container. +FROM gcr.io/distroless/nodejs20-debian11 + +COPY --from=build /app/temporal-omes /app/temporal-omes +COPY --from=build /app/workers/typescript /app/workers/typescript + +# Node is installed here 👇 in distroless +ENV PATH="/nodejs/bin:$PATH" +# Use entrypoint instead of command to "bake" the default command options +ENTRYPOINT ["/app/temporal-omes", "run-worker", "--language", "typescript", "--dir-name", "prepared"] \ No newline at end of file diff --git a/go.mod b/go.mod index 7d4846c..55acffc 100644 --- a/go.mod +++ b/go.mod @@ -3,17 +3,20 @@ module github.com/temporalio/omes go 1.20 require ( + github.com/gogo/protobuf v1.3.2 github.com/golang/protobuf v1.5.3 github.com/prometheus/client_golang v1.16.0 github.com/spf13/cobra v1.7.0 github.com/spf13/pflag v1.0.5 github.com/stretchr/testify v1.8.4 - github.com/temporalio/features v0.0.0-20231117211247-ca7959c1fe2c - go.temporal.io/api v1.24.0 - go.temporal.io/sdk v1.25.0 + github.com/temporalio/features v0.0.0-20231215182222-f746c6d3c8f2 + go.temporal.io/api v1.26.1 + go.temporal.io/sdk v1.25.2-0.20231129171107-288a04f72145 go.uber.org/zap v1.25.0 golang.org/x/mod v0.12.0 - golang.org/x/sys v0.11.0 + golang.org/x/sync v0.5.0 + golang.org/x/sys v0.15.0 + google.golang.org/protobuf v1.31.0 ) require ( @@ -26,47 +29,34 @@ require ( ) require ( - github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a // indirect - github.com/gogo/googleapis v1.4.1 // indirect - github.com/gogo/protobuf v1.3.2 // indirect - github.com/gogo/status v1.1.1 // indirect github.com/golang/mock v1.6.0 // indirect github.com/google/uuid v1.3.1 // indirect github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect - github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect + github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.1 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect - github.com/otiai10/copy v1.12.0 // indirect + github.com/otiai10/copy v1.14.0 // indirect github.com/pborman/uuid v1.2.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/robfig/cron v1.2.0 // indirect - github.com/russross/blackfriday/v2 v2.1.0 // indirect github.com/stretchr/objx v0.5.1 // indirect - github.com/temporalio/features/features v1.0.0 // indirect - github.com/temporalio/features/harness/go v1.0.0 // indirect - github.com/twmb/murmur3 v1.1.8 // indirect - github.com/uber-go/tally/v4 v4.1.7 // indirect - github.com/urfave/cli/v2 v2.25.7 // indirect - github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect - go.temporal.io/sdk/contrib/tally v0.2.0 // indirect go.uber.org/atomic v1.11.0 // indirect + go.uber.org/goleak v1.2.1 // indirect go.uber.org/multierr v1.11.0 // indirect - golang.org/x/net v0.14.0 // indirect - golang.org/x/sync v0.5.0 // indirect - golang.org/x/text v0.12.0 // indirect + golang.org/x/net v0.19.0 // indirect + golang.org/x/text v0.14.0 // indirect golang.org/x/time v0.3.0 // indirect - google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect - google.golang.org/grpc v1.57.0 // indirect - google.golang.org/protobuf v1.31.0 // indirect + google.golang.org/genproto v0.0.0-20231127180814-3a041ad873d4 // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20231127180814-3a041ad873d4 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20231127180814-3a041ad873d4 // indirect + google.golang.org/grpc v1.59.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) // This is dumb, but necesary because Go (for some commands) can't figure out the transitive // local-replace inside of the features module itself, so we have to help it. replace ( - github.com/temporalio/features/features => github.com/temporalio/features/features v0.0.0-20231117211247-ca7959c1fe2c - github.com/temporalio/features/harness/go => github.com/temporalio/features/harness/go v0.0.0-20231117211247-ca7959c1fe2c + github.com/temporalio/features/features => github.com/temporalio/features/features v0.0.0-20231215182222-f746c6d3c8f2 + github.com/temporalio/features/harness/go => github.com/temporalio/features/harness/go v0.0.0-20231215182222-f746c6d3c8f2 ) diff --git a/go.sum b/go.sum index 9f1fda9..ea43377 100644 --- a/go.sum +++ b/go.sum @@ -1,1137 +1,90 @@ cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= -cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU= -cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= -cloud.google.com/go v0.44.3/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= -cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc= -cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0= -cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To= -cloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4= -cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M= -cloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc= -cloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKVk= -cloud.google.com/go v0.57.0/go.mod h1:oXiQ6Rzq3RAkkY7N6t3TcE6jE+CIBBbA36lwQ1JyzZs= -cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOYc= -cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY= -cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= -cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= -cloud.google.com/go v0.75.0/go.mod h1:VGuuCn7PG0dwsd5XPVm2Mm3wlh3EL55/79EKB6hlPTY= -cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg= -cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8= -cloud.google.com/go v0.81.0/go.mod h1:mk/AM35KwGk/Nm2YSeZbxXdrNK3KZOYHmLkOqC2V6E0= -cloud.google.com/go v0.83.0/go.mod h1:Z7MJUsANfY0pYPdw0lbnivPx4/vhy/e2FEkSkF7vAVY= -cloud.google.com/go v0.84.0/go.mod h1:RazrYuxIK6Kb7YrzzhPoLmCVzl7Sup4NrbKPg8KHSUM= -cloud.google.com/go v0.87.0/go.mod h1:TpDYlFy7vuLzZMMZ+B6iRiELaY7z/gJPaqbMx6mlWcY= -cloud.google.com/go v0.90.0/go.mod h1:kRX0mNRHe0e2rC6oNakvwQqzyDmg57xJ+SZU1eT2aDQ= -cloud.google.com/go v0.93.3/go.mod h1:8utlLll2EF5XMAV15woO4lSbWQlk8rer9aLOfLh7+YI= -cloud.google.com/go v0.94.1/go.mod h1:qAlAugsXlC+JWO+Bke5vCtc9ONxjQT3drlTTnAplMW4= -cloud.google.com/go v0.97.0/go.mod h1:GF7l59pYBVlXQIBLx3a761cZ41F9bBH3JUlihCt2Udc= -cloud.google.com/go v0.99.0/go.mod h1:w0Xx2nLzqWJPuozYQX+hFfCSI8WioryfRDzkoI/Y2ZA= -cloud.google.com/go v0.100.1/go.mod h1:fs4QogzfH5n2pBXBP9vRiU+eCny7lD2vmFZy79Iuw1U= -cloud.google.com/go v0.100.2/go.mod h1:4Xra9TjzAeYHrl5+oeLlzbM2k3mjVhZh4UqTZ//w99A= -cloud.google.com/go v0.102.0/go.mod h1:oWcCzKlqJ5zgHQt9YsaeTY9KzIvjyy0ArmiBUgpQ+nc= -cloud.google.com/go v0.102.1/go.mod h1:XZ77E9qnTEnrgEOvr4xzfdX5TRo7fB4T2F4O6+34hIU= -cloud.google.com/go v0.104.0/go.mod h1:OO6xxXdJyvuJPcEPBLN9BJPD+jep5G1+2U5B5gkRYtA= -cloud.google.com/go v0.105.0/go.mod h1:PrLgOJNe5nfE9UMxKxgXj4mD3voiP+YQ6gdt6KMFOKM= -cloud.google.com/go v0.107.0/go.mod h1:wpc2eNrD7hXUTy8EKS10jkxpZBjASrORK7goS+3YX2I= -cloud.google.com/go v0.110.0/go.mod h1:SJnCLqQ0FCFGSZMUNUf84MV3Aia54kn7pi8st7tMzaY= -cloud.google.com/go v0.110.2/go.mod h1:k04UEeEtb6ZBRTv3dZz4CeJC3jKGxyhl0sAiVVquxiw= -cloud.google.com/go v0.110.4/go.mod h1:+EYjdK8e5RME/VY/qLCAtuyALQ9q67dvuum8i+H5xsI= -cloud.google.com/go v0.110.6/go.mod h1:+EYjdK8e5RME/VY/qLCAtuyALQ9q67dvuum8i+H5xsI= -cloud.google.com/go v0.110.7/go.mod h1:+EYjdK8e5RME/VY/qLCAtuyALQ9q67dvuum8i+H5xsI= -cloud.google.com/go/accessapproval v1.4.0/go.mod h1:zybIuC3KpDOvotz59lFe5qxRZx6C75OtwbisN56xYB4= -cloud.google.com/go/accessapproval v1.5.0/go.mod h1:HFy3tuiGvMdcd/u+Cu5b9NkO1pEICJ46IR82PoUdplw= -cloud.google.com/go/accessapproval v1.6.0/go.mod h1:R0EiYnwV5fsRFiKZkPHr6mwyk2wxUJ30nL4j2pcFY2E= -cloud.google.com/go/accessapproval v1.7.1/go.mod h1:JYczztsHRMK7NTXb6Xw+dwbs/WnOJxbo/2mTI+Kgg68= -cloud.google.com/go/accesscontextmanager v1.3.0/go.mod h1:TgCBehyr5gNMz7ZaH9xubp+CE8dkrszb4oK9CWyvD4o= -cloud.google.com/go/accesscontextmanager v1.4.0/go.mod h1:/Kjh7BBu/Gh83sv+K60vN9QE5NJcd80sU33vIe2IFPE= -cloud.google.com/go/accesscontextmanager v1.6.0/go.mod h1:8XCvZWfYw3K/ji0iVnp+6pu7huxoQTLmxAbVjbloTtM= -cloud.google.com/go/accesscontextmanager v1.7.0/go.mod h1:CEGLewx8dwa33aDAZQujl7Dx+uYhS0eay198wB/VumQ= -cloud.google.com/go/accesscontextmanager v1.8.0/go.mod h1:uI+AI/r1oyWK99NN8cQ3UK76AMelMzgZCvJfsi2c+ps= -cloud.google.com/go/accesscontextmanager v1.8.1/go.mod h1:JFJHfvuaTC+++1iL1coPiG1eu5D24db2wXCDWDjIrxo= -cloud.google.com/go/aiplatform v1.22.0/go.mod h1:ig5Nct50bZlzV6NvKaTwmplLLddFx0YReh9WfTO5jKw= -cloud.google.com/go/aiplatform v1.24.0/go.mod h1:67UUvRBKG6GTayHKV8DBv2RtR1t93YRu5B1P3x99mYY= -cloud.google.com/go/aiplatform v1.27.0/go.mod h1:Bvxqtl40l0WImSb04d0hXFU7gDOiq9jQmorivIiWcKg= -cloud.google.com/go/aiplatform v1.35.0/go.mod h1:7MFT/vCaOyZT/4IIFfxH4ErVg/4ku6lKv3w0+tFTgXQ= -cloud.google.com/go/aiplatform v1.36.1/go.mod h1:WTm12vJRPARNvJ+v6P52RDHCNe4AhvjcIZ/9/RRHy/k= -cloud.google.com/go/aiplatform v1.37.0/go.mod h1:IU2Cv29Lv9oCn/9LkFiiuKfwrRTq+QQMbW+hPCxJGZw= -cloud.google.com/go/aiplatform v1.45.0/go.mod h1:Iu2Q7sC7QGhXUeOhAj/oCK9a+ULz1O4AotZiqjQ8MYA= -cloud.google.com/go/aiplatform v1.48.0/go.mod h1:Iu2Q7sC7QGhXUeOhAj/oCK9a+ULz1O4AotZiqjQ8MYA= -cloud.google.com/go/analytics v0.11.0/go.mod h1:DjEWCu41bVbYcKyvlws9Er60YE4a//bK6mnhWvQeFNI= -cloud.google.com/go/analytics v0.12.0/go.mod h1:gkfj9h6XRf9+TS4bmuhPEShsh3hH8PAZzm/41OOhQd4= -cloud.google.com/go/analytics v0.17.0/go.mod h1:WXFa3WSym4IZ+JiKmavYdJwGG/CvpqiqczmL59bTD9M= -cloud.google.com/go/analytics v0.18.0/go.mod h1:ZkeHGQlcIPkw0R/GW+boWHhCOR43xz9RN/jn7WcqfIE= -cloud.google.com/go/analytics v0.19.0/go.mod h1:k8liqf5/HCnOUkbawNtrWWc+UAzyDlW89doe8TtoDsE= -cloud.google.com/go/analytics v0.21.2/go.mod h1:U8dcUtmDmjrmUTnnnRnI4m6zKn/yaA5N9RlEkYFHpQo= -cloud.google.com/go/analytics v0.21.3/go.mod h1:U8dcUtmDmjrmUTnnnRnI4m6zKn/yaA5N9RlEkYFHpQo= -cloud.google.com/go/apigateway v1.3.0/go.mod h1:89Z8Bhpmxu6AmUxuVRg/ECRGReEdiP3vQtk4Z1J9rJk= -cloud.google.com/go/apigateway v1.4.0/go.mod h1:pHVY9MKGaH9PQ3pJ4YLzoj6U5FUDeDFBllIz7WmzJoc= -cloud.google.com/go/apigateway v1.5.0/go.mod h1:GpnZR3Q4rR7LVu5951qfXPJCHquZt02jf7xQx7kpqN8= -cloud.google.com/go/apigateway v1.6.1/go.mod h1:ufAS3wpbRjqfZrzpvLC2oh0MFlpRJm2E/ts25yyqmXA= -cloud.google.com/go/apigeeconnect v1.3.0/go.mod h1:G/AwXFAKo0gIXkPTVfZDd2qA1TxBXJ3MgMRBQkIi9jc= -cloud.google.com/go/apigeeconnect v1.4.0/go.mod h1:kV4NwOKqjvt2JYR0AoIWo2QGfoRtn/pkS3QlHp0Ni04= -cloud.google.com/go/apigeeconnect v1.5.0/go.mod h1:KFaCqvBRU6idyhSNyn3vlHXc8VMDJdRmwDF6JyFRqZ8= -cloud.google.com/go/apigeeconnect v1.6.1/go.mod h1:C4awq7x0JpLtrlQCr8AzVIzAaYgngRqWf9S5Uhg+wWs= -cloud.google.com/go/apigeeregistry v0.4.0/go.mod h1:EUG4PGcsZvxOXAdyEghIdXwAEi/4MEaoqLMLDMIwKXY= -cloud.google.com/go/apigeeregistry v0.5.0/go.mod h1:YR5+s0BVNZfVOUkMa5pAR2xGd0A473vA5M7j247o1wM= -cloud.google.com/go/apigeeregistry v0.6.0/go.mod h1:BFNzW7yQVLZ3yj0TKcwzb8n25CFBri51GVGOEUcgQsc= -cloud.google.com/go/apigeeregistry v0.7.1/go.mod h1:1XgyjZye4Mqtw7T9TsY4NW10U7BojBvG4RMD+vRDrIw= -cloud.google.com/go/apikeys v0.4.0/go.mod h1:XATS/yqZbaBK0HOssf+ALHp8jAlNHUgyfprvNcBIszU= -cloud.google.com/go/apikeys v0.5.0/go.mod h1:5aQfwY4D+ewMMWScd3hm2en3hCj+BROlyrt3ytS7KLI= -cloud.google.com/go/apikeys v0.6.0/go.mod h1:kbpXu5upyiAlGkKrJgQl8A0rKNNJ7dQ377pdroRSSi8= -cloud.google.com/go/appengine v1.4.0/go.mod h1:CS2NhuBuDXM9f+qscZ6V86m1MIIqPj3WC/UoEuR1Sno= -cloud.google.com/go/appengine v1.5.0/go.mod h1:TfasSozdkFI0zeoxW3PTBLiNqRmzraodCWatWI9Dmak= -cloud.google.com/go/appengine v1.6.0/go.mod h1:hg6i0J/BD2cKmDJbaFSYHFyZkgBEfQrDg/X0V5fJn84= -cloud.google.com/go/appengine v1.7.0/go.mod h1:eZqpbHFCqRGa2aCdope7eC0SWLV1j0neb/QnMJVWx6A= -cloud.google.com/go/appengine v1.7.1/go.mod h1:IHLToyb/3fKutRysUlFO0BPt5j7RiQ45nrzEJmKTo6E= -cloud.google.com/go/appengine v1.8.1/go.mod h1:6NJXGLVhZCN9aQ/AEDvmfzKEfoYBlfB80/BHiKVputY= -cloud.google.com/go/area120 v0.5.0/go.mod h1:DE/n4mp+iqVyvxHN41Vf1CR602GiHQjFPusMFW6bGR4= -cloud.google.com/go/area120 v0.6.0/go.mod h1:39yFJqWVgm0UZqWTOdqkLhjoC7uFfgXRC8g/ZegeAh0= -cloud.google.com/go/area120 v0.7.0/go.mod h1:a3+8EUD1SX5RUcCs3MY5YasiO1z6yLiNLRiFrykbynY= -cloud.google.com/go/area120 v0.7.1/go.mod h1:j84i4E1RboTWjKtZVWXPqvK5VHQFJRF2c1Nm69pWm9k= -cloud.google.com/go/area120 v0.8.1/go.mod h1:BVfZpGpB7KFVNxPiQBuHkX6Ed0rS51xIgmGyjrAfzsg= -cloud.google.com/go/artifactregistry v1.6.0/go.mod h1:IYt0oBPSAGYj/kprzsBjZ/4LnG/zOcHyFHjWPCi6SAQ= -cloud.google.com/go/artifactregistry v1.7.0/go.mod h1:mqTOFOnGZx8EtSqK/ZWcsm/4U8B77rbcLP6ruDU2Ixk= -cloud.google.com/go/artifactregistry v1.8.0/go.mod h1:w3GQXkJX8hiKN0v+at4b0qotwijQbYUqF2GWkZzAhC0= -cloud.google.com/go/artifactregistry v1.9.0/go.mod h1:2K2RqvA2CYvAeARHRkLDhMDJ3OXy26h3XW+3/Jh2uYc= -cloud.google.com/go/artifactregistry v1.11.1/go.mod h1:lLYghw+Itq9SONbCa1YWBoWs1nOucMH0pwXN1rOBZFI= -cloud.google.com/go/artifactregistry v1.11.2/go.mod h1:nLZns771ZGAwVLzTX/7Al6R9ehma4WUEhZGWV6CeQNQ= -cloud.google.com/go/artifactregistry v1.12.0/go.mod h1:o6P3MIvtzTOnmvGagO9v/rOjjA0HmhJ+/6KAXrmYDCI= -cloud.google.com/go/artifactregistry v1.13.0/go.mod h1:uy/LNfoOIivepGhooAUpL1i30Hgee3Cu0l4VTWHUC08= -cloud.google.com/go/artifactregistry v1.14.1/go.mod h1:nxVdG19jTaSTu7yA7+VbWL346r3rIdkZ142BSQqhn5E= -cloud.google.com/go/asset v1.5.0/go.mod h1:5mfs8UvcM5wHhqtSv8J1CtxxaQq3AdBxxQi2jGW/K4o= -cloud.google.com/go/asset v1.7.0/go.mod h1:YbENsRK4+xTiL+Ofoj5Ckf+O17kJtgp3Y3nn4uzZz5s= -cloud.google.com/go/asset v1.8.0/go.mod h1:mUNGKhiqIdbr8X7KNayoYvyc4HbbFO9URsjbytpUaW0= -cloud.google.com/go/asset v1.9.0/go.mod h1:83MOE6jEJBMqFKadM9NLRcs80Gdw76qGuHn8m3h8oHQ= -cloud.google.com/go/asset v1.10.0/go.mod h1:pLz7uokL80qKhzKr4xXGvBQXnzHn5evJAEAtZiIb0wY= -cloud.google.com/go/asset v1.11.1/go.mod h1:fSwLhbRvC9p9CXQHJ3BgFeQNM4c9x10lqlrdEUYXlJo= -cloud.google.com/go/asset v1.12.0/go.mod h1:h9/sFOa4eDIyKmH6QMpm4eUK3pDojWnUhTgJlk762Hg= -cloud.google.com/go/asset v1.13.0/go.mod h1:WQAMyYek/b7NBpYq/K4KJWcRqzoalEsxz/t/dTk4THw= -cloud.google.com/go/asset v1.14.1/go.mod h1:4bEJ3dnHCqWCDbWJ/6Vn7GVI9LerSi7Rfdi03hd+WTQ= -cloud.google.com/go/assuredworkloads v1.5.0/go.mod h1:n8HOZ6pff6re5KYfBXcFvSViQjDwxFkAkmUFffJRbbY= -cloud.google.com/go/assuredworkloads v1.6.0/go.mod h1:yo2YOk37Yc89Rsd5QMVECvjaMKymF9OP+QXWlKXUkXw= -cloud.google.com/go/assuredworkloads v1.7.0/go.mod h1:z/736/oNmtGAyU47reJgGN+KVoYoxeLBoj4XkKYscNI= -cloud.google.com/go/assuredworkloads v1.8.0/go.mod h1:AsX2cqyNCOvEQC8RMPnoc0yEarXQk6WEKkxYfL6kGIo= -cloud.google.com/go/assuredworkloads v1.9.0/go.mod h1:kFuI1P78bplYtT77Tb1hi0FMxM0vVpRC7VVoJC3ZoT0= -cloud.google.com/go/assuredworkloads v1.10.0/go.mod h1:kwdUQuXcedVdsIaKgKTp9t0UJkE5+PAVNhdQm4ZVq2E= -cloud.google.com/go/assuredworkloads v1.11.1/go.mod h1:+F04I52Pgn5nmPG36CWFtxmav6+7Q+c5QyJoL18Lry0= -cloud.google.com/go/automl v1.5.0/go.mod h1:34EjfoFGMZ5sgJ9EoLsRtdPSNZLcfflJR39VbVNS2M0= -cloud.google.com/go/automl v1.6.0/go.mod h1:ugf8a6Fx+zP0D59WLhqgTDsQI9w07o64uf/Is3Nh5p8= -cloud.google.com/go/automl v1.7.0/go.mod h1:RL9MYCCsJEOmt0Wf3z9uzG0a7adTT1fe+aObgSpkCt8= -cloud.google.com/go/automl v1.8.0/go.mod h1:xWx7G/aPEe/NP+qzYXktoBSDfjO+vnKMGgsApGJJquM= -cloud.google.com/go/automl v1.12.0/go.mod h1:tWDcHDp86aMIuHmyvjuKeeHEGq76lD7ZqfGLN6B0NuU= -cloud.google.com/go/automl v1.13.1/go.mod h1:1aowgAHWYZU27MybSCFiukPO7xnyawv7pt3zK4bheQE= -cloud.google.com/go/baremetalsolution v0.3.0/go.mod h1:XOrocE+pvK1xFfleEnShBlNAXf+j5blPPxrhjKgnIFc= -cloud.google.com/go/baremetalsolution v0.4.0/go.mod h1:BymplhAadOO/eBa7KewQ0Ppg4A4Wplbn+PsFKRLo0uI= -cloud.google.com/go/baremetalsolution v0.5.0/go.mod h1:dXGxEkmR9BMwxhzBhV0AioD0ULBmuLZI8CdwalUxuss= -cloud.google.com/go/baremetalsolution v1.1.1/go.mod h1:D1AV6xwOksJMV4OSlWHtWuFNZZYujJknMAP4Qa27QIA= -cloud.google.com/go/batch v0.3.0/go.mod h1:TR18ZoAekj1GuirsUsR1ZTKN3FC/4UDnScjT8NXImFE= -cloud.google.com/go/batch v0.4.0/go.mod h1:WZkHnP43R/QCGQsZ+0JyG4i79ranE2u8xvjq/9+STPE= -cloud.google.com/go/batch v0.7.0/go.mod h1:vLZN95s6teRUqRQ4s3RLDsH8PvboqBK+rn1oevL159g= -cloud.google.com/go/batch v1.3.1/go.mod h1:VguXeQKXIYaeeIYbuozUmBR13AfL4SJP7IltNPS+A4A= -cloud.google.com/go/beyondcorp v0.2.0/go.mod h1:TB7Bd+EEtcw9PCPQhCJtJGjk/7TC6ckmnSFS+xwTfm4= -cloud.google.com/go/beyondcorp v0.3.0/go.mod h1:E5U5lcrcXMsCuoDNyGrpyTm/hn7ne941Jz2vmksAxW8= -cloud.google.com/go/beyondcorp v0.4.0/go.mod h1:3ApA0mbhHx6YImmuubf5pyW8srKnCEPON32/5hj+RmM= -cloud.google.com/go/beyondcorp v0.5.0/go.mod h1:uFqj9X+dSfrheVp7ssLTaRHd2EHqSL4QZmH4e8WXGGU= -cloud.google.com/go/beyondcorp v0.6.1/go.mod h1:YhxDWw946SCbmcWo3fAhw3V4XZMSpQ/VYfcKGAEU8/4= -cloud.google.com/go/beyondcorp v1.0.0/go.mod h1:YhxDWw946SCbmcWo3fAhw3V4XZMSpQ/VYfcKGAEU8/4= -cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= -cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= -cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= -cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= -cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= -cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= -cloud.google.com/go/bigquery v1.42.0/go.mod h1:8dRTJxhtG+vwBKzE5OseQn/hiydoQN3EedCaOdYmxRA= -cloud.google.com/go/bigquery v1.43.0/go.mod h1:ZMQcXHsl+xmU1z36G2jNGZmKp9zNY5BUua5wDgmNCfw= -cloud.google.com/go/bigquery v1.44.0/go.mod h1:0Y33VqXTEsbamHJvJHdFmtqHvMIY28aK1+dFsvaChGc= -cloud.google.com/go/bigquery v1.47.0/go.mod h1:sA9XOgy0A8vQK9+MWhEQTY6Tix87M/ZurWFIxmF9I/E= -cloud.google.com/go/bigquery v1.48.0/go.mod h1:QAwSz+ipNgfL5jxiaK7weyOhzdoAy1zFm0Nf1fysJac= -cloud.google.com/go/bigquery v1.49.0/go.mod h1:Sv8hMmTFFYBlt/ftw2uN6dFdQPzBlREY9yBh7Oy7/4Q= -cloud.google.com/go/bigquery v1.50.0/go.mod h1:YrleYEh2pSEbgTBZYMJ5SuSr0ML3ypjRB1zgf7pvQLU= -cloud.google.com/go/bigquery v1.52.0/go.mod h1:3b/iXjRQGU4nKa87cXeg6/gogLjO8C6PmuM8i5Bi/u4= -cloud.google.com/go/bigquery v1.53.0/go.mod h1:3b/iXjRQGU4nKa87cXeg6/gogLjO8C6PmuM8i5Bi/u4= -cloud.google.com/go/billing v1.4.0/go.mod h1:g9IdKBEFlItS8bTtlrZdVLWSSdSyFUZKXNS02zKMOZY= -cloud.google.com/go/billing v1.5.0/go.mod h1:mztb1tBc3QekhjSgmpf/CV4LzWXLzCArwpLmP2Gm88s= -cloud.google.com/go/billing v1.6.0/go.mod h1:WoXzguj+BeHXPbKfNWkqVtDdzORazmCjraY+vrxcyvI= -cloud.google.com/go/billing v1.7.0/go.mod h1:q457N3Hbj9lYwwRbnlD7vUpyjq6u5U1RAOArInEiD5Y= -cloud.google.com/go/billing v1.12.0/go.mod h1:yKrZio/eu+okO/2McZEbch17O5CB5NpZhhXG6Z766ss= -cloud.google.com/go/billing v1.13.0/go.mod h1:7kB2W9Xf98hP9Sr12KfECgfGclsH3CQR0R08tnRlRbc= -cloud.google.com/go/billing v1.16.0/go.mod h1:y8vx09JSSJG02k5QxbycNRrN7FGZB6F3CAcgum7jvGA= -cloud.google.com/go/binaryauthorization v1.1.0/go.mod h1:xwnoWu3Y84jbuHa0zd526MJYmtnVXn0syOjaJgy4+dM= -cloud.google.com/go/binaryauthorization v1.2.0/go.mod h1:86WKkJHtRcv5ViNABtYMhhNWRrD1Vpi//uKEy7aYEfI= -cloud.google.com/go/binaryauthorization v1.3.0/go.mod h1:lRZbKgjDIIQvzYQS1p99A7/U1JqvqeZg0wiI5tp6tg0= -cloud.google.com/go/binaryauthorization v1.4.0/go.mod h1:tsSPQrBd77VLplV70GUhBf/Zm3FsKmgSqgm4UmiDItk= -cloud.google.com/go/binaryauthorization v1.5.0/go.mod h1:OSe4OU1nN/VswXKRBmciKpo9LulY41gch5c68htf3/Q= -cloud.google.com/go/binaryauthorization v1.6.1/go.mod h1:TKt4pa8xhowwffiBmbrbcxijJRZED4zrqnwZ1lKH51U= -cloud.google.com/go/certificatemanager v1.3.0/go.mod h1:n6twGDvcUBFu9uBgt4eYvvf3sQ6My8jADcOVwHmzadg= -cloud.google.com/go/certificatemanager v1.4.0/go.mod h1:vowpercVFyqs8ABSmrdV+GiFf2H/ch3KyudYQEMM590= -cloud.google.com/go/certificatemanager v1.6.0/go.mod h1:3Hh64rCKjRAX8dXgRAyOcY5vQ/fE1sh8o+Mdd6KPgY8= -cloud.google.com/go/certificatemanager v1.7.1/go.mod h1:iW8J3nG6SaRYImIa+wXQ0g8IgoofDFRp5UMzaNk1UqI= -cloud.google.com/go/channel v1.8.0/go.mod h1:W5SwCXDJsq/rg3tn3oG0LOxpAo6IMxNa09ngphpSlnk= -cloud.google.com/go/channel v1.9.0/go.mod h1:jcu05W0my9Vx4mt3/rEHpfxc9eKi9XwsdDL8yBMbKUk= -cloud.google.com/go/channel v1.11.0/go.mod h1:IdtI0uWGqhEeatSB62VOoJ8FSUhJ9/+iGkJVqp74CGE= -cloud.google.com/go/channel v1.12.0/go.mod h1:VkxCGKASi4Cq7TbXxlaBezonAYpp1GCnKMY6tnMQnLU= -cloud.google.com/go/channel v1.16.0/go.mod h1:eN/q1PFSl5gyu0dYdmxNXscY/4Fi7ABmeHCJNf/oHmc= -cloud.google.com/go/cloudbuild v1.3.0/go.mod h1:WequR4ULxlqvMsjDEEEFnOG5ZSRSgWOywXYDb1vPE6U= -cloud.google.com/go/cloudbuild v1.4.0/go.mod h1:5Qwa40LHiOXmz3386FrjrYM93rM/hdRr7b53sySrTqA= -cloud.google.com/go/cloudbuild v1.6.0/go.mod h1:UIbc/w9QCbH12xX+ezUsgblrWv+Cv4Tw83GiSMHOn9M= -cloud.google.com/go/cloudbuild v1.7.0/go.mod h1:zb5tWh2XI6lR9zQmsm1VRA+7OCuve5d8S+zJUul8KTg= -cloud.google.com/go/cloudbuild v1.9.0/go.mod h1:qK1d7s4QlO0VwfYn5YuClDGg2hfmLZEb4wQGAbIgL1s= -cloud.google.com/go/cloudbuild v1.10.1/go.mod h1:lyJg7v97SUIPq4RC2sGsz/9tNczhyv2AjML/ci4ulzU= -cloud.google.com/go/cloudbuild v1.13.0/go.mod h1:lyJg7v97SUIPq4RC2sGsz/9tNczhyv2AjML/ci4ulzU= -cloud.google.com/go/clouddms v1.3.0/go.mod h1:oK6XsCDdW4Ib3jCCBugx+gVjevp2TMXFtgxvPSee3OM= -cloud.google.com/go/clouddms v1.4.0/go.mod h1:Eh7sUGCC+aKry14O1NRljhjyrr0NFC0G2cjwX0cByRk= -cloud.google.com/go/clouddms v1.5.0/go.mod h1:QSxQnhikCLUw13iAbffF2CZxAER3xDGNHjsTAkQJcQA= -cloud.google.com/go/clouddms v1.6.1/go.mod h1:Ygo1vL52Ov4TBZQquhz5fiw2CQ58gvu+PlS6PVXCpZI= -cloud.google.com/go/cloudtasks v1.5.0/go.mod h1:fD92REy1x5woxkKEkLdvavGnPJGEn8Uic9nWuLzqCpY= -cloud.google.com/go/cloudtasks v1.6.0/go.mod h1:C6Io+sxuke9/KNRkbQpihnW93SWDU3uXt92nu85HkYI= -cloud.google.com/go/cloudtasks v1.7.0/go.mod h1:ImsfdYWwlWNJbdgPIIGJWC+gemEGTBK/SunNQQNCAb4= -cloud.google.com/go/cloudtasks v1.8.0/go.mod h1:gQXUIwCSOI4yPVK7DgTVFiiP0ZW/eQkydWzwVMdHxrI= -cloud.google.com/go/cloudtasks v1.9.0/go.mod h1:w+EyLsVkLWHcOaqNEyvcKAsWp9p29dL6uL9Nst1cI7Y= -cloud.google.com/go/cloudtasks v1.10.0/go.mod h1:NDSoTLkZ3+vExFEWu2UJV1arUyzVDAiZtdWcsUyNwBs= -cloud.google.com/go/cloudtasks v1.11.1/go.mod h1:a9udmnou9KO2iulGscKR0qBYjreuX8oHwpmFsKspEvM= -cloud.google.com/go/cloudtasks v1.12.1/go.mod h1:a9udmnou9KO2iulGscKR0qBYjreuX8oHwpmFsKspEvM= -cloud.google.com/go/compute v0.1.0/go.mod h1:GAesmwr110a34z04OlxYkATPBEfVhkymfTBXtfbBFow= -cloud.google.com/go/compute v1.3.0/go.mod h1:cCZiE1NHEtai4wiufUhW8I8S1JKkAnhnQJWM7YD99wM= -cloud.google.com/go/compute v1.5.0/go.mod h1:9SMHyhJlzhlkJqrPAc839t2BZFTSk6Jdj6mkzQJeu0M= -cloud.google.com/go/compute v1.6.0/go.mod h1:T29tfhtVbq1wvAPo0E3+7vhgmkOYeXjhFvz/FMzPu0s= -cloud.google.com/go/compute v1.6.1/go.mod h1:g85FgpzFvNULZ+S8AYq87axRKuf2Kh7deLqV/jJ3thU= -cloud.google.com/go/compute v1.7.0/go.mod h1:435lt8av5oL9P3fv1OEzSbSUe+ybHXGMPQHHZWZxy9U= -cloud.google.com/go/compute v1.10.0/go.mod h1:ER5CLbMxl90o2jtNbGSbtfOpQKR0t15FOtRsugnLrlU= -cloud.google.com/go/compute v1.12.0/go.mod h1:e8yNOBcBONZU1vJKCvCoDw/4JQsA0dpM4x/6PIIOocU= -cloud.google.com/go/compute v1.12.1/go.mod h1:e8yNOBcBONZU1vJKCvCoDw/4JQsA0dpM4x/6PIIOocU= -cloud.google.com/go/compute v1.13.0/go.mod h1:5aPTS0cUNMIc1CE546K+Th6weJUNQErARyZtRXDJ8GE= -cloud.google.com/go/compute v1.14.0/go.mod h1:YfLtxrj9sU4Yxv+sXzZkyPjEyPBZfXHUvjxega5vAdo= -cloud.google.com/go/compute v1.15.1/go.mod h1:bjjoF/NtFUrkD/urWfdHaKuOPDR5nWIs63rR+SXhcpA= -cloud.google.com/go/compute v1.18.0/go.mod h1:1X7yHxec2Ga+Ss6jPyjxRxpu2uu7PLgsOVXvgU0yacs= -cloud.google.com/go/compute v1.19.0/go.mod h1:rikpw2y+UMidAe9tISo04EHNOIf42RLYF/q8Bs93scU= -cloud.google.com/go/compute v1.19.1/go.mod h1:6ylj3a05WF8leseCdIf77NK0g1ey+nj5IKd5/kvShxE= -cloud.google.com/go/compute v1.19.3/go.mod h1:qxvISKp/gYnXkSAD1ppcSOveRAmzxicEv/JlizULFrI= -cloud.google.com/go/compute v1.20.1/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM= -cloud.google.com/go/compute v1.23.0/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM= -cloud.google.com/go/compute/metadata v0.1.0/go.mod h1:Z1VN+bulIf6bt4P/C37K4DyZYZEXYonfTBHHFPO/4UU= -cloud.google.com/go/compute/metadata v0.2.0/go.mod h1:zFmK7XCadkQkj6TtorcaGlCW1hT1fIilQDwofLpJ20k= -cloud.google.com/go/compute/metadata v0.2.1/go.mod h1:jgHgmJd2RKBGzXqF5LR2EZMGxBkeanZ9wwa75XHJgOM= -cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA= -cloud.google.com/go/contactcenterinsights v1.3.0/go.mod h1:Eu2oemoePuEFc/xKFPjbTuPSj0fYJcPls9TFlPNnHHY= -cloud.google.com/go/contactcenterinsights v1.4.0/go.mod h1:L2YzkGbPsv+vMQMCADxJoT9YiTTnSEd6fEvCeHTYVck= -cloud.google.com/go/contactcenterinsights v1.6.0/go.mod h1:IIDlT6CLcDoyv79kDv8iWxMSTZhLxSCofVV5W6YFM/w= -cloud.google.com/go/contactcenterinsights v1.9.1/go.mod h1:bsg/R7zGLYMVxFFzfh9ooLTruLRCG9fnzhH9KznHhbM= -cloud.google.com/go/contactcenterinsights v1.10.0/go.mod h1:bsg/R7zGLYMVxFFzfh9ooLTruLRCG9fnzhH9KznHhbM= -cloud.google.com/go/container v1.6.0/go.mod h1:Xazp7GjJSeUYo688S+6J5V+n/t+G5sKBTFkKNudGRxg= -cloud.google.com/go/container v1.7.0/go.mod h1:Dp5AHtmothHGX3DwwIHPgq45Y8KmNsgN3amoYfxVkLo= -cloud.google.com/go/container v1.13.1/go.mod h1:6wgbMPeQRw9rSnKBCAJXnds3Pzj03C4JHamr8asWKy4= -cloud.google.com/go/container v1.14.0/go.mod h1:3AoJMPhHfLDxLvrlVWaK57IXzaPnLaZq63WX59aQBfM= -cloud.google.com/go/container v1.15.0/go.mod h1:ft+9S0WGjAyjDggg5S06DXj+fHJICWg8L7isCQe9pQA= -cloud.google.com/go/container v1.22.1/go.mod h1:lTNExE2R7f+DLbAN+rJiKTisauFCaoDq6NURZ83eVH4= -cloud.google.com/go/container v1.24.0/go.mod h1:lTNExE2R7f+DLbAN+rJiKTisauFCaoDq6NURZ83eVH4= -cloud.google.com/go/containeranalysis v0.5.1/go.mod h1:1D92jd8gRR/c0fGMlymRgxWD3Qw9C1ff6/T7mLgVL8I= -cloud.google.com/go/containeranalysis v0.6.0/go.mod h1:HEJoiEIu+lEXM+k7+qLCci0h33lX3ZqoYFdmPcoO7s4= -cloud.google.com/go/containeranalysis v0.7.0/go.mod h1:9aUL+/vZ55P2CXfuZjS4UjQ9AgXoSw8Ts6lemfmxBxI= -cloud.google.com/go/containeranalysis v0.9.0/go.mod h1:orbOANbwk5Ejoom+s+DUCTTJ7IBdBQJDcSylAx/on9s= -cloud.google.com/go/containeranalysis v0.10.1/go.mod h1:Ya2jiILITMY68ZLPaogjmOMNkwsDrWBSTyBubGXO7j0= -cloud.google.com/go/datacatalog v1.3.0/go.mod h1:g9svFY6tuR+j+hrTw3J2dNcmI0dzmSiyOzm8kpLq0a0= -cloud.google.com/go/datacatalog v1.5.0/go.mod h1:M7GPLNQeLfWqeIm3iuiruhPzkt65+Bx8dAKvScX8jvs= -cloud.google.com/go/datacatalog v1.6.0/go.mod h1:+aEyF8JKg+uXcIdAmmaMUmZ3q1b/lKLtXCmXdnc0lbc= -cloud.google.com/go/datacatalog v1.7.0/go.mod h1:9mEl4AuDYWw81UGc41HonIHH7/sn52H0/tc8f8ZbZIE= -cloud.google.com/go/datacatalog v1.8.0/go.mod h1:KYuoVOv9BM8EYz/4eMFxrr4DUKhGIOXxZoKYF5wdISM= -cloud.google.com/go/datacatalog v1.8.1/go.mod h1:RJ58z4rMp3gvETA465Vg+ag8BGgBdnRPEMMSTr5Uv+M= -cloud.google.com/go/datacatalog v1.12.0/go.mod h1:CWae8rFkfp6LzLumKOnmVh4+Zle4A3NXLzVJ1d1mRm0= -cloud.google.com/go/datacatalog v1.13.0/go.mod h1:E4Rj9a5ZtAxcQJlEBTLgMTphfP11/lNaAshpoBgemX8= -cloud.google.com/go/datacatalog v1.14.0/go.mod h1:h0PrGtlihoutNMp/uvwhawLQ9+c63Kz65UFqh49Yo+E= -cloud.google.com/go/datacatalog v1.14.1/go.mod h1:d2CevwTG4yedZilwe+v3E3ZBDRMobQfSG/a6cCCN5R4= -cloud.google.com/go/datacatalog v1.16.0/go.mod h1:d2CevwTG4yedZilwe+v3E3ZBDRMobQfSG/a6cCCN5R4= -cloud.google.com/go/dataflow v0.6.0/go.mod h1:9QwV89cGoxjjSR9/r7eFDqqjtvbKxAK2BaYU6PVk9UM= -cloud.google.com/go/dataflow v0.7.0/go.mod h1:PX526vb4ijFMesO1o202EaUmouZKBpjHsTlCtB4parQ= -cloud.google.com/go/dataflow v0.8.0/go.mod h1:Rcf5YgTKPtQyYz8bLYhFoIV/vP39eL7fWNcSOyFfLJE= -cloud.google.com/go/dataflow v0.9.1/go.mod h1:Wp7s32QjYuQDWqJPFFlnBKhkAtiFpMTdg00qGbnIHVw= -cloud.google.com/go/dataform v0.3.0/go.mod h1:cj8uNliRlHpa6L3yVhDOBrUXH+BPAO1+KFMQQNSThKo= -cloud.google.com/go/dataform v0.4.0/go.mod h1:fwV6Y4Ty2yIFL89huYlEkwUPtS7YZinZbzzj5S9FzCE= -cloud.google.com/go/dataform v0.5.0/go.mod h1:GFUYRe8IBa2hcomWplodVmUx/iTL0FrsauObOM3Ipr0= -cloud.google.com/go/dataform v0.6.0/go.mod h1:QPflImQy33e29VuapFdf19oPbE4aYTJxr31OAPV+ulA= -cloud.google.com/go/dataform v0.7.0/go.mod h1:7NulqnVozfHvWUBpMDfKMUESr+85aJsC/2O0o3jWPDE= -cloud.google.com/go/dataform v0.8.1/go.mod h1:3BhPSiw8xmppbgzeBbmDvmSWlwouuJkXsXsb8UBih9M= -cloud.google.com/go/datafusion v1.4.0/go.mod h1:1Zb6VN+W6ALo85cXnM1IKiPw+yQMKMhB9TsTSRDo/38= -cloud.google.com/go/datafusion v1.5.0/go.mod h1:Kz+l1FGHB0J+4XF2fud96WMmRiq/wj8N9u007vyXZ2w= -cloud.google.com/go/datafusion v1.6.0/go.mod h1:WBsMF8F1RhSXvVM8rCV3AeyWVxcC2xY6vith3iw3S+8= -cloud.google.com/go/datafusion v1.7.1/go.mod h1:KpoTBbFmoToDExJUso/fcCiguGDk7MEzOWXUsJo0wsI= -cloud.google.com/go/datalabeling v0.5.0/go.mod h1:TGcJ0G2NzcsXSE/97yWjIZO0bXj0KbVlINXMG9ud42I= -cloud.google.com/go/datalabeling v0.6.0/go.mod h1:WqdISuk/+WIGeMkpw/1q7bK/tFEZxsrFJOJdY2bXvTQ= -cloud.google.com/go/datalabeling v0.7.0/go.mod h1:WPQb1y08RJbmpM3ww0CSUAGweL0SxByuW2E+FU+wXcM= -cloud.google.com/go/datalabeling v0.8.1/go.mod h1:XS62LBSVPbYR54GfYQsPXZjTW8UxCK2fkDciSrpRFdY= -cloud.google.com/go/dataplex v1.3.0/go.mod h1:hQuRtDg+fCiFgC8j0zV222HvzFQdRd+SVX8gdmFcZzA= -cloud.google.com/go/dataplex v1.4.0/go.mod h1:X51GfLXEMVJ6UN47ESVqvlsRplbLhcsAt0kZCCKsU0A= -cloud.google.com/go/dataplex v1.5.2/go.mod h1:cVMgQHsmfRoI5KFYq4JtIBEUbYwc3c7tXmIDhRmNNVQ= -cloud.google.com/go/dataplex v1.6.0/go.mod h1:bMsomC/aEJOSpHXdFKFGQ1b0TDPIeL28nJObeO1ppRs= -cloud.google.com/go/dataplex v1.8.1/go.mod h1:7TyrDT6BCdI8/38Uvp0/ZxBslOslP2X2MPDucliyvSE= -cloud.google.com/go/dataplex v1.9.0/go.mod h1:7TyrDT6BCdI8/38Uvp0/ZxBslOslP2X2MPDucliyvSE= -cloud.google.com/go/dataproc v1.7.0/go.mod h1:CKAlMjII9H90RXaMpSxQ8EU6dQx6iAYNPcYPOkSbi8s= -cloud.google.com/go/dataproc v1.8.0/go.mod h1:5OW+zNAH0pMpw14JVrPONsxMQYMBqJuzORhIBfBn9uI= -cloud.google.com/go/dataproc v1.12.0/go.mod h1:zrF3aX0uV3ikkMz6z4uBbIKyhRITnxvr4i3IjKsKrw4= -cloud.google.com/go/dataproc/v2 v2.0.1/go.mod h1:7Ez3KRHdFGcfY7GcevBbvozX+zyWGcwLJvvAMwCaoZ4= -cloud.google.com/go/dataqna v0.5.0/go.mod h1:90Hyk596ft3zUQ8NkFfvICSIfHFh1Bc7C4cK3vbhkeo= -cloud.google.com/go/dataqna v0.6.0/go.mod h1:1lqNpM7rqNLVgWBJyk5NF6Uen2PHym0jtVJonplVsDA= -cloud.google.com/go/dataqna v0.7.0/go.mod h1:Lx9OcIIeqCrw1a6KdO3/5KMP1wAmTc0slZWwP12Qq3c= -cloud.google.com/go/dataqna v0.8.1/go.mod h1:zxZM0Bl6liMePWsHA8RMGAfmTG34vJMapbHAxQ5+WA8= -cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= -cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= -cloud.google.com/go/datastore v1.10.0/go.mod h1:PC5UzAmDEkAmkfaknstTYbNpgE49HAgW2J1gcgUfmdM= -cloud.google.com/go/datastore v1.11.0/go.mod h1:TvGxBIHCS50u8jzG+AW/ppf87v1of8nwzFNgEZU1D3c= -cloud.google.com/go/datastore v1.12.0/go.mod h1:KjdB88W897MRITkvWWJrg2OUtrR5XVj1EoLgSp6/N70= -cloud.google.com/go/datastore v1.12.1/go.mod h1:KjdB88W897MRITkvWWJrg2OUtrR5XVj1EoLgSp6/N70= -cloud.google.com/go/datastore v1.13.0/go.mod h1:KjdB88W897MRITkvWWJrg2OUtrR5XVj1EoLgSp6/N70= -cloud.google.com/go/datastream v1.2.0/go.mod h1:i/uTP8/fZwgATHS/XFu0TcNUhuA0twZxxQ3EyCUQMwo= -cloud.google.com/go/datastream v1.3.0/go.mod h1:cqlOX8xlyYF/uxhiKn6Hbv6WjwPPuI9W2M9SAXwaLLQ= -cloud.google.com/go/datastream v1.4.0/go.mod h1:h9dpzScPhDTs5noEMQVWP8Wx8AFBRyS0s8KWPx/9r0g= -cloud.google.com/go/datastream v1.5.0/go.mod h1:6TZMMNPwjUqZHBKPQ1wwXpb0d5VDVPl2/XoS5yi88q4= -cloud.google.com/go/datastream v1.6.0/go.mod h1:6LQSuswqLa7S4rPAOZFVjHIG3wJIjZcZrw8JDEDJuIs= -cloud.google.com/go/datastream v1.7.0/go.mod h1:uxVRMm2elUSPuh65IbZpzJNMbuzkcvu5CjMqVIUHrww= -cloud.google.com/go/datastream v1.9.1/go.mod h1:hqnmr8kdUBmrnk65k5wNRoHSCYksvpdZIcZIEl8h43Q= -cloud.google.com/go/datastream v1.10.0/go.mod h1:hqnmr8kdUBmrnk65k5wNRoHSCYksvpdZIcZIEl8h43Q= -cloud.google.com/go/deploy v1.4.0/go.mod h1:5Xghikd4VrmMLNaF6FiRFDlHb59VM59YoDQnOUdsH/c= -cloud.google.com/go/deploy v1.5.0/go.mod h1:ffgdD0B89tToyW/U/D2eL0jN2+IEV/3EMuXHA0l4r+s= -cloud.google.com/go/deploy v1.6.0/go.mod h1:f9PTHehG/DjCom3QH0cntOVRm93uGBDt2vKzAPwpXQI= -cloud.google.com/go/deploy v1.8.0/go.mod h1:z3myEJnA/2wnB4sgjqdMfgxCA0EqC3RBTNcVPs93mtQ= -cloud.google.com/go/deploy v1.11.0/go.mod h1:tKuSUV5pXbn67KiubiUNUejqLs4f5cxxiCNCeyl0F2g= -cloud.google.com/go/deploy v1.13.0/go.mod h1:tKuSUV5pXbn67KiubiUNUejqLs4f5cxxiCNCeyl0F2g= -cloud.google.com/go/dialogflow v1.15.0/go.mod h1:HbHDWs33WOGJgn6rfzBW1Kv807BE3O1+xGbn59zZWI4= -cloud.google.com/go/dialogflow v1.16.1/go.mod h1:po6LlzGfK+smoSmTBnbkIZY2w8ffjz/RcGSS+sh1el0= -cloud.google.com/go/dialogflow v1.17.0/go.mod h1:YNP09C/kXA1aZdBgC/VtXX74G/TKn7XVCcVumTflA+8= -cloud.google.com/go/dialogflow v1.18.0/go.mod h1:trO7Zu5YdyEuR+BhSNOqJezyFQ3aUzz0njv7sMx/iek= -cloud.google.com/go/dialogflow v1.19.0/go.mod h1:JVmlG1TwykZDtxtTXujec4tQ+D8SBFMoosgy+6Gn0s0= -cloud.google.com/go/dialogflow v1.29.0/go.mod h1:b+2bzMe+k1s9V+F2jbJwpHPzrnIyHihAdRFMtn2WXuM= -cloud.google.com/go/dialogflow v1.31.0/go.mod h1:cuoUccuL1Z+HADhyIA7dci3N5zUssgpBJmCzI6fNRB4= -cloud.google.com/go/dialogflow v1.32.0/go.mod h1:jG9TRJl8CKrDhMEcvfcfFkkpp8ZhgPz3sBGmAUYJ2qE= -cloud.google.com/go/dialogflow v1.38.0/go.mod h1:L7jnH+JL2mtmdChzAIcXQHXMvQkE3U4hTaNltEuxXn4= -cloud.google.com/go/dialogflow v1.40.0/go.mod h1:L7jnH+JL2mtmdChzAIcXQHXMvQkE3U4hTaNltEuxXn4= -cloud.google.com/go/dlp v1.6.0/go.mod h1:9eyB2xIhpU0sVwUixfBubDoRwP+GjeUoxxeueZmqvmM= -cloud.google.com/go/dlp v1.7.0/go.mod h1:68ak9vCiMBjbasxeVD17hVPxDEck+ExiHavX8kiHG+Q= -cloud.google.com/go/dlp v1.9.0/go.mod h1:qdgmqgTyReTz5/YNSSuueR8pl7hO0o9bQ39ZhtgkWp4= -cloud.google.com/go/dlp v1.10.1/go.mod h1:IM8BWz1iJd8njcNcG0+Kyd9OPnqnRNkDV8j42VT5KOI= -cloud.google.com/go/documentai v1.7.0/go.mod h1:lJvftZB5NRiFSX4moiye1SMxHx0Bc3x1+p9e/RfXYiU= -cloud.google.com/go/documentai v1.8.0/go.mod h1:xGHNEB7CtsnySCNrCFdCyyMz44RhFEEX2Q7UD0c5IhU= -cloud.google.com/go/documentai v1.9.0/go.mod h1:FS5485S8R00U10GhgBC0aNGrJxBP8ZVpEeJ7PQDZd6k= -cloud.google.com/go/documentai v1.10.0/go.mod h1:vod47hKQIPeCfN2QS/jULIvQTugbmdc0ZvxxfQY1bg4= -cloud.google.com/go/documentai v1.16.0/go.mod h1:o0o0DLTEZ+YnJZ+J4wNfTxmDVyrkzFvttBXXtYRMHkM= -cloud.google.com/go/documentai v1.18.0/go.mod h1:F6CK6iUH8J81FehpskRmhLq/3VlwQvb7TvwOceQ2tbs= -cloud.google.com/go/documentai v1.20.0/go.mod h1:yJkInoMcK0qNAEdRnqY/D5asy73tnPe88I1YTZT+a8E= -cloud.google.com/go/documentai v1.22.0/go.mod h1:yJkInoMcK0qNAEdRnqY/D5asy73tnPe88I1YTZT+a8E= -cloud.google.com/go/domains v0.6.0/go.mod h1:T9Rz3GasrpYk6mEGHh4rymIhjlnIuB4ofT1wTxDeT4Y= -cloud.google.com/go/domains v0.7.0/go.mod h1:PtZeqS1xjnXuRPKE/88Iru/LdfoRyEHYA9nFQf4UKpg= -cloud.google.com/go/domains v0.8.0/go.mod h1:M9i3MMDzGFXsydri9/vW+EWz9sWb4I6WyHqdlAk0idE= -cloud.google.com/go/domains v0.9.1/go.mod h1:aOp1c0MbejQQ2Pjf1iJvnVyT+z6R6s8pX66KaCSDYfE= -cloud.google.com/go/edgecontainer v0.1.0/go.mod h1:WgkZ9tp10bFxqO8BLPqv2LlfmQF1X8lZqwW4r1BTajk= -cloud.google.com/go/edgecontainer v0.2.0/go.mod h1:RTmLijy+lGpQ7BXuTDa4C4ssxyXT34NIuHIgKuP4s5w= -cloud.google.com/go/edgecontainer v0.3.0/go.mod h1:FLDpP4nykgwwIfcLt6zInhprzw0lEi2P1fjO6Ie0qbc= -cloud.google.com/go/edgecontainer v1.0.0/go.mod h1:cttArqZpBB2q58W/upSG++ooo6EsblxDIolxa3jSjbY= -cloud.google.com/go/edgecontainer v1.1.1/go.mod h1:O5bYcS//7MELQZs3+7mabRqoWQhXCzenBu0R8bz2rwk= -cloud.google.com/go/errorreporting v0.3.0/go.mod h1:xsP2yaAp+OAW4OIm60An2bbLpqIhKXdWR/tawvl7QzU= -cloud.google.com/go/essentialcontacts v1.3.0/go.mod h1:r+OnHa5jfj90qIfZDO/VztSFqbQan7HV75p8sA+mdGI= -cloud.google.com/go/essentialcontacts v1.4.0/go.mod h1:8tRldvHYsmnBCHdFpvU+GL75oWiBKl80BiqlFh9tp+8= -cloud.google.com/go/essentialcontacts v1.5.0/go.mod h1:ay29Z4zODTuwliK7SnX8E86aUF2CTzdNtvv42niCX0M= -cloud.google.com/go/essentialcontacts v1.6.2/go.mod h1:T2tB6tX+TRak7i88Fb2N9Ok3PvY3UNbUsMag9/BARh4= -cloud.google.com/go/eventarc v1.7.0/go.mod h1:6ctpF3zTnaQCxUjHUdcfgcA1A2T309+omHZth7gDfmc= -cloud.google.com/go/eventarc v1.8.0/go.mod h1:imbzxkyAU4ubfsaKYdQg04WS1NvncblHEup4kvF+4gw= -cloud.google.com/go/eventarc v1.10.0/go.mod h1:u3R35tmZ9HvswGRBnF48IlYgYeBcPUCjkr4BTdem2Kw= -cloud.google.com/go/eventarc v1.11.0/go.mod h1:PyUjsUKPWoRBCHeOxZd/lbOOjahV41icXyUY5kSTvVY= -cloud.google.com/go/eventarc v1.12.1/go.mod h1:mAFCW6lukH5+IZjkvrEss+jmt2kOdYlN8aMx3sRJiAI= -cloud.google.com/go/eventarc v1.13.0/go.mod h1:mAFCW6lukH5+IZjkvrEss+jmt2kOdYlN8aMx3sRJiAI= -cloud.google.com/go/filestore v1.3.0/go.mod h1:+qbvHGvXU1HaKX2nD0WEPo92TP/8AQuCVEBXNY9z0+w= -cloud.google.com/go/filestore v1.4.0/go.mod h1:PaG5oDfo9r224f8OYXURtAsY+Fbyq/bLYoINEK8XQAI= -cloud.google.com/go/filestore v1.5.0/go.mod h1:FqBXDWBp4YLHqRnVGveOkHDf8svj9r5+mUDLupOWEDs= -cloud.google.com/go/filestore v1.6.0/go.mod h1:di5unNuss/qfZTw2U9nhFqo8/ZDSc466dre85Kydllg= -cloud.google.com/go/filestore v1.7.1/go.mod h1:y10jsorq40JJnjR/lQ8AfFbbcGlw3g+Dp8oN7i7FjV4= -cloud.google.com/go/firestore v1.9.0/go.mod h1:HMkjKHNTtRyZNiMzu7YAsLr9K3X2udY2AMwDaMEQiiE= -cloud.google.com/go/firestore v1.11.0/go.mod h1:b38dKhgzlmNNGTNZZwe7ZRFEuRab1Hay3/DBsIGKKy4= -cloud.google.com/go/firestore v1.12.0/go.mod h1:b38dKhgzlmNNGTNZZwe7ZRFEuRab1Hay3/DBsIGKKy4= -cloud.google.com/go/functions v1.6.0/go.mod h1:3H1UA3qiIPRWD7PeZKLvHZ9SaQhR26XIJcC0A5GbvAk= -cloud.google.com/go/functions v1.7.0/go.mod h1:+d+QBcWM+RsrgZfV9xo6KfA1GlzJfxcfZcRPEhDDfzg= -cloud.google.com/go/functions v1.8.0/go.mod h1:RTZ4/HsQjIqIYP9a9YPbU+QFoQsAlYgrwOXJWHn1POY= -cloud.google.com/go/functions v1.9.0/go.mod h1:Y+Dz8yGguzO3PpIjhLTbnqV1CWmgQ5UwtlpzoyquQ08= -cloud.google.com/go/functions v1.10.0/go.mod h1:0D3hEOe3DbEvCXtYOZHQZmD+SzYsi1YbI7dGvHfldXw= -cloud.google.com/go/functions v1.12.0/go.mod h1:AXWGrF3e2C/5ehvwYo/GH6O5s09tOPksiKhz+hH8WkA= -cloud.google.com/go/functions v1.13.0/go.mod h1:EU4O007sQm6Ef/PwRsI8N2umygGqPBS/IZQKBQBcJ3c= -cloud.google.com/go/functions v1.15.1/go.mod h1:P5yNWUTkyU+LvW/S9O6V+V423VZooALQlqoXdoPz5AE= -cloud.google.com/go/gaming v1.5.0/go.mod h1:ol7rGcxP/qHTRQE/RO4bxkXq+Fix0j6D4LFPzYTIrDM= -cloud.google.com/go/gaming v1.6.0/go.mod h1:YMU1GEvA39Qt3zWGyAVA9bpYz/yAhTvaQ1t2sK4KPUA= -cloud.google.com/go/gaming v1.7.0/go.mod h1:LrB8U7MHdGgFG851iHAfqUdLcKBdQ55hzXy9xBJz0+w= -cloud.google.com/go/gaming v1.8.0/go.mod h1:xAqjS8b7jAVW0KFYeRUxngo9My3f33kFmua++Pi+ggM= -cloud.google.com/go/gaming v1.9.0/go.mod h1:Fc7kEmCObylSWLO334NcO+O9QMDyz+TKC4v1D7X+Bc0= -cloud.google.com/go/gaming v1.10.1/go.mod h1:XQQvtfP8Rb9Rxnxm5wFVpAp9zCQkJi2bLIb7iHGwB3s= -cloud.google.com/go/gkebackup v0.2.0/go.mod h1:XKvv/4LfG829/B8B7xRkk8zRrOEbKtEam6yNfuQNH60= -cloud.google.com/go/gkebackup v0.3.0/go.mod h1:n/E671i1aOQvUxT541aTkCwExO/bTer2HDlj4TsBRAo= -cloud.google.com/go/gkebackup v0.4.0/go.mod h1:byAyBGUwYGEEww7xsbnUTBHIYcOPy/PgUWUtOeRm9Vg= -cloud.google.com/go/gkebackup v1.3.0/go.mod h1:vUDOu++N0U5qs4IhG1pcOnD1Mac79xWy6GoBFlWCWBU= -cloud.google.com/go/gkeconnect v0.5.0/go.mod h1:c5lsNAg5EwAy7fkqX/+goqFsU1Da/jQFqArp+wGNr/o= -cloud.google.com/go/gkeconnect v0.6.0/go.mod h1:Mln67KyU/sHJEBY8kFZ0xTeyPtzbq9StAVvEULYK16A= -cloud.google.com/go/gkeconnect v0.7.0/go.mod h1:SNfmVqPkaEi3bF/B3CNZOAYPYdg7sU+obZ+QTky2Myw= -cloud.google.com/go/gkeconnect v0.8.1/go.mod h1:KWiK1g9sDLZqhxB2xEuPV8V9NYzrqTUmQR9shJHpOZw= -cloud.google.com/go/gkehub v0.9.0/go.mod h1:WYHN6WG8w9bXU0hqNxt8rm5uxnk8IH+lPY9J2TV7BK0= -cloud.google.com/go/gkehub v0.10.0/go.mod h1:UIPwxI0DsrpsVoWpLB0stwKCP+WFVG9+y977wO+hBH0= -cloud.google.com/go/gkehub v0.11.0/go.mod h1:JOWHlmN+GHyIbuWQPl47/C2RFhnFKH38jH9Ascu3n0E= -cloud.google.com/go/gkehub v0.12.0/go.mod h1:djiIwwzTTBrF5NaXCGv3mf7klpEMcST17VBTVVDcuaw= -cloud.google.com/go/gkehub v0.14.1/go.mod h1:VEXKIJZ2avzrbd7u+zeMtW00Y8ddk/4V9511C9CQGTY= -cloud.google.com/go/gkemulticloud v0.3.0/go.mod h1:7orzy7O0S+5kq95e4Hpn7RysVA7dPs8W/GgfUtsPbrA= -cloud.google.com/go/gkemulticloud v0.4.0/go.mod h1:E9gxVBnseLWCk24ch+P9+B2CoDFJZTyIgLKSalC7tuI= -cloud.google.com/go/gkemulticloud v0.5.0/go.mod h1:W0JDkiyi3Tqh0TJr//y19wyb1yf8llHVto2Htf2Ja3Y= -cloud.google.com/go/gkemulticloud v0.6.1/go.mod h1:kbZ3HKyTsiwqKX7Yw56+wUGwwNZViRnxWK2DVknXWfw= -cloud.google.com/go/gkemulticloud v1.0.0/go.mod h1:kbZ3HKyTsiwqKX7Yw56+wUGwwNZViRnxWK2DVknXWfw= -cloud.google.com/go/grafeas v0.2.0/go.mod h1:KhxgtF2hb0P191HlY5besjYm6MqTSTj3LSI+M+ByZHc= -cloud.google.com/go/grafeas v0.3.0/go.mod h1:P7hgN24EyONOTMyeJH6DxG4zD7fwiYa5Q6GUgyFSOU8= -cloud.google.com/go/gsuiteaddons v1.3.0/go.mod h1:EUNK/J1lZEZO8yPtykKxLXI6JSVN2rg9bN8SXOa0bgM= -cloud.google.com/go/gsuiteaddons v1.4.0/go.mod h1:rZK5I8hht7u7HxFQcFei0+AtfS9uSushomRlg+3ua1o= -cloud.google.com/go/gsuiteaddons v1.5.0/go.mod h1:TFCClYLd64Eaa12sFVmUyG62tk4mdIsI7pAnSXRkcFo= -cloud.google.com/go/gsuiteaddons v1.6.1/go.mod h1:CodrdOqRZcLp5WOwejHWYBjZvfY0kOphkAKpF/3qdZY= -cloud.google.com/go/iam v0.1.0/go.mod h1:vcUNEa0pEm0qRVpmWepWaFMIAI8/hjB9mO8rNCJtF6c= -cloud.google.com/go/iam v0.3.0/go.mod h1:XzJPvDayI+9zsASAFO68Hk07u3z+f+JrT2xXNdp4bnY= -cloud.google.com/go/iam v0.5.0/go.mod h1:wPU9Vt0P4UmCux7mqtRu6jcpPAb74cP1fh50J3QpkUc= -cloud.google.com/go/iam v0.6.0/go.mod h1:+1AH33ueBne5MzYccyMHtEKqLE4/kJOibtffMHDMFMc= -cloud.google.com/go/iam v0.7.0/go.mod h1:H5Br8wRaDGNc8XP3keLc4unfUUZeyH3Sfl9XpQEYOeg= -cloud.google.com/go/iam v0.8.0/go.mod h1:lga0/y3iH6CX7sYqypWJ33hf7kkfXJag67naqGESjkE= -cloud.google.com/go/iam v0.11.0/go.mod h1:9PiLDanza5D+oWFZiH1uG+RnRCfEGKoyl6yo4cgWZGY= -cloud.google.com/go/iam v0.12.0/go.mod h1:knyHGviacl11zrtZUoDuYpDgLjvr28sLQaG0YB2GYAY= -cloud.google.com/go/iam v0.13.0/go.mod h1:ljOg+rcNfzZ5d6f1nAUJ8ZIxOaZUVoS14bKCtaLZ/D0= -cloud.google.com/go/iam v1.0.1/go.mod h1:yR3tmSL8BcZB4bxByRv2jkSIahVmCtfKZwLYGBalRE8= -cloud.google.com/go/iam v1.1.0/go.mod h1:nxdHjaKfCr7fNYx/HJMM8LgiMugmveWlkatear5gVyk= -cloud.google.com/go/iam v1.1.1/go.mod h1:A5avdyVL2tCppe4unb0951eI9jreack+RJ0/d+KUZOU= -cloud.google.com/go/iap v1.4.0/go.mod h1:RGFwRJdihTINIe4wZ2iCP0zF/qu18ZwyKxrhMhygBEc= -cloud.google.com/go/iap v1.5.0/go.mod h1:UH/CGgKd4KyohZL5Pt0jSKE4m3FR51qg6FKQ/z/Ix9A= -cloud.google.com/go/iap v1.6.0/go.mod h1:NSuvI9C/j7UdjGjIde7t7HBz+QTwBcapPE07+sSRcLk= -cloud.google.com/go/iap v1.7.0/go.mod h1:beqQx56T9O1G1yNPph+spKpNibDlYIiIixiqsQXxLIo= -cloud.google.com/go/iap v1.7.1/go.mod h1:WapEwPc7ZxGt2jFGB/C/bm+hP0Y6NXzOYGjpPnmMS74= -cloud.google.com/go/iap v1.8.1/go.mod h1:sJCbeqg3mvWLqjZNsI6dfAtbbV1DL2Rl7e1mTyXYREQ= -cloud.google.com/go/ids v1.1.0/go.mod h1:WIuwCaYVOzHIj2OhN9HAwvW+DBdmUAdcWlFxRl+KubM= -cloud.google.com/go/ids v1.2.0/go.mod h1:5WXvp4n25S0rA/mQWAg1YEEBBq6/s+7ml1RDCW1IrcY= -cloud.google.com/go/ids v1.3.0/go.mod h1:JBdTYwANikFKaDP6LtW5JAi4gubs57SVNQjemdt6xV4= -cloud.google.com/go/ids v1.4.1/go.mod h1:np41ed8YMU8zOgv53MMMoCntLTn2lF+SUzlM+O3u/jw= -cloud.google.com/go/iot v1.3.0/go.mod h1:r7RGh2B61+B8oz0AGE+J72AhA0G7tdXItODWsaA2oLs= -cloud.google.com/go/iot v1.4.0/go.mod h1:dIDxPOn0UvNDUMD8Ger7FIaTuvMkj+aGk94RPP0iV+g= -cloud.google.com/go/iot v1.5.0/go.mod h1:mpz5259PDl3XJthEmh9+ap0affn/MqNSP4My77Qql9o= -cloud.google.com/go/iot v1.6.0/go.mod h1:IqdAsmE2cTYYNO1Fvjfzo9po179rAtJeVGUvkLN3rLE= -cloud.google.com/go/iot v1.7.1/go.mod h1:46Mgw7ev1k9KqK1ao0ayW9h0lI+3hxeanz+L1zmbbbk= -cloud.google.com/go/kms v1.4.0/go.mod h1:fajBHndQ+6ubNw6Ss2sSd+SWvjL26RNo/dr7uxsnnOA= -cloud.google.com/go/kms v1.5.0/go.mod h1:QJS2YY0eJGBg3mnDfuaCyLauWwBJiHRboYxJ++1xJNg= -cloud.google.com/go/kms v1.6.0/go.mod h1:Jjy850yySiasBUDi6KFUwUv2n1+o7QZFyuUJg6OgjA0= -cloud.google.com/go/kms v1.8.0/go.mod h1:4xFEhYFqvW+4VMELtZyxomGSYtSQKzM178ylFW4jMAg= -cloud.google.com/go/kms v1.9.0/go.mod h1:qb1tPTgfF9RQP8e1wq4cLFErVuTJv7UsSC915J8dh3w= -cloud.google.com/go/kms v1.10.0/go.mod h1:ng3KTUtQQU9bPX3+QGLsflZIHlkbn8amFAMY63m8d24= -cloud.google.com/go/kms v1.10.1/go.mod h1:rIWk/TryCkR59GMC3YtHtXeLzd634lBbKenvyySAyYI= -cloud.google.com/go/kms v1.11.0/go.mod h1:hwdiYC0xjnWsKQQCQQmIQnS9asjYVSK6jtXm+zFqXLM= -cloud.google.com/go/kms v1.12.1/go.mod h1:c9J991h5DTl+kg7gi3MYomh12YEENGrf48ee/N/2CDM= -cloud.google.com/go/kms v1.15.0/go.mod h1:c9J991h5DTl+kg7gi3MYomh12YEENGrf48ee/N/2CDM= -cloud.google.com/go/language v1.4.0/go.mod h1:F9dRpNFQmJbkaop6g0JhSBXCNlO90e1KWx5iDdxbWic= -cloud.google.com/go/language v1.6.0/go.mod h1:6dJ8t3B+lUYfStgls25GusK04NLh3eDLQnWM3mdEbhI= -cloud.google.com/go/language v1.7.0/go.mod h1:DJ6dYN/W+SQOjF8e1hLQXMF21AkH2w9wiPzPCJa2MIE= -cloud.google.com/go/language v1.8.0/go.mod h1:qYPVHf7SPoNNiCL2Dr0FfEFNil1qi3pQEyygwpgVKB8= -cloud.google.com/go/language v1.9.0/go.mod h1:Ns15WooPM5Ad/5no/0n81yUetis74g3zrbeJBE+ptUY= -cloud.google.com/go/language v1.10.1/go.mod h1:CPp94nsdVNiQEt1CNjF5WkTcisLiHPyIbMhvR8H2AW0= -cloud.google.com/go/lifesciences v0.5.0/go.mod h1:3oIKy8ycWGPUyZDR/8RNnTOYevhaMLqh5vLUXs9zvT8= -cloud.google.com/go/lifesciences v0.6.0/go.mod h1:ddj6tSX/7BOnhxCSd3ZcETvtNr8NZ6t/iPhY2Tyfu08= -cloud.google.com/go/lifesciences v0.8.0/go.mod h1:lFxiEOMqII6XggGbOnKiyZ7IBwoIqA84ClvoezaA/bo= -cloud.google.com/go/lifesciences v0.9.1/go.mod h1:hACAOd1fFbCGLr/+weUKRAJas82Y4vrL3O5326N//Wc= -cloud.google.com/go/logging v1.6.1/go.mod h1:5ZO0mHHbvm8gEmeEUHrmDlTDSu5imF6MUP9OfilNXBw= -cloud.google.com/go/logging v1.7.0/go.mod h1:3xjP2CjkM3ZkO73aj4ASA5wRPGGCRrPIAeNqVNkzY8M= -cloud.google.com/go/longrunning v0.1.1/go.mod h1:UUFxuDWkv22EuY93jjmDMFT5GPQKeFVJBIF6QlTqdsE= -cloud.google.com/go/longrunning v0.3.0/go.mod h1:qth9Y41RRSUE69rDcOn6DdK3HfQfsUI0YSmW3iIlLJc= -cloud.google.com/go/longrunning v0.4.1/go.mod h1:4iWDqhBZ70CvZ6BfETbvam3T8FMvLK+eFj0E6AaRQTo= -cloud.google.com/go/longrunning v0.4.2/go.mod h1:OHrnaYyLUV6oqwh0xiS7e5sLQhP1m0QU9R+WhGDMgIQ= -cloud.google.com/go/longrunning v0.5.0/go.mod h1:0JNuqRShmscVAhIACGtskSAWtqtOoPkwP0YF1oVEchc= -cloud.google.com/go/longrunning v0.5.1/go.mod h1:spvimkwdz6SPWKEt/XBij79E9fiTkHSQl/fRUUQJYJc= -cloud.google.com/go/managedidentities v1.3.0/go.mod h1:UzlW3cBOiPrzucO5qWkNkh0w33KFtBJU281hacNvsdE= -cloud.google.com/go/managedidentities v1.4.0/go.mod h1:NWSBYbEMgqmbZsLIyKvxrYbtqOsxY1ZrGM+9RgDqInM= -cloud.google.com/go/managedidentities v1.5.0/go.mod h1:+dWcZ0JlUmpuxpIDfyP5pP5y0bLdRwOS4Lp7gMni/LA= -cloud.google.com/go/managedidentities v1.6.1/go.mod h1:h/irGhTN2SkZ64F43tfGPMbHnypMbu4RB3yl8YcuEak= -cloud.google.com/go/maps v0.1.0/go.mod h1:BQM97WGyfw9FWEmQMpZ5T6cpovXXSd1cGmFma94eubI= -cloud.google.com/go/maps v0.6.0/go.mod h1:o6DAMMfb+aINHz/p/jbcY+mYeXBoZoxTfdSQ8VAJaCw= -cloud.google.com/go/maps v0.7.0/go.mod h1:3GnvVl3cqeSvgMcpRlQidXsPYuDGQ8naBis7MVzpXsY= -cloud.google.com/go/maps v1.3.0/go.mod h1:6mWTUv+WhnOwAgjVsSW2QPPECmW+s3PcRyOa9vgG/5s= -cloud.google.com/go/maps v1.4.0/go.mod h1:6mWTUv+WhnOwAgjVsSW2QPPECmW+s3PcRyOa9vgG/5s= -cloud.google.com/go/mediatranslation v0.5.0/go.mod h1:jGPUhGTybqsPQn91pNXw0xVHfuJ3leR1wj37oU3y1f4= -cloud.google.com/go/mediatranslation v0.6.0/go.mod h1:hHdBCTYNigsBxshbznuIMFNe5QXEowAuNmmC7h8pu5w= -cloud.google.com/go/mediatranslation v0.7.0/go.mod h1:LCnB/gZr90ONOIQLgSXagp8XUW1ODs2UmUMvcgMfI2I= -cloud.google.com/go/mediatranslation v0.8.1/go.mod h1:L/7hBdEYbYHQJhX2sldtTO5SZZ1C1vkapubj0T2aGig= -cloud.google.com/go/memcache v1.4.0/go.mod h1:rTOfiGZtJX1AaFUrOgsMHX5kAzaTQ8azHiuDoTPzNsE= -cloud.google.com/go/memcache v1.5.0/go.mod h1:dk3fCK7dVo0cUU2c36jKb4VqKPS22BTkf81Xq617aWM= -cloud.google.com/go/memcache v1.6.0/go.mod h1:XS5xB0eQZdHtTuTF9Hf8eJkKtR3pVRCcvJwtm68T3rA= -cloud.google.com/go/memcache v1.7.0/go.mod h1:ywMKfjWhNtkQTxrWxCkCFkoPjLHPW6A7WOTVI8xy3LY= -cloud.google.com/go/memcache v1.9.0/go.mod h1:8oEyzXCu+zo9RzlEaEjHl4KkgjlNDaXbCQeQWlzNFJM= -cloud.google.com/go/memcache v1.10.1/go.mod h1:47YRQIarv4I3QS5+hoETgKO40InqzLP6kpNLvyXuyaA= -cloud.google.com/go/metastore v1.5.0/go.mod h1:2ZNrDcQwghfdtCwJ33nM0+GrBGlVuh8rakL3vdPY3XY= -cloud.google.com/go/metastore v1.6.0/go.mod h1:6cyQTls8CWXzk45G55x57DVQ9gWg7RiH65+YgPsNh9s= -cloud.google.com/go/metastore v1.7.0/go.mod h1:s45D0B4IlsINu87/AsWiEVYbLaIMeUSoxlKKDqBGFS8= -cloud.google.com/go/metastore v1.8.0/go.mod h1:zHiMc4ZUpBiM7twCIFQmJ9JMEkDSyZS9U12uf7wHqSI= -cloud.google.com/go/metastore v1.10.0/go.mod h1:fPEnH3g4JJAk+gMRnrAnoqyv2lpUCqJPWOodSaf45Eo= -cloud.google.com/go/metastore v1.11.1/go.mod h1:uZuSo80U3Wd4zi6C22ZZliOUJ3XeM/MlYi/z5OAOWRA= -cloud.google.com/go/metastore v1.12.0/go.mod h1:uZuSo80U3Wd4zi6C22ZZliOUJ3XeM/MlYi/z5OAOWRA= -cloud.google.com/go/monitoring v1.7.0/go.mod h1:HpYse6kkGo//7p6sT0wsIC6IBDET0RhIsnmlA53dvEk= -cloud.google.com/go/monitoring v1.8.0/go.mod h1:E7PtoMJ1kQXWxPjB6mv2fhC5/15jInuulFdYYtlcvT4= -cloud.google.com/go/monitoring v1.12.0/go.mod h1:yx8Jj2fZNEkL/GYZyTLS4ZtZEZN8WtDEiEqG4kLK50w= -cloud.google.com/go/monitoring v1.13.0/go.mod h1:k2yMBAB1H9JT/QETjNkgdCGD9bPF712XiLTVr+cBrpw= -cloud.google.com/go/monitoring v1.15.1/go.mod h1:lADlSAlFdbqQuwwpaImhsJXu1QSdd3ojypXrFSMr2rM= -cloud.google.com/go/networkconnectivity v1.4.0/go.mod h1:nOl7YL8odKyAOtzNX73/M5/mGZgqqMeryi6UPZTk/rA= -cloud.google.com/go/networkconnectivity v1.5.0/go.mod h1:3GzqJx7uhtlM3kln0+x5wyFvuVH1pIBJjhCpjzSt75o= -cloud.google.com/go/networkconnectivity v1.6.0/go.mod h1:OJOoEXW+0LAxHh89nXd64uGG+FbQoeH8DtxCHVOMlaM= -cloud.google.com/go/networkconnectivity v1.7.0/go.mod h1:RMuSbkdbPwNMQjB5HBWD5MpTBnNm39iAVpC3TmsExt8= -cloud.google.com/go/networkconnectivity v1.10.0/go.mod h1:UP4O4sWXJG13AqrTdQCD9TnLGEbtNRqjuaaA7bNjF5E= -cloud.google.com/go/networkconnectivity v1.11.0/go.mod h1:iWmDD4QF16VCDLXUqvyspJjIEtBR/4zq5hwnY2X3scM= -cloud.google.com/go/networkconnectivity v1.12.1/go.mod h1:PelxSWYM7Sh9/guf8CFhi6vIqf19Ir/sbfZRUwXh92E= -cloud.google.com/go/networkmanagement v1.4.0/go.mod h1:Q9mdLLRn60AsOrPc8rs8iNV6OHXaGcDdsIQe1ohekq8= -cloud.google.com/go/networkmanagement v1.5.0/go.mod h1:ZnOeZ/evzUdUsnvRt792H0uYEnHQEMaz+REhhzJRcf4= -cloud.google.com/go/networkmanagement v1.6.0/go.mod h1:5pKPqyXjB/sgtvB5xqOemumoQNB7y95Q7S+4rjSOPYY= -cloud.google.com/go/networkmanagement v1.8.0/go.mod h1:Ho/BUGmtyEqrttTgWEe7m+8vDdK74ibQc+Be0q7Fof0= -cloud.google.com/go/networksecurity v0.5.0/go.mod h1:xS6fOCoqpVC5zx15Z/MqkfDwH4+m/61A3ODiDV1xmiQ= -cloud.google.com/go/networksecurity v0.6.0/go.mod h1:Q5fjhTr9WMI5mbpRYEbiexTzROf7ZbDzvzCrNl14nyU= -cloud.google.com/go/networksecurity v0.7.0/go.mod h1:mAnzoxx/8TBSyXEeESMy9OOYwo1v+gZ5eMRnsT5bC8k= -cloud.google.com/go/networksecurity v0.8.0/go.mod h1:B78DkqsxFG5zRSVuwYFRZ9Xz8IcQ5iECsNrPn74hKHU= -cloud.google.com/go/networksecurity v0.9.1/go.mod h1:MCMdxOKQ30wsBI1eI659f9kEp4wuuAueoC9AJKSPWZQ= -cloud.google.com/go/notebooks v1.2.0/go.mod h1:9+wtppMfVPUeJ8fIWPOq1UnATHISkGXGqTkxeieQ6UY= -cloud.google.com/go/notebooks v1.3.0/go.mod h1:bFR5lj07DtCPC7YAAJ//vHskFBxA5JzYlH68kXVdk34= -cloud.google.com/go/notebooks v1.4.0/go.mod h1:4QPMngcwmgb6uw7Po99B2xv5ufVoIQ7nOGDyL4P8AgA= -cloud.google.com/go/notebooks v1.5.0/go.mod h1:q8mwhnP9aR8Hpfnrc5iN5IBhrXUy8S2vuYs+kBJ/gu0= -cloud.google.com/go/notebooks v1.7.0/go.mod h1:PVlaDGfJgj1fl1S3dUwhFMXFgfYGhYQt2164xOMONmE= -cloud.google.com/go/notebooks v1.8.0/go.mod h1:Lq6dYKOYOWUCTvw5t2q1gp1lAp0zxAxRycayS0iJcqQ= -cloud.google.com/go/notebooks v1.9.1/go.mod h1:zqG9/gk05JrzgBt4ghLzEepPHNwE5jgPcHZRKhlC1A8= -cloud.google.com/go/optimization v1.1.0/go.mod h1:5po+wfvX5AQlPznyVEZjGJTMr4+CAkJf2XSTQOOl9l4= -cloud.google.com/go/optimization v1.2.0/go.mod h1:Lr7SOHdRDENsh+WXVmQhQTrzdu9ybg0NecjHidBq6xs= -cloud.google.com/go/optimization v1.3.1/go.mod h1:IvUSefKiwd1a5p0RgHDbWCIbDFgKuEdB+fPPuP0IDLI= -cloud.google.com/go/optimization v1.4.1/go.mod h1:j64vZQP7h9bO49m2rVaTVoNM0vEBEN5eKPUPbZyXOrk= -cloud.google.com/go/orchestration v1.3.0/go.mod h1:Sj5tq/JpWiB//X/q3Ngwdl5K7B7Y0KZ7bfv0wL6fqVA= -cloud.google.com/go/orchestration v1.4.0/go.mod h1:6W5NLFWs2TlniBphAViZEVhrXRSMgUGDfW7vrWKvsBk= -cloud.google.com/go/orchestration v1.6.0/go.mod h1:M62Bevp7pkxStDfFfTuCOaXgaaqRAga1yKyoMtEoWPQ= -cloud.google.com/go/orchestration v1.8.1/go.mod h1:4sluRF3wgbYVRqz7zJ1/EUNc90TTprliq9477fGobD8= -cloud.google.com/go/orgpolicy v1.4.0/go.mod h1:xrSLIV4RePWmP9P3tBl8S93lTmlAxjm06NSm2UTmKvE= -cloud.google.com/go/orgpolicy v1.5.0/go.mod h1:hZEc5q3wzwXJaKrsx5+Ewg0u1LxJ51nNFlext7Tanwc= -cloud.google.com/go/orgpolicy v1.10.0/go.mod h1:w1fo8b7rRqlXlIJbVhOMPrwVljyuW5mqssvBtU18ONc= -cloud.google.com/go/orgpolicy v1.11.0/go.mod h1:2RK748+FtVvnfuynxBzdnyu7sygtoZa1za/0ZfpOs1M= -cloud.google.com/go/orgpolicy v1.11.1/go.mod h1:8+E3jQcpZJQliP+zaFfayC2Pg5bmhuLK755wKhIIUCE= -cloud.google.com/go/osconfig v1.7.0/go.mod h1:oVHeCeZELfJP7XLxcBGTMBvRO+1nQ5tFG9VQTmYS2Fs= -cloud.google.com/go/osconfig v1.8.0/go.mod h1:EQqZLu5w5XA7eKizepumcvWx+m8mJUhEwiPqWiZeEdg= -cloud.google.com/go/osconfig v1.9.0/go.mod h1:Yx+IeIZJ3bdWmzbQU4fxNl8xsZ4amB+dygAwFPlvnNo= -cloud.google.com/go/osconfig v1.10.0/go.mod h1:uMhCzqC5I8zfD9zDEAfvgVhDS8oIjySWh+l4WK6GnWw= -cloud.google.com/go/osconfig v1.11.0/go.mod h1:aDICxrur2ogRd9zY5ytBLV89KEgT2MKB2L/n6x1ooPw= -cloud.google.com/go/osconfig v1.12.0/go.mod h1:8f/PaYzoS3JMVfdfTubkowZYGmAhUCjjwnjqWI7NVBc= -cloud.google.com/go/osconfig v1.12.1/go.mod h1:4CjBxND0gswz2gfYRCUoUzCm9zCABp91EeTtWXyz0tE= -cloud.google.com/go/oslogin v1.4.0/go.mod h1:YdgMXWRaElXz/lDk1Na6Fh5orF7gvmJ0FGLIs9LId4E= -cloud.google.com/go/oslogin v1.5.0/go.mod h1:D260Qj11W2qx/HVF29zBg+0fd6YCSjSqLUkY/qEenQU= -cloud.google.com/go/oslogin v1.6.0/go.mod h1:zOJ1O3+dTU8WPlGEkFSh7qeHPPSoxrcMbbK1Nm2iX70= -cloud.google.com/go/oslogin v1.7.0/go.mod h1:e04SN0xO1UNJ1M5GP0vzVBFicIe4O53FOfcixIqTyXo= -cloud.google.com/go/oslogin v1.9.0/go.mod h1:HNavntnH8nzrn8JCTT5fj18FuJLFJc4NaZJtBnQtKFs= -cloud.google.com/go/oslogin v1.10.1/go.mod h1:x692z7yAue5nE7CsSnoG0aaMbNoRJRXO4sn73R+ZqAs= -cloud.google.com/go/phishingprotection v0.5.0/go.mod h1:Y3HZknsK9bc9dMi+oE8Bim0lczMU6hrX0UpADuMefr0= -cloud.google.com/go/phishingprotection v0.6.0/go.mod h1:9Y3LBLgy0kDTcYET8ZH3bq/7qni15yVUoAxiFxnlSUA= -cloud.google.com/go/phishingprotection v0.7.0/go.mod h1:8qJI4QKHoda/sb/7/YmMQ2omRLSLYSu9bU0EKCNI+Lk= -cloud.google.com/go/phishingprotection v0.8.1/go.mod h1:AxonW7GovcA8qdEk13NfHq9hNx5KPtfxXNeUxTDxB6I= -cloud.google.com/go/policytroubleshooter v1.3.0/go.mod h1:qy0+VwANja+kKrjlQuOzmlvscn4RNsAc0e15GGqfMxg= -cloud.google.com/go/policytroubleshooter v1.4.0/go.mod h1:DZT4BcRw3QoO8ota9xw/LKtPa8lKeCByYeKTIf/vxdE= -cloud.google.com/go/policytroubleshooter v1.5.0/go.mod h1:Rz1WfV+1oIpPdN2VvvuboLVRsB1Hclg3CKQ53j9l8vw= -cloud.google.com/go/policytroubleshooter v1.6.0/go.mod h1:zYqaPTsmfvpjm5ULxAyD/lINQxJ0DDsnWOP/GZ7xzBc= -cloud.google.com/go/policytroubleshooter v1.7.1/go.mod h1:0NaT5v3Ag1M7U5r0GfDCpUFkWd9YqpubBWsQlhanRv0= -cloud.google.com/go/policytroubleshooter v1.8.0/go.mod h1:tmn5Ir5EToWe384EuboTcVQT7nTag2+DuH3uHmKd1HU= -cloud.google.com/go/privatecatalog v0.5.0/go.mod h1:XgosMUvvPyxDjAVNDYxJ7wBW8//hLDDYmnsNcMGq1K0= -cloud.google.com/go/privatecatalog v0.6.0/go.mod h1:i/fbkZR0hLN29eEWiiwue8Pb+GforiEIBnV9yrRUOKI= -cloud.google.com/go/privatecatalog v0.7.0/go.mod h1:2s5ssIFO69F5csTXcwBP7NPFTZvps26xGzvQ2PQaBYg= -cloud.google.com/go/privatecatalog v0.8.0/go.mod h1:nQ6pfaegeDAq/Q5lrfCQzQLhubPiZhSaNhIgfJlnIXs= -cloud.google.com/go/privatecatalog v0.9.1/go.mod h1:0XlDXW2unJXdf9zFz968Hp35gl/bhF4twwpXZAW50JA= -cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= -cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= -cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= -cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= -cloud.google.com/go/pubsub v1.26.0/go.mod h1:QgBH3U/jdJy/ftjPhTkyXNj543Tin1pRYcdcPRnFIRI= -cloud.google.com/go/pubsub v1.27.1/go.mod h1:hQN39ymbV9geqBnfQq6Xf63yNhUAhv9CZhzp5O6qsW0= -cloud.google.com/go/pubsub v1.28.0/go.mod h1:vuXFpwaVoIPQMGXqRyUQigu/AX1S3IWugR9xznmcXX8= -cloud.google.com/go/pubsub v1.30.0/go.mod h1:qWi1OPS0B+b5L+Sg6Gmc9zD1Y+HaM0MdUr7LsupY1P4= -cloud.google.com/go/pubsub v1.32.0/go.mod h1:f+w71I33OMyxf9VpMVcZbnG5KSUkCOUHYpFd5U1GdRc= -cloud.google.com/go/pubsub v1.33.0/go.mod h1:f+w71I33OMyxf9VpMVcZbnG5KSUkCOUHYpFd5U1GdRc= -cloud.google.com/go/pubsublite v1.5.0/go.mod h1:xapqNQ1CuLfGi23Yda/9l4bBCKz/wC3KIJ5gKcxveZg= -cloud.google.com/go/pubsublite v1.6.0/go.mod h1:1eFCS0U11xlOuMFV/0iBqw3zP12kddMeCbj/F3FSj9k= -cloud.google.com/go/pubsublite v1.7.0/go.mod h1:8hVMwRXfDfvGm3fahVbtDbiLePT3gpoiJYJY+vxWxVM= -cloud.google.com/go/pubsublite v1.8.1/go.mod h1:fOLdU4f5xldK4RGJrBMm+J7zMWNj/k4PxwEZXy39QS0= -cloud.google.com/go/recaptchaenterprise v1.3.1/go.mod h1:OdD+q+y4XGeAlxRaMn1Y7/GveP6zmq76byL6tjPE7d4= -cloud.google.com/go/recaptchaenterprise/v2 v2.1.0/go.mod h1:w9yVqajwroDNTfGuhmOjPDN//rZGySaf6PtFVcSCa7o= -cloud.google.com/go/recaptchaenterprise/v2 v2.2.0/go.mod h1:/Zu5jisWGeERrd5HnlS3EUGb/D335f9k51B/FVil0jk= -cloud.google.com/go/recaptchaenterprise/v2 v2.3.0/go.mod h1:O9LwGCjrhGHBQET5CA7dd5NwwNQUErSgEDit1DLNTdo= -cloud.google.com/go/recaptchaenterprise/v2 v2.4.0/go.mod h1:Am3LHfOuBstrLrNCBrlI5sbwx9LBg3te2N6hGvHn2mE= -cloud.google.com/go/recaptchaenterprise/v2 v2.5.0/go.mod h1:O8LzcHXN3rz0j+LBC91jrwI3R+1ZSZEWrfL7XHgNo9U= -cloud.google.com/go/recaptchaenterprise/v2 v2.6.0/go.mod h1:RPauz9jeLtB3JVzg6nCbe12qNoaa8pXc4d/YukAmcnA= -cloud.google.com/go/recaptchaenterprise/v2 v2.7.0/go.mod h1:19wVj/fs5RtYtynAPJdDTb69oW0vNHYDBTbB4NvMD9c= -cloud.google.com/go/recaptchaenterprise/v2 v2.7.2/go.mod h1:kR0KjsJS7Jt1YSyWFkseQ756D45kaYNTlDPPaRAvDBU= -cloud.google.com/go/recommendationengine v0.5.0/go.mod h1:E5756pJcVFeVgaQv3WNpImkFP8a+RptV6dDLGPILjvg= -cloud.google.com/go/recommendationengine v0.6.0/go.mod h1:08mq2umu9oIqc7tDy8sx+MNJdLG0fUi3vaSVbztHgJ4= -cloud.google.com/go/recommendationengine v0.7.0/go.mod h1:1reUcE3GIu6MeBz/h5xZJqNLuuVjNg1lmWMPyjatzac= -cloud.google.com/go/recommendationengine v0.8.1/go.mod h1:MrZihWwtFYWDzE6Hz5nKcNz3gLizXVIDI/o3G1DLcrE= -cloud.google.com/go/recommender v1.5.0/go.mod h1:jdoeiBIVrJe9gQjwd759ecLJbxCDED4A6p+mqoqDvTg= -cloud.google.com/go/recommender v1.6.0/go.mod h1:+yETpm25mcoiECKh9DEScGzIRyDKpZ0cEhWGo+8bo+c= -cloud.google.com/go/recommender v1.7.0/go.mod h1:XLHs/W+T8olwlGOgfQenXBTbIseGclClff6lhFVe9Bs= -cloud.google.com/go/recommender v1.8.0/go.mod h1:PkjXrTT05BFKwxaUxQmtIlrtj0kph108r02ZZQ5FE70= -cloud.google.com/go/recommender v1.9.0/go.mod h1:PnSsnZY7q+VL1uax2JWkt/UegHssxjUVVCrX52CuEmQ= -cloud.google.com/go/recommender v1.10.1/go.mod h1:XFvrE4Suqn5Cq0Lf+mCP6oBHD/yRMA8XxP5sb7Q7gpA= -cloud.google.com/go/redis v1.7.0/go.mod h1:V3x5Jq1jzUcg+UNsRvdmsfuFnit1cfe3Z/PGyq/lm4Y= -cloud.google.com/go/redis v1.8.0/go.mod h1:Fm2szCDavWzBk2cDKxrkmWBqoCiL1+Ctwq7EyqBCA/A= -cloud.google.com/go/redis v1.9.0/go.mod h1:HMYQuajvb2D0LvMgZmLDZW8V5aOC/WxstZHiy4g8OiA= -cloud.google.com/go/redis v1.10.0/go.mod h1:ThJf3mMBQtW18JzGgh41/Wld6vnDDc/F/F35UolRZPM= -cloud.google.com/go/redis v1.11.0/go.mod h1:/X6eicana+BWcUda5PpwZC48o37SiFVTFSs0fWAJ7uQ= -cloud.google.com/go/redis v1.13.1/go.mod h1:VP7DGLpE91M6bcsDdMuyCm2hIpB6Vp2hI090Mfd1tcg= -cloud.google.com/go/resourcemanager v1.3.0/go.mod h1:bAtrTjZQFJkiWTPDb1WBjzvc6/kifjj4QBYuKCCoqKA= -cloud.google.com/go/resourcemanager v1.4.0/go.mod h1:MwxuzkumyTX7/a3n37gmsT3py7LIXwrShilPh3P1tR0= -cloud.google.com/go/resourcemanager v1.5.0/go.mod h1:eQoXNAiAvCf5PXxWxXjhKQoTMaUSNrEfg+6qdf/wots= -cloud.google.com/go/resourcemanager v1.6.0/go.mod h1:YcpXGRs8fDzcUl1Xw8uOVmI8JEadvhRIkoXXUNVYcVo= -cloud.google.com/go/resourcemanager v1.7.0/go.mod h1:HlD3m6+bwhzj9XCouqmeiGuni95NTrExfhoSrkC/3EI= -cloud.google.com/go/resourcemanager v1.9.1/go.mod h1:dVCuosgrh1tINZ/RwBufr8lULmWGOkPS8gL5gqyjdT8= -cloud.google.com/go/resourcesettings v1.3.0/go.mod h1:lzew8VfESA5DQ8gdlHwMrqZs1S9V87v3oCnKCWoOuQU= -cloud.google.com/go/resourcesettings v1.4.0/go.mod h1:ldiH9IJpcrlC3VSuCGvjR5of/ezRrOxFtpJoJo5SmXg= -cloud.google.com/go/resourcesettings v1.5.0/go.mod h1:+xJF7QSG6undsQDfsCJyqWXyBwUoJLhetkRMDRnIoXA= -cloud.google.com/go/resourcesettings v1.6.1/go.mod h1:M7mk9PIZrC5Fgsu1kZJci6mpgN8o0IUzVx3eJU3y4Jw= -cloud.google.com/go/retail v1.8.0/go.mod h1:QblKS8waDmNUhghY2TI9O3JLlFk8jybHeV4BF19FrE4= -cloud.google.com/go/retail v1.9.0/go.mod h1:g6jb6mKuCS1QKnH/dpu7isX253absFl6iE92nHwlBUY= -cloud.google.com/go/retail v1.10.0/go.mod h1:2gDk9HsL4HMS4oZwz6daui2/jmKvqShXKQuB2RZ+cCc= -cloud.google.com/go/retail v1.11.0/go.mod h1:MBLk1NaWPmh6iVFSz9MeKG/Psyd7TAgm6y/9L2B4x9Y= -cloud.google.com/go/retail v1.12.0/go.mod h1:UMkelN/0Z8XvKymXFbD4EhFJlYKRx1FGhQkVPU5kF14= -cloud.google.com/go/retail v1.14.1/go.mod h1:y3Wv3Vr2k54dLNIrCzenyKG8g8dhvhncT2NcNjb/6gE= -cloud.google.com/go/run v0.2.0/go.mod h1:CNtKsTA1sDcnqqIFR3Pb5Tq0usWxJJvsWOCPldRU3Do= -cloud.google.com/go/run v0.3.0/go.mod h1:TuyY1+taHxTjrD0ZFk2iAR+xyOXEA0ztb7U3UNA0zBo= -cloud.google.com/go/run v0.8.0/go.mod h1:VniEnuBwqjigv0A7ONfQUaEItaiCRVujlMqerPPiktM= -cloud.google.com/go/run v0.9.0/go.mod h1:Wwu+/vvg8Y+JUApMwEDfVfhetv30hCG4ZwDR/IXl2Qg= -cloud.google.com/go/run v1.2.0/go.mod h1:36V1IlDzQ0XxbQjUx6IYbw8H3TJnWvhii963WW3B/bo= -cloud.google.com/go/scheduler v1.4.0/go.mod h1:drcJBmxF3aqZJRhmkHQ9b3uSSpQoltBPGPxGAWROx6s= -cloud.google.com/go/scheduler v1.5.0/go.mod h1:ri073ym49NW3AfT6DZi21vLZrG07GXr5p3H1KxN5QlI= -cloud.google.com/go/scheduler v1.6.0/go.mod h1:SgeKVM7MIwPn3BqtcBntpLyrIJftQISRrYB5ZtT+KOk= -cloud.google.com/go/scheduler v1.7.0/go.mod h1:jyCiBqWW956uBjjPMMuX09n3x37mtyPJegEWKxRsn44= -cloud.google.com/go/scheduler v1.8.0/go.mod h1:TCET+Y5Gp1YgHT8py4nlg2Sew8nUHMqcpousDgXJVQc= -cloud.google.com/go/scheduler v1.9.0/go.mod h1:yexg5t+KSmqu+njTIh3b7oYPheFtBWGcbVUYF1GGMIc= -cloud.google.com/go/scheduler v1.10.1/go.mod h1:R63Ldltd47Bs4gnhQkmNDse5w8gBRrhObZ54PxgR2Oo= -cloud.google.com/go/secretmanager v1.6.0/go.mod h1:awVa/OXF6IiyaU1wQ34inzQNc4ISIDIrId8qE5QGgKA= -cloud.google.com/go/secretmanager v1.8.0/go.mod h1:hnVgi/bN5MYHd3Gt0SPuTPPp5ENina1/LxM+2W9U9J4= -cloud.google.com/go/secretmanager v1.9.0/go.mod h1:b71qH2l1yHmWQHt9LC80akm86mX8AL6X1MA01dW8ht4= -cloud.google.com/go/secretmanager v1.10.0/go.mod h1:MfnrdvKMPNra9aZtQFvBcvRU54hbPD8/HayQdlUgJpU= -cloud.google.com/go/secretmanager v1.11.1/go.mod h1:znq9JlXgTNdBeQk9TBW/FnR/W4uChEKGeqQWAJ8SXFw= -cloud.google.com/go/security v1.5.0/go.mod h1:lgxGdyOKKjHL4YG3/YwIL2zLqMFCKs0UbQwgyZmfJl4= -cloud.google.com/go/security v1.7.0/go.mod h1:mZklORHl6Bg7CNnnjLH//0UlAlaXqiG7Lb9PsPXLfD0= -cloud.google.com/go/security v1.8.0/go.mod h1:hAQOwgmaHhztFhiQ41CjDODdWP0+AE1B3sX4OFlq+GU= -cloud.google.com/go/security v1.9.0/go.mod h1:6Ta1bO8LXI89nZnmnsZGp9lVoVWXqsVbIq/t9dzI+2Q= -cloud.google.com/go/security v1.10.0/go.mod h1:QtOMZByJVlibUT2h9afNDWRZ1G96gVywH8T5GUSb9IA= -cloud.google.com/go/security v1.12.0/go.mod h1:rV6EhrpbNHrrxqlvW0BWAIawFWq3X90SduMJdFwtLB8= -cloud.google.com/go/security v1.13.0/go.mod h1:Q1Nvxl1PAgmeW0y3HTt54JYIvUdtcpYKVfIB8AOMZ+0= -cloud.google.com/go/security v1.15.1/go.mod h1:MvTnnbsWnehoizHi09zoiZob0iCHVcL4AUBj76h9fXA= -cloud.google.com/go/securitycenter v1.13.0/go.mod h1:cv5qNAqjY84FCN6Y9z28WlkKXyWsgLO832YiWwkCWcU= -cloud.google.com/go/securitycenter v1.14.0/go.mod h1:gZLAhtyKv85n52XYWt6RmeBdydyxfPeTrpToDPw4Auc= -cloud.google.com/go/securitycenter v1.15.0/go.mod h1:PeKJ0t8MoFmmXLXWm41JidyzI3PJjd8sXWaVqg43WWk= -cloud.google.com/go/securitycenter v1.16.0/go.mod h1:Q9GMaLQFUD+5ZTabrbujNWLtSLZIZF7SAR0wWECrjdk= -cloud.google.com/go/securitycenter v1.18.1/go.mod h1:0/25gAzCM/9OL9vVx4ChPeM/+DlfGQJDwBy/UC8AKK0= -cloud.google.com/go/securitycenter v1.19.0/go.mod h1:LVLmSg8ZkkyaNy4u7HCIshAngSQ8EcIRREP3xBnyfag= -cloud.google.com/go/securitycenter v1.23.0/go.mod h1:8pwQ4n+Y9WCWM278R8W3nF65QtY172h4S8aXyI9/hsQ= -cloud.google.com/go/servicecontrol v1.4.0/go.mod h1:o0hUSJ1TXJAmi/7fLJAedOovnujSEvjKCAFNXPQ1RaU= -cloud.google.com/go/servicecontrol v1.5.0/go.mod h1:qM0CnXHhyqKVuiZnGKrIurvVImCs8gmqWsDoqe9sU1s= -cloud.google.com/go/servicecontrol v1.10.0/go.mod h1:pQvyvSRh7YzUF2efw7H87V92mxU8FnFDawMClGCNuAA= -cloud.google.com/go/servicecontrol v1.11.0/go.mod h1:kFmTzYzTUIuZs0ycVqRHNaNhgR+UMUpw9n02l/pY+mc= -cloud.google.com/go/servicecontrol v1.11.1/go.mod h1:aSnNNlwEFBY+PWGQ2DoM0JJ/QUXqV5/ZD9DOLB7SnUk= -cloud.google.com/go/servicedirectory v1.4.0/go.mod h1:gH1MUaZCgtP7qQiI+F+A+OpeKF/HQWgtAddhTbhL2bs= -cloud.google.com/go/servicedirectory v1.5.0/go.mod h1:QMKFL0NUySbpZJ1UZs3oFAmdvVxhhxB6eJ/Vlp73dfg= -cloud.google.com/go/servicedirectory v1.6.0/go.mod h1:pUlbnWsLH9c13yGkxCmfumWEPjsRs1RlmJ4pqiNjVL4= -cloud.google.com/go/servicedirectory v1.7.0/go.mod h1:5p/U5oyvgYGYejufvxhgwjL8UVXjkuw7q5XcG10wx1U= -cloud.google.com/go/servicedirectory v1.8.0/go.mod h1:srXodfhY1GFIPvltunswqXpVxFPpZjf8nkKQT7XcXaY= -cloud.google.com/go/servicedirectory v1.9.0/go.mod h1:29je5JjiygNYlmsGz8k6o+OZ8vd4f//bQLtvzkPPT/s= -cloud.google.com/go/servicedirectory v1.10.1/go.mod h1:Xv0YVH8s4pVOwfM/1eMTl0XJ6bzIOSLDt8f8eLaGOxQ= -cloud.google.com/go/servicedirectory v1.11.0/go.mod h1:Xv0YVH8s4pVOwfM/1eMTl0XJ6bzIOSLDt8f8eLaGOxQ= -cloud.google.com/go/servicemanagement v1.4.0/go.mod h1:d8t8MDbezI7Z2R1O/wu8oTggo3BI2GKYbdG4y/SJTco= -cloud.google.com/go/servicemanagement v1.5.0/go.mod h1:XGaCRe57kfqu4+lRxaFEAuqmjzF0r+gWHjWqKqBvKFo= -cloud.google.com/go/servicemanagement v1.6.0/go.mod h1:aWns7EeeCOtGEX4OvZUWCCJONRZeFKiptqKf1D0l/Jc= -cloud.google.com/go/servicemanagement v1.8.0/go.mod h1:MSS2TDlIEQD/fzsSGfCdJItQveu9NXnUniTrq/L8LK4= -cloud.google.com/go/serviceusage v1.3.0/go.mod h1:Hya1cozXM4SeSKTAgGXgj97GlqUvF5JaoXacR1JTP/E= -cloud.google.com/go/serviceusage v1.4.0/go.mod h1:SB4yxXSaYVuUBYUml6qklyONXNLt83U0Rb+CXyhjEeU= -cloud.google.com/go/serviceusage v1.5.0/go.mod h1:w8U1JvqUqwJNPEOTQjrMHkw3IaIFLoLsPLvsE3xueec= -cloud.google.com/go/serviceusage v1.6.0/go.mod h1:R5wwQcbOWsyuOfbP9tGdAnCAc6B9DRwPG1xtWMDeuPA= -cloud.google.com/go/shell v1.3.0/go.mod h1:VZ9HmRjZBsjLGXusm7K5Q5lzzByZmJHf1d0IWHEN5X4= -cloud.google.com/go/shell v1.4.0/go.mod h1:HDxPzZf3GkDdhExzD/gs8Grqk+dmYcEjGShZgYa9URw= -cloud.google.com/go/shell v1.6.0/go.mod h1:oHO8QACS90luWgxP3N9iZVuEiSF84zNyLytb+qE2f9A= -cloud.google.com/go/shell v1.7.1/go.mod h1:u1RaM+huXFaTojTbW4g9P5emOrrmLE69KrxqQahKn4g= -cloud.google.com/go/spanner v1.41.0/go.mod h1:MLYDBJR/dY4Wt7ZaMIQ7rXOTLjYrmxLE/5ve9vFfWos= -cloud.google.com/go/spanner v1.44.0/go.mod h1:G8XIgYdOK+Fbcpbs7p2fiprDw4CaZX63whnSMLVBxjk= -cloud.google.com/go/spanner v1.45.0/go.mod h1:FIws5LowYz8YAE1J8fOS7DJup8ff7xJeetWEo5REA2M= -cloud.google.com/go/spanner v1.47.0/go.mod h1:IXsJwVW2j4UKs0eYDqodab6HgGuA1bViSqW4uH9lfUI= -cloud.google.com/go/speech v1.6.0/go.mod h1:79tcr4FHCimOp56lwC01xnt/WPJZc4v3gzyT7FoBkCM= -cloud.google.com/go/speech v1.7.0/go.mod h1:KptqL+BAQIhMsj1kOP2la5DSEEerPDuOP/2mmkhHhZQ= -cloud.google.com/go/speech v1.8.0/go.mod h1:9bYIl1/tjsAnMgKGHKmBZzXKEkGgtU+MpdDPTE9f7y0= -cloud.google.com/go/speech v1.9.0/go.mod h1:xQ0jTcmnRFFM2RfX/U+rk6FQNUF6DQlydUSyoooSpco= -cloud.google.com/go/speech v1.14.1/go.mod h1:gEosVRPJ9waG7zqqnsHpYTOoAS4KouMRLDFMekpJ0J0= -cloud.google.com/go/speech v1.15.0/go.mod h1:y6oH7GhqCaZANH7+Oe0BhgIogsNInLlz542tg3VqeYI= -cloud.google.com/go/speech v1.17.1/go.mod h1:8rVNzU43tQvxDaGvqOhpDqgkJTFowBpDvCJ14kGlJYo= -cloud.google.com/go/speech v1.19.0/go.mod h1:8rVNzU43tQvxDaGvqOhpDqgkJTFowBpDvCJ14kGlJYo= -cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= -cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= -cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= -cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= -cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= -cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3fOKtUw0Xmo= -cloud.google.com/go/storage v1.22.1/go.mod h1:S8N1cAStu7BOeFfE8KAQzmyyLkK8p/vmRq6kuBTW58Y= -cloud.google.com/go/storage v1.23.0/go.mod h1:vOEEDNFnciUMhBeT6hsJIn3ieU5cFRmzeLgDvXzfIXc= -cloud.google.com/go/storage v1.27.0/go.mod h1:x9DOL8TK/ygDUMieqwfhdpQryTeEkhGKMi80i/iqR2s= -cloud.google.com/go/storage v1.28.1/go.mod h1:Qnisd4CqDdo6BGs2AD5LLnEsmSQ80wQ5ogcBBKhU86Y= -cloud.google.com/go/storage v1.29.0/go.mod h1:4puEjyTKnku6gfKoTfNOU/W+a9JyuVNxjpS5GBrB8h4= -cloud.google.com/go/storage v1.30.1/go.mod h1:NfxhC0UJE1aXSx7CIIbCf7y9HKT7BiccwkR7+P7gN8E= -cloud.google.com/go/storagetransfer v1.5.0/go.mod h1:dxNzUopWy7RQevYFHewchb29POFv3/AaBgnhqzqiK0w= -cloud.google.com/go/storagetransfer v1.6.0/go.mod h1:y77xm4CQV/ZhFZH75PLEXY0ROiS7Gh6pSKrM8dJyg6I= -cloud.google.com/go/storagetransfer v1.7.0/go.mod h1:8Giuj1QNb1kfLAiWM1bN6dHzfdlDAVC9rv9abHot2W4= -cloud.google.com/go/storagetransfer v1.8.0/go.mod h1:JpegsHHU1eXg7lMHkvf+KE5XDJ7EQu0GwNJbbVGanEw= -cloud.google.com/go/storagetransfer v1.10.0/go.mod h1:DM4sTlSmGiNczmV6iZyceIh2dbs+7z2Ayg6YAiQlYfA= -cloud.google.com/go/talent v1.1.0/go.mod h1:Vl4pt9jiHKvOgF9KoZo6Kob9oV4lwd/ZD5Cto54zDRw= -cloud.google.com/go/talent v1.2.0/go.mod h1:MoNF9bhFQbiJ6eFD3uSsg0uBALw4n4gaCaEjBw9zo8g= -cloud.google.com/go/talent v1.3.0/go.mod h1:CmcxwJ/PKfRgd1pBjQgU6W3YBwiewmUzQYH5HHmSCmM= -cloud.google.com/go/talent v1.4.0/go.mod h1:ezFtAgVuRf8jRsvyE6EwmbTK5LKciD4KVnHuDEFmOOA= -cloud.google.com/go/talent v1.5.0/go.mod h1:G+ODMj9bsasAEJkQSzO2uHQWXHHXUomArjWQQYkqK6c= -cloud.google.com/go/talent v1.6.2/go.mod h1:CbGvmKCG61mkdjcqTcLOkb2ZN1SrQI8MDyma2l7VD24= -cloud.google.com/go/texttospeech v1.4.0/go.mod h1:FX8HQHA6sEpJ7rCMSfXuzBcysDAuWusNNNvN9FELDd8= -cloud.google.com/go/texttospeech v1.5.0/go.mod h1:oKPLhR4n4ZdQqWKURdwxMy0uiTS1xU161C8W57Wkea4= -cloud.google.com/go/texttospeech v1.6.0/go.mod h1:YmwmFT8pj1aBblQOI3TfKmwibnsfvhIBzPXcW4EBovc= -cloud.google.com/go/texttospeech v1.7.1/go.mod h1:m7QfG5IXxeneGqTapXNxv2ItxP/FS0hCZBwXYqucgSk= -cloud.google.com/go/tpu v1.3.0/go.mod h1:aJIManG0o20tfDQlRIej44FcwGGl/cD0oiRyMKG19IQ= -cloud.google.com/go/tpu v1.4.0/go.mod h1:mjZaX8p0VBgllCzF6wcU2ovUXN9TONFLd7iz227X2Xg= -cloud.google.com/go/tpu v1.5.0/go.mod h1:8zVo1rYDFuW2l4yZVY0R0fb/v44xLh3llq7RuV61fPM= -cloud.google.com/go/tpu v1.6.1/go.mod h1:sOdcHVIgDEEOKuqUoi6Fq53MKHJAtOwtz0GuKsWSH3E= -cloud.google.com/go/trace v1.3.0/go.mod h1:FFUE83d9Ca57C+K8rDl/Ih8LwOzWIV1krKgxg6N0G28= -cloud.google.com/go/trace v1.4.0/go.mod h1:UG0v8UBqzusp+z63o7FK74SdFE+AXpCLdFb1rshXG+Y= -cloud.google.com/go/trace v1.8.0/go.mod h1:zH7vcsbAhklH8hWFig58HvxcxyQbaIqMarMg9hn5ECA= -cloud.google.com/go/trace v1.9.0/go.mod h1:lOQqpE5IaWY0Ixg7/r2SjixMuc6lfTFeO4QGM4dQWOk= -cloud.google.com/go/trace v1.10.1/go.mod h1:gbtL94KE5AJLH3y+WVpfWILmqgc6dXcqgNXdOPAQTYk= -cloud.google.com/go/translate v1.3.0/go.mod h1:gzMUwRjvOqj5i69y/LYLd8RrNQk+hOmIXTi9+nb3Djs= -cloud.google.com/go/translate v1.4.0/go.mod h1:06Dn/ppvLD6WvA5Rhdp029IX2Mi3Mn7fpMRLPvXT5Wg= -cloud.google.com/go/translate v1.5.0/go.mod h1:29YDSYveqqpA1CQFD7NQuP49xymq17RXNaUDdc0mNu0= -cloud.google.com/go/translate v1.6.0/go.mod h1:lMGRudH1pu7I3n3PETiOB2507gf3HnfLV8qlkHZEyos= -cloud.google.com/go/translate v1.7.0/go.mod h1:lMGRudH1pu7I3n3PETiOB2507gf3HnfLV8qlkHZEyos= -cloud.google.com/go/translate v1.8.1/go.mod h1:d1ZH5aaOA0CNhWeXeC8ujd4tdCFw8XoNWRljklu5RHs= -cloud.google.com/go/translate v1.8.2/go.mod h1:d1ZH5aaOA0CNhWeXeC8ujd4tdCFw8XoNWRljklu5RHs= -cloud.google.com/go/video v1.8.0/go.mod h1:sTzKFc0bUSByE8Yoh8X0mn8bMymItVGPfTuUBUyRgxk= -cloud.google.com/go/video v1.9.0/go.mod h1:0RhNKFRF5v92f8dQt0yhaHrEuH95m068JYOvLZYnJSw= -cloud.google.com/go/video v1.12.0/go.mod h1:MLQew95eTuaNDEGriQdcYn0dTwf9oWiA4uYebxM5kdg= -cloud.google.com/go/video v1.13.0/go.mod h1:ulzkYlYgCp15N2AokzKjy7MQ9ejuynOJdf1tR5lGthk= -cloud.google.com/go/video v1.14.0/go.mod h1:SkgaXwT+lIIAKqWAJfktHT/RbgjSuY6DobxEp0C5yTQ= -cloud.google.com/go/video v1.15.0/go.mod h1:SkgaXwT+lIIAKqWAJfktHT/RbgjSuY6DobxEp0C5yTQ= -cloud.google.com/go/video v1.17.1/go.mod h1:9qmqPqw/Ib2tLqaeHgtakU+l5TcJxCJbhFXM7UJjVzU= -cloud.google.com/go/video v1.19.0/go.mod h1:9qmqPqw/Ib2tLqaeHgtakU+l5TcJxCJbhFXM7UJjVzU= -cloud.google.com/go/videointelligence v1.6.0/go.mod h1:w0DIDlVRKtwPCn/C4iwZIJdvC69yInhW0cfi+p546uU= -cloud.google.com/go/videointelligence v1.7.0/go.mod h1:k8pI/1wAhjznARtVT9U1llUaFNPh7muw8QyOUpavru4= -cloud.google.com/go/videointelligence v1.8.0/go.mod h1:dIcCn4gVDdS7yte/w+koiXn5dWVplOZkE+xwG9FgK+M= -cloud.google.com/go/videointelligence v1.9.0/go.mod h1:29lVRMPDYHikk3v8EdPSaL8Ku+eMzDljjuvRs105XoU= -cloud.google.com/go/videointelligence v1.10.0/go.mod h1:LHZngX1liVtUhZvi2uNS0VQuOzNi2TkY1OakiuoUOjU= -cloud.google.com/go/videointelligence v1.11.1/go.mod h1:76xn/8InyQHarjTWsBR058SmlPCwQjgcvoW0aZykOvo= -cloud.google.com/go/vision v1.2.0/go.mod h1:SmNwgObm5DpFBme2xpyOyasvBc1aPdjvMk2bBk0tKD0= -cloud.google.com/go/vision/v2 v2.2.0/go.mod h1:uCdV4PpN1S0jyCyq8sIM42v2Y6zOLkZs+4R9LrGYwFo= -cloud.google.com/go/vision/v2 v2.3.0/go.mod h1:UO61abBx9QRMFkNBbf1D8B1LXdS2cGiiCRx0vSpZoUo= -cloud.google.com/go/vision/v2 v2.4.0/go.mod h1:VtI579ll9RpVTrdKdkMzckdnwMyX2JILb+MhPqRbPsY= -cloud.google.com/go/vision/v2 v2.5.0/go.mod h1:MmaezXOOE+IWa+cS7OhRRLK2cNv1ZL98zhqFFZaaH2E= -cloud.google.com/go/vision/v2 v2.6.0/go.mod h1:158Hes0MvOS9Z/bDMSFpjwsUrZ5fPrdwuyyvKSGAGMY= -cloud.google.com/go/vision/v2 v2.7.0/go.mod h1:H89VysHy21avemp6xcf9b9JvZHVehWbET0uT/bcuY/0= -cloud.google.com/go/vision/v2 v2.7.2/go.mod h1:jKa8oSYBWhYiXarHPvP4USxYANYUEdEsQrloLjrSwJU= -cloud.google.com/go/vmmigration v1.2.0/go.mod h1:IRf0o7myyWFSmVR1ItrBSFLFD/rJkfDCUTO4vLlJvsE= -cloud.google.com/go/vmmigration v1.3.0/go.mod h1:oGJ6ZgGPQOFdjHuocGcLqX4lc98YQ7Ygq8YQwHh9A7g= -cloud.google.com/go/vmmigration v1.5.0/go.mod h1:E4YQ8q7/4W9gobHjQg4JJSgXXSgY21nA5r8swQV+Xxc= -cloud.google.com/go/vmmigration v1.6.0/go.mod h1:bopQ/g4z+8qXzichC7GW1w2MjbErL54rk3/C843CjfY= -cloud.google.com/go/vmmigration v1.7.1/go.mod h1:WD+5z7a/IpZ5bKK//YmT9E047AD+rjycCAvyMxGJbro= -cloud.google.com/go/vmwareengine v0.1.0/go.mod h1:RsdNEf/8UDvKllXhMz5J40XxDrNJNN4sagiox+OI208= -cloud.google.com/go/vmwareengine v0.2.2/go.mod h1:sKdctNJxb3KLZkE/6Oui94iw/xs9PRNC2wnNLXsHvH8= -cloud.google.com/go/vmwareengine v0.3.0/go.mod h1:wvoyMvNWdIzxMYSpH/R7y2h5h3WFkx6d+1TIsP39WGY= -cloud.google.com/go/vmwareengine v0.4.1/go.mod h1:Px64x+BvjPZwWuc4HdmVhoygcXqEkGHXoa7uyfTgSI0= -cloud.google.com/go/vmwareengine v1.0.0/go.mod h1:Px64x+BvjPZwWuc4HdmVhoygcXqEkGHXoa7uyfTgSI0= -cloud.google.com/go/vpcaccess v1.4.0/go.mod h1:aQHVbTWDYUR1EbTApSVvMq1EnT57ppDmQzZ3imqIk4w= -cloud.google.com/go/vpcaccess v1.5.0/go.mod h1:drmg4HLk9NkZpGfCmZ3Tz0Bwnm2+DKqViEpeEpOq0m8= -cloud.google.com/go/vpcaccess v1.6.0/go.mod h1:wX2ILaNhe7TlVa4vC5xce1bCnqE3AeH27RV31lnmZes= -cloud.google.com/go/vpcaccess v1.7.1/go.mod h1:FogoD46/ZU+JUBX9D606X21EnxiszYi2tArQwLY4SXs= -cloud.google.com/go/webrisk v1.4.0/go.mod h1:Hn8X6Zr+ziE2aNd8SliSDWpEnSS1u4R9+xXZmFiHmGE= -cloud.google.com/go/webrisk v1.5.0/go.mod h1:iPG6fr52Tv7sGk0H6qUFzmL3HHZev1htXuWDEEsqMTg= -cloud.google.com/go/webrisk v1.6.0/go.mod h1:65sW9V9rOosnc9ZY7A7jsy1zoHS5W9IAXv6dGqhMQMc= -cloud.google.com/go/webrisk v1.7.0/go.mod h1:mVMHgEYH0r337nmt1JyLthzMr6YxwN1aAIEc2fTcq7A= -cloud.google.com/go/webrisk v1.8.0/go.mod h1:oJPDuamzHXgUc+b8SiHRcVInZQuybnvEW72PqTc7sSg= -cloud.google.com/go/webrisk v1.9.1/go.mod h1:4GCmXKcOa2BZcZPn6DCEvE7HypmEJcJkr4mtM+sqYPc= -cloud.google.com/go/websecurityscanner v1.3.0/go.mod h1:uImdKm2wyeXQevQJXeh8Uun/Ym1VqworNDlBXQevGMo= -cloud.google.com/go/websecurityscanner v1.4.0/go.mod h1:ebit/Fp0a+FWu5j4JOmJEV8S8CzdTkAS77oDsiSqYWQ= -cloud.google.com/go/websecurityscanner v1.5.0/go.mod h1:Y6xdCPy81yi0SQnDY1xdNTNpfY1oAgXUlcfN3B3eSng= -cloud.google.com/go/websecurityscanner v1.6.1/go.mod h1:Njgaw3rttgRHXzwCB8kgCYqv5/rGpFCsBOvPbYgszpg= -cloud.google.com/go/workflows v1.6.0/go.mod h1:6t9F5h/unJz41YqfBmqSASJSXccBLtD1Vwf+KmJENM0= -cloud.google.com/go/workflows v1.7.0/go.mod h1:JhSrZuVZWuiDfKEFxU0/F1PQjmpnpcoISEXH2bcHC3M= -cloud.google.com/go/workflows v1.8.0/go.mod h1:ysGhmEajwZxGn1OhGOGKsTXc5PyxOc0vfKf5Af+to4M= -cloud.google.com/go/workflows v1.9.0/go.mod h1:ZGkj1aFIOd9c8Gerkjjq7OW7I5+l6cSvT3ujaO/WwSA= -cloud.google.com/go/workflows v1.10.0/go.mod h1:fZ8LmRmZQWacon9UCX1r/g/DfAXx5VcPALq2CxzdePw= -cloud.google.com/go/workflows v1.11.1/go.mod h1:Z+t10G1wF7h8LgdY/EmRcQY8ptBD/nvofaL6FqlET6g= -dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= -gioui.org v0.0.0-20210308172011-57750fc8a0a6/go.mod h1:RSH6KIUZ0p2xy5zHDxgAM4zumjgTw83q2ge/PI+yyw8= -git.sr.ht/~sbinet/gg v0.3.1/go.mod h1:KGYtlADtqsqANL9ueOFkWymvzUvLMQllU5Ixo+8v3pc= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= -github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= -github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c/go.mod h1:X0CRv0ky0k6m906ixxpzmDRLvX58TFUKS2eePweuyxk= -github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= -github.com/ajstarks/deck v0.0.0-20200831202436-30c9fc6549a9/go.mod h1:JynElWSGnm/4RlzPXRlREEwqTHAN3T56Bv2ITsFT3gY= -github.com/ajstarks/deck/generate v0.0.0-20210309230005-c3f852c02e19/go.mod h1:T13YZdzov6OU0A1+RfKZiZN9ca6VeKdBdyDV+BY97Tk= -github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af/go.mod h1:K08gAheRH3/J6wwsYMMT4xOr94bZjxIelGM0+d/wbFw= -github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b/go.mod h1:1KcenG0jGWcpt8ov532z81sp/kMMUG485J2InIOyADM= -github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= -github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= -github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= -github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= -github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= -github.com/andybalholm/brotli v1.0.4/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig= -github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= -github.com/apache/arrow/go/v10 v10.0.1/go.mod h1:YvhnlEePVnBS4+0z3fhPfUy7W1Ikj0Ih0vcRo/gZ1M0= -github.com/apache/arrow/go/v11 v11.0.0/go.mod h1:Eg5OsL5H+e299f7u5ssuXsuHQVEGC4xei5aX110hRiI= -github.com/apache/arrow/go/v12 v12.0.0/go.mod h1:d+tV/eHZZ7Dz7RPrFKtPK02tpr+c9/PEd/zm8mDS9Vg= -github.com/apache/thrift v0.16.0/go.mod h1:PHK3hniurgQaNMZYaCLEqXKsYK8upmhPbmdP2FXSqgU= github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA= github.com/benbjohnson/clock v1.3.0 h1:ip6w0uFQkncKQ979AypyG0ER7mqUSBdKLOgAle/AT8A= -github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= -github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/boombuler/barcode v1.0.0/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= -github.com/boombuler/barcode v1.0.1/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= -github.com/cactus/go-statsd-client/statsd v0.0.0-20200423205355-cb0885a1018c/go.mod h1:l/bIBLeOl9eX+wxJAzxS4TveKRtAqlyDpHjhkfO0MEI= -github.com/cactus/go-statsd-client/v5 v5.0.0/go.mod h1:COEvJ1E+/E2L4q6QE5CkjWPi4eeDw9maJBMIuMPBZbY= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/census-instrumentation/opencensus-proto v0.3.0/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/census-instrumentation/opencensus-proto v0.4.1/go.mod h1:4T9NM4+4Vw91VeyqjLS6ao50K5bOcLKN6Q42XnYaRYw= -github.com/cespare/xxhash v1.1.0 h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko= -github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= -github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= -github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= -github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= -github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= -github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= -github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= -github.com/cncf/udpa/go v0.0.0-20220112060539-c52dc94e7fbe/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= -github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20210805033703-aa0b78936158/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20210922020428-25de7278fc84/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211001041855-01bcc9b48dfe/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20220314180256-7f1daf1720fc/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20230105202645-06c439db220b/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20230310173818-32f1caf87195/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20230607035331-e9ce68804cb4/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cpuguy83/go-md2man/v2 v2.0.2 h1:p1EgwI/C7NhT0JmVkwCD2ZBK8j4aeHQX2pMHHBfMQ6w= github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= -github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE= -github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= -github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto= github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= -github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po= -github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= -github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= -github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= -github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0= -github.com/envoyproxy/go-control-plane v0.10.2-0.20220325020618-49ff273808a1/go.mod h1:KJwIaB5Mv44NWtYuAOFCVOjcI94vtpEz2JU/D2v6IjE= -github.com/envoyproxy/go-control-plane v0.10.3/go.mod h1:fJJn/j26vwOu972OllsvAgJJM//w9BV6Fxbg2LuVd34= -github.com/envoyproxy/go-control-plane v0.11.0/go.mod h1:VnHyVMpzcLvCFt9yUz1UnCwHLhwx1WguiVDV7pTG/tI= -github.com/envoyproxy/go-control-plane v0.11.1-0.20230524094728-9239064ad72f/go.mod h1:sfYdkwUW4BA3PbKjySwjJy+O4Pu0h62rlqCMHNk+K+Q= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= -github.com/envoyproxy/protoc-gen-validate v0.6.7/go.mod h1:dyJXwwfPK2VSqiB9Klm1J6romD608Ba7Hij42vrOBCo= -github.com/envoyproxy/protoc-gen-validate v0.9.1/go.mod h1:OKNgG7TCp5pF4d6XftA0++PMirau2/yoOwVac3AbF2w= -github.com/envoyproxy/protoc-gen-validate v0.10.0/go.mod h1:DRjgyB0I43LtJapqN6NiRwroiAU2PaFuvk/vjgh61ss= -github.com/envoyproxy/protoc-gen-validate v0.10.1/go.mod h1:DRjgyB0I43LtJapqN6NiRwroiAU2PaFuvk/vjgh61ss= github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a h1:yDWHCSQ40h88yih2JAcL6Ls/kVkSE8GFACTGVnMPruw= github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a/go.mod h1:7Ga40egUymuWXxAe151lTNnCv97MddSOVsjpPPkityA= -github.com/fogleman/gg v1.2.1-0.20190220221249-0403632d5b90/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= -github.com/fogleman/gg v1.3.0/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= -github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= -github.com/go-fonts/dejavu v0.1.0/go.mod h1:4Wt4I4OU2Nq9asgDCteaAaWZOV24E+0/Pwo0gppep4g= -github.com/go-fonts/latin-modern v0.2.0/go.mod h1:rQVLdDMK+mK1xscDwsqM5J8U2jrRa3T0ecnM9pNujks= -github.com/go-fonts/liberation v0.1.1/go.mod h1:K6qoJYypsmfVjWg8KOVDQhLc8UDgIK2HYqyqAO9z7GY= -github.com/go-fonts/liberation v0.2.0/go.mod h1:K6qoJYypsmfVjWg8KOVDQhLc8UDgIK2HYqyqAO9z7GY= -github.com/go-fonts/stix v0.1.0/go.mod h1:w/c1f0ldAUlJmLBvlbkvVXLAD+tAMqobIIQpmnUIzUY= -github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= -github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= -github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= -github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= -github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY= -github.com/go-kit/log v0.2.0/go.mod h1:NwTd00d/i8cPZ3xOwwiv2PO5MOcx78fFErGNcVmBjv0= -github.com/go-latex/latex v0.0.0-20210118124228-b3d85cf34e07/go.mod h1:CO1AlKB2CSIqUrmQPqA0gdRIlnLEY0gK5JGjh37zN5U= -github.com/go-latex/latex v0.0.0-20210823091927-c0d11ff05a81/go.mod h1:SX0U8uGpxhq9o2S/CELCSUxEWWAuoCUcVCQWv7G2OCk= -github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= -github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= -github.com/go-logfmt/logfmt v0.5.1/go.mod h1:WYhtIu8zTZfxdn5+rREduYbwxfcBr/Vr6KEVveWlfTs= -github.com/go-pdf/fpdf v0.5.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= -github.com/go-pdf/fpdf v0.6.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= -github.com/goccy/go-json v0.9.11/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= -github.com/gogo/googleapis v0.0.0-20180223154316-0cd9801be74a/go.mod h1:gf4bu3Q80BeJ6H1S1vYPm8/ELATdvryBaNFGgqEef3s= -github.com/gogo/googleapis v1.4.1 h1:1Yx4Myt7BxzvUr5ldGSbwYiZG6t9wGBZ+8/fX3Wvtq0= -github.com/gogo/googleapis v1.4.1/go.mod h1:2lpHqI5OcWCtVElxXnPt+s8oJvMpySlOyM6xDCrzib4= -github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= -github.com/gogo/protobuf v1.2.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= -github.com/gogo/status v1.1.0/go.mod h1:BFv9nrluPLmrS0EmGVvLaPNmRosr9KapBYd5/hpY1WM= -github.com/gogo/status v1.1.1 h1:DuHXlSFHNKqTQ+/ACf5Vs6r4X/dH2EgIzR9Vr+H65kg= -github.com/gogo/status v1.1.1/go.mod h1:jpG3dM5QPcqu19Hg8lkUhBFBa3TcLs1DG7+2Jqci7oU= -github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/glog v1.0.0/go.mod h1:EWib/APOK0SL3dFbYqvxE3UYd8E6s1ouQ7iEp/0LWV4= -github.com/golang/glog v1.1.0/go.mod h1:pfYeQZ3JWZoXTV5sFc986z3HTpwQs9At6P4ImfuP3NQ= -github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= -github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= -github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= -github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= -github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= -github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= -github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= -github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3KVu8= github.com/golang/mock v1.6.0 h1:ErTB+efbowRARo13NNdxyJji2egdxLGQhRaY+DUumQc= github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= -github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= -github.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk= -github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= -github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= -github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= -github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w= -github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= -github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= -github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= -github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= -github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= -github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= -github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= -github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= -github.com/google/flatbuffers v2.0.8+incompatible/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= -github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= -github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= -github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8/DtOE= -github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= -github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= -github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= -github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= -github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= -github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= -github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= -github.com/google/martian/v3 v3.2.1/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= -github.com/google/martian/v3 v3.3.2/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= -github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= -github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= -github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20201218002935-b9804c9f04c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= -github.com/google/s2a-go v0.1.0/go.mod h1:OJpEgntRZo8ugHpF9hkoLJbS5dSI20XZeXJ9JVywLlM= -github.com/google/s2a-go v0.1.3/go.mod h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkjEwM0A= -github.com/google/s2a-go v0.1.4/go.mod h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkjEwM0A= +github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= github.com/google/uuid v1.0.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.3.1 h1:KjJaJ9iWZ3jOFZIf1Lqf4laDRCasjl0BCmnEGxkdLb4= github.com/google/uuid v1.3.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/googleapis/enterprise-certificate-proxy v0.0.0-20220520183353-fd19c99a87aa/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= -github.com/googleapis/enterprise-certificate-proxy v0.1.0/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= -github.com/googleapis/enterprise-certificate-proxy v0.2.0/go.mod h1:8C0jb7/mgJe/9KK8Lm7X9ctZC2t60YyIpYEI16jx0Qg= -github.com/googleapis/enterprise-certificate-proxy v0.2.1/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= -github.com/googleapis/enterprise-certificate-proxy v0.2.3/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= -github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= -github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= -github.com/googleapis/gax-go/v2 v2.1.0/go.mod h1:Q3nei7sK6ybPYH7twZdmQpAd1MKb7pfu6SK+H1/DsU0= -github.com/googleapis/gax-go/v2 v2.1.1/go.mod h1:hddJymUZASv3XPyGkUpKj8pPO47Rmb0eJc8R6ouapiM= -github.com/googleapis/gax-go/v2 v2.2.0/go.mod h1:as02EH8zWkzwUoLbBaFeQ+arQaj/OthfcblKl4IGNaM= -github.com/googleapis/gax-go/v2 v2.3.0/go.mod h1:b8LNqSzNabLiUpXKkY7HAR5jr6bIT99EXz9pXxye9YM= -github.com/googleapis/gax-go/v2 v2.4.0/go.mod h1:XOTVJ59hdnfJLIP/dh8n5CGryZR2LxK9wbMD5+iXC6c= -github.com/googleapis/gax-go/v2 v2.5.1/go.mod h1:h6B0KMMFNtI2ddbGJn3T3ZbwkeT6yqEF02fYlzkUCyo= -github.com/googleapis/gax-go/v2 v2.6.0/go.mod h1:1mjbznJAPHFpesgE5ucqfYEscaz5kMdcIDwU/6+DDoY= -github.com/googleapis/gax-go/v2 v2.7.0/go.mod h1:TEop28CZZQ2y+c0VxMUmu1lV+fQx57QpBWsYpwqHJx8= -github.com/googleapis/gax-go/v2 v2.7.1/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38/qKbhSAKP6QI= -github.com/googleapis/gax-go/v2 v2.8.0/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38/qKbhSAKP6QI= -github.com/googleapis/gax-go/v2 v2.10.0/go.mod h1:4UOEnMCrxsSqQ940WnTiD6qJ63le2ev3xfyagutxiPw= -github.com/googleapis/gax-go/v2 v2.11.0/go.mod h1:DxmR61SGKkGLa2xigwuZIQpkCI2S5iydzRfb3peWZJI= -github.com/googleapis/go-type-adapters v1.0.0/go.mod h1:zHW75FOG2aur7gAO2B+MLby+cLsWGBF62rFAi7WjWO4= -github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= -github.com/grpc-ecosystem/go-grpc-middleware v1.3.0/go.mod h1:z0ButlSOZa5vEBq9m2m2hlwIgKw+rp3sdCBRoJY+30Y= github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 h1:UH//fgunKIs4JdUbpDl1VZCDaL56wXCB/5+wF6uHfaI= github.com/grpc-ecosystem/go-grpc-middleware v1.4.0/go.mod h1:g5qyo/la0ALbONm6Vbp88Yd8NsDy6rZz+RcrMPxvld8= -github.com/grpc-ecosystem/grpc-gateway v1.16.0 h1:gmcG1KaJ57LophUzW0Hy8NmPhnMZb4M0+kPpLofRdBo= -github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0/go.mod h1:hgWBS7lorOAVIJEQMi4ZsPv9hVvWI6+ch50m39Pf2Ks= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3/go.mod h1:o//XUCC/F+yRGJoPO/VU0GSB0f8Nhgmxx0VIRUvaC0w= -github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= -github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= -github.com/iancoleman/strcase v0.2.0/go.mod h1:iwCmte+B7n89clKwxIoIXy/HfoL7AsD47ZCWhYzw7ho= -github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= -github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= -github.com/inconshreveable/mousetrap v1.0.1/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.1 h1:6UKoz5ujsI55KNpsJH3UwCq3T8kKbZwNZBNPuTTje8U= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.1/go.mod h1:YvJ2f6MplWDhfxiUC3KpyTy76kYUZA4W3pTv/wdKQ9Y= github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= -github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= -github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4= -github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= -github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= -github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= -github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= -github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= -github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= -github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= -github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= -github.com/jung-kurt/gofpdf v1.0.0/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= -github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= -github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= -github.com/klauspost/asmfmt v1.3.2/go.mod h1:AG8TuvYojzulgDAMCnYn50l/5QV3Bs/tp6j0HLHbNSE= -github.com/klauspost/compress v1.15.9/go.mod h1:PhcZ0MbTNciWF3rruxRgKxI5NkcHHrHUDtV4Yw2GlzU= -github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= -github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= -github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= -github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0= -github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk= +github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= -github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= -github.com/lyft/protoc-gen-star v0.6.0/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA= -github.com/lyft/protoc-gen-star v0.6.1/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA= -github.com/lyft/protoc-gen-star/v2 v2.0.1/go.mod h1:RcCdONR2ScXaYnQC5tUzxzlpA3WVYF7/opLeUgcQs/o= -github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= -github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= -github.com/mattn/go-isatty v0.0.17/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= -github.com/mattn/go-sqlite3 v1.14.14/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU= -github.com/mattn/go-sqlite3 v1.14.15/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg= -github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/matttproud/golang_protobuf_extensions v1.0.2 h1:hAHbPm5IJGijwng3PWk09JkG9WeqChjprR5s9bBZ+OM= -github.com/matttproud/golang_protobuf_extensions v1.0.2/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo= github.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= -github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8/go.mod h1:mC1jAcsrzbxHt8iiaC+zU4b1ylILSosueou12R++wfY= -github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3/go.mod h1:RagcQ7I8IeTMnF8JTXieKnO4Z6JCsikNEzj0DwauVzE= -github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= -github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= -github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= -github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= -github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= -github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= -github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= -github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= -github.com/otiai10/copy v1.12.0 h1:cLMgSQnXBs1eehF0Wy/FAGsgDTDmAqFR7rQylBb1nDY= -github.com/otiai10/copy v1.12.0/go.mod h1:rSaLseMUsZFFbsFGc7wCJnnkTAvdc5L6VWxPE4308Ww= +github.com/otiai10/copy v1.14.0 h1:dCI/t1iTdYGtkvCuBG2BgR6KZa83PTclw4U5n2wAllU= +github.com/otiai10/copy v1.14.0/go.mod h1:ECfuL02W+/FkTWZWgQqXPWZgW9oeKCSQ5qVfSc4qc4w= github.com/otiai10/mint v1.5.1 h1:XaPLeE+9vGbuyEHem1JNk3bYc7KKqyI/na0/mLd/Kks= github.com/pborman/uuid v1.2.1 h1:+ZZIw58t/ozdjRaXh/3awHfmWRbzYxJoAdNJxe/3pvw= github.com/pborman/uuid v1.2.1/go.mod h1:X/NO0urCmaxf9VXbdlT7C2Yzkj2IKimNn4k+gtPdI/k= -github.com/phpdave11/gofpdf v1.4.2/go.mod h1:zpO6xFn9yxo3YLyMvW8HcKWVdbNqgIfOOp2dXMnm1mY= -github.com/phpdave11/gofpdi v1.0.12/go.mod h1:vBmVV0Do6hSBHC8uKUQ71JGW+ZGQq74llk/7bXwjDoI= -github.com/phpdave11/gofpdi v1.0.13/go.mod h1:vBmVV0Do6hSBHC8uKUQ71JGW+ZGQq74llk/7bXwjDoI= -github.com/pierrec/lz4/v4 v4.1.15/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= -github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= -github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/sftp v1.10.1/go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI= -github.com/pkg/sftp v1.13.1/go.mod h1:3HaPG6Dq1ILlpPZRO0HVMrsydcdLt6HRDccSgb87qRg= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= -github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= -github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= -github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0= -github.com/prometheus/client_golang v1.12.1/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY= -github.com/prometheus/client_golang v1.14.0 h1:nJdhIvne2eSX/XRAFV9PcvFFRbrjbcTUj0VP62TMhnw= -github.com/prometheus/client_golang v1.14.0/go.mod h1:8vpkKitgIVNcqrRBWh1C4TIUQgYNtG/XQE4E/Zae36Y= github.com/prometheus/client_golang v1.16.0 h1:yk/hx9hDbrGHovbci4BY+pRMfSuuat626eFsHb7tmT8= github.com/prometheus/client_golang v1.16.0/go.mod h1:Zsulrv/L9oM40tJ7T815tM89lFEugiJ9HzIqaAx4LKc= -github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.3.0 h1:UBgGFHqYdG/TPFD1B1ogZywDqEkwp3fBMvqdiQ7Xew4= -github.com/prometheus/client_model v0.3.0/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w= github.com/prometheus/client_model v0.4.0 h1:5lQXD3cAg1OXBf4Wq03gTrXHeaV0TQvGfUooCfx1yqY= github.com/prometheus/client_model v0.4.0/go.mod h1:oMQmHW1/JoDwqLtg57MGgP/Fb1CJEYF2imWWhWtMkYU= -github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= -github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= -github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= -github.com/prometheus/common v0.32.1/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= -github.com/prometheus/common v0.37.0 h1:ccBbHCgIiT9uSoFY0vX8H3zsNR5eLt17/RQLUvn8pXE= -github.com/prometheus/common v0.37.0/go.mod h1:phzohg0JFMnBEFGxTDbfu3QyL5GI8gTQJFhYO5B3mfA= github.com/prometheus/common v0.44.0 h1:+5BrQJwiBB9xsMygAB3TNvpQKOwlkc25LbISbrdOOfY= github.com/prometheus/common v0.44.0/go.mod h1:ofAIvZbQ1e/nugmZGz4/qCb9Ap1VoSTIO7x0VV9VvuY= -github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= -github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= -github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= -github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= -github.com/prometheus/procfs v0.8.0 h1:ODq8ZFEaYeCaZOJlZZdJA2AbQR98dSHSM1KW/You5mo= -github.com/prometheus/procfs v0.8.0/go.mod h1:z7EfXMXOkbkqb9IINtpCn86r/to3BnA0uaxHdg830/4= github.com/prometheus/procfs v0.11.1 h1:xRC8Iq1yyca5ypa9n1EZnWZkt7dwcoRPQwX/5gwaUuI= github.com/prometheus/procfs v0.11.1/go.mod h1:eesXgaPo1q7lBpVMoMy0ZOFTth9hBn4W/y0/p/ScXhY= -github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= -github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= github.com/robfig/cron v1.2.0 h1:ZjScXvvxeQ63Dbyxy76Fj3AT3Ut0aKsyd2/tl3DTMuQ= github.com/robfig/cron v1.2.0/go.mod h1:JGuDeoQd7Z6yL4zQhZ3OPEVHB7fL6Ka6skscFHfmt2k= -github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= -github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= -github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= -github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= -github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= -github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk= +github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= -github.com/ruudk/golang-pdf417 v0.0.0-20181029194003-1af4ab5afa58/go.mod h1:6lfFZQK844Gfx8o5WFuvpxWRwnSoipWe/p622j1v06w= -github.com/ruudk/golang-pdf417 v0.0.0-20201230142125-a7e3863a1245/go.mod h1:pQAZKsJ8yyVxGRWYNEm9oFB8ieLgKFnamEyDmSA0BRk= -github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= -github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= -github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= -github.com/spf13/afero v1.3.3/go.mod h1:5KUK8ByomD5Ti5Artl0RtHeI5pTF7MIDuXL3yY520V4= -github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I= -github.com/spf13/afero v1.9.2/go.mod h1:iUV7ddyEEZPO5gA3zD4fJt6iStLlL+Lg4m2cihcDf8Y= -github.com/spf13/cobra v1.6.1 h1:o94oiPyS4KD1mPy2fmcYYHHfCxLqYjJOhGsCHFZtEzA= -github.com/spf13/cobra v1.6.1/go.mod h1:IOw/AERYS7UzyrGinqmz6HLUo219MORXGxhbaJUqzrY= github.com/spf13/cobra v1.7.0 h1:hyqWnYt1ZQShIddO5kBpj3vu05/++x6tJ6dg8EC572I= github.com/spf13/cobra v1.7.0/go.mod h1:uLxZILRyS/50WlhOIKD7W6V5bgeIt+4sICxh6uRMrb0= github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= -github.com/stretchr/objx v0.3.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= github.com/stretchr/objx v0.5.1 h1:4VhoImhV/Bm0ToFkXFi8hXNXwpDRZ/ynw3amt82mzq0= @@ -1139,868 +92,129 @@ github.com/stretchr/objx v0.5.1/go.mod h1:/iHQpkQwBD6DLUmQ4pE+s1TXdob1mORJ4/UFdr github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= -github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= -github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= -github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= -github.com/stretchr/testify v1.8.3/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= -github.com/temporalio/features v0.0.0-20230825203822-22c291e343bd h1:Tw24SkOAKTv3/tX2mfn8QvKAu/9xcVaN1nuQPhBPDTQ= -github.com/temporalio/features v0.0.0-20230825203822-22c291e343bd/go.mod h1:nlIoNKBS1UfWpERVOuom53vBQrJ5vaGOpVa9uO9R8W4= -github.com/temporalio/features v0.0.0-20231117211247-ca7959c1fe2c h1:CoLwWKewBRitXwLCoL0+SXH9e1qHc9fPolxbaUofw2Q= -github.com/temporalio/features v0.0.0-20231117211247-ca7959c1fe2c/go.mod h1:+YbtzpSzB88lKGFCaNq9fUHfktK6xiNhE3JOf6Aswck= -github.com/temporalio/features/features v0.0.0-20230825203822-22c291e343bd h1:NsvVt5fb9XPV98iqIlg3ae9HwRYOvn8gTxJPXrJg4DY= -github.com/temporalio/features/features v0.0.0-20230825203822-22c291e343bd/go.mod h1:GqFCgrOfyudmzTUiuV3oDgG31bfLEefqJPhqKAjoCmI= -github.com/temporalio/features/features v0.0.0-20231117211247-ca7959c1fe2c/go.mod h1:WdEWvbry/WB0ys+GQDYDE/3RZ9Mk8FEFCtfrFlFFAZ4= -github.com/temporalio/features/harness/go v0.0.0-20230825203822-22c291e343bd h1:FcVC0+c2FHAeLzEHW4/a2aVhZWvsP3ooZpi5tPnhqrw= -github.com/temporalio/features/harness/go v0.0.0-20230825203822-22c291e343bd/go.mod h1:diH599ldN/ov2jPKI02IkeisVzyV3dcE3gzSNmY3WMs= -github.com/temporalio/features/harness/go v0.0.0-20231117211247-ca7959c1fe2c/go.mod h1:Vd15Xg+AKLQNUrVuqWacqlGm1ejzibehvvNzSvqViqs= -github.com/twmb/murmur3 v1.1.5/go.mod h1:Qq/R7NUyOfr65zD+6Q5IHKsJLwP7exErjN6lyyq3OSQ= -github.com/twmb/murmur3 v1.1.8 h1:8Yt9taO/WN3l08xErzjeschgZU2QSrwm1kclYq+0aRg= -github.com/twmb/murmur3 v1.1.8/go.mod h1:Qq/R7NUyOfr65zD+6Q5IHKsJLwP7exErjN6lyyq3OSQ= -github.com/uber-go/tally/v4 v4.1.1/go.mod h1:aXeSTDMl4tNosyf6rdU8jlgScHyjEGGtfJ/uwCIf/vM= -github.com/uber-go/tally/v4 v4.1.7 h1:YiKvvMKCCXlCKXI0i1hVk+xda8YxdIpjeFXohpvn8Zo= -github.com/uber-go/tally/v4 v4.1.7/go.mod h1:pPR56rjthjtLB8xQlEx2I1VwAwRGCh/i4xMUcmG+6z4= -github.com/urfave/cli/v2 v2.25.7 h1:VAzn5oq403l5pHjc4OhD54+XGO9cdKVL/7lDjF+iKUs= -github.com/urfave/cli/v2 v2.25.7/go.mod h1:8qnjx1vcq5s2/wpsqoZFndg2CE5tNFyrTvS6SinrnYQ= -github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 h1:bAn7/zixMGCfxrRTfdpNzjtPYqr8smhKouy9mxVdGPU= -github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673/go.mod h1:N3UwUGtsrSj3ccvlPHLoLsHnpR27oXr4ZE984MbSER8= -github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/temporalio/features v0.0.0-20231215182222-f746c6d3c8f2 h1:vY8hlhdHW77ViNNhcoqzHc8IYDLqU8WhT/rVyiTVTxo= +github.com/temporalio/features v0.0.0-20231215182222-f746c6d3c8f2/go.mod h1:Jm0Yq8DKEkSzcQ1YbZ5yeqrD6iyyWzQMcsXF0G1ylM4= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= -github.com/yuin/goldmark v1.4.1/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= -github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= -github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA= -go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= -go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= -go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= -go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= -go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= -go.opentelemetry.io/proto/otlp v0.15.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= -go.opentelemetry.io/proto/otlp v0.19.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= -go.temporal.io/api v1.5.0/go.mod h1:BqKxEJJYdxb5dqf0ODfzfMxh8UEQ5L3zKS51FiIYYkA= -go.temporal.io/api v1.21.0/go.mod h1:xlsUEakkN2vU2/WV7e5NqMG4N93nfuNfvbXdaXUpU8w= -go.temporal.io/api v1.24.0 h1:WWjMYSXNh4+T4Y4jq1e/d9yCNnWoHhq4bIwflHY6fic= -go.temporal.io/api v1.24.0/go.mod h1:4ackgCMjQHMpJYr1UQ6Tr/nknIqFkJ6dZ/SZsGv+St0= -go.temporal.io/sdk v1.12.0/go.mod h1:lSp3lH1lI0TyOsus0arnO3FYvjVXBZGi/G7DjnAnm6o= -go.temporal.io/sdk v1.24.0 h1:mAk5VFR+z4s8QVzRx3iIpRnHcEO3m10CYNjnRXrhVq4= -go.temporal.io/sdk v1.24.0/go.mod h1:S7vWxU01lGcCny0sWx03bkkYw4VtVrpzeqBTn2A6y+E= -go.temporal.io/sdk v1.25.0 h1:urC4CYy3ZJOC4oOWreNfIH08N4qHydOc20pN1bYpmYw= -go.temporal.io/sdk v1.25.0/go.mod h1:X7iFKZpsj90BfszfpFCzLX8lwEJXbnRrl351/HyEgmU= -go.temporal.io/sdk/contrib/tally v0.2.0 h1:XnTJIQcjOv+WuCJ1u8Ve2nq+s2H4i/fys34MnWDRrOo= -go.temporal.io/sdk/contrib/tally v0.2.0/go.mod h1:1kpSuCms/tHeJQDPuuKkaBsMqfHnIIRnCtUYlPNXxuE= -go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= +go.temporal.io/api v1.26.1 h1:YqGQsOr/Tx4nVdA8wCv74AxesaIzCRHWb3KkHrYqI8k= +go.temporal.io/api v1.26.1/go.mod h1:Y/rALXTprFO+bvAlAfLFoJj7KpQIcL4GDQVN6fhYIa4= +go.temporal.io/sdk v1.25.2-0.20231129171107-288a04f72145 h1:aV7tRpzB3tr9LGs4/SN7MSWSbVx+bgDYfOoGMjk4oEM= +go.temporal.io/sdk v1.25.2-0.20231129171107-288a04f72145/go.mod h1:MHw8PEOVmOJC1yduTVxYq1GsM5kkQg0sIwRST7cRHoo= go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= -go.uber.org/atomic v1.9.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= go.uber.org/atomic v1.11.0 h1:ZvwS0R+56ePWxUNi+Atn9dWONBPp/AUETXlHW0DxSjE= go.uber.org/atomic v1.11.0/go.mod h1:LUxbIzbOniOlMKjJjyPfpl4v+PKK2cNJn91OQbhoJI0= go.uber.org/goleak v1.1.10/go.mod h1:8a7PlsEVH3e/a/GLqe5IIrQx6GzcnRmZEufDUTk4A7A= -go.uber.org/goleak v1.2.0 h1:xqgm/S+aQvhWFTtR0XK3Jvg7z8kGV8P4X14IzwN3Eqk= +go.uber.org/goleak v1.2.1 h1:NBol2c7O1ZokfZ0LEU9K6Whx/KnwvepVetCUhtKja4A= go.uber.org/goleak v1.2.1/go.mod h1:qlT2yGI9QafXHhZZLxlSuNsMw3FFLxBr+tBRlmO1xH4= -go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= go.uber.org/multierr v1.11.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y= -go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= go.uber.org/zap v1.18.1/go.mod h1:xg/QME4nWcxGxrpdeYfq7UvYrLh66cuVKdrbD1XF/NI= go.uber.org/zap v1.25.0 h1:4Hvk6GtkucQ790dqmj7l1eEnRdKm3k3ZUrUMS2d5+5c= go.uber.org/zap v1.25.0/go.mod h1:JIAUzQIH94IC4fOJQm7gMmBJP5k7wQfdcnYdPoEXJYk= -golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= -golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20220314234659-1baeb1ce4c0b/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.1.0/go.mod h1:RecgLatLF4+eUMCP1PoPZQb+cVrJcOPbHkTkbkB9sbw= -golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= -golang.org/x/crypto v0.9.0/go.mod h1:yrmDGqONDYtNj3tH8X9dzUun2m2lzPa9ngI6/RUPGR0= -golang.org/x/crypto v0.12.0/go.mod h1:NF0Gs7EO5K4qLn+Ylc+fih8BSTeIjAP05siRnAh98yw= -golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190125153040-c74c464bbbf2/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= -golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek= -golang.org/x/exp v0.0.0-20191002040644-a1355ae1e2c3/go.mod h1:NOZ3BPKG0ec/BKJQgnvsSFpcKLM5xXVWnvZS97DWHgE= -golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= -golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= -golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= -golang.org/x/exp v0.0.0-20220827204233-334a2380cb91/go.mod h1:cyybsKvd6eL0RnXn6p/Grxp8F5bW7iYuBgsNCOHpMYE= -golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs= -golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= -golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20190910094157-69e4b8554b2a/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20200119044424-58c23975cae1/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20200430140353-33d19683fad8/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20200618115811-c13761719519/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20201208152932-35266b937fa6/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20210216034530-4410531fe030/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20210607152325-775e3b0c77b9/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= -golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= -golang.org/x/image v0.0.0-20211028202545-6944b10bf410/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= -golang.org/x/image v0.0.0-20220302094943-723b81ca9867/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= -golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs= -golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= -golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= -golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= -golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY= -golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= -golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.5.0/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= -golang.org/x/mod v0.5.1/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= -golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= -golang.org/x/mod v0.7.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.9.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.10.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/mod v0.12.0 h1:rmsUpXtvNzj340zd98LZ4KntptpfRHwpFOHG188oHXc= golang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= -golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200222125558-5a598a2470a0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= -golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210913180222-943fd674d43e/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220325170049-de3da57026de/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220412020605-290c469a71a5/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220607020251-c690dde0001d/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220617184016-355a448f1bc9/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220909164309-bea034e7d591/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= -golang.org/x/net v0.0.0-20221012135044-0b7e1fb9d458/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= -golang.org/x/net v0.0.0-20221014081412-f15817d10f9b/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= -golang.org/x/net v0.1.0/go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco= -golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY= -golang.org/x/net v0.4.0/go.mod h1:MBQ8lrhLObU/6UmLb4fmbmk5OcyYmqtbGd/9yIeKjEE= -golang.org/x/net v0.5.0/go.mod h1:DivGGAXEgPSlEBzxGzZI+ZLohi+xUj054jfeKui00ws= -golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= -golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= -golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= -golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns= -golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= -golang.org/x/net v0.14.0 h1:BONx9s002vGdD9umnlX1Po8vOZmrgH34qlHcD1MfK14= -golang.org/x/net v0.14.0/go.mod h1:PpSgVXXLK0OxS0F31C1/tv6XNguvCrnXIDrFMspZIUI= +golang.org/x/net v0.19.0 h1:zTwKpTd2XuCqf8huc7Fo2iSy+4RHPd10s4KzeTnVr1c= +golang.org/x/net v0.19.0/go.mod h1:CfAk/cbD4CthTvqiEl8NpboMuiuOYsAr/7NOjZJtv1U= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220608161450-d0670ef3b1eb/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= -golang.org/x/oauth2 v0.0.0-20220622183110-fd043fe589d2/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= -golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= -golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= -golang.org/x/oauth2 v0.0.0-20221006150949-b44042a4b9c1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= -golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= -golang.org/x/oauth2 v0.4.0/go.mod h1:RznEsdpjGAINPTOF0UH/t+xJ75L18YO3Ho6Pyn+uRec= -golang.org/x/oauth2 v0.5.0/go.mod h1:9/XBHVqLaWO3/BRHs5jbpYCnOZVjj5V0ndyaAM7KB4I= -golang.org/x/oauth2 v0.6.0/go.mod h1:ycmewcwgD4Rpr3eZJLSB4Kyyljb3qDh40vJ8STE5HKw= -golang.org/x/oauth2 v0.7.0/go.mod h1:hPLQkd9LyjfXTiRohC/41GhcFqxisoUQ99sCUOHO9x4= -golang.org/x/oauth2 v0.8.0/go.mod h1:yr7u4HXZRm1R1kBWqr/xKNqewf0plRYoB7sla+BCIXE= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220819030929-7fc1605a5dde/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220929204114-8fcdb60fdcc0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.2.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.5.0 h1:60k92dhOjHxJkrqnwsfl8KuaHbn/5dl0lUPUklKo3qE= golang.org/x/sync v0.5.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210304124612-50617c2ba197/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210816183151-1e6c022a8912/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210910150752-751e447fb3d0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211025201205-69cdffdb9359/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211124211545-fe61309f8881/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211210111614-af8b64212486/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220209214540-3681064d5158/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220412211240-33da011f77ad/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220502124256-b6088ccd6cba/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220624220833-87e55d714810/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220829200755-d48e67d00261/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.4.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.11.0 h1:eG7RXZHdqOJ1i+0lgLgCpSXAp6M3LYlAo6osgSi0xOM= -golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= +golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= -golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc= -golang.org/x/term v0.3.0/go.mod h1:q750SLmJuPmVoN1blW3UFBPREJfb1KmY3vwxfr+nFDA= -golang.org/x/term v0.4.0/go.mod h1:9P2UbLfCdcvo3p/nzKvsmas4TnlujnuoV9hGgYzW1lQ= -golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= -golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= -golang.org/x/term v0.7.0/go.mod h1:P32HKFT3hSsZrRxla30E9HqToFYAQPCMs/zFMBUFqPY= -golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= -golang.org/x/term v0.11.0/go.mod h1:zC9APTIj3jG3FdV/Ons+XE1riIZXG4aZ4GTHiPZJPIU= -golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= -golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.5.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.6.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= -golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= -golang.org/x/text v0.12.0 h1:k+n5B8goJNdU7hSvEtMUz3d1Q6D/XW4COJSJR6fN0mc= -golang.org/x/text v0.12.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= -golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20220922220347-f3bd1da661af/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.1.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= +golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= golang.org/x/time v0.3.0 h1:rg5rLMjNzMS1RkNLzCG38eapWhnYLFYXDXj2gOlr8j4= golang.org/x/time v0.3.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/tools v0.0.0-20180525024113-a5b4c53f6e8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190206041539-40960b6deb8e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20190927191325-030b2cf1153e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191108193012-7d206e10da11/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= -golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= -golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= -golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= -golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201124115921-2c860bdd6e78/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.9/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= -golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= -golang.org/x/tools v0.3.0/go.mod h1:/rWhSS2+zyEVwoJf8YAX6L2f0ntZ7Kn/mGgAWcipA5k= -golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= -golang.org/x/tools v0.7.0/go.mod h1:4pg6aUX35JBAogB10C9AtvVL+qowtN4pT3CGSQex14s= -golang.org/x/tools v0.9.1/go.mod h1:owI94Op576fPu3cIGQeHs3joujW/2Oc6MtlxbF5dfNc= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= -golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= -golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= -gonum.org/v1/gonum v0.0.0-20180816165407-929014505bf4/go.mod h1:Y+Yx5eoAFn32cQvJDxZx5Dpnq+c3wtXuadVZAcxbbBo= -gonum.org/v1/gonum v0.8.2/go.mod h1:oe/vMfY3deqTw+1EZJhuvEW2iwGF1bW9wwu7XCu0+v0= -gonum.org/v1/gonum v0.9.3/go.mod h1:TZumC3NeyVQskjXqmyWt4S3bINhy7B4eYwW69EbyX+0= -gonum.org/v1/gonum v0.11.0/go.mod h1:fSG4YDCxxUZQJ7rKsQrj0gMOg00Il0Z96/qMA4bVQhA= -gonum.org/v1/netlib v0.0.0-20190313105609-8cb42192e0e0/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw= -gonum.org/v1/plot v0.0.0-20190515093506-e2840ee46a6b/go.mod h1:Wt8AAjI+ypCyYX3nZBvf6cAIx93T+c/OS2HFAYskSZc= -gonum.org/v1/plot v0.9.0/go.mod h1:3Pcqqmp6RHvJI72kgb8fThyUnav364FOsdDo2aGW5lY= -gonum.org/v1/plot v0.10.1/go.mod h1:VZW5OlhkL1mysU9vaqNHnsy86inf6Ot+jB3r+BczCEo= -google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= -google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= -google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= -google.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= -google.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= -google.golang.org/api v0.14.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= -google.golang.org/api v0.15.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= -google.golang.org/api v0.17.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.18.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.19.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.20.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.22.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= -google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= -google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM= -google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc= -google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= -google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= -google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= -google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU= -google.golang.org/api v0.43.0/go.mod h1:nQsDGjRXMo4lvh5hP0TKqF244gqhGcr/YSIykhUk/94= -google.golang.org/api v0.47.0/go.mod h1:Wbvgpq1HddcWVtzsVLyfLp8lDg6AA241LmgIL59tHXo= -google.golang.org/api v0.48.0/go.mod h1:71Pr1vy+TAZRPkPs/xlCf5SsU8WjuAWv1Pfjbtukyy4= -google.golang.org/api v0.50.0/go.mod h1:4bNT5pAuq5ji4SRZm+5QIkjny9JAyVD/3gaSihNefaw= -google.golang.org/api v0.51.0/go.mod h1:t4HdrdoNgyN5cbEfm7Lum0lcLDLiise1F8qDKX00sOU= -google.golang.org/api v0.54.0/go.mod h1:7C4bFFOvVDGXjfDTAsgGwDgAxRDeQ4X8NvUedIt6z3k= -google.golang.org/api v0.55.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= -google.golang.org/api v0.56.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= -google.golang.org/api v0.57.0/go.mod h1:dVPlbZyBo2/OjBpmvNdpn2GRm6rPy75jyU7bmhdrMgI= -google.golang.org/api v0.61.0/go.mod h1:xQRti5UdCmoCEqFxcz93fTl338AVqDgyaDRuOZ3hg9I= -google.golang.org/api v0.63.0/go.mod h1:gs4ij2ffTRXwuzzgJl/56BdwJaA194ijkfn++9tDuPo= -google.golang.org/api v0.67.0/go.mod h1:ShHKP8E60yPsKNw/w8w+VYaj9H6buA5UqDp8dhbQZ6g= -google.golang.org/api v0.70.0/go.mod h1:Bs4ZM2HGifEvXwd50TtW70ovgJffJYw2oRCOFU/SkfA= -google.golang.org/api v0.71.0/go.mod h1:4PyU6e6JogV1f9eA4voyrTY2batOLdgZ5qZ5HOCc4j8= -google.golang.org/api v0.74.0/go.mod h1:ZpfMZOVRMywNyvJFeqL9HRWBgAuRfSjJFpe9QtRRyDs= -google.golang.org/api v0.75.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= -google.golang.org/api v0.77.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= -google.golang.org/api v0.78.0/go.mod h1:1Sg78yoMLOhlQTeF+ARBoytAcH1NNyyl390YMy6rKmw= -google.golang.org/api v0.80.0/go.mod h1:xY3nI94gbvBrE0J6NHXhxOmW97HG7Khjkku6AFB3Hyg= -google.golang.org/api v0.84.0/go.mod h1:NTsGnUFJMYROtiquksZHBWtHfeMC7iYthki7Eq3pa8o= -google.golang.org/api v0.85.0/go.mod h1:AqZf8Ep9uZ2pyTvgL+x0D3Zt0eoT9b5E8fmzfu6FO2g= -google.golang.org/api v0.90.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= -google.golang.org/api v0.93.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= -google.golang.org/api v0.95.0/go.mod h1:eADj+UBuxkh5zlrSntJghuNeg8HwQ1w5lTKkuqaETEI= -google.golang.org/api v0.96.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= -google.golang.org/api v0.97.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= -google.golang.org/api v0.98.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= -google.golang.org/api v0.99.0/go.mod h1:1YOf74vkVndF7pG6hIHuINsM7eWwpVTAfNMNiL91A08= -google.golang.org/api v0.100.0/go.mod h1:ZE3Z2+ZOr87Rx7dqFsdRQkRBk36kDtp/h+QpHbB7a70= -google.golang.org/api v0.102.0/go.mod h1:3VFl6/fzoA+qNuS1N1/VfXY4LjoXN/wzeIp7TweWwGo= -google.golang.org/api v0.103.0/go.mod h1:hGtW6nK1AC+d9si/UBhw8Xli+QMOf6xyNAyJw4qU9w0= -google.golang.org/api v0.106.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= -google.golang.org/api v0.107.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= -google.golang.org/api v0.108.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= -google.golang.org/api v0.110.0/go.mod h1:7FC4Vvx1Mooxh8C5HWjzZHcavuS2f6pmJpZx60ca7iI= -google.golang.org/api v0.111.0/go.mod h1:qtFHvU9mhgTJegR31csQ+rwxyUTHOKFqCKWp1J0fdw0= -google.golang.org/api v0.114.0/go.mod h1:ifYI2ZsFK6/uGddGfAD5BMxlnkBqCmqHSDUVi45N5Yg= -google.golang.org/api v0.118.0/go.mod h1:76TtD3vkgmZ66zZzp72bUUklpmQmKlhh6sYtIjYK+5E= -google.golang.org/api v0.122.0/go.mod h1:gcitW0lvnyWjSp9nKxAbdHKIZ6vF4aajGueeslZOyms= -google.golang.org/api v0.124.0/go.mod h1:xu2HQurE5gi/3t1aFCvhPD781p0a3p11sdunTJ2BlP4= -google.golang.org/api v0.125.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= -google.golang.org/api v0.126.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= -google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/genproto v0.0.0-20180518175338-11a468237815/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= -google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= -google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= -google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA= -google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200423170343-7949de9c1215/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U= -google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= -google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= -google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200904004341-0bd0a958aa1d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201109203340-2640f1f9cdfb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210108203827-ffc7fda8c3d7/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210226172003-ab064af71705/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210329143202-679c6ae281ee/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= -google.golang.org/genproto v0.0.0-20210402141018-6c239bbf2bb1/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= -google.golang.org/genproto v0.0.0-20210513213006-bf773b8c8384/go.mod h1:P3QM42oQyzQSnHPnZ/vqoCdDmzH28fzWByN9asMeM8A= -google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210604141403-392c879c8b08/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210608205507-b6d2f5bf0d7d/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210624195500-8bfb893ecb84/go.mod h1:SzzZ/N+nwJDaO1kznhnlzqS8ocJICar6hYhVyhi++24= -google.golang.org/genproto v0.0.0-20210713002101-d411969a0d9a/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= -google.golang.org/genproto v0.0.0-20210716133855-ce7ef5c701ea/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= -google.golang.org/genproto v0.0.0-20210728212813-7823e685a01f/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= -google.golang.org/genproto v0.0.0-20210805201207-89edb61ffb67/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= -google.golang.org/genproto v0.0.0-20210813162853-db860fec028c/go.mod h1:cFeNkxwySK631ADgubI+/XFU/xp8FD5KIVV4rj8UC5w= -google.golang.org/genproto v0.0.0-20210821163610-241b8fcbd6c8/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210831024726-fe130286e0e2/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210903162649-d08c68adba83/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210909211513-a8c4777a87af/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210924002016-3dee208752a0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211206160659-862468c7d6e0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211221195035-429b39de9b1c/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220126215142-9970aeb2e350/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220207164111-0872dc986b00/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220218161850-94dd64e39d7c/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220222213610-43724f9ea8cf/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220304144024-325a89244dc8/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220310185008-1973136f34c6/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220324131243-acbaeb5b85eb/go.mod h1:hAL49I2IFola2sVEjAn7MEwsja0xp51I0tlGAf9hz4E= -google.golang.org/genproto v0.0.0-20220329172620-7be39ac1afc7/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220413183235-5e96e2839df9/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220414192740-2d67ff6cf2b4/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220421151946-72621c1f0bd3/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220429170224-98d788798c3e/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220502173005-c8bf987b8c21/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220505152158-f39f71e6c8f3/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220518221133-4f43b3371335/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220523171625-347a074981d8/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220608133413-ed9918b62aac/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220616135557-88e70c0c3a90/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220617124728-180714bec0ad/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220624142145-8cd45d7dbd1f/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220628213854-d9e0b6570c03/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220722212130-b98a9ff5e252/go.mod h1:GkXuJDJ6aQ7lnJcRF+SJVgFdQhypqgl3LB1C9vabdRE= -google.golang.org/genproto v0.0.0-20220801145646-83ce21fca29f/go.mod h1:iHe1svFLAZg9VWz891+QbRMwUv9O/1Ww+/mngYeThbc= -google.golang.org/genproto v0.0.0-20220815135757-37a418bb8959/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220817144833-d7fd3f11b9b1/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220822174746-9e6da59bd2fc/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220829144015-23454907ede3/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220829175752-36a9c930ecbf/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220913154956-18f8339a66a5/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220914142337-ca0e39ece12f/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220915135415-7fd63a7952de/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220916172020-2692e8806bfa/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220919141832-68c03719ef51/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220920201722-2b89144ce006/go.mod h1:ht8XFiar2npT/g4vkk7O0WYS1sHOHbdujxbEp7CJWbw= -google.golang.org/genproto v0.0.0-20220926165614-551eb538f295/go.mod h1:woMGP53BroOrRY3xTxlbr8Y3eB/nzAvvFM83q7kG2OI= -google.golang.org/genproto v0.0.0-20220926220553-6981cbe3cfce/go.mod h1:woMGP53BroOrRY3xTxlbr8Y3eB/nzAvvFM83q7kG2OI= -google.golang.org/genproto v0.0.0-20221010155953-15ba04fc1c0e/go.mod h1:3526vdqwhZAwq4wsRUaVG555sVgsNmIjRtO7t/JH29U= -google.golang.org/genproto v0.0.0-20221014173430-6e2ab493f96b/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= -google.golang.org/genproto v0.0.0-20221014213838-99cd37c6964a/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= -google.golang.org/genproto v0.0.0-20221024153911-1573dae28c9c/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= -google.golang.org/genproto v0.0.0-20221024183307-1bc688fe9f3e/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= -google.golang.org/genproto v0.0.0-20221027153422-115e99e71e1c/go.mod h1:CGI5F/G+E5bKwmfYo09AXuVN4dD894kIKUFmVbP2/Fo= -google.golang.org/genproto v0.0.0-20221109142239-94d6d90a7d66/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221114212237-e4508ebdbee1/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221117204609-8f9c96812029/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221118155620-16455021b5e6/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221201164419-0e50fba7f41c/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221201204527-e3fa12d562f3/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221202195650-67e5cbc046fd/go.mod h1:cTsE614GARnxrLsqKREzmNYJACSWWpAWdNMwnD7c2BE= -google.golang.org/genproto v0.0.0-20221227171554-f9683d7f8bef/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230112194545-e10362b5ecf9/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230113154510-dbe35b8444a5/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230123190316-2c411cf9d197/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230124163310-31e0e69b6fc2/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230125152338-dcaf20b6aeaa/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230127162408-596548ed4efa/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230209215440-0dfe4f8abfcc/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230216225411-c8e22ba71e44/go.mod h1:8B0gmkoRebU8ukX6HP+4wrVQUY1+6PkQ44BSyIlflHA= -google.golang.org/genproto v0.0.0-20230222225845-10f96fb3dbec/go.mod h1:3Dl5ZL0q0isWJt+FVcfpQyirqemEuLAK/iFvg1UP1Hw= -google.golang.org/genproto v0.0.0-20230223222841-637eb2293923/go.mod h1:3Dl5ZL0q0isWJt+FVcfpQyirqemEuLAK/iFvg1UP1Hw= -google.golang.org/genproto v0.0.0-20230303212802-e74f57abe488/go.mod h1:TvhZT5f700eVlTNwND1xoEZQeWTB2RY/65kplwl/bFA= -google.golang.org/genproto v0.0.0-20230306155012-7f2fa6fef1f4/go.mod h1:NWraEVixdDnqcqQ30jipen1STv2r/n24Wb7twVTGR4s= -google.golang.org/genproto v0.0.0-20230320184635-7606e756e683/go.mod h1:NWraEVixdDnqcqQ30jipen1STv2r/n24Wb7twVTGR4s= -google.golang.org/genproto v0.0.0-20230323212658-478b75c54725/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= -google.golang.org/genproto v0.0.0-20230330154414-c0448cd141ea/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= -google.golang.org/genproto v0.0.0-20230331144136-dcfb400f0633/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= -google.golang.org/genproto v0.0.0-20230403163135-c38d8f061ccd/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= -google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1/go.mod h1:nKE/iIaLqn2bQwXBg8f1g2Ylh6r5MN5CmZvuzZCgsCU= -google.golang.org/genproto v0.0.0-20230525154841-bd750badd5c6/go.mod h1:nKE/iIaLqn2bQwXBg8f1g2Ylh6r5MN5CmZvuzZCgsCU= -google.golang.org/genproto v0.0.0-20230525234025-438c736192d0/go.mod h1:9ExIQyXL5hZrHzQceCwuSYwZZ5QZBazOcprJ5rgs3lY= -google.golang.org/genproto v0.0.0-20230526161137-0005af68ea54/go.mod h1:zqTuNwFlFRsw5zIts5VnzLQxSRqh+CGOTVMlYbY0Eyk= -google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:xZnkP7mREFX5MORlOPEzLMr+90PPZQ2QWzrVTWfAq64= -google.golang.org/genproto v0.0.0-20230629202037-9506855d4529/go.mod h1:xZnkP7mREFX5MORlOPEzLMr+90PPZQ2QWzrVTWfAq64= -google.golang.org/genproto v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:O9kGHb51iE/nOGvQaDUuadVYqovW56s5emA88lQnj6Y= -google.golang.org/genproto v0.0.0-20230726155614-23370e0ffb3e/go.mod h1:0ggbjUrZYpy1q+ANUS30SEoGZ53cdfwtbuG7Ptgy108= -google.golang.org/genproto v0.0.0-20230803162519-f966b187b2e5/go.mod h1:oH/ZOT02u4kWEp7oYBGYFFkCdKS/uYR9Z7+0/xuuFp8= -google.golang.org/genproto v0.0.0-20230815205213-6bfd019c3878/go.mod h1:yZTlhN0tQnXo3h00fuXNCxJdLdIdnVFVBaRJ5LWBbw4= -google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d h1:VBu5YqKPv6XiJ199exd8Br+Aetz+o08F+PLMnwJQHAY= -google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d/go.mod h1:yZTlhN0tQnXo3h00fuXNCxJdLdIdnVFVBaRJ5LWBbw4= -google.golang.org/genproto/googleapis/api v0.0.0-20230525234020-1aefcd67740a/go.mod h1:ts19tUU+Z0ZShN1y3aPyq2+O3d5FUNNgT6FtOzmrNn8= -google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20230629202037-9506855d4529/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:mPBs5jNgx2GuQGvFwUvVKqtn6HsUw9nP64BedgvqEsQ= -google.golang.org/genproto/googleapis/api v0.0.0-20230726155614-23370e0ffb3e/go.mod h1:rsr7RhLuwsDKL7RmgDDCUc6yaGr1iqceVb5Wv6f6YvQ= -google.golang.org/genproto/googleapis/api v0.0.0-20230803162519-f966b187b2e5/go.mod h1:5DZzOUPCLYL3mNkQ0ms0F3EuUNZ7py1Bqeq6sxzI7/Q= -google.golang.org/genproto/googleapis/api v0.0.0-20230815205213-6bfd019c3878/go.mod h1:KjSP20unUpOx5kyQUFa7k4OJg0qeJ7DEZflGDu2p6Bk= -google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d h1:DoPTO70H+bcDXcd39vOqb2viZxgqeBeSGtZ55yZU4/Q= -google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d/go.mod h1:KjSP20unUpOx5kyQUFa7k4OJg0qeJ7DEZflGDu2p6Bk= -google.golang.org/genproto/googleapis/bytestream v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:ylj+BE99M198VPbBh6A8d9n3w8fChvyLK3wwBOjXBFA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234015-3fc162c6f38a/go.mod h1:xURIpW9ES5+/GZhnV6beoEtxQrnkRGIfP5VQG2tCBLc= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230629202037-9506855d4529/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:8mL13HKkDa+IuJ8yruA3ci0q+0vsUz4m//+ottjwS5o= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230731190214-cbb8c96f2d6d/go.mod h1:TUfxEVdsvPg18p6AslUXFoLdpED4oBnGwyqk3dV1XzM= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230803162519-f966b187b2e5/go.mod h1:zBEcrKX2ZOcEkHWxBPAIvYUWOKKMIhYcmNiUIu2ji3I= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230815205213-6bfd019c3878/go.mod h1:+Bk1OCOj40wS2hwAMA+aCW9ypzm63QTBBHp6lQ3p+9M= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d h1:uvYuEyMHKNt+lT4K3bN6fGswmK8qSvcreM3BwjDh+y4= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d/go.mod h1:+Bk1OCOj40wS2hwAMA+aCW9ypzm63QTBBHp6lQ3p+9M= -google.golang.org/grpc v1.12.0/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw= +google.golang.org/genproto v0.0.0-20231127180814-3a041ad873d4 h1:W12Pwm4urIbRdGhMEg2NM9O3TWKjNcxQhs46V0ypf/k= +google.golang.org/genproto v0.0.0-20231127180814-3a041ad873d4/go.mod h1:5RBcpGRxr25RbDzY5w+dmaqpSEvl8Gwl1x2CICf60ic= +google.golang.org/genproto/googleapis/api v0.0.0-20231127180814-3a041ad873d4 h1:ZcOkrmX74HbKFYnpPY8Qsw93fC29TbJXspYKaBkSXDQ= +google.golang.org/genproto/googleapis/api v0.0.0-20231127180814-3a041ad873d4/go.mod h1:k2dtGpRrbsSyKcNPKKI5sstZkrNCZwpU/ns96JoHbGg= +google.golang.org/genproto/googleapis/rpc v0.0.0-20231127180814-3a041ad873d4 h1:DC7wcm+i+P1rN3Ff07vL+OndGg5OhNddHyTA+ocPqYE= +google.golang.org/genproto/googleapis/rpc v0.0.0-20231127180814-3a041ad873d4/go.mod h1:eJVxU6o+4G1PSczBr85xmyvSNYAKvAYgkub40YGomFM= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= -google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= -google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= -google.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= -google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60= google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk= -google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.31.1/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0= -google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= -google.golang.org/grpc v1.34.0/go.mod h1:WotjhfgOW/POjDeRt8vscBtXq+2VjORFy659qA51WJ8= -google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.37.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.37.1/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.39.0/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= -google.golang.org/grpc v1.39.1/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= -google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= -google.golang.org/grpc v1.40.1/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= -google.golang.org/grpc v1.42.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= -google.golang.org/grpc v1.44.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= -google.golang.org/grpc v1.45.0/go.mod h1:lN7owxKUQEqMfSyQikvvk5tf/6zMPsrK+ONuO11+0rQ= -google.golang.org/grpc v1.46.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.46.2/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.47.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.48.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.49.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= -google.golang.org/grpc v1.50.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= -google.golang.org/grpc v1.50.1/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= -google.golang.org/grpc v1.51.0/go.mod h1:wgNDFcnuBGmxLKI/qn4T+m5BtEBYXJPvibbUPsAIPww= -google.golang.org/grpc v1.52.0/go.mod h1:pu6fVzoFb+NBYNAvQL08ic+lvB2IojljRYuun5vorUY= -google.golang.org/grpc v1.52.3/go.mod h1:pu6fVzoFb+NBYNAvQL08ic+lvB2IojljRYuun5vorUY= -google.golang.org/grpc v1.53.0/go.mod h1:OnIrk0ipVdj4N5d9IUoFUx72/VlD7+jUsHwZgwSMQpw= -google.golang.org/grpc v1.54.0/go.mod h1:PUSEXI6iWghWaB6lXM4knEgpJNu2qUcKfDtNci3EC2g= -google.golang.org/grpc v1.55.0/go.mod h1:iYEXKGkEBhg1PjZQvoYEVPTDkHo1/bjTnfwTeGONTY8= -google.golang.org/grpc v1.56.2/go.mod h1:I9bI3vqKfayGqPUAwGdOSu7kt6oIJLixfffKrpXqQ9s= -google.golang.org/grpc v1.57.0 h1:kfzNeI/klCGD2YPMUlaGNT3pxvYfga7smW3Vth8Zsiw= -google.golang.org/grpc v1.57.0/go.mod h1:Sd+9RMTACXwmub0zcNY2c4arhtrbBYD1AUHI/dt16Mo= -google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= -google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= -google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= -google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= -google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE= -google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo= -google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= -google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= -google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= -google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= -google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= +google.golang.org/grpc v1.59.0 h1:Z5Iec2pjwb+LEOqzpB2MR12/eKFhDPhuqW91O+4bwUk= +google.golang.org/grpc v1.59.0/go.mod h1:aUPDwccQo6OTjy7Hct4AfBPD1GptF4fyUjIkQ9YtF98= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.29.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8= google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= -gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= -gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= -gopkg.in/validator.v2 v2.0.0-20200605151824-2b28d334fa05/go.mod h1:o4V0GXN9/CAmCsvJ0oXYZvrZOe7syiDZSN1GWGZTGzc= -gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= -honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -honnef.co/go/tools v0.1.3/go.mod h1:NgwopIslSNH47DimFoV78dnkksY2EFtX0ajyb3K/las= -lukechampine.com/uint128 v1.1.1/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= -lukechampine.com/uint128 v1.2.0/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= -modernc.org/cc/v3 v3.36.0/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= -modernc.org/cc/v3 v3.36.2/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= -modernc.org/cc/v3 v3.36.3/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= -modernc.org/cc/v3 v3.37.0/go.mod h1:vtL+3mdHx/wcj3iEGz84rQa8vEqR6XM84v5Lcvfph20= -modernc.org/cc/v3 v3.40.0/go.mod h1:/bTg4dnWkSXowUO6ssQKnOV0yMVxDYNIsIrzqTFDGH0= -modernc.org/ccgo/v3 v3.0.0-20220428102840-41399a37e894/go.mod h1:eI31LL8EwEBKPpNpA4bU1/i+sKOwOrQy8D87zWUcRZc= -modernc.org/ccgo/v3 v3.0.0-20220430103911-bc99d88307be/go.mod h1:bwdAnOoaIt8Ax9YdWGjxWsdkPcZyRPHqrOvJxaKAKGw= -modernc.org/ccgo/v3 v3.0.0-20220904174949-82d86e1b6d56/go.mod h1:YSXjPL62P2AMSxBphRHPn7IkzhVHqkvOnRKAKh+W6ZI= -modernc.org/ccgo/v3 v3.16.4/go.mod h1:tGtX0gE9Jn7hdZFeU88slbTh1UtCYKusWOoCJuvkWsQ= -modernc.org/ccgo/v3 v3.16.6/go.mod h1:tGtX0gE9Jn7hdZFeU88slbTh1UtCYKusWOoCJuvkWsQ= -modernc.org/ccgo/v3 v3.16.8/go.mod h1:zNjwkizS+fIFDrDjIAgBSCLkWbJuHF+ar3QRn+Z9aws= -modernc.org/ccgo/v3 v3.16.9/go.mod h1:zNMzC9A9xeNUepy6KuZBbugn3c0Mc9TeiJO4lgvkJDo= -modernc.org/ccgo/v3 v3.16.13-0.20221017192402-261537637ce8/go.mod h1:fUB3Vn0nVPReA+7IG7yZDfjv1TMWjhQP8gCxrFAtL5g= -modernc.org/ccgo/v3 v3.16.13/go.mod h1:2Quk+5YgpImhPjv2Qsob1DnZ/4som1lJTodubIcoUkY= -modernc.org/ccorpus v1.11.6/go.mod h1:2gEUTrWqdpH2pXsmTM1ZkjeSrUWDpjMu2T6m29L/ErQ= -modernc.org/httpfs v1.0.6/go.mod h1:7dosgurJGp0sPaRanU53W4xZYKh14wfzX420oZADeHM= -modernc.org/libc v0.0.0-20220428101251-2d5f3daf273b/go.mod h1:p7Mg4+koNjc8jkqwcoFBJx7tXkpj00G77X7A72jXPXA= -modernc.org/libc v1.16.0/go.mod h1:N4LD6DBE9cf+Dzf9buBlzVJndKr/iJHG97vGLHYnb5A= -modernc.org/libc v1.16.1/go.mod h1:JjJE0eu4yeK7tab2n4S1w8tlWd9MxXLRzheaRnAKymU= -modernc.org/libc v1.16.17/go.mod h1:hYIV5VZczAmGZAnG15Vdngn5HSF5cSkbvfz2B7GRuVU= -modernc.org/libc v1.16.19/go.mod h1:p7Mg4+koNjc8jkqwcoFBJx7tXkpj00G77X7A72jXPXA= -modernc.org/libc v1.17.0/go.mod h1:XsgLldpP4aWlPlsjqKRdHPqCxCjISdHfM/yeWC5GyW0= -modernc.org/libc v1.17.1/go.mod h1:FZ23b+8LjxZs7XtFMbSzL/EhPxNbfZbErxEHc7cbD9s= -modernc.org/libc v1.17.4/go.mod h1:WNg2ZH56rDEwdropAJeZPQkXmDwh+JCA1s/htl6r2fA= -modernc.org/libc v1.18.0/go.mod h1:vj6zehR5bfc98ipowQOM2nIDUZnVew/wNC/2tOGS+q0= -modernc.org/libc v1.20.3/go.mod h1:ZRfIaEkgrYgZDl6pa4W39HgN5G/yDW+NRmNKZBDFrk0= -modernc.org/libc v1.21.4/go.mod h1:przBsL5RDOZajTVslkugzLBj1evTue36jEomFQOoYuI= -modernc.org/libc v1.22.2/go.mod h1:uvQavJ1pZ0hIoC/jfqNoMLURIMhKzINIWypNM17puug= -modernc.org/mathutil v1.2.2/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= -modernc.org/mathutil v1.4.1/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= -modernc.org/mathutil v1.5.0/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= -modernc.org/memory v1.1.1/go.mod h1:/0wo5ibyrQiaoUoH7f9D8dnglAmILJ5/cxZlRECf+Nw= -modernc.org/memory v1.2.0/go.mod h1:/0wo5ibyrQiaoUoH7f9D8dnglAmILJ5/cxZlRECf+Nw= -modernc.org/memory v1.2.1/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= -modernc.org/memory v1.3.0/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= -modernc.org/memory v1.4.0/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= -modernc.org/memory v1.5.0/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= -modernc.org/opt v0.1.1/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0= -modernc.org/opt v0.1.3/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0= -modernc.org/sqlite v1.18.1/go.mod h1:6ho+Gow7oX5V+OiOQ6Tr4xeqbx13UZ6t+Fw9IRUG4d4= -modernc.org/sqlite v1.18.2/go.mod h1:kvrTLEWgxUcHa2GfHBQtanR1H9ht3hTJNtKpzH9k1u0= -modernc.org/strutil v1.1.1/go.mod h1:DE+MQQ/hjKBZS2zNInV5hhcipt5rLPWkmpbGeW5mmdw= -modernc.org/strutil v1.1.3/go.mod h1:MEHNA7PdEnEwLvspRMtWTNnp2nnyvMfkimT1NKNAGbw= -modernc.org/tcl v1.13.1/go.mod h1:XOLfOwzhkljL4itZkK6T72ckMgvj0BDsnKNdZVUOecw= -modernc.org/tcl v1.13.2/go.mod h1:7CLiGIPo1M8Rv1Mitpv5akc2+8fxUd2y2UzC/MfMzy0= -modernc.org/token v1.0.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= -modernc.org/token v1.0.1/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= -modernc.org/token v1.1.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= -modernc.org/z v1.5.1/go.mod h1:eWFB510QWW5Th9YGZT81s+LwvaAs3Q2yr4sP0rmLkv8= -rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= -rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4= -rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= -rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= diff --git a/loadgen/kitchen-sink-gen/src/main.rs b/loadgen/kitchen-sink-gen/src/main.rs index 47d0a08..ba3300f 100644 --- a/loadgen/kitchen-sink-gen/src/main.rs +++ b/loadgen/kitchen-sink-gen/src/main.rs @@ -233,7 +233,7 @@ fn example(args: ExampleCmd) -> Result<(), Error> { } .into(), ReturnResultAction { - return_this: Some(Payload::default()), + return_this: Some(empty_payload()), } .into(), ])], @@ -315,7 +315,7 @@ impl<'a> Arbitrary<'a> for TestInput { // Finally, return at the end client_sequence.action_sets.push(ClientActionSet { actions: vec![mk_client_signal_action([ReturnResultAction { - return_this: Some(Payload::default()), + return_this: Some(empty_payload()), } .into()])], ..Default::default() @@ -581,7 +581,7 @@ impl<'a> Arbitrary<'a> for ExecuteChildWorkflowAction { }, Action { variant: Some(action::Variant::ReturnResult(ReturnResultAction { - return_this: Some(Payload::default()), + return_this: Some(empty_payload()), })), }, ], @@ -807,3 +807,14 @@ fn to_proto_payload(msg: impl Message, type_name: &str) -> Payload { data: msg.encode_to_vec(), } } + +fn empty_payload() -> Payload { + Payload { + metadata: { + let mut m = HashMap::new(); + m.insert("encoding".to_string(), "json/plain".into()); + m + }, + data: serde_json::to_vec("").expect("serializes"), + } +} diff --git a/workers/go/go.mod b/workers/go/go.mod index 1cc9850..01af35f 100644 --- a/workers/go/go.mod +++ b/workers/go/go.mod @@ -6,7 +6,8 @@ require github.com/temporalio/omes v1.0.0 require ( github.com/spf13/cobra v1.7.0 - go.temporal.io/sdk v1.25.0 + go.temporal.io/api v1.26.1 + go.temporal.io/sdk v1.25.2-0.20231129171107-288a04f72145 go.uber.org/zap v1.25.0 ) @@ -15,14 +16,12 @@ require ( github.com/cespare/xxhash/v2 v2.2.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a // indirect - github.com/gogo/googleapis v1.4.1 // indirect github.com/gogo/protobuf v1.3.2 // indirect - github.com/gogo/status v1.1.1 // indirect github.com/golang/mock v1.6.0 // indirect github.com/golang/protobuf v1.5.3 // indirect github.com/google/uuid v1.3.1 // indirect github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect - github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect + github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.1 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/pborman/uuid v1.2.1 // indirect @@ -35,18 +34,17 @@ require ( github.com/spf13/pflag v1.0.5 // indirect github.com/stretchr/objx v0.5.1 // indirect github.com/stretchr/testify v1.8.4 // indirect - go.temporal.io/api v1.24.0 // indirect go.uber.org/atomic v1.11.0 // indirect go.uber.org/multierr v1.11.0 // indirect - golang.org/x/net v0.14.0 // indirect + golang.org/x/net v0.19.0 // indirect golang.org/x/sync v0.5.0 // indirect - golang.org/x/sys v0.11.0 // indirect - golang.org/x/text v0.12.0 // indirect + golang.org/x/sys v0.15.0 // indirect + golang.org/x/text v0.14.0 // indirect golang.org/x/time v0.3.0 // indirect - google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect - google.golang.org/grpc v1.57.0 // indirect + google.golang.org/genproto v0.0.0-20231127180814-3a041ad873d4 // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20231127180814-3a041ad873d4 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20231127180814-3a041ad873d4 // indirect + google.golang.org/grpc v1.59.0 // indirect google.golang.org/protobuf v1.31.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) diff --git a/workers/go/go.sum b/workers/go/go.sum index 659b516..2f7b730 100644 --- a/workers/go/go.sum +++ b/workers/go/go.sum @@ -1,1053 +1,81 @@ cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= -cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU= -cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= -cloud.google.com/go v0.44.3/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= -cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc= -cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0= -cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To= -cloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4= -cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M= -cloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc= -cloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKVk= -cloud.google.com/go v0.57.0/go.mod h1:oXiQ6Rzq3RAkkY7N6t3TcE6jE+CIBBbA36lwQ1JyzZs= -cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOYc= -cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY= -cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= -cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= -cloud.google.com/go v0.75.0/go.mod h1:VGuuCn7PG0dwsd5XPVm2Mm3wlh3EL55/79EKB6hlPTY= -cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg= -cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8= -cloud.google.com/go v0.81.0/go.mod h1:mk/AM35KwGk/Nm2YSeZbxXdrNK3KZOYHmLkOqC2V6E0= -cloud.google.com/go v0.83.0/go.mod h1:Z7MJUsANfY0pYPdw0lbnivPx4/vhy/e2FEkSkF7vAVY= -cloud.google.com/go v0.84.0/go.mod h1:RazrYuxIK6Kb7YrzzhPoLmCVzl7Sup4NrbKPg8KHSUM= -cloud.google.com/go v0.87.0/go.mod h1:TpDYlFy7vuLzZMMZ+B6iRiELaY7z/gJPaqbMx6mlWcY= -cloud.google.com/go v0.90.0/go.mod h1:kRX0mNRHe0e2rC6oNakvwQqzyDmg57xJ+SZU1eT2aDQ= -cloud.google.com/go v0.93.3/go.mod h1:8utlLll2EF5XMAV15woO4lSbWQlk8rer9aLOfLh7+YI= -cloud.google.com/go v0.94.1/go.mod h1:qAlAugsXlC+JWO+Bke5vCtc9ONxjQT3drlTTnAplMW4= -cloud.google.com/go v0.97.0/go.mod h1:GF7l59pYBVlXQIBLx3a761cZ41F9bBH3JUlihCt2Udc= -cloud.google.com/go v0.99.0/go.mod h1:w0Xx2nLzqWJPuozYQX+hFfCSI8WioryfRDzkoI/Y2ZA= -cloud.google.com/go v0.100.1/go.mod h1:fs4QogzfH5n2pBXBP9vRiU+eCny7lD2vmFZy79Iuw1U= -cloud.google.com/go v0.100.2/go.mod h1:4Xra9TjzAeYHrl5+oeLlzbM2k3mjVhZh4UqTZ//w99A= -cloud.google.com/go v0.102.0/go.mod h1:oWcCzKlqJ5zgHQt9YsaeTY9KzIvjyy0ArmiBUgpQ+nc= -cloud.google.com/go v0.102.1/go.mod h1:XZ77E9qnTEnrgEOvr4xzfdX5TRo7fB4T2F4O6+34hIU= -cloud.google.com/go v0.104.0/go.mod h1:OO6xxXdJyvuJPcEPBLN9BJPD+jep5G1+2U5B5gkRYtA= -cloud.google.com/go v0.105.0/go.mod h1:PrLgOJNe5nfE9UMxKxgXj4mD3voiP+YQ6gdt6KMFOKM= -cloud.google.com/go v0.107.0/go.mod h1:wpc2eNrD7hXUTy8EKS10jkxpZBjASrORK7goS+3YX2I= -cloud.google.com/go v0.110.0/go.mod h1:SJnCLqQ0FCFGSZMUNUf84MV3Aia54kn7pi8st7tMzaY= -cloud.google.com/go v0.110.2/go.mod h1:k04UEeEtb6ZBRTv3dZz4CeJC3jKGxyhl0sAiVVquxiw= -cloud.google.com/go v0.110.4/go.mod h1:+EYjdK8e5RME/VY/qLCAtuyALQ9q67dvuum8i+H5xsI= -cloud.google.com/go v0.110.6/go.mod h1:+EYjdK8e5RME/VY/qLCAtuyALQ9q67dvuum8i+H5xsI= -cloud.google.com/go v0.110.7/go.mod h1:+EYjdK8e5RME/VY/qLCAtuyALQ9q67dvuum8i+H5xsI= -cloud.google.com/go/accessapproval v1.4.0/go.mod h1:zybIuC3KpDOvotz59lFe5qxRZx6C75OtwbisN56xYB4= -cloud.google.com/go/accessapproval v1.5.0/go.mod h1:HFy3tuiGvMdcd/u+Cu5b9NkO1pEICJ46IR82PoUdplw= -cloud.google.com/go/accessapproval v1.6.0/go.mod h1:R0EiYnwV5fsRFiKZkPHr6mwyk2wxUJ30nL4j2pcFY2E= -cloud.google.com/go/accessapproval v1.7.1/go.mod h1:JYczztsHRMK7NTXb6Xw+dwbs/WnOJxbo/2mTI+Kgg68= -cloud.google.com/go/accesscontextmanager v1.3.0/go.mod h1:TgCBehyr5gNMz7ZaH9xubp+CE8dkrszb4oK9CWyvD4o= -cloud.google.com/go/accesscontextmanager v1.4.0/go.mod h1:/Kjh7BBu/Gh83sv+K60vN9QE5NJcd80sU33vIe2IFPE= -cloud.google.com/go/accesscontextmanager v1.6.0/go.mod h1:8XCvZWfYw3K/ji0iVnp+6pu7huxoQTLmxAbVjbloTtM= -cloud.google.com/go/accesscontextmanager v1.7.0/go.mod h1:CEGLewx8dwa33aDAZQujl7Dx+uYhS0eay198wB/VumQ= -cloud.google.com/go/accesscontextmanager v1.8.0/go.mod h1:uI+AI/r1oyWK99NN8cQ3UK76AMelMzgZCvJfsi2c+ps= -cloud.google.com/go/accesscontextmanager v1.8.1/go.mod h1:JFJHfvuaTC+++1iL1coPiG1eu5D24db2wXCDWDjIrxo= -cloud.google.com/go/aiplatform v1.22.0/go.mod h1:ig5Nct50bZlzV6NvKaTwmplLLddFx0YReh9WfTO5jKw= -cloud.google.com/go/aiplatform v1.24.0/go.mod h1:67UUvRBKG6GTayHKV8DBv2RtR1t93YRu5B1P3x99mYY= -cloud.google.com/go/aiplatform v1.27.0/go.mod h1:Bvxqtl40l0WImSb04d0hXFU7gDOiq9jQmorivIiWcKg= -cloud.google.com/go/aiplatform v1.35.0/go.mod h1:7MFT/vCaOyZT/4IIFfxH4ErVg/4ku6lKv3w0+tFTgXQ= -cloud.google.com/go/aiplatform v1.36.1/go.mod h1:WTm12vJRPARNvJ+v6P52RDHCNe4AhvjcIZ/9/RRHy/k= -cloud.google.com/go/aiplatform v1.37.0/go.mod h1:IU2Cv29Lv9oCn/9LkFiiuKfwrRTq+QQMbW+hPCxJGZw= -cloud.google.com/go/aiplatform v1.45.0/go.mod h1:Iu2Q7sC7QGhXUeOhAj/oCK9a+ULz1O4AotZiqjQ8MYA= -cloud.google.com/go/aiplatform v1.48.0/go.mod h1:Iu2Q7sC7QGhXUeOhAj/oCK9a+ULz1O4AotZiqjQ8MYA= -cloud.google.com/go/analytics v0.11.0/go.mod h1:DjEWCu41bVbYcKyvlws9Er60YE4a//bK6mnhWvQeFNI= -cloud.google.com/go/analytics v0.12.0/go.mod h1:gkfj9h6XRf9+TS4bmuhPEShsh3hH8PAZzm/41OOhQd4= -cloud.google.com/go/analytics v0.17.0/go.mod h1:WXFa3WSym4IZ+JiKmavYdJwGG/CvpqiqczmL59bTD9M= -cloud.google.com/go/analytics v0.18.0/go.mod h1:ZkeHGQlcIPkw0R/GW+boWHhCOR43xz9RN/jn7WcqfIE= -cloud.google.com/go/analytics v0.19.0/go.mod h1:k8liqf5/HCnOUkbawNtrWWc+UAzyDlW89doe8TtoDsE= -cloud.google.com/go/analytics v0.21.2/go.mod h1:U8dcUtmDmjrmUTnnnRnI4m6zKn/yaA5N9RlEkYFHpQo= -cloud.google.com/go/analytics v0.21.3/go.mod h1:U8dcUtmDmjrmUTnnnRnI4m6zKn/yaA5N9RlEkYFHpQo= -cloud.google.com/go/apigateway v1.3.0/go.mod h1:89Z8Bhpmxu6AmUxuVRg/ECRGReEdiP3vQtk4Z1J9rJk= -cloud.google.com/go/apigateway v1.4.0/go.mod h1:pHVY9MKGaH9PQ3pJ4YLzoj6U5FUDeDFBllIz7WmzJoc= -cloud.google.com/go/apigateway v1.5.0/go.mod h1:GpnZR3Q4rR7LVu5951qfXPJCHquZt02jf7xQx7kpqN8= -cloud.google.com/go/apigateway v1.6.1/go.mod h1:ufAS3wpbRjqfZrzpvLC2oh0MFlpRJm2E/ts25yyqmXA= -cloud.google.com/go/apigeeconnect v1.3.0/go.mod h1:G/AwXFAKo0gIXkPTVfZDd2qA1TxBXJ3MgMRBQkIi9jc= -cloud.google.com/go/apigeeconnect v1.4.0/go.mod h1:kV4NwOKqjvt2JYR0AoIWo2QGfoRtn/pkS3QlHp0Ni04= -cloud.google.com/go/apigeeconnect v1.5.0/go.mod h1:KFaCqvBRU6idyhSNyn3vlHXc8VMDJdRmwDF6JyFRqZ8= -cloud.google.com/go/apigeeconnect v1.6.1/go.mod h1:C4awq7x0JpLtrlQCr8AzVIzAaYgngRqWf9S5Uhg+wWs= -cloud.google.com/go/apigeeregistry v0.4.0/go.mod h1:EUG4PGcsZvxOXAdyEghIdXwAEi/4MEaoqLMLDMIwKXY= -cloud.google.com/go/apigeeregistry v0.5.0/go.mod h1:YR5+s0BVNZfVOUkMa5pAR2xGd0A473vA5M7j247o1wM= -cloud.google.com/go/apigeeregistry v0.6.0/go.mod h1:BFNzW7yQVLZ3yj0TKcwzb8n25CFBri51GVGOEUcgQsc= -cloud.google.com/go/apigeeregistry v0.7.1/go.mod h1:1XgyjZye4Mqtw7T9TsY4NW10U7BojBvG4RMD+vRDrIw= -cloud.google.com/go/apikeys v0.4.0/go.mod h1:XATS/yqZbaBK0HOssf+ALHp8jAlNHUgyfprvNcBIszU= -cloud.google.com/go/apikeys v0.5.0/go.mod h1:5aQfwY4D+ewMMWScd3hm2en3hCj+BROlyrt3ytS7KLI= -cloud.google.com/go/apikeys v0.6.0/go.mod h1:kbpXu5upyiAlGkKrJgQl8A0rKNNJ7dQ377pdroRSSi8= -cloud.google.com/go/appengine v1.4.0/go.mod h1:CS2NhuBuDXM9f+qscZ6V86m1MIIqPj3WC/UoEuR1Sno= -cloud.google.com/go/appengine v1.5.0/go.mod h1:TfasSozdkFI0zeoxW3PTBLiNqRmzraodCWatWI9Dmak= -cloud.google.com/go/appengine v1.6.0/go.mod h1:hg6i0J/BD2cKmDJbaFSYHFyZkgBEfQrDg/X0V5fJn84= -cloud.google.com/go/appengine v1.7.0/go.mod h1:eZqpbHFCqRGa2aCdope7eC0SWLV1j0neb/QnMJVWx6A= -cloud.google.com/go/appengine v1.7.1/go.mod h1:IHLToyb/3fKutRysUlFO0BPt5j7RiQ45nrzEJmKTo6E= -cloud.google.com/go/appengine v1.8.1/go.mod h1:6NJXGLVhZCN9aQ/AEDvmfzKEfoYBlfB80/BHiKVputY= -cloud.google.com/go/area120 v0.5.0/go.mod h1:DE/n4mp+iqVyvxHN41Vf1CR602GiHQjFPusMFW6bGR4= -cloud.google.com/go/area120 v0.6.0/go.mod h1:39yFJqWVgm0UZqWTOdqkLhjoC7uFfgXRC8g/ZegeAh0= -cloud.google.com/go/area120 v0.7.0/go.mod h1:a3+8EUD1SX5RUcCs3MY5YasiO1z6yLiNLRiFrykbynY= -cloud.google.com/go/area120 v0.7.1/go.mod h1:j84i4E1RboTWjKtZVWXPqvK5VHQFJRF2c1Nm69pWm9k= -cloud.google.com/go/area120 v0.8.1/go.mod h1:BVfZpGpB7KFVNxPiQBuHkX6Ed0rS51xIgmGyjrAfzsg= -cloud.google.com/go/artifactregistry v1.6.0/go.mod h1:IYt0oBPSAGYj/kprzsBjZ/4LnG/zOcHyFHjWPCi6SAQ= -cloud.google.com/go/artifactregistry v1.7.0/go.mod h1:mqTOFOnGZx8EtSqK/ZWcsm/4U8B77rbcLP6ruDU2Ixk= -cloud.google.com/go/artifactregistry v1.8.0/go.mod h1:w3GQXkJX8hiKN0v+at4b0qotwijQbYUqF2GWkZzAhC0= -cloud.google.com/go/artifactregistry v1.9.0/go.mod h1:2K2RqvA2CYvAeARHRkLDhMDJ3OXy26h3XW+3/Jh2uYc= -cloud.google.com/go/artifactregistry v1.11.1/go.mod h1:lLYghw+Itq9SONbCa1YWBoWs1nOucMH0pwXN1rOBZFI= -cloud.google.com/go/artifactregistry v1.11.2/go.mod h1:nLZns771ZGAwVLzTX/7Al6R9ehma4WUEhZGWV6CeQNQ= -cloud.google.com/go/artifactregistry v1.12.0/go.mod h1:o6P3MIvtzTOnmvGagO9v/rOjjA0HmhJ+/6KAXrmYDCI= -cloud.google.com/go/artifactregistry v1.13.0/go.mod h1:uy/LNfoOIivepGhooAUpL1i30Hgee3Cu0l4VTWHUC08= -cloud.google.com/go/artifactregistry v1.14.1/go.mod h1:nxVdG19jTaSTu7yA7+VbWL346r3rIdkZ142BSQqhn5E= -cloud.google.com/go/asset v1.5.0/go.mod h1:5mfs8UvcM5wHhqtSv8J1CtxxaQq3AdBxxQi2jGW/K4o= -cloud.google.com/go/asset v1.7.0/go.mod h1:YbENsRK4+xTiL+Ofoj5Ckf+O17kJtgp3Y3nn4uzZz5s= -cloud.google.com/go/asset v1.8.0/go.mod h1:mUNGKhiqIdbr8X7KNayoYvyc4HbbFO9URsjbytpUaW0= -cloud.google.com/go/asset v1.9.0/go.mod h1:83MOE6jEJBMqFKadM9NLRcs80Gdw76qGuHn8m3h8oHQ= -cloud.google.com/go/asset v1.10.0/go.mod h1:pLz7uokL80qKhzKr4xXGvBQXnzHn5evJAEAtZiIb0wY= -cloud.google.com/go/asset v1.11.1/go.mod h1:fSwLhbRvC9p9CXQHJ3BgFeQNM4c9x10lqlrdEUYXlJo= -cloud.google.com/go/asset v1.12.0/go.mod h1:h9/sFOa4eDIyKmH6QMpm4eUK3pDojWnUhTgJlk762Hg= -cloud.google.com/go/asset v1.13.0/go.mod h1:WQAMyYek/b7NBpYq/K4KJWcRqzoalEsxz/t/dTk4THw= -cloud.google.com/go/asset v1.14.1/go.mod h1:4bEJ3dnHCqWCDbWJ/6Vn7GVI9LerSi7Rfdi03hd+WTQ= -cloud.google.com/go/assuredworkloads v1.5.0/go.mod h1:n8HOZ6pff6re5KYfBXcFvSViQjDwxFkAkmUFffJRbbY= -cloud.google.com/go/assuredworkloads v1.6.0/go.mod h1:yo2YOk37Yc89Rsd5QMVECvjaMKymF9OP+QXWlKXUkXw= -cloud.google.com/go/assuredworkloads v1.7.0/go.mod h1:z/736/oNmtGAyU47reJgGN+KVoYoxeLBoj4XkKYscNI= -cloud.google.com/go/assuredworkloads v1.8.0/go.mod h1:AsX2cqyNCOvEQC8RMPnoc0yEarXQk6WEKkxYfL6kGIo= -cloud.google.com/go/assuredworkloads v1.9.0/go.mod h1:kFuI1P78bplYtT77Tb1hi0FMxM0vVpRC7VVoJC3ZoT0= -cloud.google.com/go/assuredworkloads v1.10.0/go.mod h1:kwdUQuXcedVdsIaKgKTp9t0UJkE5+PAVNhdQm4ZVq2E= -cloud.google.com/go/assuredworkloads v1.11.1/go.mod h1:+F04I52Pgn5nmPG36CWFtxmav6+7Q+c5QyJoL18Lry0= -cloud.google.com/go/automl v1.5.0/go.mod h1:34EjfoFGMZ5sgJ9EoLsRtdPSNZLcfflJR39VbVNS2M0= -cloud.google.com/go/automl v1.6.0/go.mod h1:ugf8a6Fx+zP0D59WLhqgTDsQI9w07o64uf/Is3Nh5p8= -cloud.google.com/go/automl v1.7.0/go.mod h1:RL9MYCCsJEOmt0Wf3z9uzG0a7adTT1fe+aObgSpkCt8= -cloud.google.com/go/automl v1.8.0/go.mod h1:xWx7G/aPEe/NP+qzYXktoBSDfjO+vnKMGgsApGJJquM= -cloud.google.com/go/automl v1.12.0/go.mod h1:tWDcHDp86aMIuHmyvjuKeeHEGq76lD7ZqfGLN6B0NuU= -cloud.google.com/go/automl v1.13.1/go.mod h1:1aowgAHWYZU27MybSCFiukPO7xnyawv7pt3zK4bheQE= -cloud.google.com/go/baremetalsolution v0.3.0/go.mod h1:XOrocE+pvK1xFfleEnShBlNAXf+j5blPPxrhjKgnIFc= -cloud.google.com/go/baremetalsolution v0.4.0/go.mod h1:BymplhAadOO/eBa7KewQ0Ppg4A4Wplbn+PsFKRLo0uI= -cloud.google.com/go/baremetalsolution v0.5.0/go.mod h1:dXGxEkmR9BMwxhzBhV0AioD0ULBmuLZI8CdwalUxuss= -cloud.google.com/go/baremetalsolution v1.1.1/go.mod h1:D1AV6xwOksJMV4OSlWHtWuFNZZYujJknMAP4Qa27QIA= -cloud.google.com/go/batch v0.3.0/go.mod h1:TR18ZoAekj1GuirsUsR1ZTKN3FC/4UDnScjT8NXImFE= -cloud.google.com/go/batch v0.4.0/go.mod h1:WZkHnP43R/QCGQsZ+0JyG4i79ranE2u8xvjq/9+STPE= -cloud.google.com/go/batch v0.7.0/go.mod h1:vLZN95s6teRUqRQ4s3RLDsH8PvboqBK+rn1oevL159g= -cloud.google.com/go/batch v1.3.1/go.mod h1:VguXeQKXIYaeeIYbuozUmBR13AfL4SJP7IltNPS+A4A= -cloud.google.com/go/beyondcorp v0.2.0/go.mod h1:TB7Bd+EEtcw9PCPQhCJtJGjk/7TC6ckmnSFS+xwTfm4= -cloud.google.com/go/beyondcorp v0.3.0/go.mod h1:E5U5lcrcXMsCuoDNyGrpyTm/hn7ne941Jz2vmksAxW8= -cloud.google.com/go/beyondcorp v0.4.0/go.mod h1:3ApA0mbhHx6YImmuubf5pyW8srKnCEPON32/5hj+RmM= -cloud.google.com/go/beyondcorp v0.5.0/go.mod h1:uFqj9X+dSfrheVp7ssLTaRHd2EHqSL4QZmH4e8WXGGU= -cloud.google.com/go/beyondcorp v0.6.1/go.mod h1:YhxDWw946SCbmcWo3fAhw3V4XZMSpQ/VYfcKGAEU8/4= -cloud.google.com/go/beyondcorp v1.0.0/go.mod h1:YhxDWw946SCbmcWo3fAhw3V4XZMSpQ/VYfcKGAEU8/4= -cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= -cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= -cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= -cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= -cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= -cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= -cloud.google.com/go/bigquery v1.42.0/go.mod h1:8dRTJxhtG+vwBKzE5OseQn/hiydoQN3EedCaOdYmxRA= -cloud.google.com/go/bigquery v1.43.0/go.mod h1:ZMQcXHsl+xmU1z36G2jNGZmKp9zNY5BUua5wDgmNCfw= -cloud.google.com/go/bigquery v1.44.0/go.mod h1:0Y33VqXTEsbamHJvJHdFmtqHvMIY28aK1+dFsvaChGc= -cloud.google.com/go/bigquery v1.47.0/go.mod h1:sA9XOgy0A8vQK9+MWhEQTY6Tix87M/ZurWFIxmF9I/E= -cloud.google.com/go/bigquery v1.48.0/go.mod h1:QAwSz+ipNgfL5jxiaK7weyOhzdoAy1zFm0Nf1fysJac= -cloud.google.com/go/bigquery v1.49.0/go.mod h1:Sv8hMmTFFYBlt/ftw2uN6dFdQPzBlREY9yBh7Oy7/4Q= -cloud.google.com/go/bigquery v1.50.0/go.mod h1:YrleYEh2pSEbgTBZYMJ5SuSr0ML3ypjRB1zgf7pvQLU= -cloud.google.com/go/bigquery v1.52.0/go.mod h1:3b/iXjRQGU4nKa87cXeg6/gogLjO8C6PmuM8i5Bi/u4= -cloud.google.com/go/bigquery v1.53.0/go.mod h1:3b/iXjRQGU4nKa87cXeg6/gogLjO8C6PmuM8i5Bi/u4= -cloud.google.com/go/billing v1.4.0/go.mod h1:g9IdKBEFlItS8bTtlrZdVLWSSdSyFUZKXNS02zKMOZY= -cloud.google.com/go/billing v1.5.0/go.mod h1:mztb1tBc3QekhjSgmpf/CV4LzWXLzCArwpLmP2Gm88s= -cloud.google.com/go/billing v1.6.0/go.mod h1:WoXzguj+BeHXPbKfNWkqVtDdzORazmCjraY+vrxcyvI= -cloud.google.com/go/billing v1.7.0/go.mod h1:q457N3Hbj9lYwwRbnlD7vUpyjq6u5U1RAOArInEiD5Y= -cloud.google.com/go/billing v1.12.0/go.mod h1:yKrZio/eu+okO/2McZEbch17O5CB5NpZhhXG6Z766ss= -cloud.google.com/go/billing v1.13.0/go.mod h1:7kB2W9Xf98hP9Sr12KfECgfGclsH3CQR0R08tnRlRbc= -cloud.google.com/go/billing v1.16.0/go.mod h1:y8vx09JSSJG02k5QxbycNRrN7FGZB6F3CAcgum7jvGA= -cloud.google.com/go/binaryauthorization v1.1.0/go.mod h1:xwnoWu3Y84jbuHa0zd526MJYmtnVXn0syOjaJgy4+dM= -cloud.google.com/go/binaryauthorization v1.2.0/go.mod h1:86WKkJHtRcv5ViNABtYMhhNWRrD1Vpi//uKEy7aYEfI= -cloud.google.com/go/binaryauthorization v1.3.0/go.mod h1:lRZbKgjDIIQvzYQS1p99A7/U1JqvqeZg0wiI5tp6tg0= -cloud.google.com/go/binaryauthorization v1.4.0/go.mod h1:tsSPQrBd77VLplV70GUhBf/Zm3FsKmgSqgm4UmiDItk= -cloud.google.com/go/binaryauthorization v1.5.0/go.mod h1:OSe4OU1nN/VswXKRBmciKpo9LulY41gch5c68htf3/Q= -cloud.google.com/go/binaryauthorization v1.6.1/go.mod h1:TKt4pa8xhowwffiBmbrbcxijJRZED4zrqnwZ1lKH51U= -cloud.google.com/go/certificatemanager v1.3.0/go.mod h1:n6twGDvcUBFu9uBgt4eYvvf3sQ6My8jADcOVwHmzadg= -cloud.google.com/go/certificatemanager v1.4.0/go.mod h1:vowpercVFyqs8ABSmrdV+GiFf2H/ch3KyudYQEMM590= -cloud.google.com/go/certificatemanager v1.6.0/go.mod h1:3Hh64rCKjRAX8dXgRAyOcY5vQ/fE1sh8o+Mdd6KPgY8= -cloud.google.com/go/certificatemanager v1.7.1/go.mod h1:iW8J3nG6SaRYImIa+wXQ0g8IgoofDFRp5UMzaNk1UqI= -cloud.google.com/go/channel v1.8.0/go.mod h1:W5SwCXDJsq/rg3tn3oG0LOxpAo6IMxNa09ngphpSlnk= -cloud.google.com/go/channel v1.9.0/go.mod h1:jcu05W0my9Vx4mt3/rEHpfxc9eKi9XwsdDL8yBMbKUk= -cloud.google.com/go/channel v1.11.0/go.mod h1:IdtI0uWGqhEeatSB62VOoJ8FSUhJ9/+iGkJVqp74CGE= -cloud.google.com/go/channel v1.12.0/go.mod h1:VkxCGKASi4Cq7TbXxlaBezonAYpp1GCnKMY6tnMQnLU= -cloud.google.com/go/channel v1.16.0/go.mod h1:eN/q1PFSl5gyu0dYdmxNXscY/4Fi7ABmeHCJNf/oHmc= -cloud.google.com/go/cloudbuild v1.3.0/go.mod h1:WequR4ULxlqvMsjDEEEFnOG5ZSRSgWOywXYDb1vPE6U= -cloud.google.com/go/cloudbuild v1.4.0/go.mod h1:5Qwa40LHiOXmz3386FrjrYM93rM/hdRr7b53sySrTqA= -cloud.google.com/go/cloudbuild v1.6.0/go.mod h1:UIbc/w9QCbH12xX+ezUsgblrWv+Cv4Tw83GiSMHOn9M= -cloud.google.com/go/cloudbuild v1.7.0/go.mod h1:zb5tWh2XI6lR9zQmsm1VRA+7OCuve5d8S+zJUul8KTg= -cloud.google.com/go/cloudbuild v1.9.0/go.mod h1:qK1d7s4QlO0VwfYn5YuClDGg2hfmLZEb4wQGAbIgL1s= -cloud.google.com/go/cloudbuild v1.10.1/go.mod h1:lyJg7v97SUIPq4RC2sGsz/9tNczhyv2AjML/ci4ulzU= -cloud.google.com/go/cloudbuild v1.13.0/go.mod h1:lyJg7v97SUIPq4RC2sGsz/9tNczhyv2AjML/ci4ulzU= -cloud.google.com/go/clouddms v1.3.0/go.mod h1:oK6XsCDdW4Ib3jCCBugx+gVjevp2TMXFtgxvPSee3OM= -cloud.google.com/go/clouddms v1.4.0/go.mod h1:Eh7sUGCC+aKry14O1NRljhjyrr0NFC0G2cjwX0cByRk= -cloud.google.com/go/clouddms v1.5.0/go.mod h1:QSxQnhikCLUw13iAbffF2CZxAER3xDGNHjsTAkQJcQA= -cloud.google.com/go/clouddms v1.6.1/go.mod h1:Ygo1vL52Ov4TBZQquhz5fiw2CQ58gvu+PlS6PVXCpZI= -cloud.google.com/go/cloudtasks v1.5.0/go.mod h1:fD92REy1x5woxkKEkLdvavGnPJGEn8Uic9nWuLzqCpY= -cloud.google.com/go/cloudtasks v1.6.0/go.mod h1:C6Io+sxuke9/KNRkbQpihnW93SWDU3uXt92nu85HkYI= -cloud.google.com/go/cloudtasks v1.7.0/go.mod h1:ImsfdYWwlWNJbdgPIIGJWC+gemEGTBK/SunNQQNCAb4= -cloud.google.com/go/cloudtasks v1.8.0/go.mod h1:gQXUIwCSOI4yPVK7DgTVFiiP0ZW/eQkydWzwVMdHxrI= -cloud.google.com/go/cloudtasks v1.9.0/go.mod h1:w+EyLsVkLWHcOaqNEyvcKAsWp9p29dL6uL9Nst1cI7Y= -cloud.google.com/go/cloudtasks v1.10.0/go.mod h1:NDSoTLkZ3+vExFEWu2UJV1arUyzVDAiZtdWcsUyNwBs= -cloud.google.com/go/cloudtasks v1.11.1/go.mod h1:a9udmnou9KO2iulGscKR0qBYjreuX8oHwpmFsKspEvM= -cloud.google.com/go/cloudtasks v1.12.1/go.mod h1:a9udmnou9KO2iulGscKR0qBYjreuX8oHwpmFsKspEvM= -cloud.google.com/go/compute v0.1.0/go.mod h1:GAesmwr110a34z04OlxYkATPBEfVhkymfTBXtfbBFow= -cloud.google.com/go/compute v1.3.0/go.mod h1:cCZiE1NHEtai4wiufUhW8I8S1JKkAnhnQJWM7YD99wM= -cloud.google.com/go/compute v1.5.0/go.mod h1:9SMHyhJlzhlkJqrPAc839t2BZFTSk6Jdj6mkzQJeu0M= -cloud.google.com/go/compute v1.6.0/go.mod h1:T29tfhtVbq1wvAPo0E3+7vhgmkOYeXjhFvz/FMzPu0s= -cloud.google.com/go/compute v1.6.1/go.mod h1:g85FgpzFvNULZ+S8AYq87axRKuf2Kh7deLqV/jJ3thU= -cloud.google.com/go/compute v1.7.0/go.mod h1:435lt8av5oL9P3fv1OEzSbSUe+ybHXGMPQHHZWZxy9U= -cloud.google.com/go/compute v1.10.0/go.mod h1:ER5CLbMxl90o2jtNbGSbtfOpQKR0t15FOtRsugnLrlU= -cloud.google.com/go/compute v1.12.0/go.mod h1:e8yNOBcBONZU1vJKCvCoDw/4JQsA0dpM4x/6PIIOocU= -cloud.google.com/go/compute v1.12.1/go.mod h1:e8yNOBcBONZU1vJKCvCoDw/4JQsA0dpM4x/6PIIOocU= -cloud.google.com/go/compute v1.13.0/go.mod h1:5aPTS0cUNMIc1CE546K+Th6weJUNQErARyZtRXDJ8GE= -cloud.google.com/go/compute v1.14.0/go.mod h1:YfLtxrj9sU4Yxv+sXzZkyPjEyPBZfXHUvjxega5vAdo= -cloud.google.com/go/compute v1.15.1/go.mod h1:bjjoF/NtFUrkD/urWfdHaKuOPDR5nWIs63rR+SXhcpA= -cloud.google.com/go/compute v1.18.0/go.mod h1:1X7yHxec2Ga+Ss6jPyjxRxpu2uu7PLgsOVXvgU0yacs= -cloud.google.com/go/compute v1.19.0/go.mod h1:rikpw2y+UMidAe9tISo04EHNOIf42RLYF/q8Bs93scU= -cloud.google.com/go/compute v1.19.1/go.mod h1:6ylj3a05WF8leseCdIf77NK0g1ey+nj5IKd5/kvShxE= -cloud.google.com/go/compute v1.19.3/go.mod h1:qxvISKp/gYnXkSAD1ppcSOveRAmzxicEv/JlizULFrI= -cloud.google.com/go/compute v1.20.1/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM= -cloud.google.com/go/compute v1.23.0/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM= -cloud.google.com/go/compute/metadata v0.1.0/go.mod h1:Z1VN+bulIf6bt4P/C37K4DyZYZEXYonfTBHHFPO/4UU= -cloud.google.com/go/compute/metadata v0.2.0/go.mod h1:zFmK7XCadkQkj6TtorcaGlCW1hT1fIilQDwofLpJ20k= -cloud.google.com/go/compute/metadata v0.2.1/go.mod h1:jgHgmJd2RKBGzXqF5LR2EZMGxBkeanZ9wwa75XHJgOM= -cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA= -cloud.google.com/go/contactcenterinsights v1.3.0/go.mod h1:Eu2oemoePuEFc/xKFPjbTuPSj0fYJcPls9TFlPNnHHY= -cloud.google.com/go/contactcenterinsights v1.4.0/go.mod h1:L2YzkGbPsv+vMQMCADxJoT9YiTTnSEd6fEvCeHTYVck= -cloud.google.com/go/contactcenterinsights v1.6.0/go.mod h1:IIDlT6CLcDoyv79kDv8iWxMSTZhLxSCofVV5W6YFM/w= -cloud.google.com/go/contactcenterinsights v1.9.1/go.mod h1:bsg/R7zGLYMVxFFzfh9ooLTruLRCG9fnzhH9KznHhbM= -cloud.google.com/go/contactcenterinsights v1.10.0/go.mod h1:bsg/R7zGLYMVxFFzfh9ooLTruLRCG9fnzhH9KznHhbM= -cloud.google.com/go/container v1.6.0/go.mod h1:Xazp7GjJSeUYo688S+6J5V+n/t+G5sKBTFkKNudGRxg= -cloud.google.com/go/container v1.7.0/go.mod h1:Dp5AHtmothHGX3DwwIHPgq45Y8KmNsgN3amoYfxVkLo= -cloud.google.com/go/container v1.13.1/go.mod h1:6wgbMPeQRw9rSnKBCAJXnds3Pzj03C4JHamr8asWKy4= -cloud.google.com/go/container v1.14.0/go.mod h1:3AoJMPhHfLDxLvrlVWaK57IXzaPnLaZq63WX59aQBfM= -cloud.google.com/go/container v1.15.0/go.mod h1:ft+9S0WGjAyjDggg5S06DXj+fHJICWg8L7isCQe9pQA= -cloud.google.com/go/container v1.22.1/go.mod h1:lTNExE2R7f+DLbAN+rJiKTisauFCaoDq6NURZ83eVH4= -cloud.google.com/go/container v1.24.0/go.mod h1:lTNExE2R7f+DLbAN+rJiKTisauFCaoDq6NURZ83eVH4= -cloud.google.com/go/containeranalysis v0.5.1/go.mod h1:1D92jd8gRR/c0fGMlymRgxWD3Qw9C1ff6/T7mLgVL8I= -cloud.google.com/go/containeranalysis v0.6.0/go.mod h1:HEJoiEIu+lEXM+k7+qLCci0h33lX3ZqoYFdmPcoO7s4= -cloud.google.com/go/containeranalysis v0.7.0/go.mod h1:9aUL+/vZ55P2CXfuZjS4UjQ9AgXoSw8Ts6lemfmxBxI= -cloud.google.com/go/containeranalysis v0.9.0/go.mod h1:orbOANbwk5Ejoom+s+DUCTTJ7IBdBQJDcSylAx/on9s= -cloud.google.com/go/containeranalysis v0.10.1/go.mod h1:Ya2jiILITMY68ZLPaogjmOMNkwsDrWBSTyBubGXO7j0= -cloud.google.com/go/datacatalog v1.3.0/go.mod h1:g9svFY6tuR+j+hrTw3J2dNcmI0dzmSiyOzm8kpLq0a0= -cloud.google.com/go/datacatalog v1.5.0/go.mod h1:M7GPLNQeLfWqeIm3iuiruhPzkt65+Bx8dAKvScX8jvs= -cloud.google.com/go/datacatalog v1.6.0/go.mod h1:+aEyF8JKg+uXcIdAmmaMUmZ3q1b/lKLtXCmXdnc0lbc= -cloud.google.com/go/datacatalog v1.7.0/go.mod h1:9mEl4AuDYWw81UGc41HonIHH7/sn52H0/tc8f8ZbZIE= -cloud.google.com/go/datacatalog v1.8.0/go.mod h1:KYuoVOv9BM8EYz/4eMFxrr4DUKhGIOXxZoKYF5wdISM= -cloud.google.com/go/datacatalog v1.8.1/go.mod h1:RJ58z4rMp3gvETA465Vg+ag8BGgBdnRPEMMSTr5Uv+M= -cloud.google.com/go/datacatalog v1.12.0/go.mod h1:CWae8rFkfp6LzLumKOnmVh4+Zle4A3NXLzVJ1d1mRm0= -cloud.google.com/go/datacatalog v1.13.0/go.mod h1:E4Rj9a5ZtAxcQJlEBTLgMTphfP11/lNaAshpoBgemX8= -cloud.google.com/go/datacatalog v1.14.0/go.mod h1:h0PrGtlihoutNMp/uvwhawLQ9+c63Kz65UFqh49Yo+E= -cloud.google.com/go/datacatalog v1.14.1/go.mod h1:d2CevwTG4yedZilwe+v3E3ZBDRMobQfSG/a6cCCN5R4= -cloud.google.com/go/datacatalog v1.16.0/go.mod h1:d2CevwTG4yedZilwe+v3E3ZBDRMobQfSG/a6cCCN5R4= -cloud.google.com/go/dataflow v0.6.0/go.mod h1:9QwV89cGoxjjSR9/r7eFDqqjtvbKxAK2BaYU6PVk9UM= -cloud.google.com/go/dataflow v0.7.0/go.mod h1:PX526vb4ijFMesO1o202EaUmouZKBpjHsTlCtB4parQ= -cloud.google.com/go/dataflow v0.8.0/go.mod h1:Rcf5YgTKPtQyYz8bLYhFoIV/vP39eL7fWNcSOyFfLJE= -cloud.google.com/go/dataflow v0.9.1/go.mod h1:Wp7s32QjYuQDWqJPFFlnBKhkAtiFpMTdg00qGbnIHVw= -cloud.google.com/go/dataform v0.3.0/go.mod h1:cj8uNliRlHpa6L3yVhDOBrUXH+BPAO1+KFMQQNSThKo= -cloud.google.com/go/dataform v0.4.0/go.mod h1:fwV6Y4Ty2yIFL89huYlEkwUPtS7YZinZbzzj5S9FzCE= -cloud.google.com/go/dataform v0.5.0/go.mod h1:GFUYRe8IBa2hcomWplodVmUx/iTL0FrsauObOM3Ipr0= -cloud.google.com/go/dataform v0.6.0/go.mod h1:QPflImQy33e29VuapFdf19oPbE4aYTJxr31OAPV+ulA= -cloud.google.com/go/dataform v0.7.0/go.mod h1:7NulqnVozfHvWUBpMDfKMUESr+85aJsC/2O0o3jWPDE= -cloud.google.com/go/dataform v0.8.1/go.mod h1:3BhPSiw8xmppbgzeBbmDvmSWlwouuJkXsXsb8UBih9M= -cloud.google.com/go/datafusion v1.4.0/go.mod h1:1Zb6VN+W6ALo85cXnM1IKiPw+yQMKMhB9TsTSRDo/38= -cloud.google.com/go/datafusion v1.5.0/go.mod h1:Kz+l1FGHB0J+4XF2fud96WMmRiq/wj8N9u007vyXZ2w= -cloud.google.com/go/datafusion v1.6.0/go.mod h1:WBsMF8F1RhSXvVM8rCV3AeyWVxcC2xY6vith3iw3S+8= -cloud.google.com/go/datafusion v1.7.1/go.mod h1:KpoTBbFmoToDExJUso/fcCiguGDk7MEzOWXUsJo0wsI= -cloud.google.com/go/datalabeling v0.5.0/go.mod h1:TGcJ0G2NzcsXSE/97yWjIZO0bXj0KbVlINXMG9ud42I= -cloud.google.com/go/datalabeling v0.6.0/go.mod h1:WqdISuk/+WIGeMkpw/1q7bK/tFEZxsrFJOJdY2bXvTQ= -cloud.google.com/go/datalabeling v0.7.0/go.mod h1:WPQb1y08RJbmpM3ww0CSUAGweL0SxByuW2E+FU+wXcM= -cloud.google.com/go/datalabeling v0.8.1/go.mod h1:XS62LBSVPbYR54GfYQsPXZjTW8UxCK2fkDciSrpRFdY= -cloud.google.com/go/dataplex v1.3.0/go.mod h1:hQuRtDg+fCiFgC8j0zV222HvzFQdRd+SVX8gdmFcZzA= -cloud.google.com/go/dataplex v1.4.0/go.mod h1:X51GfLXEMVJ6UN47ESVqvlsRplbLhcsAt0kZCCKsU0A= -cloud.google.com/go/dataplex v1.5.2/go.mod h1:cVMgQHsmfRoI5KFYq4JtIBEUbYwc3c7tXmIDhRmNNVQ= -cloud.google.com/go/dataplex v1.6.0/go.mod h1:bMsomC/aEJOSpHXdFKFGQ1b0TDPIeL28nJObeO1ppRs= -cloud.google.com/go/dataplex v1.8.1/go.mod h1:7TyrDT6BCdI8/38Uvp0/ZxBslOslP2X2MPDucliyvSE= -cloud.google.com/go/dataplex v1.9.0/go.mod h1:7TyrDT6BCdI8/38Uvp0/ZxBslOslP2X2MPDucliyvSE= -cloud.google.com/go/dataproc v1.7.0/go.mod h1:CKAlMjII9H90RXaMpSxQ8EU6dQx6iAYNPcYPOkSbi8s= -cloud.google.com/go/dataproc v1.8.0/go.mod h1:5OW+zNAH0pMpw14JVrPONsxMQYMBqJuzORhIBfBn9uI= -cloud.google.com/go/dataproc v1.12.0/go.mod h1:zrF3aX0uV3ikkMz6z4uBbIKyhRITnxvr4i3IjKsKrw4= -cloud.google.com/go/dataproc/v2 v2.0.1/go.mod h1:7Ez3KRHdFGcfY7GcevBbvozX+zyWGcwLJvvAMwCaoZ4= -cloud.google.com/go/dataqna v0.5.0/go.mod h1:90Hyk596ft3zUQ8NkFfvICSIfHFh1Bc7C4cK3vbhkeo= -cloud.google.com/go/dataqna v0.6.0/go.mod h1:1lqNpM7rqNLVgWBJyk5NF6Uen2PHym0jtVJonplVsDA= -cloud.google.com/go/dataqna v0.7.0/go.mod h1:Lx9OcIIeqCrw1a6KdO3/5KMP1wAmTc0slZWwP12Qq3c= -cloud.google.com/go/dataqna v0.8.1/go.mod h1:zxZM0Bl6liMePWsHA8RMGAfmTG34vJMapbHAxQ5+WA8= -cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= -cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= -cloud.google.com/go/datastore v1.10.0/go.mod h1:PC5UzAmDEkAmkfaknstTYbNpgE49HAgW2J1gcgUfmdM= -cloud.google.com/go/datastore v1.11.0/go.mod h1:TvGxBIHCS50u8jzG+AW/ppf87v1of8nwzFNgEZU1D3c= -cloud.google.com/go/datastore v1.12.0/go.mod h1:KjdB88W897MRITkvWWJrg2OUtrR5XVj1EoLgSp6/N70= -cloud.google.com/go/datastore v1.12.1/go.mod h1:KjdB88W897MRITkvWWJrg2OUtrR5XVj1EoLgSp6/N70= -cloud.google.com/go/datastore v1.13.0/go.mod h1:KjdB88W897MRITkvWWJrg2OUtrR5XVj1EoLgSp6/N70= -cloud.google.com/go/datastream v1.2.0/go.mod h1:i/uTP8/fZwgATHS/XFu0TcNUhuA0twZxxQ3EyCUQMwo= -cloud.google.com/go/datastream v1.3.0/go.mod h1:cqlOX8xlyYF/uxhiKn6Hbv6WjwPPuI9W2M9SAXwaLLQ= -cloud.google.com/go/datastream v1.4.0/go.mod h1:h9dpzScPhDTs5noEMQVWP8Wx8AFBRyS0s8KWPx/9r0g= -cloud.google.com/go/datastream v1.5.0/go.mod h1:6TZMMNPwjUqZHBKPQ1wwXpb0d5VDVPl2/XoS5yi88q4= -cloud.google.com/go/datastream v1.6.0/go.mod h1:6LQSuswqLa7S4rPAOZFVjHIG3wJIjZcZrw8JDEDJuIs= -cloud.google.com/go/datastream v1.7.0/go.mod h1:uxVRMm2elUSPuh65IbZpzJNMbuzkcvu5CjMqVIUHrww= -cloud.google.com/go/datastream v1.9.1/go.mod h1:hqnmr8kdUBmrnk65k5wNRoHSCYksvpdZIcZIEl8h43Q= -cloud.google.com/go/datastream v1.10.0/go.mod h1:hqnmr8kdUBmrnk65k5wNRoHSCYksvpdZIcZIEl8h43Q= -cloud.google.com/go/deploy v1.4.0/go.mod h1:5Xghikd4VrmMLNaF6FiRFDlHb59VM59YoDQnOUdsH/c= -cloud.google.com/go/deploy v1.5.0/go.mod h1:ffgdD0B89tToyW/U/D2eL0jN2+IEV/3EMuXHA0l4r+s= -cloud.google.com/go/deploy v1.6.0/go.mod h1:f9PTHehG/DjCom3QH0cntOVRm93uGBDt2vKzAPwpXQI= -cloud.google.com/go/deploy v1.8.0/go.mod h1:z3myEJnA/2wnB4sgjqdMfgxCA0EqC3RBTNcVPs93mtQ= -cloud.google.com/go/deploy v1.11.0/go.mod h1:tKuSUV5pXbn67KiubiUNUejqLs4f5cxxiCNCeyl0F2g= -cloud.google.com/go/deploy v1.13.0/go.mod h1:tKuSUV5pXbn67KiubiUNUejqLs4f5cxxiCNCeyl0F2g= -cloud.google.com/go/dialogflow v1.15.0/go.mod h1:HbHDWs33WOGJgn6rfzBW1Kv807BE3O1+xGbn59zZWI4= -cloud.google.com/go/dialogflow v1.16.1/go.mod h1:po6LlzGfK+smoSmTBnbkIZY2w8ffjz/RcGSS+sh1el0= -cloud.google.com/go/dialogflow v1.17.0/go.mod h1:YNP09C/kXA1aZdBgC/VtXX74G/TKn7XVCcVumTflA+8= -cloud.google.com/go/dialogflow v1.18.0/go.mod h1:trO7Zu5YdyEuR+BhSNOqJezyFQ3aUzz0njv7sMx/iek= -cloud.google.com/go/dialogflow v1.19.0/go.mod h1:JVmlG1TwykZDtxtTXujec4tQ+D8SBFMoosgy+6Gn0s0= -cloud.google.com/go/dialogflow v1.29.0/go.mod h1:b+2bzMe+k1s9V+F2jbJwpHPzrnIyHihAdRFMtn2WXuM= -cloud.google.com/go/dialogflow v1.31.0/go.mod h1:cuoUccuL1Z+HADhyIA7dci3N5zUssgpBJmCzI6fNRB4= -cloud.google.com/go/dialogflow v1.32.0/go.mod h1:jG9TRJl8CKrDhMEcvfcfFkkpp8ZhgPz3sBGmAUYJ2qE= -cloud.google.com/go/dialogflow v1.38.0/go.mod h1:L7jnH+JL2mtmdChzAIcXQHXMvQkE3U4hTaNltEuxXn4= -cloud.google.com/go/dialogflow v1.40.0/go.mod h1:L7jnH+JL2mtmdChzAIcXQHXMvQkE3U4hTaNltEuxXn4= -cloud.google.com/go/dlp v1.6.0/go.mod h1:9eyB2xIhpU0sVwUixfBubDoRwP+GjeUoxxeueZmqvmM= -cloud.google.com/go/dlp v1.7.0/go.mod h1:68ak9vCiMBjbasxeVD17hVPxDEck+ExiHavX8kiHG+Q= -cloud.google.com/go/dlp v1.9.0/go.mod h1:qdgmqgTyReTz5/YNSSuueR8pl7hO0o9bQ39ZhtgkWp4= -cloud.google.com/go/dlp v1.10.1/go.mod h1:IM8BWz1iJd8njcNcG0+Kyd9OPnqnRNkDV8j42VT5KOI= -cloud.google.com/go/documentai v1.7.0/go.mod h1:lJvftZB5NRiFSX4moiye1SMxHx0Bc3x1+p9e/RfXYiU= -cloud.google.com/go/documentai v1.8.0/go.mod h1:xGHNEB7CtsnySCNrCFdCyyMz44RhFEEX2Q7UD0c5IhU= -cloud.google.com/go/documentai v1.9.0/go.mod h1:FS5485S8R00U10GhgBC0aNGrJxBP8ZVpEeJ7PQDZd6k= -cloud.google.com/go/documentai v1.10.0/go.mod h1:vod47hKQIPeCfN2QS/jULIvQTugbmdc0ZvxxfQY1bg4= -cloud.google.com/go/documentai v1.16.0/go.mod h1:o0o0DLTEZ+YnJZ+J4wNfTxmDVyrkzFvttBXXtYRMHkM= -cloud.google.com/go/documentai v1.18.0/go.mod h1:F6CK6iUH8J81FehpskRmhLq/3VlwQvb7TvwOceQ2tbs= -cloud.google.com/go/documentai v1.20.0/go.mod h1:yJkInoMcK0qNAEdRnqY/D5asy73tnPe88I1YTZT+a8E= -cloud.google.com/go/documentai v1.22.0/go.mod h1:yJkInoMcK0qNAEdRnqY/D5asy73tnPe88I1YTZT+a8E= -cloud.google.com/go/domains v0.6.0/go.mod h1:T9Rz3GasrpYk6mEGHh4rymIhjlnIuB4ofT1wTxDeT4Y= -cloud.google.com/go/domains v0.7.0/go.mod h1:PtZeqS1xjnXuRPKE/88Iru/LdfoRyEHYA9nFQf4UKpg= -cloud.google.com/go/domains v0.8.0/go.mod h1:M9i3MMDzGFXsydri9/vW+EWz9sWb4I6WyHqdlAk0idE= -cloud.google.com/go/domains v0.9.1/go.mod h1:aOp1c0MbejQQ2Pjf1iJvnVyT+z6R6s8pX66KaCSDYfE= -cloud.google.com/go/edgecontainer v0.1.0/go.mod h1:WgkZ9tp10bFxqO8BLPqv2LlfmQF1X8lZqwW4r1BTajk= -cloud.google.com/go/edgecontainer v0.2.0/go.mod h1:RTmLijy+lGpQ7BXuTDa4C4ssxyXT34NIuHIgKuP4s5w= -cloud.google.com/go/edgecontainer v0.3.0/go.mod h1:FLDpP4nykgwwIfcLt6zInhprzw0lEi2P1fjO6Ie0qbc= -cloud.google.com/go/edgecontainer v1.0.0/go.mod h1:cttArqZpBB2q58W/upSG++ooo6EsblxDIolxa3jSjbY= -cloud.google.com/go/edgecontainer v1.1.1/go.mod h1:O5bYcS//7MELQZs3+7mabRqoWQhXCzenBu0R8bz2rwk= -cloud.google.com/go/errorreporting v0.3.0/go.mod h1:xsP2yaAp+OAW4OIm60An2bbLpqIhKXdWR/tawvl7QzU= -cloud.google.com/go/essentialcontacts v1.3.0/go.mod h1:r+OnHa5jfj90qIfZDO/VztSFqbQan7HV75p8sA+mdGI= -cloud.google.com/go/essentialcontacts v1.4.0/go.mod h1:8tRldvHYsmnBCHdFpvU+GL75oWiBKl80BiqlFh9tp+8= -cloud.google.com/go/essentialcontacts v1.5.0/go.mod h1:ay29Z4zODTuwliK7SnX8E86aUF2CTzdNtvv42niCX0M= -cloud.google.com/go/essentialcontacts v1.6.2/go.mod h1:T2tB6tX+TRak7i88Fb2N9Ok3PvY3UNbUsMag9/BARh4= -cloud.google.com/go/eventarc v1.7.0/go.mod h1:6ctpF3zTnaQCxUjHUdcfgcA1A2T309+omHZth7gDfmc= -cloud.google.com/go/eventarc v1.8.0/go.mod h1:imbzxkyAU4ubfsaKYdQg04WS1NvncblHEup4kvF+4gw= -cloud.google.com/go/eventarc v1.10.0/go.mod h1:u3R35tmZ9HvswGRBnF48IlYgYeBcPUCjkr4BTdem2Kw= -cloud.google.com/go/eventarc v1.11.0/go.mod h1:PyUjsUKPWoRBCHeOxZd/lbOOjahV41icXyUY5kSTvVY= -cloud.google.com/go/eventarc v1.12.1/go.mod h1:mAFCW6lukH5+IZjkvrEss+jmt2kOdYlN8aMx3sRJiAI= -cloud.google.com/go/eventarc v1.13.0/go.mod h1:mAFCW6lukH5+IZjkvrEss+jmt2kOdYlN8aMx3sRJiAI= -cloud.google.com/go/filestore v1.3.0/go.mod h1:+qbvHGvXU1HaKX2nD0WEPo92TP/8AQuCVEBXNY9z0+w= -cloud.google.com/go/filestore v1.4.0/go.mod h1:PaG5oDfo9r224f8OYXURtAsY+Fbyq/bLYoINEK8XQAI= -cloud.google.com/go/filestore v1.5.0/go.mod h1:FqBXDWBp4YLHqRnVGveOkHDf8svj9r5+mUDLupOWEDs= -cloud.google.com/go/filestore v1.6.0/go.mod h1:di5unNuss/qfZTw2U9nhFqo8/ZDSc466dre85Kydllg= -cloud.google.com/go/filestore v1.7.1/go.mod h1:y10jsorq40JJnjR/lQ8AfFbbcGlw3g+Dp8oN7i7FjV4= -cloud.google.com/go/firestore v1.9.0/go.mod h1:HMkjKHNTtRyZNiMzu7YAsLr9K3X2udY2AMwDaMEQiiE= -cloud.google.com/go/firestore v1.11.0/go.mod h1:b38dKhgzlmNNGTNZZwe7ZRFEuRab1Hay3/DBsIGKKy4= -cloud.google.com/go/firestore v1.12.0/go.mod h1:b38dKhgzlmNNGTNZZwe7ZRFEuRab1Hay3/DBsIGKKy4= -cloud.google.com/go/functions v1.6.0/go.mod h1:3H1UA3qiIPRWD7PeZKLvHZ9SaQhR26XIJcC0A5GbvAk= -cloud.google.com/go/functions v1.7.0/go.mod h1:+d+QBcWM+RsrgZfV9xo6KfA1GlzJfxcfZcRPEhDDfzg= -cloud.google.com/go/functions v1.8.0/go.mod h1:RTZ4/HsQjIqIYP9a9YPbU+QFoQsAlYgrwOXJWHn1POY= -cloud.google.com/go/functions v1.9.0/go.mod h1:Y+Dz8yGguzO3PpIjhLTbnqV1CWmgQ5UwtlpzoyquQ08= -cloud.google.com/go/functions v1.10.0/go.mod h1:0D3hEOe3DbEvCXtYOZHQZmD+SzYsi1YbI7dGvHfldXw= -cloud.google.com/go/functions v1.12.0/go.mod h1:AXWGrF3e2C/5ehvwYo/GH6O5s09tOPksiKhz+hH8WkA= -cloud.google.com/go/functions v1.13.0/go.mod h1:EU4O007sQm6Ef/PwRsI8N2umygGqPBS/IZQKBQBcJ3c= -cloud.google.com/go/functions v1.15.1/go.mod h1:P5yNWUTkyU+LvW/S9O6V+V423VZooALQlqoXdoPz5AE= -cloud.google.com/go/gaming v1.5.0/go.mod h1:ol7rGcxP/qHTRQE/RO4bxkXq+Fix0j6D4LFPzYTIrDM= -cloud.google.com/go/gaming v1.6.0/go.mod h1:YMU1GEvA39Qt3zWGyAVA9bpYz/yAhTvaQ1t2sK4KPUA= -cloud.google.com/go/gaming v1.7.0/go.mod h1:LrB8U7MHdGgFG851iHAfqUdLcKBdQ55hzXy9xBJz0+w= -cloud.google.com/go/gaming v1.8.0/go.mod h1:xAqjS8b7jAVW0KFYeRUxngo9My3f33kFmua++Pi+ggM= -cloud.google.com/go/gaming v1.9.0/go.mod h1:Fc7kEmCObylSWLO334NcO+O9QMDyz+TKC4v1D7X+Bc0= -cloud.google.com/go/gaming v1.10.1/go.mod h1:XQQvtfP8Rb9Rxnxm5wFVpAp9zCQkJi2bLIb7iHGwB3s= -cloud.google.com/go/gkebackup v0.2.0/go.mod h1:XKvv/4LfG829/B8B7xRkk8zRrOEbKtEam6yNfuQNH60= -cloud.google.com/go/gkebackup v0.3.0/go.mod h1:n/E671i1aOQvUxT541aTkCwExO/bTer2HDlj4TsBRAo= -cloud.google.com/go/gkebackup v0.4.0/go.mod h1:byAyBGUwYGEEww7xsbnUTBHIYcOPy/PgUWUtOeRm9Vg= -cloud.google.com/go/gkebackup v1.3.0/go.mod h1:vUDOu++N0U5qs4IhG1pcOnD1Mac79xWy6GoBFlWCWBU= -cloud.google.com/go/gkeconnect v0.5.0/go.mod h1:c5lsNAg5EwAy7fkqX/+goqFsU1Da/jQFqArp+wGNr/o= -cloud.google.com/go/gkeconnect v0.6.0/go.mod h1:Mln67KyU/sHJEBY8kFZ0xTeyPtzbq9StAVvEULYK16A= -cloud.google.com/go/gkeconnect v0.7.0/go.mod h1:SNfmVqPkaEi3bF/B3CNZOAYPYdg7sU+obZ+QTky2Myw= -cloud.google.com/go/gkeconnect v0.8.1/go.mod h1:KWiK1g9sDLZqhxB2xEuPV8V9NYzrqTUmQR9shJHpOZw= -cloud.google.com/go/gkehub v0.9.0/go.mod h1:WYHN6WG8w9bXU0hqNxt8rm5uxnk8IH+lPY9J2TV7BK0= -cloud.google.com/go/gkehub v0.10.0/go.mod h1:UIPwxI0DsrpsVoWpLB0stwKCP+WFVG9+y977wO+hBH0= -cloud.google.com/go/gkehub v0.11.0/go.mod h1:JOWHlmN+GHyIbuWQPl47/C2RFhnFKH38jH9Ascu3n0E= -cloud.google.com/go/gkehub v0.12.0/go.mod h1:djiIwwzTTBrF5NaXCGv3mf7klpEMcST17VBTVVDcuaw= -cloud.google.com/go/gkehub v0.14.1/go.mod h1:VEXKIJZ2avzrbd7u+zeMtW00Y8ddk/4V9511C9CQGTY= -cloud.google.com/go/gkemulticloud v0.3.0/go.mod h1:7orzy7O0S+5kq95e4Hpn7RysVA7dPs8W/GgfUtsPbrA= -cloud.google.com/go/gkemulticloud v0.4.0/go.mod h1:E9gxVBnseLWCk24ch+P9+B2CoDFJZTyIgLKSalC7tuI= -cloud.google.com/go/gkemulticloud v0.5.0/go.mod h1:W0JDkiyi3Tqh0TJr//y19wyb1yf8llHVto2Htf2Ja3Y= -cloud.google.com/go/gkemulticloud v0.6.1/go.mod h1:kbZ3HKyTsiwqKX7Yw56+wUGwwNZViRnxWK2DVknXWfw= -cloud.google.com/go/gkemulticloud v1.0.0/go.mod h1:kbZ3HKyTsiwqKX7Yw56+wUGwwNZViRnxWK2DVknXWfw= -cloud.google.com/go/grafeas v0.2.0/go.mod h1:KhxgtF2hb0P191HlY5besjYm6MqTSTj3LSI+M+ByZHc= -cloud.google.com/go/grafeas v0.3.0/go.mod h1:P7hgN24EyONOTMyeJH6DxG4zD7fwiYa5Q6GUgyFSOU8= -cloud.google.com/go/gsuiteaddons v1.3.0/go.mod h1:EUNK/J1lZEZO8yPtykKxLXI6JSVN2rg9bN8SXOa0bgM= -cloud.google.com/go/gsuiteaddons v1.4.0/go.mod h1:rZK5I8hht7u7HxFQcFei0+AtfS9uSushomRlg+3ua1o= -cloud.google.com/go/gsuiteaddons v1.5.0/go.mod h1:TFCClYLd64Eaa12sFVmUyG62tk4mdIsI7pAnSXRkcFo= -cloud.google.com/go/gsuiteaddons v1.6.1/go.mod h1:CodrdOqRZcLp5WOwejHWYBjZvfY0kOphkAKpF/3qdZY= -cloud.google.com/go/iam v0.1.0/go.mod h1:vcUNEa0pEm0qRVpmWepWaFMIAI8/hjB9mO8rNCJtF6c= -cloud.google.com/go/iam v0.3.0/go.mod h1:XzJPvDayI+9zsASAFO68Hk07u3z+f+JrT2xXNdp4bnY= -cloud.google.com/go/iam v0.5.0/go.mod h1:wPU9Vt0P4UmCux7mqtRu6jcpPAb74cP1fh50J3QpkUc= -cloud.google.com/go/iam v0.6.0/go.mod h1:+1AH33ueBne5MzYccyMHtEKqLE4/kJOibtffMHDMFMc= -cloud.google.com/go/iam v0.7.0/go.mod h1:H5Br8wRaDGNc8XP3keLc4unfUUZeyH3Sfl9XpQEYOeg= -cloud.google.com/go/iam v0.8.0/go.mod h1:lga0/y3iH6CX7sYqypWJ33hf7kkfXJag67naqGESjkE= -cloud.google.com/go/iam v0.11.0/go.mod h1:9PiLDanza5D+oWFZiH1uG+RnRCfEGKoyl6yo4cgWZGY= -cloud.google.com/go/iam v0.12.0/go.mod h1:knyHGviacl11zrtZUoDuYpDgLjvr28sLQaG0YB2GYAY= -cloud.google.com/go/iam v0.13.0/go.mod h1:ljOg+rcNfzZ5d6f1nAUJ8ZIxOaZUVoS14bKCtaLZ/D0= -cloud.google.com/go/iam v1.0.1/go.mod h1:yR3tmSL8BcZB4bxByRv2jkSIahVmCtfKZwLYGBalRE8= -cloud.google.com/go/iam v1.1.0/go.mod h1:nxdHjaKfCr7fNYx/HJMM8LgiMugmveWlkatear5gVyk= -cloud.google.com/go/iam v1.1.1/go.mod h1:A5avdyVL2tCppe4unb0951eI9jreack+RJ0/d+KUZOU= -cloud.google.com/go/iap v1.4.0/go.mod h1:RGFwRJdihTINIe4wZ2iCP0zF/qu18ZwyKxrhMhygBEc= -cloud.google.com/go/iap v1.5.0/go.mod h1:UH/CGgKd4KyohZL5Pt0jSKE4m3FR51qg6FKQ/z/Ix9A= -cloud.google.com/go/iap v1.6.0/go.mod h1:NSuvI9C/j7UdjGjIde7t7HBz+QTwBcapPE07+sSRcLk= -cloud.google.com/go/iap v1.7.0/go.mod h1:beqQx56T9O1G1yNPph+spKpNibDlYIiIixiqsQXxLIo= -cloud.google.com/go/iap v1.7.1/go.mod h1:WapEwPc7ZxGt2jFGB/C/bm+hP0Y6NXzOYGjpPnmMS74= -cloud.google.com/go/iap v1.8.1/go.mod h1:sJCbeqg3mvWLqjZNsI6dfAtbbV1DL2Rl7e1mTyXYREQ= -cloud.google.com/go/ids v1.1.0/go.mod h1:WIuwCaYVOzHIj2OhN9HAwvW+DBdmUAdcWlFxRl+KubM= -cloud.google.com/go/ids v1.2.0/go.mod h1:5WXvp4n25S0rA/mQWAg1YEEBBq6/s+7ml1RDCW1IrcY= -cloud.google.com/go/ids v1.3.0/go.mod h1:JBdTYwANikFKaDP6LtW5JAi4gubs57SVNQjemdt6xV4= -cloud.google.com/go/ids v1.4.1/go.mod h1:np41ed8YMU8zOgv53MMMoCntLTn2lF+SUzlM+O3u/jw= -cloud.google.com/go/iot v1.3.0/go.mod h1:r7RGh2B61+B8oz0AGE+J72AhA0G7tdXItODWsaA2oLs= -cloud.google.com/go/iot v1.4.0/go.mod h1:dIDxPOn0UvNDUMD8Ger7FIaTuvMkj+aGk94RPP0iV+g= -cloud.google.com/go/iot v1.5.0/go.mod h1:mpz5259PDl3XJthEmh9+ap0affn/MqNSP4My77Qql9o= -cloud.google.com/go/iot v1.6.0/go.mod h1:IqdAsmE2cTYYNO1Fvjfzo9po179rAtJeVGUvkLN3rLE= -cloud.google.com/go/iot v1.7.1/go.mod h1:46Mgw7ev1k9KqK1ao0ayW9h0lI+3hxeanz+L1zmbbbk= -cloud.google.com/go/kms v1.4.0/go.mod h1:fajBHndQ+6ubNw6Ss2sSd+SWvjL26RNo/dr7uxsnnOA= -cloud.google.com/go/kms v1.5.0/go.mod h1:QJS2YY0eJGBg3mnDfuaCyLauWwBJiHRboYxJ++1xJNg= -cloud.google.com/go/kms v1.6.0/go.mod h1:Jjy850yySiasBUDi6KFUwUv2n1+o7QZFyuUJg6OgjA0= -cloud.google.com/go/kms v1.8.0/go.mod h1:4xFEhYFqvW+4VMELtZyxomGSYtSQKzM178ylFW4jMAg= -cloud.google.com/go/kms v1.9.0/go.mod h1:qb1tPTgfF9RQP8e1wq4cLFErVuTJv7UsSC915J8dh3w= -cloud.google.com/go/kms v1.10.0/go.mod h1:ng3KTUtQQU9bPX3+QGLsflZIHlkbn8amFAMY63m8d24= -cloud.google.com/go/kms v1.10.1/go.mod h1:rIWk/TryCkR59GMC3YtHtXeLzd634lBbKenvyySAyYI= -cloud.google.com/go/kms v1.11.0/go.mod h1:hwdiYC0xjnWsKQQCQQmIQnS9asjYVSK6jtXm+zFqXLM= -cloud.google.com/go/kms v1.12.1/go.mod h1:c9J991h5DTl+kg7gi3MYomh12YEENGrf48ee/N/2CDM= -cloud.google.com/go/kms v1.15.0/go.mod h1:c9J991h5DTl+kg7gi3MYomh12YEENGrf48ee/N/2CDM= -cloud.google.com/go/language v1.4.0/go.mod h1:F9dRpNFQmJbkaop6g0JhSBXCNlO90e1KWx5iDdxbWic= -cloud.google.com/go/language v1.6.0/go.mod h1:6dJ8t3B+lUYfStgls25GusK04NLh3eDLQnWM3mdEbhI= -cloud.google.com/go/language v1.7.0/go.mod h1:DJ6dYN/W+SQOjF8e1hLQXMF21AkH2w9wiPzPCJa2MIE= -cloud.google.com/go/language v1.8.0/go.mod h1:qYPVHf7SPoNNiCL2Dr0FfEFNil1qi3pQEyygwpgVKB8= -cloud.google.com/go/language v1.9.0/go.mod h1:Ns15WooPM5Ad/5no/0n81yUetis74g3zrbeJBE+ptUY= -cloud.google.com/go/language v1.10.1/go.mod h1:CPp94nsdVNiQEt1CNjF5WkTcisLiHPyIbMhvR8H2AW0= -cloud.google.com/go/lifesciences v0.5.0/go.mod h1:3oIKy8ycWGPUyZDR/8RNnTOYevhaMLqh5vLUXs9zvT8= -cloud.google.com/go/lifesciences v0.6.0/go.mod h1:ddj6tSX/7BOnhxCSd3ZcETvtNr8NZ6t/iPhY2Tyfu08= -cloud.google.com/go/lifesciences v0.8.0/go.mod h1:lFxiEOMqII6XggGbOnKiyZ7IBwoIqA84ClvoezaA/bo= -cloud.google.com/go/lifesciences v0.9.1/go.mod h1:hACAOd1fFbCGLr/+weUKRAJas82Y4vrL3O5326N//Wc= -cloud.google.com/go/logging v1.6.1/go.mod h1:5ZO0mHHbvm8gEmeEUHrmDlTDSu5imF6MUP9OfilNXBw= -cloud.google.com/go/logging v1.7.0/go.mod h1:3xjP2CjkM3ZkO73aj4ASA5wRPGGCRrPIAeNqVNkzY8M= -cloud.google.com/go/longrunning v0.1.1/go.mod h1:UUFxuDWkv22EuY93jjmDMFT5GPQKeFVJBIF6QlTqdsE= -cloud.google.com/go/longrunning v0.3.0/go.mod h1:qth9Y41RRSUE69rDcOn6DdK3HfQfsUI0YSmW3iIlLJc= -cloud.google.com/go/longrunning v0.4.1/go.mod h1:4iWDqhBZ70CvZ6BfETbvam3T8FMvLK+eFj0E6AaRQTo= -cloud.google.com/go/longrunning v0.4.2/go.mod h1:OHrnaYyLUV6oqwh0xiS7e5sLQhP1m0QU9R+WhGDMgIQ= -cloud.google.com/go/longrunning v0.5.0/go.mod h1:0JNuqRShmscVAhIACGtskSAWtqtOoPkwP0YF1oVEchc= -cloud.google.com/go/longrunning v0.5.1/go.mod h1:spvimkwdz6SPWKEt/XBij79E9fiTkHSQl/fRUUQJYJc= -cloud.google.com/go/managedidentities v1.3.0/go.mod h1:UzlW3cBOiPrzucO5qWkNkh0w33KFtBJU281hacNvsdE= -cloud.google.com/go/managedidentities v1.4.0/go.mod h1:NWSBYbEMgqmbZsLIyKvxrYbtqOsxY1ZrGM+9RgDqInM= -cloud.google.com/go/managedidentities v1.5.0/go.mod h1:+dWcZ0JlUmpuxpIDfyP5pP5y0bLdRwOS4Lp7gMni/LA= -cloud.google.com/go/managedidentities v1.6.1/go.mod h1:h/irGhTN2SkZ64F43tfGPMbHnypMbu4RB3yl8YcuEak= -cloud.google.com/go/maps v0.1.0/go.mod h1:BQM97WGyfw9FWEmQMpZ5T6cpovXXSd1cGmFma94eubI= -cloud.google.com/go/maps v0.6.0/go.mod h1:o6DAMMfb+aINHz/p/jbcY+mYeXBoZoxTfdSQ8VAJaCw= -cloud.google.com/go/maps v0.7.0/go.mod h1:3GnvVl3cqeSvgMcpRlQidXsPYuDGQ8naBis7MVzpXsY= -cloud.google.com/go/maps v1.3.0/go.mod h1:6mWTUv+WhnOwAgjVsSW2QPPECmW+s3PcRyOa9vgG/5s= -cloud.google.com/go/maps v1.4.0/go.mod h1:6mWTUv+WhnOwAgjVsSW2QPPECmW+s3PcRyOa9vgG/5s= -cloud.google.com/go/mediatranslation v0.5.0/go.mod h1:jGPUhGTybqsPQn91pNXw0xVHfuJ3leR1wj37oU3y1f4= -cloud.google.com/go/mediatranslation v0.6.0/go.mod h1:hHdBCTYNigsBxshbznuIMFNe5QXEowAuNmmC7h8pu5w= -cloud.google.com/go/mediatranslation v0.7.0/go.mod h1:LCnB/gZr90ONOIQLgSXagp8XUW1ODs2UmUMvcgMfI2I= -cloud.google.com/go/mediatranslation v0.8.1/go.mod h1:L/7hBdEYbYHQJhX2sldtTO5SZZ1C1vkapubj0T2aGig= -cloud.google.com/go/memcache v1.4.0/go.mod h1:rTOfiGZtJX1AaFUrOgsMHX5kAzaTQ8azHiuDoTPzNsE= -cloud.google.com/go/memcache v1.5.0/go.mod h1:dk3fCK7dVo0cUU2c36jKb4VqKPS22BTkf81Xq617aWM= -cloud.google.com/go/memcache v1.6.0/go.mod h1:XS5xB0eQZdHtTuTF9Hf8eJkKtR3pVRCcvJwtm68T3rA= -cloud.google.com/go/memcache v1.7.0/go.mod h1:ywMKfjWhNtkQTxrWxCkCFkoPjLHPW6A7WOTVI8xy3LY= -cloud.google.com/go/memcache v1.9.0/go.mod h1:8oEyzXCu+zo9RzlEaEjHl4KkgjlNDaXbCQeQWlzNFJM= -cloud.google.com/go/memcache v1.10.1/go.mod h1:47YRQIarv4I3QS5+hoETgKO40InqzLP6kpNLvyXuyaA= -cloud.google.com/go/metastore v1.5.0/go.mod h1:2ZNrDcQwghfdtCwJ33nM0+GrBGlVuh8rakL3vdPY3XY= -cloud.google.com/go/metastore v1.6.0/go.mod h1:6cyQTls8CWXzk45G55x57DVQ9gWg7RiH65+YgPsNh9s= -cloud.google.com/go/metastore v1.7.0/go.mod h1:s45D0B4IlsINu87/AsWiEVYbLaIMeUSoxlKKDqBGFS8= -cloud.google.com/go/metastore v1.8.0/go.mod h1:zHiMc4ZUpBiM7twCIFQmJ9JMEkDSyZS9U12uf7wHqSI= -cloud.google.com/go/metastore v1.10.0/go.mod h1:fPEnH3g4JJAk+gMRnrAnoqyv2lpUCqJPWOodSaf45Eo= -cloud.google.com/go/metastore v1.11.1/go.mod h1:uZuSo80U3Wd4zi6C22ZZliOUJ3XeM/MlYi/z5OAOWRA= -cloud.google.com/go/metastore v1.12.0/go.mod h1:uZuSo80U3Wd4zi6C22ZZliOUJ3XeM/MlYi/z5OAOWRA= -cloud.google.com/go/monitoring v1.7.0/go.mod h1:HpYse6kkGo//7p6sT0wsIC6IBDET0RhIsnmlA53dvEk= -cloud.google.com/go/monitoring v1.8.0/go.mod h1:E7PtoMJ1kQXWxPjB6mv2fhC5/15jInuulFdYYtlcvT4= -cloud.google.com/go/monitoring v1.12.0/go.mod h1:yx8Jj2fZNEkL/GYZyTLS4ZtZEZN8WtDEiEqG4kLK50w= -cloud.google.com/go/monitoring v1.13.0/go.mod h1:k2yMBAB1H9JT/QETjNkgdCGD9bPF712XiLTVr+cBrpw= -cloud.google.com/go/monitoring v1.15.1/go.mod h1:lADlSAlFdbqQuwwpaImhsJXu1QSdd3ojypXrFSMr2rM= -cloud.google.com/go/networkconnectivity v1.4.0/go.mod h1:nOl7YL8odKyAOtzNX73/M5/mGZgqqMeryi6UPZTk/rA= -cloud.google.com/go/networkconnectivity v1.5.0/go.mod h1:3GzqJx7uhtlM3kln0+x5wyFvuVH1pIBJjhCpjzSt75o= -cloud.google.com/go/networkconnectivity v1.6.0/go.mod h1:OJOoEXW+0LAxHh89nXd64uGG+FbQoeH8DtxCHVOMlaM= -cloud.google.com/go/networkconnectivity v1.7.0/go.mod h1:RMuSbkdbPwNMQjB5HBWD5MpTBnNm39iAVpC3TmsExt8= -cloud.google.com/go/networkconnectivity v1.10.0/go.mod h1:UP4O4sWXJG13AqrTdQCD9TnLGEbtNRqjuaaA7bNjF5E= -cloud.google.com/go/networkconnectivity v1.11.0/go.mod h1:iWmDD4QF16VCDLXUqvyspJjIEtBR/4zq5hwnY2X3scM= -cloud.google.com/go/networkconnectivity v1.12.1/go.mod h1:PelxSWYM7Sh9/guf8CFhi6vIqf19Ir/sbfZRUwXh92E= -cloud.google.com/go/networkmanagement v1.4.0/go.mod h1:Q9mdLLRn60AsOrPc8rs8iNV6OHXaGcDdsIQe1ohekq8= -cloud.google.com/go/networkmanagement v1.5.0/go.mod h1:ZnOeZ/evzUdUsnvRt792H0uYEnHQEMaz+REhhzJRcf4= -cloud.google.com/go/networkmanagement v1.6.0/go.mod h1:5pKPqyXjB/sgtvB5xqOemumoQNB7y95Q7S+4rjSOPYY= -cloud.google.com/go/networkmanagement v1.8.0/go.mod h1:Ho/BUGmtyEqrttTgWEe7m+8vDdK74ibQc+Be0q7Fof0= -cloud.google.com/go/networksecurity v0.5.0/go.mod h1:xS6fOCoqpVC5zx15Z/MqkfDwH4+m/61A3ODiDV1xmiQ= -cloud.google.com/go/networksecurity v0.6.0/go.mod h1:Q5fjhTr9WMI5mbpRYEbiexTzROf7ZbDzvzCrNl14nyU= -cloud.google.com/go/networksecurity v0.7.0/go.mod h1:mAnzoxx/8TBSyXEeESMy9OOYwo1v+gZ5eMRnsT5bC8k= -cloud.google.com/go/networksecurity v0.8.0/go.mod h1:B78DkqsxFG5zRSVuwYFRZ9Xz8IcQ5iECsNrPn74hKHU= -cloud.google.com/go/networksecurity v0.9.1/go.mod h1:MCMdxOKQ30wsBI1eI659f9kEp4wuuAueoC9AJKSPWZQ= -cloud.google.com/go/notebooks v1.2.0/go.mod h1:9+wtppMfVPUeJ8fIWPOq1UnATHISkGXGqTkxeieQ6UY= -cloud.google.com/go/notebooks v1.3.0/go.mod h1:bFR5lj07DtCPC7YAAJ//vHskFBxA5JzYlH68kXVdk34= -cloud.google.com/go/notebooks v1.4.0/go.mod h1:4QPMngcwmgb6uw7Po99B2xv5ufVoIQ7nOGDyL4P8AgA= -cloud.google.com/go/notebooks v1.5.0/go.mod h1:q8mwhnP9aR8Hpfnrc5iN5IBhrXUy8S2vuYs+kBJ/gu0= -cloud.google.com/go/notebooks v1.7.0/go.mod h1:PVlaDGfJgj1fl1S3dUwhFMXFgfYGhYQt2164xOMONmE= -cloud.google.com/go/notebooks v1.8.0/go.mod h1:Lq6dYKOYOWUCTvw5t2q1gp1lAp0zxAxRycayS0iJcqQ= -cloud.google.com/go/notebooks v1.9.1/go.mod h1:zqG9/gk05JrzgBt4ghLzEepPHNwE5jgPcHZRKhlC1A8= -cloud.google.com/go/optimization v1.1.0/go.mod h1:5po+wfvX5AQlPznyVEZjGJTMr4+CAkJf2XSTQOOl9l4= -cloud.google.com/go/optimization v1.2.0/go.mod h1:Lr7SOHdRDENsh+WXVmQhQTrzdu9ybg0NecjHidBq6xs= -cloud.google.com/go/optimization v1.3.1/go.mod h1:IvUSefKiwd1a5p0RgHDbWCIbDFgKuEdB+fPPuP0IDLI= -cloud.google.com/go/optimization v1.4.1/go.mod h1:j64vZQP7h9bO49m2rVaTVoNM0vEBEN5eKPUPbZyXOrk= -cloud.google.com/go/orchestration v1.3.0/go.mod h1:Sj5tq/JpWiB//X/q3Ngwdl5K7B7Y0KZ7bfv0wL6fqVA= -cloud.google.com/go/orchestration v1.4.0/go.mod h1:6W5NLFWs2TlniBphAViZEVhrXRSMgUGDfW7vrWKvsBk= -cloud.google.com/go/orchestration v1.6.0/go.mod h1:M62Bevp7pkxStDfFfTuCOaXgaaqRAga1yKyoMtEoWPQ= -cloud.google.com/go/orchestration v1.8.1/go.mod h1:4sluRF3wgbYVRqz7zJ1/EUNc90TTprliq9477fGobD8= -cloud.google.com/go/orgpolicy v1.4.0/go.mod h1:xrSLIV4RePWmP9P3tBl8S93lTmlAxjm06NSm2UTmKvE= -cloud.google.com/go/orgpolicy v1.5.0/go.mod h1:hZEc5q3wzwXJaKrsx5+Ewg0u1LxJ51nNFlext7Tanwc= -cloud.google.com/go/orgpolicy v1.10.0/go.mod h1:w1fo8b7rRqlXlIJbVhOMPrwVljyuW5mqssvBtU18ONc= -cloud.google.com/go/orgpolicy v1.11.0/go.mod h1:2RK748+FtVvnfuynxBzdnyu7sygtoZa1za/0ZfpOs1M= -cloud.google.com/go/orgpolicy v1.11.1/go.mod h1:8+E3jQcpZJQliP+zaFfayC2Pg5bmhuLK755wKhIIUCE= -cloud.google.com/go/osconfig v1.7.0/go.mod h1:oVHeCeZELfJP7XLxcBGTMBvRO+1nQ5tFG9VQTmYS2Fs= -cloud.google.com/go/osconfig v1.8.0/go.mod h1:EQqZLu5w5XA7eKizepumcvWx+m8mJUhEwiPqWiZeEdg= -cloud.google.com/go/osconfig v1.9.0/go.mod h1:Yx+IeIZJ3bdWmzbQU4fxNl8xsZ4amB+dygAwFPlvnNo= -cloud.google.com/go/osconfig v1.10.0/go.mod h1:uMhCzqC5I8zfD9zDEAfvgVhDS8oIjySWh+l4WK6GnWw= -cloud.google.com/go/osconfig v1.11.0/go.mod h1:aDICxrur2ogRd9zY5ytBLV89KEgT2MKB2L/n6x1ooPw= -cloud.google.com/go/osconfig v1.12.0/go.mod h1:8f/PaYzoS3JMVfdfTubkowZYGmAhUCjjwnjqWI7NVBc= -cloud.google.com/go/osconfig v1.12.1/go.mod h1:4CjBxND0gswz2gfYRCUoUzCm9zCABp91EeTtWXyz0tE= -cloud.google.com/go/oslogin v1.4.0/go.mod h1:YdgMXWRaElXz/lDk1Na6Fh5orF7gvmJ0FGLIs9LId4E= -cloud.google.com/go/oslogin v1.5.0/go.mod h1:D260Qj11W2qx/HVF29zBg+0fd6YCSjSqLUkY/qEenQU= -cloud.google.com/go/oslogin v1.6.0/go.mod h1:zOJ1O3+dTU8WPlGEkFSh7qeHPPSoxrcMbbK1Nm2iX70= -cloud.google.com/go/oslogin v1.7.0/go.mod h1:e04SN0xO1UNJ1M5GP0vzVBFicIe4O53FOfcixIqTyXo= -cloud.google.com/go/oslogin v1.9.0/go.mod h1:HNavntnH8nzrn8JCTT5fj18FuJLFJc4NaZJtBnQtKFs= -cloud.google.com/go/oslogin v1.10.1/go.mod h1:x692z7yAue5nE7CsSnoG0aaMbNoRJRXO4sn73R+ZqAs= -cloud.google.com/go/phishingprotection v0.5.0/go.mod h1:Y3HZknsK9bc9dMi+oE8Bim0lczMU6hrX0UpADuMefr0= -cloud.google.com/go/phishingprotection v0.6.0/go.mod h1:9Y3LBLgy0kDTcYET8ZH3bq/7qni15yVUoAxiFxnlSUA= -cloud.google.com/go/phishingprotection v0.7.0/go.mod h1:8qJI4QKHoda/sb/7/YmMQ2omRLSLYSu9bU0EKCNI+Lk= -cloud.google.com/go/phishingprotection v0.8.1/go.mod h1:AxonW7GovcA8qdEk13NfHq9hNx5KPtfxXNeUxTDxB6I= -cloud.google.com/go/policytroubleshooter v1.3.0/go.mod h1:qy0+VwANja+kKrjlQuOzmlvscn4RNsAc0e15GGqfMxg= -cloud.google.com/go/policytroubleshooter v1.4.0/go.mod h1:DZT4BcRw3QoO8ota9xw/LKtPa8lKeCByYeKTIf/vxdE= -cloud.google.com/go/policytroubleshooter v1.5.0/go.mod h1:Rz1WfV+1oIpPdN2VvvuboLVRsB1Hclg3CKQ53j9l8vw= -cloud.google.com/go/policytroubleshooter v1.6.0/go.mod h1:zYqaPTsmfvpjm5ULxAyD/lINQxJ0DDsnWOP/GZ7xzBc= -cloud.google.com/go/policytroubleshooter v1.7.1/go.mod h1:0NaT5v3Ag1M7U5r0GfDCpUFkWd9YqpubBWsQlhanRv0= -cloud.google.com/go/policytroubleshooter v1.8.0/go.mod h1:tmn5Ir5EToWe384EuboTcVQT7nTag2+DuH3uHmKd1HU= -cloud.google.com/go/privatecatalog v0.5.0/go.mod h1:XgosMUvvPyxDjAVNDYxJ7wBW8//hLDDYmnsNcMGq1K0= -cloud.google.com/go/privatecatalog v0.6.0/go.mod h1:i/fbkZR0hLN29eEWiiwue8Pb+GforiEIBnV9yrRUOKI= -cloud.google.com/go/privatecatalog v0.7.0/go.mod h1:2s5ssIFO69F5csTXcwBP7NPFTZvps26xGzvQ2PQaBYg= -cloud.google.com/go/privatecatalog v0.8.0/go.mod h1:nQ6pfaegeDAq/Q5lrfCQzQLhubPiZhSaNhIgfJlnIXs= -cloud.google.com/go/privatecatalog v0.9.1/go.mod h1:0XlDXW2unJXdf9zFz968Hp35gl/bhF4twwpXZAW50JA= -cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= -cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= -cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= -cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= -cloud.google.com/go/pubsub v1.26.0/go.mod h1:QgBH3U/jdJy/ftjPhTkyXNj543Tin1pRYcdcPRnFIRI= -cloud.google.com/go/pubsub v1.27.1/go.mod h1:hQN39ymbV9geqBnfQq6Xf63yNhUAhv9CZhzp5O6qsW0= -cloud.google.com/go/pubsub v1.28.0/go.mod h1:vuXFpwaVoIPQMGXqRyUQigu/AX1S3IWugR9xznmcXX8= -cloud.google.com/go/pubsub v1.30.0/go.mod h1:qWi1OPS0B+b5L+Sg6Gmc9zD1Y+HaM0MdUr7LsupY1P4= -cloud.google.com/go/pubsub v1.32.0/go.mod h1:f+w71I33OMyxf9VpMVcZbnG5KSUkCOUHYpFd5U1GdRc= -cloud.google.com/go/pubsub v1.33.0/go.mod h1:f+w71I33OMyxf9VpMVcZbnG5KSUkCOUHYpFd5U1GdRc= -cloud.google.com/go/pubsublite v1.5.0/go.mod h1:xapqNQ1CuLfGi23Yda/9l4bBCKz/wC3KIJ5gKcxveZg= -cloud.google.com/go/pubsublite v1.6.0/go.mod h1:1eFCS0U11xlOuMFV/0iBqw3zP12kddMeCbj/F3FSj9k= -cloud.google.com/go/pubsublite v1.7.0/go.mod h1:8hVMwRXfDfvGm3fahVbtDbiLePT3gpoiJYJY+vxWxVM= -cloud.google.com/go/pubsublite v1.8.1/go.mod h1:fOLdU4f5xldK4RGJrBMm+J7zMWNj/k4PxwEZXy39QS0= -cloud.google.com/go/recaptchaenterprise v1.3.1/go.mod h1:OdD+q+y4XGeAlxRaMn1Y7/GveP6zmq76byL6tjPE7d4= -cloud.google.com/go/recaptchaenterprise/v2 v2.1.0/go.mod h1:w9yVqajwroDNTfGuhmOjPDN//rZGySaf6PtFVcSCa7o= -cloud.google.com/go/recaptchaenterprise/v2 v2.2.0/go.mod h1:/Zu5jisWGeERrd5HnlS3EUGb/D335f9k51B/FVil0jk= -cloud.google.com/go/recaptchaenterprise/v2 v2.3.0/go.mod h1:O9LwGCjrhGHBQET5CA7dd5NwwNQUErSgEDit1DLNTdo= -cloud.google.com/go/recaptchaenterprise/v2 v2.4.0/go.mod h1:Am3LHfOuBstrLrNCBrlI5sbwx9LBg3te2N6hGvHn2mE= -cloud.google.com/go/recaptchaenterprise/v2 v2.5.0/go.mod h1:O8LzcHXN3rz0j+LBC91jrwI3R+1ZSZEWrfL7XHgNo9U= -cloud.google.com/go/recaptchaenterprise/v2 v2.6.0/go.mod h1:RPauz9jeLtB3JVzg6nCbe12qNoaa8pXc4d/YukAmcnA= -cloud.google.com/go/recaptchaenterprise/v2 v2.7.0/go.mod h1:19wVj/fs5RtYtynAPJdDTb69oW0vNHYDBTbB4NvMD9c= -cloud.google.com/go/recaptchaenterprise/v2 v2.7.2/go.mod h1:kR0KjsJS7Jt1YSyWFkseQ756D45kaYNTlDPPaRAvDBU= -cloud.google.com/go/recommendationengine v0.5.0/go.mod h1:E5756pJcVFeVgaQv3WNpImkFP8a+RptV6dDLGPILjvg= -cloud.google.com/go/recommendationengine v0.6.0/go.mod h1:08mq2umu9oIqc7tDy8sx+MNJdLG0fUi3vaSVbztHgJ4= -cloud.google.com/go/recommendationengine v0.7.0/go.mod h1:1reUcE3GIu6MeBz/h5xZJqNLuuVjNg1lmWMPyjatzac= -cloud.google.com/go/recommendationengine v0.8.1/go.mod h1:MrZihWwtFYWDzE6Hz5nKcNz3gLizXVIDI/o3G1DLcrE= -cloud.google.com/go/recommender v1.5.0/go.mod h1:jdoeiBIVrJe9gQjwd759ecLJbxCDED4A6p+mqoqDvTg= -cloud.google.com/go/recommender v1.6.0/go.mod h1:+yETpm25mcoiECKh9DEScGzIRyDKpZ0cEhWGo+8bo+c= -cloud.google.com/go/recommender v1.7.0/go.mod h1:XLHs/W+T8olwlGOgfQenXBTbIseGclClff6lhFVe9Bs= -cloud.google.com/go/recommender v1.8.0/go.mod h1:PkjXrTT05BFKwxaUxQmtIlrtj0kph108r02ZZQ5FE70= -cloud.google.com/go/recommender v1.9.0/go.mod h1:PnSsnZY7q+VL1uax2JWkt/UegHssxjUVVCrX52CuEmQ= -cloud.google.com/go/recommender v1.10.1/go.mod h1:XFvrE4Suqn5Cq0Lf+mCP6oBHD/yRMA8XxP5sb7Q7gpA= -cloud.google.com/go/redis v1.7.0/go.mod h1:V3x5Jq1jzUcg+UNsRvdmsfuFnit1cfe3Z/PGyq/lm4Y= -cloud.google.com/go/redis v1.8.0/go.mod h1:Fm2szCDavWzBk2cDKxrkmWBqoCiL1+Ctwq7EyqBCA/A= -cloud.google.com/go/redis v1.9.0/go.mod h1:HMYQuajvb2D0LvMgZmLDZW8V5aOC/WxstZHiy4g8OiA= -cloud.google.com/go/redis v1.10.0/go.mod h1:ThJf3mMBQtW18JzGgh41/Wld6vnDDc/F/F35UolRZPM= -cloud.google.com/go/redis v1.11.0/go.mod h1:/X6eicana+BWcUda5PpwZC48o37SiFVTFSs0fWAJ7uQ= -cloud.google.com/go/redis v1.13.1/go.mod h1:VP7DGLpE91M6bcsDdMuyCm2hIpB6Vp2hI090Mfd1tcg= -cloud.google.com/go/resourcemanager v1.3.0/go.mod h1:bAtrTjZQFJkiWTPDb1WBjzvc6/kifjj4QBYuKCCoqKA= -cloud.google.com/go/resourcemanager v1.4.0/go.mod h1:MwxuzkumyTX7/a3n37gmsT3py7LIXwrShilPh3P1tR0= -cloud.google.com/go/resourcemanager v1.5.0/go.mod h1:eQoXNAiAvCf5PXxWxXjhKQoTMaUSNrEfg+6qdf/wots= -cloud.google.com/go/resourcemanager v1.6.0/go.mod h1:YcpXGRs8fDzcUl1Xw8uOVmI8JEadvhRIkoXXUNVYcVo= -cloud.google.com/go/resourcemanager v1.7.0/go.mod h1:HlD3m6+bwhzj9XCouqmeiGuni95NTrExfhoSrkC/3EI= -cloud.google.com/go/resourcemanager v1.9.1/go.mod h1:dVCuosgrh1tINZ/RwBufr8lULmWGOkPS8gL5gqyjdT8= -cloud.google.com/go/resourcesettings v1.3.0/go.mod h1:lzew8VfESA5DQ8gdlHwMrqZs1S9V87v3oCnKCWoOuQU= -cloud.google.com/go/resourcesettings v1.4.0/go.mod h1:ldiH9IJpcrlC3VSuCGvjR5of/ezRrOxFtpJoJo5SmXg= -cloud.google.com/go/resourcesettings v1.5.0/go.mod h1:+xJF7QSG6undsQDfsCJyqWXyBwUoJLhetkRMDRnIoXA= -cloud.google.com/go/resourcesettings v1.6.1/go.mod h1:M7mk9PIZrC5Fgsu1kZJci6mpgN8o0IUzVx3eJU3y4Jw= -cloud.google.com/go/retail v1.8.0/go.mod h1:QblKS8waDmNUhghY2TI9O3JLlFk8jybHeV4BF19FrE4= -cloud.google.com/go/retail v1.9.0/go.mod h1:g6jb6mKuCS1QKnH/dpu7isX253absFl6iE92nHwlBUY= -cloud.google.com/go/retail v1.10.0/go.mod h1:2gDk9HsL4HMS4oZwz6daui2/jmKvqShXKQuB2RZ+cCc= -cloud.google.com/go/retail v1.11.0/go.mod h1:MBLk1NaWPmh6iVFSz9MeKG/Psyd7TAgm6y/9L2B4x9Y= -cloud.google.com/go/retail v1.12.0/go.mod h1:UMkelN/0Z8XvKymXFbD4EhFJlYKRx1FGhQkVPU5kF14= -cloud.google.com/go/retail v1.14.1/go.mod h1:y3Wv3Vr2k54dLNIrCzenyKG8g8dhvhncT2NcNjb/6gE= -cloud.google.com/go/run v0.2.0/go.mod h1:CNtKsTA1sDcnqqIFR3Pb5Tq0usWxJJvsWOCPldRU3Do= -cloud.google.com/go/run v0.3.0/go.mod h1:TuyY1+taHxTjrD0ZFk2iAR+xyOXEA0ztb7U3UNA0zBo= -cloud.google.com/go/run v0.8.0/go.mod h1:VniEnuBwqjigv0A7ONfQUaEItaiCRVujlMqerPPiktM= -cloud.google.com/go/run v0.9.0/go.mod h1:Wwu+/vvg8Y+JUApMwEDfVfhetv30hCG4ZwDR/IXl2Qg= -cloud.google.com/go/run v1.2.0/go.mod h1:36V1IlDzQ0XxbQjUx6IYbw8H3TJnWvhii963WW3B/bo= -cloud.google.com/go/scheduler v1.4.0/go.mod h1:drcJBmxF3aqZJRhmkHQ9b3uSSpQoltBPGPxGAWROx6s= -cloud.google.com/go/scheduler v1.5.0/go.mod h1:ri073ym49NW3AfT6DZi21vLZrG07GXr5p3H1KxN5QlI= -cloud.google.com/go/scheduler v1.6.0/go.mod h1:SgeKVM7MIwPn3BqtcBntpLyrIJftQISRrYB5ZtT+KOk= -cloud.google.com/go/scheduler v1.7.0/go.mod h1:jyCiBqWW956uBjjPMMuX09n3x37mtyPJegEWKxRsn44= -cloud.google.com/go/scheduler v1.8.0/go.mod h1:TCET+Y5Gp1YgHT8py4nlg2Sew8nUHMqcpousDgXJVQc= -cloud.google.com/go/scheduler v1.9.0/go.mod h1:yexg5t+KSmqu+njTIh3b7oYPheFtBWGcbVUYF1GGMIc= -cloud.google.com/go/scheduler v1.10.1/go.mod h1:R63Ldltd47Bs4gnhQkmNDse5w8gBRrhObZ54PxgR2Oo= -cloud.google.com/go/secretmanager v1.6.0/go.mod h1:awVa/OXF6IiyaU1wQ34inzQNc4ISIDIrId8qE5QGgKA= -cloud.google.com/go/secretmanager v1.8.0/go.mod h1:hnVgi/bN5MYHd3Gt0SPuTPPp5ENina1/LxM+2W9U9J4= -cloud.google.com/go/secretmanager v1.9.0/go.mod h1:b71qH2l1yHmWQHt9LC80akm86mX8AL6X1MA01dW8ht4= -cloud.google.com/go/secretmanager v1.10.0/go.mod h1:MfnrdvKMPNra9aZtQFvBcvRU54hbPD8/HayQdlUgJpU= -cloud.google.com/go/secretmanager v1.11.1/go.mod h1:znq9JlXgTNdBeQk9TBW/FnR/W4uChEKGeqQWAJ8SXFw= -cloud.google.com/go/security v1.5.0/go.mod h1:lgxGdyOKKjHL4YG3/YwIL2zLqMFCKs0UbQwgyZmfJl4= -cloud.google.com/go/security v1.7.0/go.mod h1:mZklORHl6Bg7CNnnjLH//0UlAlaXqiG7Lb9PsPXLfD0= -cloud.google.com/go/security v1.8.0/go.mod h1:hAQOwgmaHhztFhiQ41CjDODdWP0+AE1B3sX4OFlq+GU= -cloud.google.com/go/security v1.9.0/go.mod h1:6Ta1bO8LXI89nZnmnsZGp9lVoVWXqsVbIq/t9dzI+2Q= -cloud.google.com/go/security v1.10.0/go.mod h1:QtOMZByJVlibUT2h9afNDWRZ1G96gVywH8T5GUSb9IA= -cloud.google.com/go/security v1.12.0/go.mod h1:rV6EhrpbNHrrxqlvW0BWAIawFWq3X90SduMJdFwtLB8= -cloud.google.com/go/security v1.13.0/go.mod h1:Q1Nvxl1PAgmeW0y3HTt54JYIvUdtcpYKVfIB8AOMZ+0= -cloud.google.com/go/security v1.15.1/go.mod h1:MvTnnbsWnehoizHi09zoiZob0iCHVcL4AUBj76h9fXA= -cloud.google.com/go/securitycenter v1.13.0/go.mod h1:cv5qNAqjY84FCN6Y9z28WlkKXyWsgLO832YiWwkCWcU= -cloud.google.com/go/securitycenter v1.14.0/go.mod h1:gZLAhtyKv85n52XYWt6RmeBdydyxfPeTrpToDPw4Auc= -cloud.google.com/go/securitycenter v1.15.0/go.mod h1:PeKJ0t8MoFmmXLXWm41JidyzI3PJjd8sXWaVqg43WWk= -cloud.google.com/go/securitycenter v1.16.0/go.mod h1:Q9GMaLQFUD+5ZTabrbujNWLtSLZIZF7SAR0wWECrjdk= -cloud.google.com/go/securitycenter v1.18.1/go.mod h1:0/25gAzCM/9OL9vVx4ChPeM/+DlfGQJDwBy/UC8AKK0= -cloud.google.com/go/securitycenter v1.19.0/go.mod h1:LVLmSg8ZkkyaNy4u7HCIshAngSQ8EcIRREP3xBnyfag= -cloud.google.com/go/securitycenter v1.23.0/go.mod h1:8pwQ4n+Y9WCWM278R8W3nF65QtY172h4S8aXyI9/hsQ= -cloud.google.com/go/servicecontrol v1.4.0/go.mod h1:o0hUSJ1TXJAmi/7fLJAedOovnujSEvjKCAFNXPQ1RaU= -cloud.google.com/go/servicecontrol v1.5.0/go.mod h1:qM0CnXHhyqKVuiZnGKrIurvVImCs8gmqWsDoqe9sU1s= -cloud.google.com/go/servicecontrol v1.10.0/go.mod h1:pQvyvSRh7YzUF2efw7H87V92mxU8FnFDawMClGCNuAA= -cloud.google.com/go/servicecontrol v1.11.0/go.mod h1:kFmTzYzTUIuZs0ycVqRHNaNhgR+UMUpw9n02l/pY+mc= -cloud.google.com/go/servicecontrol v1.11.1/go.mod h1:aSnNNlwEFBY+PWGQ2DoM0JJ/QUXqV5/ZD9DOLB7SnUk= -cloud.google.com/go/servicedirectory v1.4.0/go.mod h1:gH1MUaZCgtP7qQiI+F+A+OpeKF/HQWgtAddhTbhL2bs= -cloud.google.com/go/servicedirectory v1.5.0/go.mod h1:QMKFL0NUySbpZJ1UZs3oFAmdvVxhhxB6eJ/Vlp73dfg= -cloud.google.com/go/servicedirectory v1.6.0/go.mod h1:pUlbnWsLH9c13yGkxCmfumWEPjsRs1RlmJ4pqiNjVL4= -cloud.google.com/go/servicedirectory v1.7.0/go.mod h1:5p/U5oyvgYGYejufvxhgwjL8UVXjkuw7q5XcG10wx1U= -cloud.google.com/go/servicedirectory v1.8.0/go.mod h1:srXodfhY1GFIPvltunswqXpVxFPpZjf8nkKQT7XcXaY= -cloud.google.com/go/servicedirectory v1.9.0/go.mod h1:29je5JjiygNYlmsGz8k6o+OZ8vd4f//bQLtvzkPPT/s= -cloud.google.com/go/servicedirectory v1.10.1/go.mod h1:Xv0YVH8s4pVOwfM/1eMTl0XJ6bzIOSLDt8f8eLaGOxQ= -cloud.google.com/go/servicedirectory v1.11.0/go.mod h1:Xv0YVH8s4pVOwfM/1eMTl0XJ6bzIOSLDt8f8eLaGOxQ= -cloud.google.com/go/servicemanagement v1.4.0/go.mod h1:d8t8MDbezI7Z2R1O/wu8oTggo3BI2GKYbdG4y/SJTco= -cloud.google.com/go/servicemanagement v1.5.0/go.mod h1:XGaCRe57kfqu4+lRxaFEAuqmjzF0r+gWHjWqKqBvKFo= -cloud.google.com/go/servicemanagement v1.6.0/go.mod h1:aWns7EeeCOtGEX4OvZUWCCJONRZeFKiptqKf1D0l/Jc= -cloud.google.com/go/servicemanagement v1.8.0/go.mod h1:MSS2TDlIEQD/fzsSGfCdJItQveu9NXnUniTrq/L8LK4= -cloud.google.com/go/serviceusage v1.3.0/go.mod h1:Hya1cozXM4SeSKTAgGXgj97GlqUvF5JaoXacR1JTP/E= -cloud.google.com/go/serviceusage v1.4.0/go.mod h1:SB4yxXSaYVuUBYUml6qklyONXNLt83U0Rb+CXyhjEeU= -cloud.google.com/go/serviceusage v1.5.0/go.mod h1:w8U1JvqUqwJNPEOTQjrMHkw3IaIFLoLsPLvsE3xueec= -cloud.google.com/go/serviceusage v1.6.0/go.mod h1:R5wwQcbOWsyuOfbP9tGdAnCAc6B9DRwPG1xtWMDeuPA= -cloud.google.com/go/shell v1.3.0/go.mod h1:VZ9HmRjZBsjLGXusm7K5Q5lzzByZmJHf1d0IWHEN5X4= -cloud.google.com/go/shell v1.4.0/go.mod h1:HDxPzZf3GkDdhExzD/gs8Grqk+dmYcEjGShZgYa9URw= -cloud.google.com/go/shell v1.6.0/go.mod h1:oHO8QACS90luWgxP3N9iZVuEiSF84zNyLytb+qE2f9A= -cloud.google.com/go/shell v1.7.1/go.mod h1:u1RaM+huXFaTojTbW4g9P5emOrrmLE69KrxqQahKn4g= -cloud.google.com/go/spanner v1.41.0/go.mod h1:MLYDBJR/dY4Wt7ZaMIQ7rXOTLjYrmxLE/5ve9vFfWos= -cloud.google.com/go/spanner v1.44.0/go.mod h1:G8XIgYdOK+Fbcpbs7p2fiprDw4CaZX63whnSMLVBxjk= -cloud.google.com/go/spanner v1.45.0/go.mod h1:FIws5LowYz8YAE1J8fOS7DJup8ff7xJeetWEo5REA2M= -cloud.google.com/go/spanner v1.47.0/go.mod h1:IXsJwVW2j4UKs0eYDqodab6HgGuA1bViSqW4uH9lfUI= -cloud.google.com/go/speech v1.6.0/go.mod h1:79tcr4FHCimOp56lwC01xnt/WPJZc4v3gzyT7FoBkCM= -cloud.google.com/go/speech v1.7.0/go.mod h1:KptqL+BAQIhMsj1kOP2la5DSEEerPDuOP/2mmkhHhZQ= -cloud.google.com/go/speech v1.8.0/go.mod h1:9bYIl1/tjsAnMgKGHKmBZzXKEkGgtU+MpdDPTE9f7y0= -cloud.google.com/go/speech v1.9.0/go.mod h1:xQ0jTcmnRFFM2RfX/U+rk6FQNUF6DQlydUSyoooSpco= -cloud.google.com/go/speech v1.14.1/go.mod h1:gEosVRPJ9waG7zqqnsHpYTOoAS4KouMRLDFMekpJ0J0= -cloud.google.com/go/speech v1.15.0/go.mod h1:y6oH7GhqCaZANH7+Oe0BhgIogsNInLlz542tg3VqeYI= -cloud.google.com/go/speech v1.17.1/go.mod h1:8rVNzU43tQvxDaGvqOhpDqgkJTFowBpDvCJ14kGlJYo= -cloud.google.com/go/speech v1.19.0/go.mod h1:8rVNzU43tQvxDaGvqOhpDqgkJTFowBpDvCJ14kGlJYo= -cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= -cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= -cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= -cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= -cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= -cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3fOKtUw0Xmo= -cloud.google.com/go/storage v1.22.1/go.mod h1:S8N1cAStu7BOeFfE8KAQzmyyLkK8p/vmRq6kuBTW58Y= -cloud.google.com/go/storage v1.23.0/go.mod h1:vOEEDNFnciUMhBeT6hsJIn3ieU5cFRmzeLgDvXzfIXc= -cloud.google.com/go/storage v1.27.0/go.mod h1:x9DOL8TK/ygDUMieqwfhdpQryTeEkhGKMi80i/iqR2s= -cloud.google.com/go/storage v1.28.1/go.mod h1:Qnisd4CqDdo6BGs2AD5LLnEsmSQ80wQ5ogcBBKhU86Y= -cloud.google.com/go/storage v1.29.0/go.mod h1:4puEjyTKnku6gfKoTfNOU/W+a9JyuVNxjpS5GBrB8h4= -cloud.google.com/go/storage v1.30.1/go.mod h1:NfxhC0UJE1aXSx7CIIbCf7y9HKT7BiccwkR7+P7gN8E= -cloud.google.com/go/storagetransfer v1.5.0/go.mod h1:dxNzUopWy7RQevYFHewchb29POFv3/AaBgnhqzqiK0w= -cloud.google.com/go/storagetransfer v1.6.0/go.mod h1:y77xm4CQV/ZhFZH75PLEXY0ROiS7Gh6pSKrM8dJyg6I= -cloud.google.com/go/storagetransfer v1.7.0/go.mod h1:8Giuj1QNb1kfLAiWM1bN6dHzfdlDAVC9rv9abHot2W4= -cloud.google.com/go/storagetransfer v1.8.0/go.mod h1:JpegsHHU1eXg7lMHkvf+KE5XDJ7EQu0GwNJbbVGanEw= -cloud.google.com/go/storagetransfer v1.10.0/go.mod h1:DM4sTlSmGiNczmV6iZyceIh2dbs+7z2Ayg6YAiQlYfA= -cloud.google.com/go/talent v1.1.0/go.mod h1:Vl4pt9jiHKvOgF9KoZo6Kob9oV4lwd/ZD5Cto54zDRw= -cloud.google.com/go/talent v1.2.0/go.mod h1:MoNF9bhFQbiJ6eFD3uSsg0uBALw4n4gaCaEjBw9zo8g= -cloud.google.com/go/talent v1.3.0/go.mod h1:CmcxwJ/PKfRgd1pBjQgU6W3YBwiewmUzQYH5HHmSCmM= -cloud.google.com/go/talent v1.4.0/go.mod h1:ezFtAgVuRf8jRsvyE6EwmbTK5LKciD4KVnHuDEFmOOA= -cloud.google.com/go/talent v1.5.0/go.mod h1:G+ODMj9bsasAEJkQSzO2uHQWXHHXUomArjWQQYkqK6c= -cloud.google.com/go/talent v1.6.2/go.mod h1:CbGvmKCG61mkdjcqTcLOkb2ZN1SrQI8MDyma2l7VD24= -cloud.google.com/go/texttospeech v1.4.0/go.mod h1:FX8HQHA6sEpJ7rCMSfXuzBcysDAuWusNNNvN9FELDd8= -cloud.google.com/go/texttospeech v1.5.0/go.mod h1:oKPLhR4n4ZdQqWKURdwxMy0uiTS1xU161C8W57Wkea4= -cloud.google.com/go/texttospeech v1.6.0/go.mod h1:YmwmFT8pj1aBblQOI3TfKmwibnsfvhIBzPXcW4EBovc= -cloud.google.com/go/texttospeech v1.7.1/go.mod h1:m7QfG5IXxeneGqTapXNxv2ItxP/FS0hCZBwXYqucgSk= -cloud.google.com/go/tpu v1.3.0/go.mod h1:aJIManG0o20tfDQlRIej44FcwGGl/cD0oiRyMKG19IQ= -cloud.google.com/go/tpu v1.4.0/go.mod h1:mjZaX8p0VBgllCzF6wcU2ovUXN9TONFLd7iz227X2Xg= -cloud.google.com/go/tpu v1.5.0/go.mod h1:8zVo1rYDFuW2l4yZVY0R0fb/v44xLh3llq7RuV61fPM= -cloud.google.com/go/tpu v1.6.1/go.mod h1:sOdcHVIgDEEOKuqUoi6Fq53MKHJAtOwtz0GuKsWSH3E= -cloud.google.com/go/trace v1.3.0/go.mod h1:FFUE83d9Ca57C+K8rDl/Ih8LwOzWIV1krKgxg6N0G28= -cloud.google.com/go/trace v1.4.0/go.mod h1:UG0v8UBqzusp+z63o7FK74SdFE+AXpCLdFb1rshXG+Y= -cloud.google.com/go/trace v1.8.0/go.mod h1:zH7vcsbAhklH8hWFig58HvxcxyQbaIqMarMg9hn5ECA= -cloud.google.com/go/trace v1.9.0/go.mod h1:lOQqpE5IaWY0Ixg7/r2SjixMuc6lfTFeO4QGM4dQWOk= -cloud.google.com/go/trace v1.10.1/go.mod h1:gbtL94KE5AJLH3y+WVpfWILmqgc6dXcqgNXdOPAQTYk= -cloud.google.com/go/translate v1.3.0/go.mod h1:gzMUwRjvOqj5i69y/LYLd8RrNQk+hOmIXTi9+nb3Djs= -cloud.google.com/go/translate v1.4.0/go.mod h1:06Dn/ppvLD6WvA5Rhdp029IX2Mi3Mn7fpMRLPvXT5Wg= -cloud.google.com/go/translate v1.5.0/go.mod h1:29YDSYveqqpA1CQFD7NQuP49xymq17RXNaUDdc0mNu0= -cloud.google.com/go/translate v1.6.0/go.mod h1:lMGRudH1pu7I3n3PETiOB2507gf3HnfLV8qlkHZEyos= -cloud.google.com/go/translate v1.7.0/go.mod h1:lMGRudH1pu7I3n3PETiOB2507gf3HnfLV8qlkHZEyos= -cloud.google.com/go/translate v1.8.1/go.mod h1:d1ZH5aaOA0CNhWeXeC8ujd4tdCFw8XoNWRljklu5RHs= -cloud.google.com/go/translate v1.8.2/go.mod h1:d1ZH5aaOA0CNhWeXeC8ujd4tdCFw8XoNWRljklu5RHs= -cloud.google.com/go/video v1.8.0/go.mod h1:sTzKFc0bUSByE8Yoh8X0mn8bMymItVGPfTuUBUyRgxk= -cloud.google.com/go/video v1.9.0/go.mod h1:0RhNKFRF5v92f8dQt0yhaHrEuH95m068JYOvLZYnJSw= -cloud.google.com/go/video v1.12.0/go.mod h1:MLQew95eTuaNDEGriQdcYn0dTwf9oWiA4uYebxM5kdg= -cloud.google.com/go/video v1.13.0/go.mod h1:ulzkYlYgCp15N2AokzKjy7MQ9ejuynOJdf1tR5lGthk= -cloud.google.com/go/video v1.14.0/go.mod h1:SkgaXwT+lIIAKqWAJfktHT/RbgjSuY6DobxEp0C5yTQ= -cloud.google.com/go/video v1.15.0/go.mod h1:SkgaXwT+lIIAKqWAJfktHT/RbgjSuY6DobxEp0C5yTQ= -cloud.google.com/go/video v1.17.1/go.mod h1:9qmqPqw/Ib2tLqaeHgtakU+l5TcJxCJbhFXM7UJjVzU= -cloud.google.com/go/video v1.19.0/go.mod h1:9qmqPqw/Ib2tLqaeHgtakU+l5TcJxCJbhFXM7UJjVzU= -cloud.google.com/go/videointelligence v1.6.0/go.mod h1:w0DIDlVRKtwPCn/C4iwZIJdvC69yInhW0cfi+p546uU= -cloud.google.com/go/videointelligence v1.7.0/go.mod h1:k8pI/1wAhjznARtVT9U1llUaFNPh7muw8QyOUpavru4= -cloud.google.com/go/videointelligence v1.8.0/go.mod h1:dIcCn4gVDdS7yte/w+koiXn5dWVplOZkE+xwG9FgK+M= -cloud.google.com/go/videointelligence v1.9.0/go.mod h1:29lVRMPDYHikk3v8EdPSaL8Ku+eMzDljjuvRs105XoU= -cloud.google.com/go/videointelligence v1.10.0/go.mod h1:LHZngX1liVtUhZvi2uNS0VQuOzNi2TkY1OakiuoUOjU= -cloud.google.com/go/videointelligence v1.11.1/go.mod h1:76xn/8InyQHarjTWsBR058SmlPCwQjgcvoW0aZykOvo= -cloud.google.com/go/vision v1.2.0/go.mod h1:SmNwgObm5DpFBme2xpyOyasvBc1aPdjvMk2bBk0tKD0= -cloud.google.com/go/vision/v2 v2.2.0/go.mod h1:uCdV4PpN1S0jyCyq8sIM42v2Y6zOLkZs+4R9LrGYwFo= -cloud.google.com/go/vision/v2 v2.3.0/go.mod h1:UO61abBx9QRMFkNBbf1D8B1LXdS2cGiiCRx0vSpZoUo= -cloud.google.com/go/vision/v2 v2.4.0/go.mod h1:VtI579ll9RpVTrdKdkMzckdnwMyX2JILb+MhPqRbPsY= -cloud.google.com/go/vision/v2 v2.5.0/go.mod h1:MmaezXOOE+IWa+cS7OhRRLK2cNv1ZL98zhqFFZaaH2E= -cloud.google.com/go/vision/v2 v2.6.0/go.mod h1:158Hes0MvOS9Z/bDMSFpjwsUrZ5fPrdwuyyvKSGAGMY= -cloud.google.com/go/vision/v2 v2.7.0/go.mod h1:H89VysHy21avemp6xcf9b9JvZHVehWbET0uT/bcuY/0= -cloud.google.com/go/vision/v2 v2.7.2/go.mod h1:jKa8oSYBWhYiXarHPvP4USxYANYUEdEsQrloLjrSwJU= -cloud.google.com/go/vmmigration v1.2.0/go.mod h1:IRf0o7myyWFSmVR1ItrBSFLFD/rJkfDCUTO4vLlJvsE= -cloud.google.com/go/vmmigration v1.3.0/go.mod h1:oGJ6ZgGPQOFdjHuocGcLqX4lc98YQ7Ygq8YQwHh9A7g= -cloud.google.com/go/vmmigration v1.5.0/go.mod h1:E4YQ8q7/4W9gobHjQg4JJSgXXSgY21nA5r8swQV+Xxc= -cloud.google.com/go/vmmigration v1.6.0/go.mod h1:bopQ/g4z+8qXzichC7GW1w2MjbErL54rk3/C843CjfY= -cloud.google.com/go/vmmigration v1.7.1/go.mod h1:WD+5z7a/IpZ5bKK//YmT9E047AD+rjycCAvyMxGJbro= -cloud.google.com/go/vmwareengine v0.1.0/go.mod h1:RsdNEf/8UDvKllXhMz5J40XxDrNJNN4sagiox+OI208= -cloud.google.com/go/vmwareengine v0.2.2/go.mod h1:sKdctNJxb3KLZkE/6Oui94iw/xs9PRNC2wnNLXsHvH8= -cloud.google.com/go/vmwareengine v0.3.0/go.mod h1:wvoyMvNWdIzxMYSpH/R7y2h5h3WFkx6d+1TIsP39WGY= -cloud.google.com/go/vmwareengine v0.4.1/go.mod h1:Px64x+BvjPZwWuc4HdmVhoygcXqEkGHXoa7uyfTgSI0= -cloud.google.com/go/vmwareengine v1.0.0/go.mod h1:Px64x+BvjPZwWuc4HdmVhoygcXqEkGHXoa7uyfTgSI0= -cloud.google.com/go/vpcaccess v1.4.0/go.mod h1:aQHVbTWDYUR1EbTApSVvMq1EnT57ppDmQzZ3imqIk4w= -cloud.google.com/go/vpcaccess v1.5.0/go.mod h1:drmg4HLk9NkZpGfCmZ3Tz0Bwnm2+DKqViEpeEpOq0m8= -cloud.google.com/go/vpcaccess v1.6.0/go.mod h1:wX2ILaNhe7TlVa4vC5xce1bCnqE3AeH27RV31lnmZes= -cloud.google.com/go/vpcaccess v1.7.1/go.mod h1:FogoD46/ZU+JUBX9D606X21EnxiszYi2tArQwLY4SXs= -cloud.google.com/go/webrisk v1.4.0/go.mod h1:Hn8X6Zr+ziE2aNd8SliSDWpEnSS1u4R9+xXZmFiHmGE= -cloud.google.com/go/webrisk v1.5.0/go.mod h1:iPG6fr52Tv7sGk0H6qUFzmL3HHZev1htXuWDEEsqMTg= -cloud.google.com/go/webrisk v1.6.0/go.mod h1:65sW9V9rOosnc9ZY7A7jsy1zoHS5W9IAXv6dGqhMQMc= -cloud.google.com/go/webrisk v1.7.0/go.mod h1:mVMHgEYH0r337nmt1JyLthzMr6YxwN1aAIEc2fTcq7A= -cloud.google.com/go/webrisk v1.8.0/go.mod h1:oJPDuamzHXgUc+b8SiHRcVInZQuybnvEW72PqTc7sSg= -cloud.google.com/go/webrisk v1.9.1/go.mod h1:4GCmXKcOa2BZcZPn6DCEvE7HypmEJcJkr4mtM+sqYPc= -cloud.google.com/go/websecurityscanner v1.3.0/go.mod h1:uImdKm2wyeXQevQJXeh8Uun/Ym1VqworNDlBXQevGMo= -cloud.google.com/go/websecurityscanner v1.4.0/go.mod h1:ebit/Fp0a+FWu5j4JOmJEV8S8CzdTkAS77oDsiSqYWQ= -cloud.google.com/go/websecurityscanner v1.5.0/go.mod h1:Y6xdCPy81yi0SQnDY1xdNTNpfY1oAgXUlcfN3B3eSng= -cloud.google.com/go/websecurityscanner v1.6.1/go.mod h1:Njgaw3rttgRHXzwCB8kgCYqv5/rGpFCsBOvPbYgszpg= -cloud.google.com/go/workflows v1.6.0/go.mod h1:6t9F5h/unJz41YqfBmqSASJSXccBLtD1Vwf+KmJENM0= -cloud.google.com/go/workflows v1.7.0/go.mod h1:JhSrZuVZWuiDfKEFxU0/F1PQjmpnpcoISEXH2bcHC3M= -cloud.google.com/go/workflows v1.8.0/go.mod h1:ysGhmEajwZxGn1OhGOGKsTXc5PyxOc0vfKf5Af+to4M= -cloud.google.com/go/workflows v1.9.0/go.mod h1:ZGkj1aFIOd9c8Gerkjjq7OW7I5+l6cSvT3ujaO/WwSA= -cloud.google.com/go/workflows v1.10.0/go.mod h1:fZ8LmRmZQWacon9UCX1r/g/DfAXx5VcPALq2CxzdePw= -cloud.google.com/go/workflows v1.11.1/go.mod h1:Z+t10G1wF7h8LgdY/EmRcQY8ptBD/nvofaL6FqlET6g= -dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= -gioui.org v0.0.0-20210308172011-57750fc8a0a6/go.mod h1:RSH6KIUZ0p2xy5zHDxgAM4zumjgTw83q2ge/PI+yyw8= -git.sr.ht/~sbinet/gg v0.3.1/go.mod h1:KGYtlADtqsqANL9ueOFkWymvzUvLMQllU5Ixo+8v3pc= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= -github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= -github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c/go.mod h1:X0CRv0ky0k6m906ixxpzmDRLvX58TFUKS2eePweuyxk= -github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= -github.com/ajstarks/deck v0.0.0-20200831202436-30c9fc6549a9/go.mod h1:JynElWSGnm/4RlzPXRlREEwqTHAN3T56Bv2ITsFT3gY= -github.com/ajstarks/deck/generate v0.0.0-20210309230005-c3f852c02e19/go.mod h1:T13YZdzov6OU0A1+RfKZiZN9ca6VeKdBdyDV+BY97Tk= -github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af/go.mod h1:K08gAheRH3/J6wwsYMMT4xOr94bZjxIelGM0+d/wbFw= -github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b/go.mod h1:1KcenG0jGWcpt8ov532z81sp/kMMUG485J2InIOyADM= -github.com/andybalholm/brotli v1.0.4/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig= -github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= -github.com/apache/arrow/go/v10 v10.0.1/go.mod h1:YvhnlEePVnBS4+0z3fhPfUy7W1Ikj0Ih0vcRo/gZ1M0= -github.com/apache/arrow/go/v11 v11.0.0/go.mod h1:Eg5OsL5H+e299f7u5ssuXsuHQVEGC4xei5aX110hRiI= -github.com/apache/arrow/go/v12 v12.0.0/go.mod h1:d+tV/eHZZ7Dz7RPrFKtPK02tpr+c9/PEd/zm8mDS9Vg= -github.com/apache/thrift v0.16.0/go.mod h1:PHK3hniurgQaNMZYaCLEqXKsYK8upmhPbmdP2FXSqgU= github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA= github.com/benbjohnson/clock v1.3.0 h1:ip6w0uFQkncKQ979AypyG0ER7mqUSBdKLOgAle/AT8A= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/boombuler/barcode v1.0.0/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= -github.com/boombuler/barcode v1.0.1/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/census-instrumentation/opencensus-proto v0.3.0/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/census-instrumentation/opencensus-proto v0.4.1/go.mod h1:4T9NM4+4Vw91VeyqjLS6ao50K5bOcLKN6Q42XnYaRYw= -github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= -github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= -github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= -github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= -github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= -github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= -github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= -github.com/cncf/udpa/go v0.0.0-20220112060539-c52dc94e7fbe/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= -github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20210805033703-aa0b78936158/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20210922020428-25de7278fc84/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211001041855-01bcc9b48dfe/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20220314180256-7f1daf1720fc/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20230105202645-06c439db220b/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20230310173818-32f1caf87195/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20230607035331-e9ce68804cb4/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= -github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE= -github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= -github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto= github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= -github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po= -github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= -github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= -github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= -github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0= -github.com/envoyproxy/go-control-plane v0.10.2-0.20220325020618-49ff273808a1/go.mod h1:KJwIaB5Mv44NWtYuAOFCVOjcI94vtpEz2JU/D2v6IjE= -github.com/envoyproxy/go-control-plane v0.10.3/go.mod h1:fJJn/j26vwOu972OllsvAgJJM//w9BV6Fxbg2LuVd34= -github.com/envoyproxy/go-control-plane v0.11.0/go.mod h1:VnHyVMpzcLvCFt9yUz1UnCwHLhwx1WguiVDV7pTG/tI= -github.com/envoyproxy/go-control-plane v0.11.1-0.20230524094728-9239064ad72f/go.mod h1:sfYdkwUW4BA3PbKjySwjJy+O4Pu0h62rlqCMHNk+K+Q= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= -github.com/envoyproxy/protoc-gen-validate v0.6.7/go.mod h1:dyJXwwfPK2VSqiB9Klm1J6romD608Ba7Hij42vrOBCo= -github.com/envoyproxy/protoc-gen-validate v0.9.1/go.mod h1:OKNgG7TCp5pF4d6XftA0++PMirau2/yoOwVac3AbF2w= -github.com/envoyproxy/protoc-gen-validate v0.10.0/go.mod h1:DRjgyB0I43LtJapqN6NiRwroiAU2PaFuvk/vjgh61ss= -github.com/envoyproxy/protoc-gen-validate v0.10.1/go.mod h1:DRjgyB0I43LtJapqN6NiRwroiAU2PaFuvk/vjgh61ss= github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a h1:yDWHCSQ40h88yih2JAcL6Ls/kVkSE8GFACTGVnMPruw= github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a/go.mod h1:7Ga40egUymuWXxAe151lTNnCv97MddSOVsjpPPkityA= -github.com/fogleman/gg v1.2.1-0.20190220221249-0403632d5b90/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= -github.com/fogleman/gg v1.3.0/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= -github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= -github.com/go-fonts/dejavu v0.1.0/go.mod h1:4Wt4I4OU2Nq9asgDCteaAaWZOV24E+0/Pwo0gppep4g= -github.com/go-fonts/latin-modern v0.2.0/go.mod h1:rQVLdDMK+mK1xscDwsqM5J8U2jrRa3T0ecnM9pNujks= -github.com/go-fonts/liberation v0.1.1/go.mod h1:K6qoJYypsmfVjWg8KOVDQhLc8UDgIK2HYqyqAO9z7GY= -github.com/go-fonts/liberation v0.2.0/go.mod h1:K6qoJYypsmfVjWg8KOVDQhLc8UDgIK2HYqyqAO9z7GY= -github.com/go-fonts/stix v0.1.0/go.mod h1:w/c1f0ldAUlJmLBvlbkvVXLAD+tAMqobIIQpmnUIzUY= -github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= -github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= -github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY= -github.com/go-latex/latex v0.0.0-20210118124228-b3d85cf34e07/go.mod h1:CO1AlKB2CSIqUrmQPqA0gdRIlnLEY0gK5JGjh37zN5U= -github.com/go-latex/latex v0.0.0-20210823091927-c0d11ff05a81/go.mod h1:SX0U8uGpxhq9o2S/CELCSUxEWWAuoCUcVCQWv7G2OCk= github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= -github.com/go-pdf/fpdf v0.5.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= -github.com/go-pdf/fpdf v0.6.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= -github.com/goccy/go-json v0.9.11/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= -github.com/gogo/googleapis v0.0.0-20180223154316-0cd9801be74a/go.mod h1:gf4bu3Q80BeJ6H1S1vYPm8/ELATdvryBaNFGgqEef3s= -github.com/gogo/googleapis v1.4.1 h1:1Yx4Myt7BxzvUr5ldGSbwYiZG6t9wGBZ+8/fX3Wvtq0= -github.com/gogo/googleapis v1.4.1/go.mod h1:2lpHqI5OcWCtVElxXnPt+s8oJvMpySlOyM6xDCrzib4= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= -github.com/gogo/status v1.1.1 h1:DuHXlSFHNKqTQ+/ACf5Vs6r4X/dH2EgIzR9Vr+H65kg= -github.com/gogo/status v1.1.1/go.mod h1:jpG3dM5QPcqu19Hg8lkUhBFBa3TcLs1DG7+2Jqci7oU= -github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/glog v1.0.0/go.mod h1:EWib/APOK0SL3dFbYqvxE3UYd8E6s1ouQ7iEp/0LWV4= -github.com/golang/glog v1.1.0/go.mod h1:pfYeQZ3JWZoXTV5sFc986z3HTpwQs9At6P4ImfuP3NQ= -github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= -github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= -github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= -github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= -github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= -github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= -github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= -github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3KVu8= github.com/golang/mock v1.6.0 h1:ErTB+efbowRARo13NNdxyJji2egdxLGQhRaY+DUumQc= github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= -github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= -github.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk= -github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= -github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= -github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= -github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w= -github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= -github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= -github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= -github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= -github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= -github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= -github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= -github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= -github.com/google/flatbuffers v2.0.8+incompatible/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= -github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= -github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= -github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8/DtOE= -github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= -github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= -github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= -github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= -github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= -github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= -github.com/google/martian/v3 v3.2.1/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= -github.com/google/martian/v3 v3.3.2/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= -github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= -github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= -github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20201218002935-b9804c9f04c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= -github.com/google/s2a-go v0.1.0/go.mod h1:OJpEgntRZo8ugHpF9hkoLJbS5dSI20XZeXJ9JVywLlM= -github.com/google/s2a-go v0.1.3/go.mod h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkjEwM0A= -github.com/google/s2a-go v0.1.4/go.mod h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkjEwM0A= +github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= github.com/google/uuid v1.0.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.3.1 h1:KjJaJ9iWZ3jOFZIf1Lqf4laDRCasjl0BCmnEGxkdLb4= github.com/google/uuid v1.3.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/googleapis/enterprise-certificate-proxy v0.0.0-20220520183353-fd19c99a87aa/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= -github.com/googleapis/enterprise-certificate-proxy v0.1.0/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= -github.com/googleapis/enterprise-certificate-proxy v0.2.0/go.mod h1:8C0jb7/mgJe/9KK8Lm7X9ctZC2t60YyIpYEI16jx0Qg= -github.com/googleapis/enterprise-certificate-proxy v0.2.1/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= -github.com/googleapis/enterprise-certificate-proxy v0.2.3/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= -github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= -github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= -github.com/googleapis/gax-go/v2 v2.1.0/go.mod h1:Q3nei7sK6ybPYH7twZdmQpAd1MKb7pfu6SK+H1/DsU0= -github.com/googleapis/gax-go/v2 v2.1.1/go.mod h1:hddJymUZASv3XPyGkUpKj8pPO47Rmb0eJc8R6ouapiM= -github.com/googleapis/gax-go/v2 v2.2.0/go.mod h1:as02EH8zWkzwUoLbBaFeQ+arQaj/OthfcblKl4IGNaM= -github.com/googleapis/gax-go/v2 v2.3.0/go.mod h1:b8LNqSzNabLiUpXKkY7HAR5jr6bIT99EXz9pXxye9YM= -github.com/googleapis/gax-go/v2 v2.4.0/go.mod h1:XOTVJ59hdnfJLIP/dh8n5CGryZR2LxK9wbMD5+iXC6c= -github.com/googleapis/gax-go/v2 v2.5.1/go.mod h1:h6B0KMMFNtI2ddbGJn3T3ZbwkeT6yqEF02fYlzkUCyo= -github.com/googleapis/gax-go/v2 v2.6.0/go.mod h1:1mjbznJAPHFpesgE5ucqfYEscaz5kMdcIDwU/6+DDoY= -github.com/googleapis/gax-go/v2 v2.7.0/go.mod h1:TEop28CZZQ2y+c0VxMUmu1lV+fQx57QpBWsYpwqHJx8= -github.com/googleapis/gax-go/v2 v2.7.1/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38/qKbhSAKP6QI= -github.com/googleapis/gax-go/v2 v2.8.0/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38/qKbhSAKP6QI= -github.com/googleapis/gax-go/v2 v2.10.0/go.mod h1:4UOEnMCrxsSqQ940WnTiD6qJ63le2ev3xfyagutxiPw= -github.com/googleapis/gax-go/v2 v2.11.0/go.mod h1:DxmR61SGKkGLa2xigwuZIQpkCI2S5iydzRfb3peWZJI= -github.com/googleapis/go-type-adapters v1.0.0/go.mod h1:zHW75FOG2aur7gAO2B+MLby+cLsWGBF62rFAi7WjWO4= -github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 h1:UH//fgunKIs4JdUbpDl1VZCDaL56wXCB/5+wF6uHfaI= github.com/grpc-ecosystem/go-grpc-middleware v1.4.0/go.mod h1:g5qyo/la0ALbONm6Vbp88Yd8NsDy6rZz+RcrMPxvld8= -github.com/grpc-ecosystem/grpc-gateway v1.16.0 h1:gmcG1KaJ57LophUzW0Hy8NmPhnMZb4M0+kPpLofRdBo= -github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0/go.mod h1:hgWBS7lorOAVIJEQMi4ZsPv9hVvWI6+ch50m39Pf2Ks= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3/go.mod h1:o//XUCC/F+yRGJoPO/VU0GSB0f8Nhgmxx0VIRUvaC0w= -github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= -github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= -github.com/iancoleman/strcase v0.2.0/go.mod h1:iwCmte+B7n89clKwxIoIXy/HfoL7AsD47ZCWhYzw7ho= -github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= -github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.1 h1:6UKoz5ujsI55KNpsJH3UwCq3T8kKbZwNZBNPuTTje8U= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.1/go.mod h1:YvJ2f6MplWDhfxiUC3KpyTy76kYUZA4W3pTv/wdKQ9Y= github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= -github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= -github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= -github.com/jung-kurt/gofpdf v1.0.0/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= -github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= -github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= -github.com/klauspost/asmfmt v1.3.2/go.mod h1:AG8TuvYojzulgDAMCnYn50l/5QV3Bs/tp6j0HLHbNSE= -github.com/klauspost/compress v1.15.9/go.mod h1:PhcZ0MbTNciWF3rruxRgKxI5NkcHHrHUDtV4Yw2GlzU= -github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= -github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= -github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk= github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= -github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= -github.com/lyft/protoc-gen-star v0.6.0/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA= -github.com/lyft/protoc-gen-star v0.6.1/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA= -github.com/lyft/protoc-gen-star/v2 v2.0.1/go.mod h1:RcCdONR2ScXaYnQC5tUzxzlpA3WVYF7/opLeUgcQs/o= -github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= -github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= -github.com/mattn/go-isatty v0.0.17/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= -github.com/mattn/go-sqlite3 v1.14.14/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU= -github.com/mattn/go-sqlite3 v1.14.15/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg= github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo= github.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= -github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8/go.mod h1:mC1jAcsrzbxHt8iiaC+zU4b1ylILSosueou12R++wfY= -github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3/go.mod h1:RagcQ7I8IeTMnF8JTXieKnO4Z6JCsikNEzj0DwauVzE= github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= github.com/pborman/uuid v1.2.1 h1:+ZZIw58t/ozdjRaXh/3awHfmWRbzYxJoAdNJxe/3pvw= github.com/pborman/uuid v1.2.1/go.mod h1:X/NO0urCmaxf9VXbdlT7C2Yzkj2IKimNn4k+gtPdI/k= -github.com/phpdave11/gofpdf v1.4.2/go.mod h1:zpO6xFn9yxo3YLyMvW8HcKWVdbNqgIfOOp2dXMnm1mY= -github.com/phpdave11/gofpdi v1.0.12/go.mod h1:vBmVV0Do6hSBHC8uKUQ71JGW+ZGQq74llk/7bXwjDoI= -github.com/phpdave11/gofpdi v1.0.13/go.mod h1:vBmVV0Do6hSBHC8uKUQ71JGW+ZGQq74llk/7bXwjDoI= -github.com/pierrec/lz4/v4 v4.1.15/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= -github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/sftp v1.10.1/go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI= -github.com/pkg/sftp v1.13.1/go.mod h1:3HaPG6Dq1ILlpPZRO0HVMrsydcdLt6HRDccSgb87qRg= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.16.0 h1:yk/hx9hDbrGHovbci4BY+pRMfSuuat626eFsHb7tmT8= github.com/prometheus/client_golang v1.16.0/go.mod h1:Zsulrv/L9oM40tJ7T815tM89lFEugiJ9HzIqaAx4LKc= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.3.0/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w= github.com/prometheus/client_model v0.4.0 h1:5lQXD3cAg1OXBf4Wq03gTrXHeaV0TQvGfUooCfx1yqY= github.com/prometheus/client_model v0.4.0/go.mod h1:oMQmHW1/JoDwqLtg57MGgP/Fb1CJEYF2imWWhWtMkYU= github.com/prometheus/common v0.44.0 h1:+5BrQJwiBB9xsMygAB3TNvpQKOwlkc25LbISbrdOOfY= github.com/prometheus/common v0.44.0/go.mod h1:ofAIvZbQ1e/nugmZGz4/qCb9Ap1VoSTIO7x0VV9VvuY= github.com/prometheus/procfs v0.11.1 h1:xRC8Iq1yyca5ypa9n1EZnWZkt7dwcoRPQwX/5gwaUuI= github.com/prometheus/procfs v0.11.1/go.mod h1:eesXgaPo1q7lBpVMoMy0ZOFTth9hBn4W/y0/p/ScXhY= -github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= -github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= github.com/robfig/cron v1.2.0 h1:ZjScXvvxeQ63Dbyxy76Fj3AT3Ut0aKsyd2/tl3DTMuQ= github.com/robfig/cron v1.2.0/go.mod h1:JGuDeoQd7Z6yL4zQhZ3OPEVHB7fL6Ka6skscFHfmt2k= -github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= -github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= -github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= -github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= -github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ= +github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= -github.com/ruudk/golang-pdf417 v0.0.0-20181029194003-1af4ab5afa58/go.mod h1:6lfFZQK844Gfx8o5WFuvpxWRwnSoipWe/p622j1v06w= -github.com/ruudk/golang-pdf417 v0.0.0-20201230142125-a7e3863a1245/go.mod h1:pQAZKsJ8yyVxGRWYNEm9oFB8ieLgKFnamEyDmSA0BRk= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= -github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= -github.com/spf13/afero v1.3.3/go.mod h1:5KUK8ByomD5Ti5Artl0RtHeI5pTF7MIDuXL3yY520V4= -github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I= -github.com/spf13/afero v1.9.2/go.mod h1:iUV7ddyEEZPO5gA3zD4fJt6iStLlL+Lg4m2cihcDf8Y= github.com/spf13/cobra v1.7.0 h1:hyqWnYt1ZQShIddO5kBpj3vu05/++x6tJ6dg8EC572I= github.com/spf13/cobra v1.7.0/go.mod h1:uLxZILRyS/50WlhOIKD7W6V5bgeIt+4sICxh6uRMrb0= github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= @@ -1061,45 +89,24 @@ github.com/stretchr/objx v0.5.1/go.mod h1:/iHQpkQwBD6DLUmQ4pE+s1TXdob1mORJ4/UFdr github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= -github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= -github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= -github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= -github.com/stretchr/testify v1.8.3/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= -github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= -github.com/yuin/goldmark v1.4.1/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= -github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= -github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA= -go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= -go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= -go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= -go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= -go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= -go.opentelemetry.io/proto/otlp v0.15.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= -go.opentelemetry.io/proto/otlp v0.19.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= -go.temporal.io/api v1.24.0 h1:WWjMYSXNh4+T4Y4jq1e/d9yCNnWoHhq4bIwflHY6fic= -go.temporal.io/api v1.24.0/go.mod h1:4ackgCMjQHMpJYr1UQ6Tr/nknIqFkJ6dZ/SZsGv+St0= -go.temporal.io/sdk v1.25.0 h1:urC4CYy3ZJOC4oOWreNfIH08N4qHydOc20pN1bYpmYw= -go.temporal.io/sdk v1.25.0/go.mod h1:X7iFKZpsj90BfszfpFCzLX8lwEJXbnRrl351/HyEgmU= +go.temporal.io/api v1.26.1 h1:YqGQsOr/Tx4nVdA8wCv74AxesaIzCRHWb3KkHrYqI8k= +go.temporal.io/api v1.26.1/go.mod h1:Y/rALXTprFO+bvAlAfLFoJj7KpQIcL4GDQVN6fhYIa4= +go.temporal.io/sdk v1.25.2-0.20231129171107-288a04f72145 h1:aV7tRpzB3tr9LGs4/SN7MSWSbVx+bgDYfOoGMjk4oEM= +go.temporal.io/sdk v1.25.2-0.20231129171107-288a04f72145/go.mod h1:MHw8PEOVmOJC1yduTVxYq1GsM5kkQg0sIwRST7cRHoo= go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= go.uber.org/atomic v1.11.0 h1:ZvwS0R+56ePWxUNi+Atn9dWONBPp/AUETXlHW0DxSjE= go.uber.org/atomic v1.11.0/go.mod h1:LUxbIzbOniOlMKjJjyPfpl4v+PKK2cNJn91OQbhoJI0= go.uber.org/goleak v1.1.10/go.mod h1:8a7PlsEVH3e/a/GLqe5IIrQx6GzcnRmZEufDUTk4A7A= -go.uber.org/goleak v1.2.0 h1:xqgm/S+aQvhWFTtR0XK3Jvg7z8kGV8P4X14IzwN3Eqk= +go.uber.org/goleak v1.2.1 h1:NBol2c7O1ZokfZ0LEU9K6Whx/KnwvepVetCUhtKja4A= go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= go.uber.org/multierr v1.11.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y= @@ -1107,763 +114,99 @@ go.uber.org/zap v1.18.1/go.mod h1:xg/QME4nWcxGxrpdeYfq7UvYrLh66cuVKdrbD1XF/NI= go.uber.org/zap v1.25.0 h1:4Hvk6GtkucQ790dqmj7l1eEnRdKm3k3ZUrUMS2d5+5c= go.uber.org/zap v1.25.0/go.mod h1:JIAUzQIH94IC4fOJQm7gMmBJP5k7wQfdcnYdPoEXJYk= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= -golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20220314234659-1baeb1ce4c0b/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.1.0/go.mod h1:RecgLatLF4+eUMCP1PoPZQb+cVrJcOPbHkTkbkB9sbw= -golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= -golang.org/x/crypto v0.9.0/go.mod h1:yrmDGqONDYtNj3tH8X9dzUun2m2lzPa9ngI6/RUPGR0= -golang.org/x/crypto v0.12.0/go.mod h1:NF0Gs7EO5K4qLn+Ylc+fih8BSTeIjAP05siRnAh98yw= -golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190125153040-c74c464bbbf2/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= -golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek= -golang.org/x/exp v0.0.0-20191002040644-a1355ae1e2c3/go.mod h1:NOZ3BPKG0ec/BKJQgnvsSFpcKLM5xXVWnvZS97DWHgE= -golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= -golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= -golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= -golang.org/x/exp v0.0.0-20220827204233-334a2380cb91/go.mod h1:cyybsKvd6eL0RnXn6p/Grxp8F5bW7iYuBgsNCOHpMYE= -golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs= -golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= -golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20190910094157-69e4b8554b2a/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20200119044424-58c23975cae1/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20200430140353-33d19683fad8/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20200618115811-c13761719519/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20201208152932-35266b937fa6/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20210216034530-4410531fe030/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20210607152325-775e3b0c77b9/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= -golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= -golang.org/x/image v0.0.0-20211028202545-6944b10bf410/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= -golang.org/x/image v0.0.0-20220302094943-723b81ca9867/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= -golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs= -golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= -golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= -golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= -golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY= -golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= -golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.5.0/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= -golang.org/x/mod v0.5.1/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= -golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= -golang.org/x/mod v0.7.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.9.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.10.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200222125558-5a598a2470a0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= -golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220325170049-de3da57026de/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220412020605-290c469a71a5/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220607020251-c690dde0001d/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220617184016-355a448f1bc9/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220909164309-bea034e7d591/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= -golang.org/x/net v0.0.0-20221012135044-0b7e1fb9d458/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= -golang.org/x/net v0.0.0-20221014081412-f15817d10f9b/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= -golang.org/x/net v0.1.0/go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco= -golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY= -golang.org/x/net v0.4.0/go.mod h1:MBQ8lrhLObU/6UmLb4fmbmk5OcyYmqtbGd/9yIeKjEE= -golang.org/x/net v0.5.0/go.mod h1:DivGGAXEgPSlEBzxGzZI+ZLohi+xUj054jfeKui00ws= -golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= -golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= -golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= -golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns= -golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= -golang.org/x/net v0.14.0 h1:BONx9s002vGdD9umnlX1Po8vOZmrgH34qlHcD1MfK14= -golang.org/x/net v0.14.0/go.mod h1:PpSgVXXLK0OxS0F31C1/tv6XNguvCrnXIDrFMspZIUI= +golang.org/x/net v0.19.0 h1:zTwKpTd2XuCqf8huc7Fo2iSy+4RHPd10s4KzeTnVr1c= +golang.org/x/net v0.19.0/go.mod h1:CfAk/cbD4CthTvqiEl8NpboMuiuOYsAr/7NOjZJtv1U= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220608161450-d0670ef3b1eb/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= -golang.org/x/oauth2 v0.0.0-20220622183110-fd043fe589d2/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= -golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= -golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= -golang.org/x/oauth2 v0.0.0-20221006150949-b44042a4b9c1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= -golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= -golang.org/x/oauth2 v0.4.0/go.mod h1:RznEsdpjGAINPTOF0UH/t+xJ75L18YO3Ho6Pyn+uRec= -golang.org/x/oauth2 v0.5.0/go.mod h1:9/XBHVqLaWO3/BRHs5jbpYCnOZVjj5V0ndyaAM7KB4I= -golang.org/x/oauth2 v0.6.0/go.mod h1:ycmewcwgD4Rpr3eZJLSB4Kyyljb3qDh40vJ8STE5HKw= -golang.org/x/oauth2 v0.7.0/go.mod h1:hPLQkd9LyjfXTiRohC/41GhcFqxisoUQ99sCUOHO9x4= -golang.org/x/oauth2 v0.8.0/go.mod h1:yr7u4HXZRm1R1kBWqr/xKNqewf0plRYoB7sla+BCIXE= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220819030929-7fc1605a5dde/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220929204114-8fcdb60fdcc0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.2.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.5.0 h1:60k92dhOjHxJkrqnwsfl8KuaHbn/5dl0lUPUklKo3qE= golang.org/x/sync v0.5.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210304124612-50617c2ba197/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210816183151-1e6c022a8912/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211025201205-69cdffdb9359/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211124211545-fe61309f8881/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211210111614-af8b64212486/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220209214540-3681064d5158/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220412211240-33da011f77ad/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220502124256-b6088ccd6cba/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220624220833-87e55d714810/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220829200755-d48e67d00261/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.4.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.11.0 h1:eG7RXZHdqOJ1i+0lgLgCpSXAp6M3LYlAo6osgSi0xOM= -golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= +golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= -golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc= -golang.org/x/term v0.3.0/go.mod h1:q750SLmJuPmVoN1blW3UFBPREJfb1KmY3vwxfr+nFDA= -golang.org/x/term v0.4.0/go.mod h1:9P2UbLfCdcvo3p/nzKvsmas4TnlujnuoV9hGgYzW1lQ= -golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= -golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= -golang.org/x/term v0.7.0/go.mod h1:P32HKFT3hSsZrRxla30E9HqToFYAQPCMs/zFMBUFqPY= -golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= -golang.org/x/term v0.11.0/go.mod h1:zC9APTIj3jG3FdV/Ons+XE1riIZXG4aZ4GTHiPZJPIU= -golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= -golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.5.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.6.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= -golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= -golang.org/x/text v0.12.0 h1:k+n5B8goJNdU7hSvEtMUz3d1Q6D/XW4COJSJR6fN0mc= -golang.org/x/text v0.12.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= -golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20220922220347-f3bd1da661af/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.1.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= +golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= golang.org/x/time v0.3.0 h1:rg5rLMjNzMS1RkNLzCG38eapWhnYLFYXDXj2gOlr8j4= golang.org/x/time v0.3.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/tools v0.0.0-20180525024113-a5b4c53f6e8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190206041539-40960b6deb8e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20190927191325-030b2cf1153e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191108193012-7d206e10da11/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= -golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= -golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= -golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= -golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201124115921-2c860bdd6e78/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.9/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= -golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= -golang.org/x/tools v0.3.0/go.mod h1:/rWhSS2+zyEVwoJf8YAX6L2f0ntZ7Kn/mGgAWcipA5k= -golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= -golang.org/x/tools v0.7.0/go.mod h1:4pg6aUX35JBAogB10C9AtvVL+qowtN4pT3CGSQex14s= -golang.org/x/tools v0.9.1/go.mod h1:owI94Op576fPu3cIGQeHs3joujW/2Oc6MtlxbF5dfNc= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= -golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= -golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= -gonum.org/v1/gonum v0.0.0-20180816165407-929014505bf4/go.mod h1:Y+Yx5eoAFn32cQvJDxZx5Dpnq+c3wtXuadVZAcxbbBo= -gonum.org/v1/gonum v0.8.2/go.mod h1:oe/vMfY3deqTw+1EZJhuvEW2iwGF1bW9wwu7XCu0+v0= -gonum.org/v1/gonum v0.9.3/go.mod h1:TZumC3NeyVQskjXqmyWt4S3bINhy7B4eYwW69EbyX+0= -gonum.org/v1/gonum v0.11.0/go.mod h1:fSG4YDCxxUZQJ7rKsQrj0gMOg00Il0Z96/qMA4bVQhA= -gonum.org/v1/netlib v0.0.0-20190313105609-8cb42192e0e0/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw= -gonum.org/v1/plot v0.0.0-20190515093506-e2840ee46a6b/go.mod h1:Wt8AAjI+ypCyYX3nZBvf6cAIx93T+c/OS2HFAYskSZc= -gonum.org/v1/plot v0.9.0/go.mod h1:3Pcqqmp6RHvJI72kgb8fThyUnav364FOsdDo2aGW5lY= -gonum.org/v1/plot v0.10.1/go.mod h1:VZW5OlhkL1mysU9vaqNHnsy86inf6Ot+jB3r+BczCEo= -google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= -google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= -google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= -google.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= -google.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= -google.golang.org/api v0.14.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= -google.golang.org/api v0.15.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= -google.golang.org/api v0.17.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.18.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.19.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.20.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.22.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= -google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= -google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM= -google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc= -google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= -google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= -google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= -google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU= -google.golang.org/api v0.43.0/go.mod h1:nQsDGjRXMo4lvh5hP0TKqF244gqhGcr/YSIykhUk/94= -google.golang.org/api v0.47.0/go.mod h1:Wbvgpq1HddcWVtzsVLyfLp8lDg6AA241LmgIL59tHXo= -google.golang.org/api v0.48.0/go.mod h1:71Pr1vy+TAZRPkPs/xlCf5SsU8WjuAWv1Pfjbtukyy4= -google.golang.org/api v0.50.0/go.mod h1:4bNT5pAuq5ji4SRZm+5QIkjny9JAyVD/3gaSihNefaw= -google.golang.org/api v0.51.0/go.mod h1:t4HdrdoNgyN5cbEfm7Lum0lcLDLiise1F8qDKX00sOU= -google.golang.org/api v0.54.0/go.mod h1:7C4bFFOvVDGXjfDTAsgGwDgAxRDeQ4X8NvUedIt6z3k= -google.golang.org/api v0.55.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= -google.golang.org/api v0.56.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= -google.golang.org/api v0.57.0/go.mod h1:dVPlbZyBo2/OjBpmvNdpn2GRm6rPy75jyU7bmhdrMgI= -google.golang.org/api v0.61.0/go.mod h1:xQRti5UdCmoCEqFxcz93fTl338AVqDgyaDRuOZ3hg9I= -google.golang.org/api v0.63.0/go.mod h1:gs4ij2ffTRXwuzzgJl/56BdwJaA194ijkfn++9tDuPo= -google.golang.org/api v0.67.0/go.mod h1:ShHKP8E60yPsKNw/w8w+VYaj9H6buA5UqDp8dhbQZ6g= -google.golang.org/api v0.70.0/go.mod h1:Bs4ZM2HGifEvXwd50TtW70ovgJffJYw2oRCOFU/SkfA= -google.golang.org/api v0.71.0/go.mod h1:4PyU6e6JogV1f9eA4voyrTY2batOLdgZ5qZ5HOCc4j8= -google.golang.org/api v0.74.0/go.mod h1:ZpfMZOVRMywNyvJFeqL9HRWBgAuRfSjJFpe9QtRRyDs= -google.golang.org/api v0.75.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= -google.golang.org/api v0.77.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= -google.golang.org/api v0.78.0/go.mod h1:1Sg78yoMLOhlQTeF+ARBoytAcH1NNyyl390YMy6rKmw= -google.golang.org/api v0.80.0/go.mod h1:xY3nI94gbvBrE0J6NHXhxOmW97HG7Khjkku6AFB3Hyg= -google.golang.org/api v0.84.0/go.mod h1:NTsGnUFJMYROtiquksZHBWtHfeMC7iYthki7Eq3pa8o= -google.golang.org/api v0.85.0/go.mod h1:AqZf8Ep9uZ2pyTvgL+x0D3Zt0eoT9b5E8fmzfu6FO2g= -google.golang.org/api v0.90.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= -google.golang.org/api v0.93.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= -google.golang.org/api v0.95.0/go.mod h1:eADj+UBuxkh5zlrSntJghuNeg8HwQ1w5lTKkuqaETEI= -google.golang.org/api v0.96.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= -google.golang.org/api v0.97.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= -google.golang.org/api v0.98.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= -google.golang.org/api v0.99.0/go.mod h1:1YOf74vkVndF7pG6hIHuINsM7eWwpVTAfNMNiL91A08= -google.golang.org/api v0.100.0/go.mod h1:ZE3Z2+ZOr87Rx7dqFsdRQkRBk36kDtp/h+QpHbB7a70= -google.golang.org/api v0.102.0/go.mod h1:3VFl6/fzoA+qNuS1N1/VfXY4LjoXN/wzeIp7TweWwGo= -google.golang.org/api v0.103.0/go.mod h1:hGtW6nK1AC+d9si/UBhw8Xli+QMOf6xyNAyJw4qU9w0= -google.golang.org/api v0.106.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= -google.golang.org/api v0.107.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= -google.golang.org/api v0.108.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= -google.golang.org/api v0.110.0/go.mod h1:7FC4Vvx1Mooxh8C5HWjzZHcavuS2f6pmJpZx60ca7iI= -google.golang.org/api v0.111.0/go.mod h1:qtFHvU9mhgTJegR31csQ+rwxyUTHOKFqCKWp1J0fdw0= -google.golang.org/api v0.114.0/go.mod h1:ifYI2ZsFK6/uGddGfAD5BMxlnkBqCmqHSDUVi45N5Yg= -google.golang.org/api v0.118.0/go.mod h1:76TtD3vkgmZ66zZzp72bUUklpmQmKlhh6sYtIjYK+5E= -google.golang.org/api v0.122.0/go.mod h1:gcitW0lvnyWjSp9nKxAbdHKIZ6vF4aajGueeslZOyms= -google.golang.org/api v0.124.0/go.mod h1:xu2HQurE5gi/3t1aFCvhPD781p0a3p11sdunTJ2BlP4= -google.golang.org/api v0.125.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= -google.golang.org/api v0.126.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= -google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/genproto v0.0.0-20180518175338-11a468237815/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= -google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= -google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= -google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA= -google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200423170343-7949de9c1215/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U= -google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= -google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= -google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200904004341-0bd0a958aa1d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201109203340-2640f1f9cdfb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210108203827-ffc7fda8c3d7/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210226172003-ab064af71705/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210329143202-679c6ae281ee/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= -google.golang.org/genproto v0.0.0-20210402141018-6c239bbf2bb1/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= -google.golang.org/genproto v0.0.0-20210513213006-bf773b8c8384/go.mod h1:P3QM42oQyzQSnHPnZ/vqoCdDmzH28fzWByN9asMeM8A= -google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210604141403-392c879c8b08/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210608205507-b6d2f5bf0d7d/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210624195500-8bfb893ecb84/go.mod h1:SzzZ/N+nwJDaO1kznhnlzqS8ocJICar6hYhVyhi++24= -google.golang.org/genproto v0.0.0-20210713002101-d411969a0d9a/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= -google.golang.org/genproto v0.0.0-20210716133855-ce7ef5c701ea/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= -google.golang.org/genproto v0.0.0-20210728212813-7823e685a01f/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= -google.golang.org/genproto v0.0.0-20210805201207-89edb61ffb67/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= -google.golang.org/genproto v0.0.0-20210813162853-db860fec028c/go.mod h1:cFeNkxwySK631ADgubI+/XFU/xp8FD5KIVV4rj8UC5w= -google.golang.org/genproto v0.0.0-20210821163610-241b8fcbd6c8/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210831024726-fe130286e0e2/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210903162649-d08c68adba83/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210909211513-a8c4777a87af/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210924002016-3dee208752a0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211206160659-862468c7d6e0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211221195035-429b39de9b1c/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220126215142-9970aeb2e350/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220207164111-0872dc986b00/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220218161850-94dd64e39d7c/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220222213610-43724f9ea8cf/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220304144024-325a89244dc8/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220310185008-1973136f34c6/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220324131243-acbaeb5b85eb/go.mod h1:hAL49I2IFola2sVEjAn7MEwsja0xp51I0tlGAf9hz4E= -google.golang.org/genproto v0.0.0-20220329172620-7be39ac1afc7/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220413183235-5e96e2839df9/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220414192740-2d67ff6cf2b4/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220421151946-72621c1f0bd3/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220429170224-98d788798c3e/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220502173005-c8bf987b8c21/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220505152158-f39f71e6c8f3/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220518221133-4f43b3371335/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220523171625-347a074981d8/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220608133413-ed9918b62aac/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220616135557-88e70c0c3a90/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220617124728-180714bec0ad/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220624142145-8cd45d7dbd1f/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220628213854-d9e0b6570c03/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220722212130-b98a9ff5e252/go.mod h1:GkXuJDJ6aQ7lnJcRF+SJVgFdQhypqgl3LB1C9vabdRE= -google.golang.org/genproto v0.0.0-20220801145646-83ce21fca29f/go.mod h1:iHe1svFLAZg9VWz891+QbRMwUv9O/1Ww+/mngYeThbc= -google.golang.org/genproto v0.0.0-20220815135757-37a418bb8959/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220817144833-d7fd3f11b9b1/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220822174746-9e6da59bd2fc/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220829144015-23454907ede3/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220829175752-36a9c930ecbf/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220913154956-18f8339a66a5/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220914142337-ca0e39ece12f/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220915135415-7fd63a7952de/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220916172020-2692e8806bfa/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220919141832-68c03719ef51/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220920201722-2b89144ce006/go.mod h1:ht8XFiar2npT/g4vkk7O0WYS1sHOHbdujxbEp7CJWbw= -google.golang.org/genproto v0.0.0-20220926165614-551eb538f295/go.mod h1:woMGP53BroOrRY3xTxlbr8Y3eB/nzAvvFM83q7kG2OI= -google.golang.org/genproto v0.0.0-20220926220553-6981cbe3cfce/go.mod h1:woMGP53BroOrRY3xTxlbr8Y3eB/nzAvvFM83q7kG2OI= -google.golang.org/genproto v0.0.0-20221010155953-15ba04fc1c0e/go.mod h1:3526vdqwhZAwq4wsRUaVG555sVgsNmIjRtO7t/JH29U= -google.golang.org/genproto v0.0.0-20221014173430-6e2ab493f96b/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= -google.golang.org/genproto v0.0.0-20221014213838-99cd37c6964a/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= -google.golang.org/genproto v0.0.0-20221024153911-1573dae28c9c/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= -google.golang.org/genproto v0.0.0-20221024183307-1bc688fe9f3e/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= -google.golang.org/genproto v0.0.0-20221027153422-115e99e71e1c/go.mod h1:CGI5F/G+E5bKwmfYo09AXuVN4dD894kIKUFmVbP2/Fo= -google.golang.org/genproto v0.0.0-20221109142239-94d6d90a7d66/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221114212237-e4508ebdbee1/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221117204609-8f9c96812029/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221118155620-16455021b5e6/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221201164419-0e50fba7f41c/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221201204527-e3fa12d562f3/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221202195650-67e5cbc046fd/go.mod h1:cTsE614GARnxrLsqKREzmNYJACSWWpAWdNMwnD7c2BE= -google.golang.org/genproto v0.0.0-20221227171554-f9683d7f8bef/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230112194545-e10362b5ecf9/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230113154510-dbe35b8444a5/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230123190316-2c411cf9d197/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230124163310-31e0e69b6fc2/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230125152338-dcaf20b6aeaa/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230127162408-596548ed4efa/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230209215440-0dfe4f8abfcc/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230216225411-c8e22ba71e44/go.mod h1:8B0gmkoRebU8ukX6HP+4wrVQUY1+6PkQ44BSyIlflHA= -google.golang.org/genproto v0.0.0-20230222225845-10f96fb3dbec/go.mod h1:3Dl5ZL0q0isWJt+FVcfpQyirqemEuLAK/iFvg1UP1Hw= -google.golang.org/genproto v0.0.0-20230223222841-637eb2293923/go.mod h1:3Dl5ZL0q0isWJt+FVcfpQyirqemEuLAK/iFvg1UP1Hw= -google.golang.org/genproto v0.0.0-20230303212802-e74f57abe488/go.mod h1:TvhZT5f700eVlTNwND1xoEZQeWTB2RY/65kplwl/bFA= -google.golang.org/genproto v0.0.0-20230306155012-7f2fa6fef1f4/go.mod h1:NWraEVixdDnqcqQ30jipen1STv2r/n24Wb7twVTGR4s= -google.golang.org/genproto v0.0.0-20230320184635-7606e756e683/go.mod h1:NWraEVixdDnqcqQ30jipen1STv2r/n24Wb7twVTGR4s= -google.golang.org/genproto v0.0.0-20230323212658-478b75c54725/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= -google.golang.org/genproto v0.0.0-20230330154414-c0448cd141ea/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= -google.golang.org/genproto v0.0.0-20230331144136-dcfb400f0633/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= -google.golang.org/genproto v0.0.0-20230403163135-c38d8f061ccd/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= -google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1/go.mod h1:nKE/iIaLqn2bQwXBg8f1g2Ylh6r5MN5CmZvuzZCgsCU= -google.golang.org/genproto v0.0.0-20230525234025-438c736192d0/go.mod h1:9ExIQyXL5hZrHzQceCwuSYwZZ5QZBazOcprJ5rgs3lY= -google.golang.org/genproto v0.0.0-20230526161137-0005af68ea54/go.mod h1:zqTuNwFlFRsw5zIts5VnzLQxSRqh+CGOTVMlYbY0Eyk= -google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:xZnkP7mREFX5MORlOPEzLMr+90PPZQ2QWzrVTWfAq64= -google.golang.org/genproto v0.0.0-20230629202037-9506855d4529/go.mod h1:xZnkP7mREFX5MORlOPEzLMr+90PPZQ2QWzrVTWfAq64= -google.golang.org/genproto v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:O9kGHb51iE/nOGvQaDUuadVYqovW56s5emA88lQnj6Y= -google.golang.org/genproto v0.0.0-20230726155614-23370e0ffb3e/go.mod h1:0ggbjUrZYpy1q+ANUS30SEoGZ53cdfwtbuG7Ptgy108= -google.golang.org/genproto v0.0.0-20230803162519-f966b187b2e5/go.mod h1:oH/ZOT02u4kWEp7oYBGYFFkCdKS/uYR9Z7+0/xuuFp8= -google.golang.org/genproto v0.0.0-20230815205213-6bfd019c3878/go.mod h1:yZTlhN0tQnXo3h00fuXNCxJdLdIdnVFVBaRJ5LWBbw4= -google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d h1:VBu5YqKPv6XiJ199exd8Br+Aetz+o08F+PLMnwJQHAY= -google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d/go.mod h1:yZTlhN0tQnXo3h00fuXNCxJdLdIdnVFVBaRJ5LWBbw4= -google.golang.org/genproto/googleapis/api v0.0.0-20230525234020-1aefcd67740a/go.mod h1:ts19tUU+Z0ZShN1y3aPyq2+O3d5FUNNgT6FtOzmrNn8= -google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20230629202037-9506855d4529/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:mPBs5jNgx2GuQGvFwUvVKqtn6HsUw9nP64BedgvqEsQ= -google.golang.org/genproto/googleapis/api v0.0.0-20230726155614-23370e0ffb3e/go.mod h1:rsr7RhLuwsDKL7RmgDDCUc6yaGr1iqceVb5Wv6f6YvQ= -google.golang.org/genproto/googleapis/api v0.0.0-20230803162519-f966b187b2e5/go.mod h1:5DZzOUPCLYL3mNkQ0ms0F3EuUNZ7py1Bqeq6sxzI7/Q= -google.golang.org/genproto/googleapis/api v0.0.0-20230815205213-6bfd019c3878/go.mod h1:KjSP20unUpOx5kyQUFa7k4OJg0qeJ7DEZflGDu2p6Bk= -google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d h1:DoPTO70H+bcDXcd39vOqb2viZxgqeBeSGtZ55yZU4/Q= -google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d/go.mod h1:KjSP20unUpOx5kyQUFa7k4OJg0qeJ7DEZflGDu2p6Bk= -google.golang.org/genproto/googleapis/bytestream v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:ylj+BE99M198VPbBh6A8d9n3w8fChvyLK3wwBOjXBFA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234015-3fc162c6f38a/go.mod h1:xURIpW9ES5+/GZhnV6beoEtxQrnkRGIfP5VQG2tCBLc= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230629202037-9506855d4529/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:8mL13HKkDa+IuJ8yruA3ci0q+0vsUz4m//+ottjwS5o= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230731190214-cbb8c96f2d6d/go.mod h1:TUfxEVdsvPg18p6AslUXFoLdpED4oBnGwyqk3dV1XzM= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230803162519-f966b187b2e5/go.mod h1:zBEcrKX2ZOcEkHWxBPAIvYUWOKKMIhYcmNiUIu2ji3I= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230815205213-6bfd019c3878/go.mod h1:+Bk1OCOj40wS2hwAMA+aCW9ypzm63QTBBHp6lQ3p+9M= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d h1:uvYuEyMHKNt+lT4K3bN6fGswmK8qSvcreM3BwjDh+y4= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d/go.mod h1:+Bk1OCOj40wS2hwAMA+aCW9ypzm63QTBBHp6lQ3p+9M= -google.golang.org/grpc v1.12.0/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw= +google.golang.org/genproto v0.0.0-20231127180814-3a041ad873d4 h1:W12Pwm4urIbRdGhMEg2NM9O3TWKjNcxQhs46V0ypf/k= +google.golang.org/genproto v0.0.0-20231127180814-3a041ad873d4/go.mod h1:5RBcpGRxr25RbDzY5w+dmaqpSEvl8Gwl1x2CICf60ic= +google.golang.org/genproto/googleapis/api v0.0.0-20231127180814-3a041ad873d4 h1:ZcOkrmX74HbKFYnpPY8Qsw93fC29TbJXspYKaBkSXDQ= +google.golang.org/genproto/googleapis/api v0.0.0-20231127180814-3a041ad873d4/go.mod h1:k2dtGpRrbsSyKcNPKKI5sstZkrNCZwpU/ns96JoHbGg= +google.golang.org/genproto/googleapis/rpc v0.0.0-20231127180814-3a041ad873d4 h1:DC7wcm+i+P1rN3Ff07vL+OndGg5OhNddHyTA+ocPqYE= +google.golang.org/genproto/googleapis/rpc v0.0.0-20231127180814-3a041ad873d4/go.mod h1:eJVxU6o+4G1PSczBr85xmyvSNYAKvAYgkub40YGomFM= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= -google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= -google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= -google.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= -google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60= google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk= -google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.31.1/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0= -google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= -google.golang.org/grpc v1.34.0/go.mod h1:WotjhfgOW/POjDeRt8vscBtXq+2VjORFy659qA51WJ8= -google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.37.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.37.1/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.39.0/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= -google.golang.org/grpc v1.39.1/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= -google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= -google.golang.org/grpc v1.40.1/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= -google.golang.org/grpc v1.42.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= -google.golang.org/grpc v1.44.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= -google.golang.org/grpc v1.45.0/go.mod h1:lN7owxKUQEqMfSyQikvvk5tf/6zMPsrK+ONuO11+0rQ= -google.golang.org/grpc v1.46.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.46.2/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.47.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.48.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.49.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= -google.golang.org/grpc v1.50.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= -google.golang.org/grpc v1.50.1/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= -google.golang.org/grpc v1.51.0/go.mod h1:wgNDFcnuBGmxLKI/qn4T+m5BtEBYXJPvibbUPsAIPww= -google.golang.org/grpc v1.52.0/go.mod h1:pu6fVzoFb+NBYNAvQL08ic+lvB2IojljRYuun5vorUY= -google.golang.org/grpc v1.52.3/go.mod h1:pu6fVzoFb+NBYNAvQL08ic+lvB2IojljRYuun5vorUY= -google.golang.org/grpc v1.53.0/go.mod h1:OnIrk0ipVdj4N5d9IUoFUx72/VlD7+jUsHwZgwSMQpw= -google.golang.org/grpc v1.54.0/go.mod h1:PUSEXI6iWghWaB6lXM4knEgpJNu2qUcKfDtNci3EC2g= -google.golang.org/grpc v1.55.0/go.mod h1:iYEXKGkEBhg1PjZQvoYEVPTDkHo1/bjTnfwTeGONTY8= -google.golang.org/grpc v1.56.2/go.mod h1:I9bI3vqKfayGqPUAwGdOSu7kt6oIJLixfffKrpXqQ9s= -google.golang.org/grpc v1.57.0 h1:kfzNeI/klCGD2YPMUlaGNT3pxvYfga7smW3Vth8Zsiw= -google.golang.org/grpc v1.57.0/go.mod h1:Sd+9RMTACXwmub0zcNY2c4arhtrbBYD1AUHI/dt16Mo= -google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= -google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= -google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= -google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= -google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE= -google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo= -google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= -google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= -google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= -google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= -google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= +google.golang.org/grpc v1.59.0 h1:Z5Iec2pjwb+LEOqzpB2MR12/eKFhDPhuqW91O+4bwUk= +google.golang.org/grpc v1.59.0/go.mod h1:aUPDwccQo6OTjy7Hct4AfBPD1GptF4fyUjIkQ9YtF98= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.29.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8= google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= -gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= -gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= -honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -honnef.co/go/tools v0.1.3/go.mod h1:NgwopIslSNH47DimFoV78dnkksY2EFtX0ajyb3K/las= -lukechampine.com/uint128 v1.1.1/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= -lukechampine.com/uint128 v1.2.0/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= -modernc.org/cc/v3 v3.36.0/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= -modernc.org/cc/v3 v3.36.2/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= -modernc.org/cc/v3 v3.36.3/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= -modernc.org/cc/v3 v3.37.0/go.mod h1:vtL+3mdHx/wcj3iEGz84rQa8vEqR6XM84v5Lcvfph20= -modernc.org/cc/v3 v3.40.0/go.mod h1:/bTg4dnWkSXowUO6ssQKnOV0yMVxDYNIsIrzqTFDGH0= -modernc.org/ccgo/v3 v3.0.0-20220428102840-41399a37e894/go.mod h1:eI31LL8EwEBKPpNpA4bU1/i+sKOwOrQy8D87zWUcRZc= -modernc.org/ccgo/v3 v3.0.0-20220430103911-bc99d88307be/go.mod h1:bwdAnOoaIt8Ax9YdWGjxWsdkPcZyRPHqrOvJxaKAKGw= -modernc.org/ccgo/v3 v3.0.0-20220904174949-82d86e1b6d56/go.mod h1:YSXjPL62P2AMSxBphRHPn7IkzhVHqkvOnRKAKh+W6ZI= -modernc.org/ccgo/v3 v3.16.4/go.mod h1:tGtX0gE9Jn7hdZFeU88slbTh1UtCYKusWOoCJuvkWsQ= -modernc.org/ccgo/v3 v3.16.6/go.mod h1:tGtX0gE9Jn7hdZFeU88slbTh1UtCYKusWOoCJuvkWsQ= -modernc.org/ccgo/v3 v3.16.8/go.mod h1:zNjwkizS+fIFDrDjIAgBSCLkWbJuHF+ar3QRn+Z9aws= -modernc.org/ccgo/v3 v3.16.9/go.mod h1:zNMzC9A9xeNUepy6KuZBbugn3c0Mc9TeiJO4lgvkJDo= -modernc.org/ccgo/v3 v3.16.13-0.20221017192402-261537637ce8/go.mod h1:fUB3Vn0nVPReA+7IG7yZDfjv1TMWjhQP8gCxrFAtL5g= -modernc.org/ccgo/v3 v3.16.13/go.mod h1:2Quk+5YgpImhPjv2Qsob1DnZ/4som1lJTodubIcoUkY= -modernc.org/ccorpus v1.11.6/go.mod h1:2gEUTrWqdpH2pXsmTM1ZkjeSrUWDpjMu2T6m29L/ErQ= -modernc.org/httpfs v1.0.6/go.mod h1:7dosgurJGp0sPaRanU53W4xZYKh14wfzX420oZADeHM= -modernc.org/libc v0.0.0-20220428101251-2d5f3daf273b/go.mod h1:p7Mg4+koNjc8jkqwcoFBJx7tXkpj00G77X7A72jXPXA= -modernc.org/libc v1.16.0/go.mod h1:N4LD6DBE9cf+Dzf9buBlzVJndKr/iJHG97vGLHYnb5A= -modernc.org/libc v1.16.1/go.mod h1:JjJE0eu4yeK7tab2n4S1w8tlWd9MxXLRzheaRnAKymU= -modernc.org/libc v1.16.17/go.mod h1:hYIV5VZczAmGZAnG15Vdngn5HSF5cSkbvfz2B7GRuVU= -modernc.org/libc v1.16.19/go.mod h1:p7Mg4+koNjc8jkqwcoFBJx7tXkpj00G77X7A72jXPXA= -modernc.org/libc v1.17.0/go.mod h1:XsgLldpP4aWlPlsjqKRdHPqCxCjISdHfM/yeWC5GyW0= -modernc.org/libc v1.17.1/go.mod h1:FZ23b+8LjxZs7XtFMbSzL/EhPxNbfZbErxEHc7cbD9s= -modernc.org/libc v1.17.4/go.mod h1:WNg2ZH56rDEwdropAJeZPQkXmDwh+JCA1s/htl6r2fA= -modernc.org/libc v1.18.0/go.mod h1:vj6zehR5bfc98ipowQOM2nIDUZnVew/wNC/2tOGS+q0= -modernc.org/libc v1.20.3/go.mod h1:ZRfIaEkgrYgZDl6pa4W39HgN5G/yDW+NRmNKZBDFrk0= -modernc.org/libc v1.21.4/go.mod h1:przBsL5RDOZajTVslkugzLBj1evTue36jEomFQOoYuI= -modernc.org/libc v1.22.2/go.mod h1:uvQavJ1pZ0hIoC/jfqNoMLURIMhKzINIWypNM17puug= -modernc.org/mathutil v1.2.2/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= -modernc.org/mathutil v1.4.1/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= -modernc.org/mathutil v1.5.0/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= -modernc.org/memory v1.1.1/go.mod h1:/0wo5ibyrQiaoUoH7f9D8dnglAmILJ5/cxZlRECf+Nw= -modernc.org/memory v1.2.0/go.mod h1:/0wo5ibyrQiaoUoH7f9D8dnglAmILJ5/cxZlRECf+Nw= -modernc.org/memory v1.2.1/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= -modernc.org/memory v1.3.0/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= -modernc.org/memory v1.4.0/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= -modernc.org/memory v1.5.0/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= -modernc.org/opt v0.1.1/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0= -modernc.org/opt v0.1.3/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0= -modernc.org/sqlite v1.18.1/go.mod h1:6ho+Gow7oX5V+OiOQ6Tr4xeqbx13UZ6t+Fw9IRUG4d4= -modernc.org/sqlite v1.18.2/go.mod h1:kvrTLEWgxUcHa2GfHBQtanR1H9ht3hTJNtKpzH9k1u0= -modernc.org/strutil v1.1.1/go.mod h1:DE+MQQ/hjKBZS2zNInV5hhcipt5rLPWkmpbGeW5mmdw= -modernc.org/strutil v1.1.3/go.mod h1:MEHNA7PdEnEwLvspRMtWTNnp2nnyvMfkimT1NKNAGbw= -modernc.org/tcl v1.13.1/go.mod h1:XOLfOwzhkljL4itZkK6T72ckMgvj0BDsnKNdZVUOecw= -modernc.org/tcl v1.13.2/go.mod h1:7CLiGIPo1M8Rv1Mitpv5akc2+8fxUd2y2UzC/MfMzy0= -modernc.org/token v1.0.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= -modernc.org/token v1.0.1/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= -modernc.org/token v1.1.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= -modernc.org/z v1.5.1/go.mod h1:eWFB510QWW5Th9YGZT81s+LwvaAs3Q2yr4sP0rmLkv8= -rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= -rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4= -rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= -rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= diff --git a/workers/go/kitchensink/kitchen_sink.go b/workers/go/kitchensink/kitchen_sink.go index 37a3610..ed5d1a5 100644 --- a/workers/go/kitchensink/kitchen_sink.go +++ b/workers/go/kitchensink/kitchen_sink.go @@ -315,12 +315,11 @@ func convertFromPBRetryPolicy(retryPolicy *common.RetryPolicy) *temporal.RetryPo NonRetryableErrorTypes: retryPolicy.NonRetryableErrorTypes, } - // Avoid nil pointer dereferences if v := retryPolicy.MaximumInterval; v != nil { - p.MaximumInterval = *v + p.MaximumInterval = v.AsDuration() } if v := retryPolicy.InitialInterval; v != nil { - p.InitialInterval = *v + p.InitialInterval = v.AsDuration() } return &p diff --git a/workers/java/build.gradle b/workers/java/build.gradle index f92732d..b52ccc7 100644 --- a/workers/java/build.gradle +++ b/workers/java/build.gradle @@ -17,6 +17,10 @@ repositories { spotless { java { + target project.fileTree(project.rootDir) { + include '**/*.java' + exclude 'io/temporal/omes/KitchenSink.java' + } googleJavaFormat('1.16.0') } } diff --git a/workers/java/io/temporal/omes/KitchenSink.java b/workers/java/io/temporal/omes/KitchenSink.java index 2e010e3..a4169a9 100644 --- a/workers/java/io/temporal/omes/KitchenSink.java +++ b/workers/java/io/temporal/omes/KitchenSink.java @@ -6,15 +6,16 @@ public final class KitchenSink { private KitchenSink() {} + public static void registerAllExtensions( + com.google.protobuf.ExtensionRegistryLite registry) { + } - public static void registerAllExtensions(com.google.protobuf.ExtensionRegistryLite registry) {} - - public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions((com.google.protobuf.ExtensionRegistryLite) registry); + public static void registerAllExtensions( + com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions( + (com.google.protobuf.ExtensionRegistryLite) registry); } /** - * - * *
    * Used by the service to determine the fate of a child workflow
    * in case its parent is closed.
@@ -22,10 +23,9 @@ public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry r
    *
    * Protobuf enum {@code temporal.omes.kitchen_sink.ParentClosePolicy}
    */
-  public enum ParentClosePolicy implements com.google.protobuf.ProtocolMessageEnum {
+  public enum ParentClosePolicy
+      implements com.google.protobuf.ProtocolMessageEnum {
     /**
-     *
-     *
      * 
      * Let's the server set the default.
      * 
@@ -34,8 +34,6 @@ public enum ParentClosePolicy implements com.google.protobuf.ProtocolMessageEnum */ PARENT_CLOSE_POLICY_UNSPECIFIED(0), /** - * - * *
      * Terminate means terminating the child workflow.
      * 
@@ -44,8 +42,6 @@ public enum ParentClosePolicy implements com.google.protobuf.ProtocolMessageEnum */ PARENT_CLOSE_POLICY_TERMINATE(1), /** - * - * *
      * Abandon means not doing anything on the child workflow.
      * 
@@ -54,8 +50,6 @@ public enum ParentClosePolicy implements com.google.protobuf.ProtocolMessageEnum */ PARENT_CLOSE_POLICY_ABANDON(2), /** - * - * *
      * Cancel means requesting cancellation on the child workflow.
      * 
@@ -67,8 +61,6 @@ public enum ParentClosePolicy implements com.google.protobuf.ProtocolMessageEnum ; /** - * - * *
      * Let's the server set the default.
      * 
@@ -77,8 +69,6 @@ public enum ParentClosePolicy implements com.google.protobuf.ProtocolMessageEnum */ public static final int PARENT_CLOSE_POLICY_UNSPECIFIED_VALUE = 0; /** - * - * *
      * Terminate means terminating the child workflow.
      * 
@@ -87,8 +77,6 @@ public enum ParentClosePolicy implements com.google.protobuf.ProtocolMessageEnum */ public static final int PARENT_CLOSE_POLICY_TERMINATE_VALUE = 1; /** - * - * *
      * Abandon means not doing anything on the child workflow.
      * 
@@ -97,8 +85,6 @@ public enum ParentClosePolicy implements com.google.protobuf.ProtocolMessageEnum */ public static final int PARENT_CLOSE_POLICY_ABANDON_VALUE = 2; /** - * - * *
      * Cancel means requesting cancellation on the child workflow.
      * 
@@ -107,6 +93,7 @@ public enum ParentClosePolicy implements com.google.protobuf.ProtocolMessageEnum */ public static final int PARENT_CLOSE_POLICY_REQUEST_CANCEL_VALUE = 3; + public final int getNumber() { if (this == UNRECOGNIZED) { throw new java.lang.IllegalArgumentException( @@ -131,16 +118,11 @@ public static ParentClosePolicy valueOf(int value) { */ public static ParentClosePolicy forNumber(int value) { switch (value) { - case 0: - return PARENT_CLOSE_POLICY_UNSPECIFIED; - case 1: - return PARENT_CLOSE_POLICY_TERMINATE; - case 2: - return PARENT_CLOSE_POLICY_ABANDON; - case 3: - return PARENT_CLOSE_POLICY_REQUEST_CANCEL; - default: - return null; + case 0: return PARENT_CLOSE_POLICY_UNSPECIFIED; + case 1: return PARENT_CLOSE_POLICY_TERMINATE; + case 2: return PARENT_CLOSE_POLICY_ABANDON; + case 3: return PARENT_CLOSE_POLICY_REQUEST_CANCEL; + default: return null; } } @@ -148,28 +130,28 @@ public static ParentClosePolicy forNumber(int value) { internalGetValueMap() { return internalValueMap; } + private static final com.google.protobuf.Internal.EnumLiteMap< + ParentClosePolicy> internalValueMap = + new com.google.protobuf.Internal.EnumLiteMap() { + public ParentClosePolicy findValueByNumber(int number) { + return ParentClosePolicy.forNumber(number); + } + }; - private static final com.google.protobuf.Internal.EnumLiteMap - internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - public ParentClosePolicy findValueByNumber(int number) { - return ParentClosePolicy.forNumber(number); - } - }; - - public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() { + public final com.google.protobuf.Descriptors.EnumValueDescriptor + getValueDescriptor() { if (this == UNRECOGNIZED) { throw new java.lang.IllegalStateException( "Can't get the descriptor of an unrecognized enum value."); } return getDescriptor().getValues().get(ordinal()); } - - public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() { + public final com.google.protobuf.Descriptors.EnumDescriptor + getDescriptorForType() { return getDescriptor(); } - - public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { + public static final com.google.protobuf.Descriptors.EnumDescriptor + getDescriptor() { return io.temporal.omes.KitchenSink.getDescriptor().getEnumTypes().get(0); } @@ -178,7 +160,8 @@ public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor public static ParentClosePolicy valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException("EnumValueDescriptor is not for this type."); + throw new java.lang.IllegalArgumentException( + "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { return UNRECOGNIZED; @@ -196,8 +179,6 @@ private ParentClosePolicy(int value) { } /** - * - * *
    * An indication of user's intent concerning what Build ID versioning approach should be used for
    * a specific command
@@ -205,10 +186,9 @@ private ParentClosePolicy(int value) {
    *
    * Protobuf enum {@code temporal.omes.kitchen_sink.VersioningIntent}
    */
-  public enum VersioningIntent implements com.google.protobuf.ProtocolMessageEnum {
+  public enum VersioningIntent
+      implements com.google.protobuf.ProtocolMessageEnum {
     /**
-     *
-     *
      * 
      * Indicates that core should choose the most sensible default behavior for the type of
      * command, accounting for whether the command will be run on the same task queue as the current
@@ -219,8 +199,6 @@ public enum VersioningIntent implements com.google.protobuf.ProtocolMessageEnum
      */
     UNSPECIFIED(0),
     /**
-     *
-     *
      * 
      * Indicates that the command should run on a worker with compatible version if possible. It may
      * not be possible if the target task queue does not also have knowledge of the current worker's
@@ -231,8 +209,6 @@ public enum VersioningIntent implements com.google.protobuf.ProtocolMessageEnum
      */
     COMPATIBLE(1),
     /**
-     *
-     *
      * 
      * Indicates that the command should run on the target task queue's current overall-default
      * build ID.
@@ -245,8 +221,6 @@ public enum VersioningIntent implements com.google.protobuf.ProtocolMessageEnum
     ;
 
     /**
-     *
-     *
      * 
      * Indicates that core should choose the most sensible default behavior for the type of
      * command, accounting for whether the command will be run on the same task queue as the current
@@ -257,8 +231,6 @@ public enum VersioningIntent implements com.google.protobuf.ProtocolMessageEnum
      */
     public static final int UNSPECIFIED_VALUE = 0;
     /**
-     *
-     *
      * 
      * Indicates that the command should run on a worker with compatible version if possible. It may
      * not be possible if the target task queue does not also have knowledge of the current worker's
@@ -269,8 +241,6 @@ public enum VersioningIntent implements com.google.protobuf.ProtocolMessageEnum
      */
     public static final int COMPATIBLE_VALUE = 1;
     /**
-     *
-     *
      * 
      * Indicates that the command should run on the target task queue's current overall-default
      * build ID.
@@ -280,6 +250,7 @@ public enum VersioningIntent implements com.google.protobuf.ProtocolMessageEnum
      */
     public static final int DEFAULT_VALUE = 2;
 
+
     public final int getNumber() {
       if (this == UNRECOGNIZED) {
         throw new java.lang.IllegalArgumentException(
@@ -304,42 +275,39 @@ public static VersioningIntent valueOf(int value) {
      */
     public static VersioningIntent forNumber(int value) {
       switch (value) {
-        case 0:
-          return UNSPECIFIED;
-        case 1:
-          return COMPATIBLE;
-        case 2:
-          return DEFAULT;
-        default:
-          return null;
+        case 0: return UNSPECIFIED;
+        case 1: return COMPATIBLE;
+        case 2: return DEFAULT;
+        default: return null;
       }
     }
 
-    public static com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() {
+    public static com.google.protobuf.Internal.EnumLiteMap
+        internalGetValueMap() {
       return internalValueMap;
     }
+    private static final com.google.protobuf.Internal.EnumLiteMap<
+        VersioningIntent> internalValueMap =
+          new com.google.protobuf.Internal.EnumLiteMap() {
+            public VersioningIntent findValueByNumber(int number) {
+              return VersioningIntent.forNumber(number);
+            }
+          };
 
-    private static final com.google.protobuf.Internal.EnumLiteMap
-        internalValueMap =
-            new com.google.protobuf.Internal.EnumLiteMap() {
-              public VersioningIntent findValueByNumber(int number) {
-                return VersioningIntent.forNumber(number);
-              }
-            };
-
-    public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() {
+    public final com.google.protobuf.Descriptors.EnumValueDescriptor
+        getValueDescriptor() {
       if (this == UNRECOGNIZED) {
         throw new java.lang.IllegalStateException(
             "Can't get the descriptor of an unrecognized enum value.");
       }
       return getDescriptor().getValues().get(ordinal());
     }
-
-    public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() {
+    public final com.google.protobuf.Descriptors.EnumDescriptor
+        getDescriptorForType() {
       return getDescriptor();
     }
-
-    public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() {
+    public static final com.google.protobuf.Descriptors.EnumDescriptor
+        getDescriptor() {
       return io.temporal.omes.KitchenSink.getDescriptor().getEnumTypes().get(1);
     }
 
@@ -348,7 +316,8 @@ public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor
     public static VersioningIntent valueOf(
         com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
       if (desc.getType() != getDescriptor()) {
-        throw new java.lang.IllegalArgumentException("EnumValueDescriptor is not for this type.");
+        throw new java.lang.IllegalArgumentException(
+          "EnumValueDescriptor is not for this type.");
       }
       if (desc.getIndex() == -1) {
         return UNRECOGNIZED;
@@ -366,18 +335,15 @@ private VersioningIntent(int value) {
   }
 
   /**
-   *
-   *
    * 
    * Controls at which point to report back to lang when a child workflow is cancelled
    * 
* * Protobuf enum {@code temporal.omes.kitchen_sink.ChildWorkflowCancellationType} */ - public enum ChildWorkflowCancellationType implements com.google.protobuf.ProtocolMessageEnum { + public enum ChildWorkflowCancellationType + implements com.google.protobuf.ProtocolMessageEnum { /** - * - * *
      * Do not request cancellation of the child workflow if already scheduled
      * 
@@ -386,8 +352,6 @@ public enum ChildWorkflowCancellationType implements com.google.protobuf.Protoco */ CHILD_WF_ABANDON(0), /** - * - * *
      * Initiate a cancellation request and immediately report cancellation to the parent.
      * 
@@ -396,8 +360,6 @@ public enum ChildWorkflowCancellationType implements com.google.protobuf.Protoco */ CHILD_WF_TRY_CANCEL(1), /** - * - * *
      * Wait for child cancellation completion.
      * 
@@ -406,8 +368,6 @@ public enum ChildWorkflowCancellationType implements com.google.protobuf.Protoco */ CHILD_WF_WAIT_CANCELLATION_COMPLETED(2), /** - * - * *
      * Request cancellation of the child and wait for confirmation that the request was received.
      * 
@@ -419,8 +379,6 @@ public enum ChildWorkflowCancellationType implements com.google.protobuf.Protoco ; /** - * - * *
      * Do not request cancellation of the child workflow if already scheduled
      * 
@@ -429,8 +387,6 @@ public enum ChildWorkflowCancellationType implements com.google.protobuf.Protoco */ public static final int CHILD_WF_ABANDON_VALUE = 0; /** - * - * *
      * Initiate a cancellation request and immediately report cancellation to the parent.
      * 
@@ -439,8 +395,6 @@ public enum ChildWorkflowCancellationType implements com.google.protobuf.Protoco */ public static final int CHILD_WF_TRY_CANCEL_VALUE = 1; /** - * - * *
      * Wait for child cancellation completion.
      * 
@@ -449,8 +403,6 @@ public enum ChildWorkflowCancellationType implements com.google.protobuf.Protoco */ public static final int CHILD_WF_WAIT_CANCELLATION_COMPLETED_VALUE = 2; /** - * - * *
      * Request cancellation of the child and wait for confirmation that the request was received.
      * 
@@ -459,6 +411,7 @@ public enum ChildWorkflowCancellationType implements com.google.protobuf.Protoco */ public static final int CHILD_WF_WAIT_CANCELLATION_REQUESTED_VALUE = 3; + public final int getNumber() { if (this == UNRECOGNIZED) { throw new java.lang.IllegalArgumentException( @@ -483,16 +436,11 @@ public static ChildWorkflowCancellationType valueOf(int value) { */ public static ChildWorkflowCancellationType forNumber(int value) { switch (value) { - case 0: - return CHILD_WF_ABANDON; - case 1: - return CHILD_WF_TRY_CANCEL; - case 2: - return CHILD_WF_WAIT_CANCELLATION_COMPLETED; - case 3: - return CHILD_WF_WAIT_CANCELLATION_REQUESTED; - default: - return null; + case 0: return CHILD_WF_ABANDON; + case 1: return CHILD_WF_TRY_CANCEL; + case 2: return CHILD_WF_WAIT_CANCELLATION_COMPLETED; + case 3: return CHILD_WF_WAIT_CANCELLATION_REQUESTED; + default: return null; } } @@ -500,28 +448,28 @@ public static ChildWorkflowCancellationType forNumber(int value) { internalGetValueMap() { return internalValueMap; } + private static final com.google.protobuf.Internal.EnumLiteMap< + ChildWorkflowCancellationType> internalValueMap = + new com.google.protobuf.Internal.EnumLiteMap() { + public ChildWorkflowCancellationType findValueByNumber(int number) { + return ChildWorkflowCancellationType.forNumber(number); + } + }; - private static final com.google.protobuf.Internal.EnumLiteMap - internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - public ChildWorkflowCancellationType findValueByNumber(int number) { - return ChildWorkflowCancellationType.forNumber(number); - } - }; - - public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() { + public final com.google.protobuf.Descriptors.EnumValueDescriptor + getValueDescriptor() { if (this == UNRECOGNIZED) { throw new java.lang.IllegalStateException( "Can't get the descriptor of an unrecognized enum value."); } return getDescriptor().getValues().get(ordinal()); } - - public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() { + public final com.google.protobuf.Descriptors.EnumDescriptor + getDescriptorForType() { return getDescriptor(); } - - public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { + public static final com.google.protobuf.Descriptors.EnumDescriptor + getDescriptor() { return io.temporal.omes.KitchenSink.getDescriptor().getEnumTypes().get(2); } @@ -530,7 +478,8 @@ public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor public static ChildWorkflowCancellationType valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException("EnumValueDescriptor is not for this type."); + throw new java.lang.IllegalArgumentException( + "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { return UNRECOGNIZED; @@ -547,11 +496,12 @@ private ChildWorkflowCancellationType(int value) { // @@protoc_insertion_point(enum_scope:temporal.omes.kitchen_sink.ChildWorkflowCancellationType) } - /** Protobuf enum {@code temporal.omes.kitchen_sink.ActivityCancellationType} */ - public enum ActivityCancellationType implements com.google.protobuf.ProtocolMessageEnum { + /** + * Protobuf enum {@code temporal.omes.kitchen_sink.ActivityCancellationType} + */ + public enum ActivityCancellationType + implements com.google.protobuf.ProtocolMessageEnum { /** - * - * *
      * Initiate a cancellation request and immediately report cancellation to the workflow.
      * 
@@ -560,8 +510,6 @@ public enum ActivityCancellationType implements com.google.protobuf.ProtocolMess */ TRY_CANCEL(0), /** - * - * *
      * Wait for activity cancellation completion. Note that activity must heartbeat to receive a
      * cancellation notification. This can block the cancellation for a long time if activity
@@ -572,8 +520,6 @@ public enum ActivityCancellationType implements com.google.protobuf.ProtocolMess
      */
     WAIT_CANCELLATION_COMPLETED(1),
     /**
-     *
-     *
      * 
      * Do not request cancellation of the activity and immediately report cancellation to the
      * workflow
@@ -586,8 +532,6 @@ public enum ActivityCancellationType implements com.google.protobuf.ProtocolMess
     ;
 
     /**
-     *
-     *
      * 
      * Initiate a cancellation request and immediately report cancellation to the workflow.
      * 
@@ -596,8 +540,6 @@ public enum ActivityCancellationType implements com.google.protobuf.ProtocolMess */ public static final int TRY_CANCEL_VALUE = 0; /** - * - * *
      * Wait for activity cancellation completion. Note that activity must heartbeat to receive a
      * cancellation notification. This can block the cancellation for a long time if activity
@@ -608,8 +550,6 @@ public enum ActivityCancellationType implements com.google.protobuf.ProtocolMess
      */
     public static final int WAIT_CANCELLATION_COMPLETED_VALUE = 1;
     /**
-     *
-     *
      * 
      * Do not request cancellation of the activity and immediately report cancellation to the
      * workflow
@@ -619,6 +559,7 @@ public enum ActivityCancellationType implements com.google.protobuf.ProtocolMess
      */
     public static final int ABANDON_VALUE = 2;
 
+
     public final int getNumber() {
       if (this == UNRECOGNIZED) {
         throw new java.lang.IllegalArgumentException(
@@ -643,14 +584,10 @@ public static ActivityCancellationType valueOf(int value) {
      */
     public static ActivityCancellationType forNumber(int value) {
       switch (value) {
-        case 0:
-          return TRY_CANCEL;
-        case 1:
-          return WAIT_CANCELLATION_COMPLETED;
-        case 2:
-          return ABANDON;
-        default:
-          return null;
+        case 0: return TRY_CANCEL;
+        case 1: return WAIT_CANCELLATION_COMPLETED;
+        case 2: return ABANDON;
+        default: return null;
       }
     }
 
@@ -658,28 +595,28 @@ public static ActivityCancellationType forNumber(int value) {
         internalGetValueMap() {
       return internalValueMap;
     }
+    private static final com.google.protobuf.Internal.EnumLiteMap<
+        ActivityCancellationType> internalValueMap =
+          new com.google.protobuf.Internal.EnumLiteMap() {
+            public ActivityCancellationType findValueByNumber(int number) {
+              return ActivityCancellationType.forNumber(number);
+            }
+          };
 
-    private static final com.google.protobuf.Internal.EnumLiteMap
-        internalValueMap =
-            new com.google.protobuf.Internal.EnumLiteMap() {
-              public ActivityCancellationType findValueByNumber(int number) {
-                return ActivityCancellationType.forNumber(number);
-              }
-            };
-
-    public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() {
+    public final com.google.protobuf.Descriptors.EnumValueDescriptor
+        getValueDescriptor() {
       if (this == UNRECOGNIZED) {
         throw new java.lang.IllegalStateException(
             "Can't get the descriptor of an unrecognized enum value.");
       }
       return getDescriptor().getValues().get(ordinal());
     }
-
-    public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() {
+    public final com.google.protobuf.Descriptors.EnumDescriptor
+        getDescriptorForType() {
       return getDescriptor();
     }
-
-    public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() {
+    public static final com.google.protobuf.Descriptors.EnumDescriptor
+        getDescriptor() {
       return io.temporal.omes.KitchenSink.getDescriptor().getEnumTypes().get(3);
     }
 
@@ -688,7 +625,8 @@ public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor
     public static ActivityCancellationType valueOf(
         com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
       if (desc.getType() != getDescriptor()) {
-        throw new java.lang.IllegalArgumentException("EnumValueDescriptor is not for this type.");
+        throw new java.lang.IllegalArgumentException(
+          "EnumValueDescriptor is not for this type.");
       }
       if (desc.getIndex() == -1) {
         return UNRECOGNIZED;
@@ -705,29 +643,26 @@ private ActivityCancellationType(int value) {
     // @@protoc_insertion_point(enum_scope:temporal.omes.kitchen_sink.ActivityCancellationType)
   }
 
-  public interface TestInputOrBuilder
-      extends
+  public interface TestInputOrBuilder extends
       // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.TestInput)
       com.google.protobuf.MessageOrBuilder {
 
     /**
      * .temporal.omes.kitchen_sink.WorkflowInput workflow_input = 1;
-     *
      * @return Whether the workflowInput field is set.
      */
     boolean hasWorkflowInput();
     /**
      * .temporal.omes.kitchen_sink.WorkflowInput workflow_input = 1;
-     *
      * @return The workflowInput.
      */
     io.temporal.omes.KitchenSink.WorkflowInput getWorkflowInput();
-    /** .temporal.omes.kitchen_sink.WorkflowInput workflow_input = 1; */
+    /**
+     * .temporal.omes.kitchen_sink.WorkflowInput workflow_input = 1;
+     */
     io.temporal.omes.KitchenSink.WorkflowInputOrBuilder getWorkflowInputOrBuilder();
 
     /**
-     *
-     *
      * 
      * Technically worker options should be known as well. We don't have any common format for that
      * and creating one feels overkill to start with. Requiring the harness to print the config at
@@ -735,13 +670,10 @@ public interface TestInputOrBuilder
      * 
* * .temporal.omes.kitchen_sink.ClientSequence client_sequence = 2; - * * @return Whether the clientSequence field is set. */ boolean hasClientSequence(); /** - * - * *
      * Technically worker options should be known as well. We don't have any common format for that
      * and creating one feels overkill to start with. Requiring the harness to print the config at
@@ -749,13 +681,10 @@ public interface TestInputOrBuilder
      * 
* * .temporal.omes.kitchen_sink.ClientSequence client_sequence = 2; - * * @return The clientSequence. */ io.temporal.omes.KitchenSink.ClientSequence getClientSequence(); /** - * - * *
      * Technically worker options should be known as well. We don't have any common format for that
      * and creating one feels overkill to start with. Requiring the harness to print the config at
@@ -767,8 +696,6 @@ public interface TestInputOrBuilder
     io.temporal.omes.KitchenSink.ClientSequenceOrBuilder getClientSequenceOrBuilder();
   }
   /**
-   *
-   *
    * 
    * The input to the test overall. A copy of this constitutes everything that is needed to reproduce
    * the test.
@@ -776,37 +703,36 @@ public interface TestInputOrBuilder
    *
    * Protobuf type {@code temporal.omes.kitchen_sink.TestInput}
    */
-  public static final class TestInput extends com.google.protobuf.GeneratedMessageV3
-      implements
+  public static final class TestInput extends
+      com.google.protobuf.GeneratedMessageV3 implements
       // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.TestInput)
       TestInputOrBuilder {
-    private static final long serialVersionUID = 0L;
+  private static final long serialVersionUID = 0L;
     // Use TestInput.newBuilder() to construct.
     private TestInput(com.google.protobuf.GeneratedMessageV3.Builder builder) {
       super(builder);
     }
-
-    private TestInput() {}
+    private TestInput() {
+    }
 
     @java.lang.Override
     @SuppressWarnings({"unused"})
-    protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
+    protected java.lang.Object newInstance(
+        UnusedPrivateParameter unused) {
       return new TestInput();
     }
 
-    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
-      return io.temporal.omes.KitchenSink
-          .internal_static_temporal_omes_kitchen_sink_TestInput_descriptor;
+    public static final com.google.protobuf.Descriptors.Descriptor
+        getDescriptor() {
+      return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_TestInput_descriptor;
     }
 
     @java.lang.Override
     protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
         internalGetFieldAccessorTable() {
-      return io.temporal.omes.KitchenSink
-          .internal_static_temporal_omes_kitchen_sink_TestInput_fieldAccessorTable
+      return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_TestInput_fieldAccessorTable
           .ensureFieldAccessorsInitialized(
-              io.temporal.omes.KitchenSink.TestInput.class,
-              io.temporal.omes.KitchenSink.TestInput.Builder.class);
+              io.temporal.omes.KitchenSink.TestInput.class, io.temporal.omes.KitchenSink.TestInput.Builder.class);
     }
 
     private int bitField0_;
@@ -814,7 +740,6 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
     private io.temporal.omes.KitchenSink.WorkflowInput workflowInput_;
     /**
      * .temporal.omes.kitchen_sink.WorkflowInput workflow_input = 1;
-     *
      * @return Whether the workflowInput field is set.
      */
     @java.lang.Override
@@ -823,28 +748,23 @@ public boolean hasWorkflowInput() {
     }
     /**
      * .temporal.omes.kitchen_sink.WorkflowInput workflow_input = 1;
-     *
      * @return The workflowInput.
      */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.WorkflowInput getWorkflowInput() {
-      return workflowInput_ == null
-          ? io.temporal.omes.KitchenSink.WorkflowInput.getDefaultInstance()
-          : workflowInput_;
+      return workflowInput_ == null ? io.temporal.omes.KitchenSink.WorkflowInput.getDefaultInstance() : workflowInput_;
     }
-    /** .temporal.omes.kitchen_sink.WorkflowInput workflow_input = 1; */
+    /**
+     * .temporal.omes.kitchen_sink.WorkflowInput workflow_input = 1;
+     */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.WorkflowInputOrBuilder getWorkflowInputOrBuilder() {
-      return workflowInput_ == null
-          ? io.temporal.omes.KitchenSink.WorkflowInput.getDefaultInstance()
-          : workflowInput_;
+      return workflowInput_ == null ? io.temporal.omes.KitchenSink.WorkflowInput.getDefaultInstance() : workflowInput_;
     }
 
     public static final int CLIENT_SEQUENCE_FIELD_NUMBER = 2;
     private io.temporal.omes.KitchenSink.ClientSequence clientSequence_;
     /**
-     *
-     *
      * 
      * Technically worker options should be known as well. We don't have any common format for that
      * and creating one feels overkill to start with. Requiring the harness to print the config at
@@ -852,7 +772,6 @@ public io.temporal.omes.KitchenSink.WorkflowInputOrBuilder getWorkflowInputOrBui
      * 
* * .temporal.omes.kitchen_sink.ClientSequence client_sequence = 2; - * * @return Whether the clientSequence field is set. */ @java.lang.Override @@ -860,8 +779,6 @@ public boolean hasClientSequence() { return ((bitField0_ & 0x00000002) != 0); } /** - * - * *
      * Technically worker options should be known as well. We don't have any common format for that
      * and creating one feels overkill to start with. Requiring the harness to print the config at
@@ -869,18 +786,13 @@ public boolean hasClientSequence() {
      * 
* * .temporal.omes.kitchen_sink.ClientSequence client_sequence = 2; - * * @return The clientSequence. */ @java.lang.Override public io.temporal.omes.KitchenSink.ClientSequence getClientSequence() { - return clientSequence_ == null - ? io.temporal.omes.KitchenSink.ClientSequence.getDefaultInstance() - : clientSequence_; + return clientSequence_ == null ? io.temporal.omes.KitchenSink.ClientSequence.getDefaultInstance() : clientSequence_; } /** - * - * *
      * Technically worker options should be known as well. We don't have any common format for that
      * and creating one feels overkill to start with. Requiring the harness to print the config at
@@ -891,13 +803,10 @@ public io.temporal.omes.KitchenSink.ClientSequence getClientSequence() {
      */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.ClientSequenceOrBuilder getClientSequenceOrBuilder() {
-      return clientSequence_ == null
-          ? io.temporal.omes.KitchenSink.ClientSequence.getDefaultInstance()
-          : clientSequence_;
+      return clientSequence_ == null ? io.temporal.omes.KitchenSink.ClientSequence.getDefaultInstance() : clientSequence_;
     }
 
     private byte memoizedIsInitialized = -1;
-
     @java.lang.Override
     public final boolean isInitialized() {
       byte isInitialized = memoizedIsInitialized;
@@ -909,7 +818,8 @@ public final boolean isInitialized() {
     }
 
     @java.lang.Override
-    public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
+    public void writeTo(com.google.protobuf.CodedOutputStream output)
+                        throws java.io.IOException {
       if (((bitField0_ & 0x00000001) != 0)) {
         output.writeMessage(1, getWorkflowInput());
       }
@@ -926,10 +836,12 @@ public int getSerializedSize() {
 
       size = 0;
       if (((bitField0_ & 0x00000001) != 0)) {
-        size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, getWorkflowInput());
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(1, getWorkflowInput());
       }
       if (((bitField0_ & 0x00000002) != 0)) {
-        size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getClientSequence());
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(2, getClientSequence());
       }
       size += getUnknownFields().getSerializedSize();
       memoizedSize = size;
@@ -939,7 +851,7 @@ public int getSerializedSize() {
     @java.lang.Override
     public boolean equals(final java.lang.Object obj) {
       if (obj == this) {
-        return true;
+       return true;
       }
       if (!(obj instanceof io.temporal.omes.KitchenSink.TestInput)) {
         return super.equals(obj);
@@ -948,11 +860,13 @@ public boolean equals(final java.lang.Object obj) {
 
       if (hasWorkflowInput() != other.hasWorkflowInput()) return false;
       if (hasWorkflowInput()) {
-        if (!getWorkflowInput().equals(other.getWorkflowInput())) return false;
+        if (!getWorkflowInput()
+            .equals(other.getWorkflowInput())) return false;
       }
       if (hasClientSequence() != other.hasClientSequence()) return false;
       if (hasClientSequence()) {
-        if (!getClientSequence().equals(other.getClientSequence())) return false;
+        if (!getClientSequence()
+            .equals(other.getClientSequence())) return false;
       }
       if (!getUnknownFields().equals(other.getUnknownFields())) return false;
       return true;
@@ -978,94 +892,90 @@ public int hashCode() {
       return hash;
     }
 
-    public static io.temporal.omes.KitchenSink.TestInput parseFrom(java.nio.ByteBuffer data)
+    public static io.temporal.omes.KitchenSink.TestInput parseFrom(
+        java.nio.ByteBuffer data)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data);
     }
-
     public static io.temporal.omes.KitchenSink.TestInput parseFrom(
-        java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        java.nio.ByteBuffer data,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.TestInput parseFrom(
         com.google.protobuf.ByteString data)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data);
     }
-
     public static io.temporal.omes.KitchenSink.TestInput parseFrom(
         com.google.protobuf.ByteString data,
         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.TestInput parseFrom(byte[] data)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data);
     }
-
     public static io.temporal.omes.KitchenSink.TestInput parseFrom(
-        byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        byte[] data,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.TestInput parseFrom(java.io.InputStream input)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input);
     }
-
     public static io.temporal.omes.KitchenSink.TestInput parseFrom(
-        java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        java.io.InputStream input,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
-          PARSER, input, extensionRegistry);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input, extensionRegistry);
     }
 
-    public static io.temporal.omes.KitchenSink.TestInput parseDelimitedFrom(
-        java.io.InputStream input) throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
+    public static io.temporal.omes.KitchenSink.TestInput parseDelimitedFrom(java.io.InputStream input)
+        throws java.io.IOException {
+      return com.google.protobuf.GeneratedMessageV3
+          .parseDelimitedWithIOException(PARSER, input);
     }
 
     public static io.temporal.omes.KitchenSink.TestInput parseDelimitedFrom(
-        java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        java.io.InputStream input,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
-          PARSER, input, extensionRegistry);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseDelimitedWithIOException(PARSER, input, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.TestInput parseFrom(
-        com.google.protobuf.CodedInputStream input) throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
+        com.google.protobuf.CodedInputStream input)
+        throws java.io.IOException {
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input);
     }
-
     public static io.temporal.omes.KitchenSink.TestInput parseFrom(
         com.google.protobuf.CodedInputStream input,
         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
-          PARSER, input, extensionRegistry);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input, extensionRegistry);
     }
 
     @java.lang.Override
-    public Builder newBuilderForType() {
-      return newBuilder();
-    }
-
+    public Builder newBuilderForType() { return newBuilder(); }
     public static Builder newBuilder() {
       return DEFAULT_INSTANCE.toBuilder();
     }
-
     public static Builder newBuilder(io.temporal.omes.KitchenSink.TestInput prototype) {
       return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
     }
-
     @java.lang.Override
     public Builder toBuilder() {
-      return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
+      return this == DEFAULT_INSTANCE
+          ? new Builder() : new Builder().mergeFrom(this);
     }
 
     @java.lang.Override
@@ -1075,8 +985,6 @@ protected Builder newBuilderForType(
       return builder;
     }
     /**
-     *
-     *
      * 
      * The input to the test overall. A copy of this constitutes everything that is needed to reproduce
      * the test.
@@ -1084,24 +992,21 @@ protected Builder newBuilderForType(
      *
      * Protobuf type {@code temporal.omes.kitchen_sink.TestInput}
      */
-    public static final class Builder
-        extends com.google.protobuf.GeneratedMessageV3.Builder
-        implements
+    public static final class Builder extends
+        com.google.protobuf.GeneratedMessageV3.Builder implements
         // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.TestInput)
         io.temporal.omes.KitchenSink.TestInputOrBuilder {
-      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_TestInput_descriptor;
+      public static final com.google.protobuf.Descriptors.Descriptor
+          getDescriptor() {
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_TestInput_descriptor;
       }
 
       @java.lang.Override
       protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
           internalGetFieldAccessorTable() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_TestInput_fieldAccessorTable
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_TestInput_fieldAccessorTable
             .ensureFieldAccessorsInitialized(
-                io.temporal.omes.KitchenSink.TestInput.class,
-                io.temporal.omes.KitchenSink.TestInput.Builder.class);
+                io.temporal.omes.KitchenSink.TestInput.class, io.temporal.omes.KitchenSink.TestInput.Builder.class);
       }
 
       // Construct using io.temporal.omes.KitchenSink.TestInput.newBuilder()
@@ -1109,18 +1014,18 @@ private Builder() {
         maybeForceBuilderInitialization();
       }
 
-      private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
+      private Builder(
+          com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
         super(parent);
         maybeForceBuilderInitialization();
       }
-
       private void maybeForceBuilderInitialization() {
-        if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
+        if (com.google.protobuf.GeneratedMessageV3
+                .alwaysUseFieldBuilders) {
           getWorkflowInputFieldBuilder();
           getClientSequenceFieldBuilder();
         }
       }
-
       @java.lang.Override
       public Builder clear() {
         super.clear();
@@ -1139,9 +1044,9 @@ public Builder clear() {
       }
 
       @java.lang.Override
-      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_TestInput_descriptor;
+      public com.google.protobuf.Descriptors.Descriptor
+          getDescriptorForType() {
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_TestInput_descriptor;
       }
 
       @java.lang.Override
@@ -1160,11 +1065,8 @@ public io.temporal.omes.KitchenSink.TestInput build() {
 
       @java.lang.Override
       public io.temporal.omes.KitchenSink.TestInput buildPartial() {
-        io.temporal.omes.KitchenSink.TestInput result =
-            new io.temporal.omes.KitchenSink.TestInput(this);
-        if (bitField0_ != 0) {
-          buildPartial0(result);
-        }
+        io.temporal.omes.KitchenSink.TestInput result = new io.temporal.omes.KitchenSink.TestInput(this);
+        if (bitField0_ != 0) { buildPartial0(result); }
         onBuilt();
         return result;
       }
@@ -1173,13 +1075,15 @@ private void buildPartial0(io.temporal.omes.KitchenSink.TestInput result) {
         int from_bitField0_ = bitField0_;
         int to_bitField0_ = 0;
         if (((from_bitField0_ & 0x00000001) != 0)) {
-          result.workflowInput_ =
-              workflowInputBuilder_ == null ? workflowInput_ : workflowInputBuilder_.build();
+          result.workflowInput_ = workflowInputBuilder_ == null
+              ? workflowInput_
+              : workflowInputBuilder_.build();
           to_bitField0_ |= 0x00000001;
         }
         if (((from_bitField0_ & 0x00000002) != 0)) {
-          result.clientSequence_ =
-              clientSequenceBuilder_ == null ? clientSequence_ : clientSequenceBuilder_.build();
+          result.clientSequence_ = clientSequenceBuilder_ == null
+              ? clientSequence_
+              : clientSequenceBuilder_.build();
           to_bitField0_ |= 0x00000002;
         }
         result.bitField0_ |= to_bitField0_;
@@ -1189,41 +1093,38 @@ private void buildPartial0(io.temporal.omes.KitchenSink.TestInput result) {
       public Builder clone() {
         return super.clone();
       }
-
       @java.lang.Override
       public Builder setField(
-          com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
+          com.google.protobuf.Descriptors.FieldDescriptor field,
+          java.lang.Object value) {
         return super.setField(field, value);
       }
-
       @java.lang.Override
-      public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
+      public Builder clearField(
+          com.google.protobuf.Descriptors.FieldDescriptor field) {
         return super.clearField(field);
       }
-
       @java.lang.Override
-      public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
+      public Builder clearOneof(
+          com.google.protobuf.Descriptors.OneofDescriptor oneof) {
         return super.clearOneof(oneof);
       }
-
       @java.lang.Override
       public Builder setRepeatedField(
           com.google.protobuf.Descriptors.FieldDescriptor field,
-          int index,
-          java.lang.Object value) {
+          int index, java.lang.Object value) {
         return super.setRepeatedField(field, index, value);
       }
-
       @java.lang.Override
       public Builder addRepeatedField(
-          com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
+          com.google.protobuf.Descriptors.FieldDescriptor field,
+          java.lang.Object value) {
         return super.addRepeatedField(field, value);
       }
-
       @java.lang.Override
       public Builder mergeFrom(com.google.protobuf.Message other) {
         if (other instanceof io.temporal.omes.KitchenSink.TestInput) {
-          return mergeFrom((io.temporal.omes.KitchenSink.TestInput) other);
+          return mergeFrom((io.temporal.omes.KitchenSink.TestInput)other);
         } else {
           super.mergeFrom(other);
           return this;
@@ -1264,26 +1165,26 @@ public Builder mergeFrom(
               case 0:
                 done = true;
                 break;
-              case 10:
-                {
-                  input.readMessage(getWorkflowInputFieldBuilder().getBuilder(), extensionRegistry);
-                  bitField0_ |= 0x00000001;
-                  break;
-                } // case 10
-              case 18:
-                {
-                  input.readMessage(
-                      getClientSequenceFieldBuilder().getBuilder(), extensionRegistry);
-                  bitField0_ |= 0x00000002;
-                  break;
-                } // case 18
-              default:
-                {
-                  if (!super.parseUnknownField(input, extensionRegistry, tag)) {
-                    done = true; // was an endgroup tag
-                  }
-                  break;
-                } // default:
+              case 10: {
+                input.readMessage(
+                    getWorkflowInputFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                bitField0_ |= 0x00000001;
+                break;
+              } // case 10
+              case 18: {
+                input.readMessage(
+                    getClientSequenceFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                bitField0_ |= 0x00000002;
+                break;
+              } // case 18
+              default: {
+                if (!super.parseUnknownField(input, extensionRegistry, tag)) {
+                  done = true; // was an endgroup tag
+                }
+                break;
+              } // default:
             } // switch (tag)
           } // while (!done)
         } catch (com.google.protobuf.InvalidProtocolBufferException e) {
@@ -1293,18 +1194,13 @@ public Builder mergeFrom(
         } // finally
         return this;
       }
-
       private int bitField0_;
 
       private io.temporal.omes.KitchenSink.WorkflowInput workflowInput_;
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.WorkflowInput,
-              io.temporal.omes.KitchenSink.WorkflowInput.Builder,
-              io.temporal.omes.KitchenSink.WorkflowInputOrBuilder>
-          workflowInputBuilder_;
+          io.temporal.omes.KitchenSink.WorkflowInput, io.temporal.omes.KitchenSink.WorkflowInput.Builder, io.temporal.omes.KitchenSink.WorkflowInputOrBuilder> workflowInputBuilder_;
       /**
        * .temporal.omes.kitchen_sink.WorkflowInput workflow_input = 1;
-       *
        * @return Whether the workflowInput field is set.
        */
       public boolean hasWorkflowInput() {
@@ -1312,19 +1208,18 @@ public boolean hasWorkflowInput() {
       }
       /**
        * .temporal.omes.kitchen_sink.WorkflowInput workflow_input = 1;
-       *
        * @return The workflowInput.
        */
       public io.temporal.omes.KitchenSink.WorkflowInput getWorkflowInput() {
         if (workflowInputBuilder_ == null) {
-          return workflowInput_ == null
-              ? io.temporal.omes.KitchenSink.WorkflowInput.getDefaultInstance()
-              : workflowInput_;
+          return workflowInput_ == null ? io.temporal.omes.KitchenSink.WorkflowInput.getDefaultInstance() : workflowInput_;
         } else {
           return workflowInputBuilder_.getMessage();
         }
       }
-      /** .temporal.omes.kitchen_sink.WorkflowInput workflow_input = 1; */
+      /**
+       * .temporal.omes.kitchen_sink.WorkflowInput workflow_input = 1;
+       */
       public Builder setWorkflowInput(io.temporal.omes.KitchenSink.WorkflowInput value) {
         if (workflowInputBuilder_ == null) {
           if (value == null) {
@@ -1338,7 +1233,9 @@ public Builder setWorkflowInput(io.temporal.omes.KitchenSink.WorkflowInput value
         onChanged();
         return this;
       }
-      /** .temporal.omes.kitchen_sink.WorkflowInput workflow_input = 1; */
+      /**
+       * .temporal.omes.kitchen_sink.WorkflowInput workflow_input = 1;
+       */
       public Builder setWorkflowInput(
           io.temporal.omes.KitchenSink.WorkflowInput.Builder builderForValue) {
         if (workflowInputBuilder_ == null) {
@@ -1350,13 +1247,14 @@ public Builder setWorkflowInput(
         onChanged();
         return this;
       }
-      /** .temporal.omes.kitchen_sink.WorkflowInput workflow_input = 1; */
+      /**
+       * .temporal.omes.kitchen_sink.WorkflowInput workflow_input = 1;
+       */
       public Builder mergeWorkflowInput(io.temporal.omes.KitchenSink.WorkflowInput value) {
         if (workflowInputBuilder_ == null) {
-          if (((bitField0_ & 0x00000001) != 0)
-              && workflowInput_ != null
-              && workflowInput_
-                  != io.temporal.omes.KitchenSink.WorkflowInput.getDefaultInstance()) {
+          if (((bitField0_ & 0x00000001) != 0) &&
+            workflowInput_ != null &&
+            workflowInput_ != io.temporal.omes.KitchenSink.WorkflowInput.getDefaultInstance()) {
             getWorkflowInputBuilder().mergeFrom(value);
           } else {
             workflowInput_ = value;
@@ -1370,7 +1268,9 @@ public Builder mergeWorkflowInput(io.temporal.omes.KitchenSink.WorkflowInput val
         }
         return this;
       }
-      /** .temporal.omes.kitchen_sink.WorkflowInput workflow_input = 1; */
+      /**
+       * .temporal.omes.kitchen_sink.WorkflowInput workflow_input = 1;
+       */
       public Builder clearWorkflowInput() {
         bitField0_ = (bitField0_ & ~0x00000001);
         workflowInput_ = null;
@@ -1381,35 +1281,37 @@ public Builder clearWorkflowInput() {
         onChanged();
         return this;
       }
-      /** .temporal.omes.kitchen_sink.WorkflowInput workflow_input = 1; */
+      /**
+       * .temporal.omes.kitchen_sink.WorkflowInput workflow_input = 1;
+       */
       public io.temporal.omes.KitchenSink.WorkflowInput.Builder getWorkflowInputBuilder() {
         bitField0_ |= 0x00000001;
         onChanged();
         return getWorkflowInputFieldBuilder().getBuilder();
       }
-      /** .temporal.omes.kitchen_sink.WorkflowInput workflow_input = 1; */
+      /**
+       * .temporal.omes.kitchen_sink.WorkflowInput workflow_input = 1;
+       */
       public io.temporal.omes.KitchenSink.WorkflowInputOrBuilder getWorkflowInputOrBuilder() {
         if (workflowInputBuilder_ != null) {
           return workflowInputBuilder_.getMessageOrBuilder();
         } else {
-          return workflowInput_ == null
-              ? io.temporal.omes.KitchenSink.WorkflowInput.getDefaultInstance()
-              : workflowInput_;
+          return workflowInput_ == null ?
+              io.temporal.omes.KitchenSink.WorkflowInput.getDefaultInstance() : workflowInput_;
         }
       }
-      /** .temporal.omes.kitchen_sink.WorkflowInput workflow_input = 1; */
+      /**
+       * .temporal.omes.kitchen_sink.WorkflowInput workflow_input = 1;
+       */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.WorkflowInput,
-              io.temporal.omes.KitchenSink.WorkflowInput.Builder,
-              io.temporal.omes.KitchenSink.WorkflowInputOrBuilder>
+          io.temporal.omes.KitchenSink.WorkflowInput, io.temporal.omes.KitchenSink.WorkflowInput.Builder, io.temporal.omes.KitchenSink.WorkflowInputOrBuilder> 
           getWorkflowInputFieldBuilder() {
         if (workflowInputBuilder_ == null) {
-          workflowInputBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.omes.KitchenSink.WorkflowInput,
-                  io.temporal.omes.KitchenSink.WorkflowInput.Builder,
-                  io.temporal.omes.KitchenSink.WorkflowInputOrBuilder>(
-                  getWorkflowInput(), getParentForChildren(), isClean());
+          workflowInputBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.omes.KitchenSink.WorkflowInput, io.temporal.omes.KitchenSink.WorkflowInput.Builder, io.temporal.omes.KitchenSink.WorkflowInputOrBuilder>(
+                  getWorkflowInput(),
+                  getParentForChildren(),
+                  isClean());
           workflowInput_ = null;
         }
         return workflowInputBuilder_;
@@ -1417,13 +1319,8 @@ public io.temporal.omes.KitchenSink.WorkflowInputOrBuilder getWorkflowInputOrBui
 
       private io.temporal.omes.KitchenSink.ClientSequence clientSequence_;
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.ClientSequence,
-              io.temporal.omes.KitchenSink.ClientSequence.Builder,
-              io.temporal.omes.KitchenSink.ClientSequenceOrBuilder>
-          clientSequenceBuilder_;
+          io.temporal.omes.KitchenSink.ClientSequence, io.temporal.omes.KitchenSink.ClientSequence.Builder, io.temporal.omes.KitchenSink.ClientSequenceOrBuilder> clientSequenceBuilder_;
       /**
-       *
-       *
        * 
        * Technically worker options should be known as well. We don't have any common format for that
        * and creating one feels overkill to start with. Requiring the harness to print the config at
@@ -1431,15 +1328,12 @@ public io.temporal.omes.KitchenSink.WorkflowInputOrBuilder getWorkflowInputOrBui
        * 
* * .temporal.omes.kitchen_sink.ClientSequence client_sequence = 2; - * * @return Whether the clientSequence field is set. */ public boolean hasClientSequence() { return ((bitField0_ & 0x00000002) != 0); } /** - * - * *
        * Technically worker options should be known as well. We don't have any common format for that
        * and creating one feels overkill to start with. Requiring the harness to print the config at
@@ -1447,21 +1341,16 @@ public boolean hasClientSequence() {
        * 
* * .temporal.omes.kitchen_sink.ClientSequence client_sequence = 2; - * * @return The clientSequence. */ public io.temporal.omes.KitchenSink.ClientSequence getClientSequence() { if (clientSequenceBuilder_ == null) { - return clientSequence_ == null - ? io.temporal.omes.KitchenSink.ClientSequence.getDefaultInstance() - : clientSequence_; + return clientSequence_ == null ? io.temporal.omes.KitchenSink.ClientSequence.getDefaultInstance() : clientSequence_; } else { return clientSequenceBuilder_.getMessage(); } } /** - * - * *
        * Technically worker options should be known as well. We don't have any common format for that
        * and creating one feels overkill to start with. Requiring the harness to print the config at
@@ -1484,8 +1373,6 @@ public Builder setClientSequence(io.temporal.omes.KitchenSink.ClientSequence val
         return this;
       }
       /**
-       *
-       *
        * 
        * Technically worker options should be known as well. We don't have any common format for that
        * and creating one feels overkill to start with. Requiring the harness to print the config at
@@ -1506,8 +1393,6 @@ public Builder setClientSequence(
         return this;
       }
       /**
-       *
-       *
        * 
        * Technically worker options should be known as well. We don't have any common format for that
        * and creating one feels overkill to start with. Requiring the harness to print the config at
@@ -1518,10 +1403,9 @@ public Builder setClientSequence(
        */
       public Builder mergeClientSequence(io.temporal.omes.KitchenSink.ClientSequence value) {
         if (clientSequenceBuilder_ == null) {
-          if (((bitField0_ & 0x00000002) != 0)
-              && clientSequence_ != null
-              && clientSequence_
-                  != io.temporal.omes.KitchenSink.ClientSequence.getDefaultInstance()) {
+          if (((bitField0_ & 0x00000002) != 0) &&
+            clientSequence_ != null &&
+            clientSequence_ != io.temporal.omes.KitchenSink.ClientSequence.getDefaultInstance()) {
             getClientSequenceBuilder().mergeFrom(value);
           } else {
             clientSequence_ = value;
@@ -1536,8 +1420,6 @@ public Builder mergeClientSequence(io.temporal.omes.KitchenSink.ClientSequence v
         return this;
       }
       /**
-       *
-       *
        * 
        * Technically worker options should be known as well. We don't have any common format for that
        * and creating one feels overkill to start with. Requiring the harness to print the config at
@@ -1557,8 +1439,6 @@ public Builder clearClientSequence() {
         return this;
       }
       /**
-       *
-       *
        * 
        * Technically worker options should be known as well. We don't have any common format for that
        * and creating one feels overkill to start with. Requiring the harness to print the config at
@@ -1573,8 +1453,6 @@ public io.temporal.omes.KitchenSink.ClientSequence.Builder getClientSequenceBuil
         return getClientSequenceFieldBuilder().getBuilder();
       }
       /**
-       *
-       *
        * 
        * Technically worker options should be known as well. We don't have any common format for that
        * and creating one feels overkill to start with. Requiring the harness to print the config at
@@ -1587,14 +1465,11 @@ public io.temporal.omes.KitchenSink.ClientSequenceOrBuilder getClientSequenceOrB
         if (clientSequenceBuilder_ != null) {
           return clientSequenceBuilder_.getMessageOrBuilder();
         } else {
-          return clientSequence_ == null
-              ? io.temporal.omes.KitchenSink.ClientSequence.getDefaultInstance()
-              : clientSequence_;
+          return clientSequence_ == null ?
+              io.temporal.omes.KitchenSink.ClientSequence.getDefaultInstance() : clientSequence_;
         }
       }
       /**
-       *
-       *
        * 
        * Technically worker options should be known as well. We don't have any common format for that
        * and creating one feels overkill to start with. Requiring the harness to print the config at
@@ -1604,22 +1479,18 @@ public io.temporal.omes.KitchenSink.ClientSequenceOrBuilder getClientSequenceOrB
        * .temporal.omes.kitchen_sink.ClientSequence client_sequence = 2;
        */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.ClientSequence,
-              io.temporal.omes.KitchenSink.ClientSequence.Builder,
-              io.temporal.omes.KitchenSink.ClientSequenceOrBuilder>
+          io.temporal.omes.KitchenSink.ClientSequence, io.temporal.omes.KitchenSink.ClientSequence.Builder, io.temporal.omes.KitchenSink.ClientSequenceOrBuilder> 
           getClientSequenceFieldBuilder() {
         if (clientSequenceBuilder_ == null) {
-          clientSequenceBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.omes.KitchenSink.ClientSequence,
-                  io.temporal.omes.KitchenSink.ClientSequence.Builder,
-                  io.temporal.omes.KitchenSink.ClientSequenceOrBuilder>(
-                  getClientSequence(), getParentForChildren(), isClean());
+          clientSequenceBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.omes.KitchenSink.ClientSequence, io.temporal.omes.KitchenSink.ClientSequence.Builder, io.temporal.omes.KitchenSink.ClientSequenceOrBuilder>(
+                  getClientSequence(),
+                  getParentForChildren(),
+                  isClean());
           clientSequence_ = null;
         }
         return clientSequenceBuilder_;
       }
-
       @java.lang.Override
       public final Builder setUnknownFields(
           final com.google.protobuf.UnknownFieldSet unknownFields) {
@@ -1632,12 +1503,12 @@ public final Builder mergeUnknownFields(
         return super.mergeUnknownFields(unknownFields);
       }
 
+
       // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.TestInput)
     }
 
     // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.TestInput)
     private static final io.temporal.omes.KitchenSink.TestInput DEFAULT_INSTANCE;
-
     static {
       DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.TestInput();
     }
@@ -1646,28 +1517,27 @@ public static io.temporal.omes.KitchenSink.TestInput getDefaultInstance() {
       return DEFAULT_INSTANCE;
     }
 
-    private static final com.google.protobuf.Parser PARSER =
-        new com.google.protobuf.AbstractParser() {
-          @java.lang.Override
-          public TestInput parsePartialFrom(
-              com.google.protobuf.CodedInputStream input,
-              com.google.protobuf.ExtensionRegistryLite extensionRegistry)
-              throws com.google.protobuf.InvalidProtocolBufferException {
-            Builder builder = newBuilder();
-            try {
-              builder.mergeFrom(input, extensionRegistry);
-            } catch (com.google.protobuf.InvalidProtocolBufferException e) {
-              throw e.setUnfinishedMessage(builder.buildPartial());
-            } catch (com.google.protobuf.UninitializedMessageException e) {
-              throw e.asInvalidProtocolBufferException()
-                  .setUnfinishedMessage(builder.buildPartial());
-            } catch (java.io.IOException e) {
-              throw new com.google.protobuf.InvalidProtocolBufferException(e)
-                  .setUnfinishedMessage(builder.buildPartial());
-            }
-            return builder.buildPartial();
-          }
-        };
+    private static final com.google.protobuf.Parser
+        PARSER = new com.google.protobuf.AbstractParser() {
+      @java.lang.Override
+      public TestInput parsePartialFrom(
+          com.google.protobuf.CodedInputStream input,
+          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+          throws com.google.protobuf.InvalidProtocolBufferException {
+        Builder builder = newBuilder();
+        try {
+          builder.mergeFrom(input, extensionRegistry);
+        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
+          throw e.setUnfinishedMessage(builder.buildPartial());
+        } catch (com.google.protobuf.UninitializedMessageException e) {
+          throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
+        } catch (java.io.IOException e) {
+          throw new com.google.protobuf.InvalidProtocolBufferException(e)
+              .setUnfinishedMessage(builder.buildPartial());
+        }
+        return builder.buildPartial();
+      }
+    };
 
     public static com.google.protobuf.Parser parser() {
       return PARSER;
@@ -1682,102 +1552,119 @@ public com.google.protobuf.Parser getParserForType() {
     public io.temporal.omes.KitchenSink.TestInput getDefaultInstanceForType() {
       return DEFAULT_INSTANCE;
     }
+
   }
 
-  public interface ClientSequenceOrBuilder
-      extends
+  public interface ClientSequenceOrBuilder extends
       // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.ClientSequence)
       com.google.protobuf.MessageOrBuilder {
 
-    /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */
-    java.util.List getActionSetsList();
-    /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */
+    /**
+     * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1;
+     */
+    java.util.List 
+        getActionSetsList();
+    /**
+     * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1;
+     */
     io.temporal.omes.KitchenSink.ClientActionSet getActionSets(int index);
-    /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */
+    /**
+     * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1;
+     */
     int getActionSetsCount();
-    /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */
-    java.util.List
+    /**
+     * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1;
+     */
+    java.util.List 
         getActionSetsOrBuilderList();
-    /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */
-    io.temporal.omes.KitchenSink.ClientActionSetOrBuilder getActionSetsOrBuilder(int index);
+    /**
+     * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1;
+     */
+    io.temporal.omes.KitchenSink.ClientActionSetOrBuilder getActionSetsOrBuilder(
+        int index);
   }
   /**
-   *
-   *
    * 
    * All the client actions that will be taken over the course of this test
    * 
* * Protobuf type {@code temporal.omes.kitchen_sink.ClientSequence} */ - public static final class ClientSequence extends com.google.protobuf.GeneratedMessageV3 - implements + public static final class ClientSequence extends + com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.ClientSequence) ClientSequenceOrBuilder { - private static final long serialVersionUID = 0L; + private static final long serialVersionUID = 0L; // Use ClientSequence.newBuilder() to construct. private ClientSequence(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } - private ClientSequence() { actionSets_ = java.util.Collections.emptyList(); } @java.lang.Override @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { return new ClientSequence(); } - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ClientSequence_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ClientSequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ClientSequence_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ClientSequence_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.ClientSequence.class, - io.temporal.omes.KitchenSink.ClientSequence.Builder.class); + io.temporal.omes.KitchenSink.ClientSequence.class, io.temporal.omes.KitchenSink.ClientSequence.Builder.class); } public static final int ACTION_SETS_FIELD_NUMBER = 1; - @SuppressWarnings("serial") private java.util.List actionSets_; - /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; + */ @java.lang.Override public java.util.List getActionSetsList() { return actionSets_; } - /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; + */ @java.lang.Override - public java.util.List + public java.util.List getActionSetsOrBuilderList() { return actionSets_; } - /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; + */ @java.lang.Override public int getActionSetsCount() { return actionSets_.size(); } - /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; + */ @java.lang.Override public io.temporal.omes.KitchenSink.ClientActionSet getActionSets(int index) { return actionSets_.get(index); } - /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; + */ @java.lang.Override - public io.temporal.omes.KitchenSink.ClientActionSetOrBuilder getActionSetsOrBuilder(int index) { + public io.temporal.omes.KitchenSink.ClientActionSetOrBuilder getActionSetsOrBuilder( + int index) { return actionSets_.get(index); } private byte memoizedIsInitialized = -1; - @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; @@ -1789,7 +1676,8 @@ public final boolean isInitialized() { } @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { for (int i = 0; i < actionSets_.size(); i++) { output.writeMessage(1, actionSets_.get(i)); } @@ -1803,7 +1691,8 @@ public int getSerializedSize() { size = 0; for (int i = 0; i < actionSets_.size(); i++) { - size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, actionSets_.get(i)); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, actionSets_.get(i)); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; @@ -1813,15 +1702,15 @@ public int getSerializedSize() { @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { - return true; + return true; } if (!(obj instanceof io.temporal.omes.KitchenSink.ClientSequence)) { return super.equals(obj); } - io.temporal.omes.KitchenSink.ClientSequence other = - (io.temporal.omes.KitchenSink.ClientSequence) obj; + io.temporal.omes.KitchenSink.ClientSequence other = (io.temporal.omes.KitchenSink.ClientSequence) obj; - if (!getActionSetsList().equals(other.getActionSetsList())) return false; + if (!getActionSetsList() + .equals(other.getActionSetsList())) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -1842,94 +1731,90 @@ public int hashCode() { return hash; } - public static io.temporal.omes.KitchenSink.ClientSequence parseFrom(java.nio.ByteBuffer data) + public static io.temporal.omes.KitchenSink.ClientSequence parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.ClientSequence parseFrom( - java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.ClientSequence parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.ClientSequence parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.ClientSequence parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.ClientSequence parseFrom( - byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.ClientSequence parseFrom(java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.ClientSequence parseFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.ClientSequence parseDelimitedFrom( - java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + public static io.temporal.omes.KitchenSink.ClientSequence parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); } public static io.temporal.omes.KitchenSink.ClientSequence parseDelimitedFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.ClientSequence parseFrom( - com.google.protobuf.CodedInputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.ClientSequence parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override - public Builder newBuilderForType() { - return newBuilder(); - } - + public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(io.temporal.omes.KitchenSink.ClientSequence prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } - @java.lang.Override public Builder toBuilder() { - return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override @@ -1939,41 +1824,39 @@ protected Builder newBuilderForType( return builder; } /** - * - * *
      * All the client actions that will be taken over the course of this test
      * 
* * Protobuf type {@code temporal.omes.kitchen_sink.ClientSequence} */ - public static final class Builder - extends com.google.protobuf.GeneratedMessageV3.Builder - implements + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.ClientSequence) io.temporal.omes.KitchenSink.ClientSequenceOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ClientSequence_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ClientSequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ClientSequence_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ClientSequence_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.ClientSequence.class, - io.temporal.omes.KitchenSink.ClientSequence.Builder.class); + io.temporal.omes.KitchenSink.ClientSequence.class, io.temporal.omes.KitchenSink.ClientSequence.Builder.class); } // Construct using io.temporal.omes.KitchenSink.ClientSequence.newBuilder() - private Builder() {} + private Builder() { - private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); } + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } @java.lang.Override public Builder clear() { super.clear(); @@ -1989,9 +1872,9 @@ public Builder clear() { } @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ClientSequence_descriptor; + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ClientSequence_descriptor; } @java.lang.Override @@ -2010,12 +1893,9 @@ public io.temporal.omes.KitchenSink.ClientSequence build() { @java.lang.Override public io.temporal.omes.KitchenSink.ClientSequence buildPartial() { - io.temporal.omes.KitchenSink.ClientSequence result = - new io.temporal.omes.KitchenSink.ClientSequence(this); + io.temporal.omes.KitchenSink.ClientSequence result = new io.temporal.omes.KitchenSink.ClientSequence(this); buildPartialRepeatedFields(result); - if (bitField0_ != 0) { - buildPartial0(result); - } + if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } @@ -2040,41 +1920,38 @@ private void buildPartial0(io.temporal.omes.KitchenSink.ClientSequence result) { public Builder clone() { return super.clone(); } - @java.lang.Override public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.setField(field, value); } - @java.lang.Override - public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } - @java.lang.Override - public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } - @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, - int index, - java.lang.Object value) { + int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } - @java.lang.Override public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.addRepeatedField(field, value); } - @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.temporal.omes.KitchenSink.ClientSequence) { - return mergeFrom((io.temporal.omes.KitchenSink.ClientSequence) other); + return mergeFrom((io.temporal.omes.KitchenSink.ClientSequence)other); } else { super.mergeFrom(other); return this; @@ -2101,10 +1978,9 @@ public Builder mergeFrom(io.temporal.omes.KitchenSink.ClientSequence other) { actionSetsBuilder_ = null; actionSets_ = other.actionSets_; bitField0_ = (bitField0_ & ~0x00000001); - actionSetsBuilder_ = - com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders - ? getActionSetsFieldBuilder() - : null; + actionSetsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getActionSetsFieldBuilder() : null; } else { actionSetsBuilder_.addAllMessages(other.actionSets_); } @@ -2136,26 +2012,25 @@ public Builder mergeFrom( case 0: done = true; break; - case 10: - { - io.temporal.omes.KitchenSink.ClientActionSet m = - input.readMessage( - io.temporal.omes.KitchenSink.ClientActionSet.parser(), extensionRegistry); - if (actionSetsBuilder_ == null) { - ensureActionSetsIsMutable(); - actionSets_.add(m); - } else { - actionSetsBuilder_.addMessage(m); - } - break; - } // case 10 - default: - { - if (!super.parseUnknownField(input, extensionRegistry, tag)) { - done = true; // was an endgroup tag - } - break; - } // default: + case 10: { + io.temporal.omes.KitchenSink.ClientActionSet m = + input.readMessage( + io.temporal.omes.KitchenSink.ClientActionSet.parser(), + extensionRegistry); + if (actionSetsBuilder_ == null) { + ensureActionSetsIsMutable(); + actionSets_.add(m); + } else { + actionSetsBuilder_.addMessage(m); + } + break; + } // case 10 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -2165,27 +2040,23 @@ public Builder mergeFrom( } // finally return this; } - private int bitField0_; private java.util.List actionSets_ = - java.util.Collections.emptyList(); - + java.util.Collections.emptyList(); private void ensureActionSetsIsMutable() { if (!((bitField0_ & 0x00000001) != 0)) { - actionSets_ = - new java.util.ArrayList(actionSets_); + actionSets_ = new java.util.ArrayList(actionSets_); bitField0_ |= 0x00000001; - } + } } private com.google.protobuf.RepeatedFieldBuilderV3< - io.temporal.omes.KitchenSink.ClientActionSet, - io.temporal.omes.KitchenSink.ClientActionSet.Builder, - io.temporal.omes.KitchenSink.ClientActionSetOrBuilder> - actionSetsBuilder_; + io.temporal.omes.KitchenSink.ClientActionSet, io.temporal.omes.KitchenSink.ClientActionSet.Builder, io.temporal.omes.KitchenSink.ClientActionSetOrBuilder> actionSetsBuilder_; - /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; + */ public java.util.List getActionSetsList() { if (actionSetsBuilder_ == null) { return java.util.Collections.unmodifiableList(actionSets_); @@ -2193,7 +2064,9 @@ public java.util.List getActionSet return actionSetsBuilder_.getMessageList(); } } - /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; + */ public int getActionSetsCount() { if (actionSetsBuilder_ == null) { return actionSets_.size(); @@ -2201,7 +2074,9 @@ public int getActionSetsCount() { return actionSetsBuilder_.getCount(); } } - /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; + */ public io.temporal.omes.KitchenSink.ClientActionSet getActionSets(int index) { if (actionSetsBuilder_ == null) { return actionSets_.get(index); @@ -2209,8 +2084,11 @@ public io.temporal.omes.KitchenSink.ClientActionSet getActionSets(int index) { return actionSetsBuilder_.getMessage(index); } } - /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */ - public Builder setActionSets(int index, io.temporal.omes.KitchenSink.ClientActionSet value) { + /** + * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; + */ + public Builder setActionSets( + int index, io.temporal.omes.KitchenSink.ClientActionSet value) { if (actionSetsBuilder_ == null) { if (value == null) { throw new NullPointerException(); @@ -2223,7 +2101,9 @@ public Builder setActionSets(int index, io.temporal.omes.KitchenSink.ClientActio } return this; } - /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; + */ public Builder setActionSets( int index, io.temporal.omes.KitchenSink.ClientActionSet.Builder builderForValue) { if (actionSetsBuilder_ == null) { @@ -2235,7 +2115,9 @@ public Builder setActionSets( } return this; } - /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; + */ public Builder addActionSets(io.temporal.omes.KitchenSink.ClientActionSet value) { if (actionSetsBuilder_ == null) { if (value == null) { @@ -2249,8 +2131,11 @@ public Builder addActionSets(io.temporal.omes.KitchenSink.ClientActionSet value) } return this; } - /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */ - public Builder addActionSets(int index, io.temporal.omes.KitchenSink.ClientActionSet value) { + /** + * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; + */ + public Builder addActionSets( + int index, io.temporal.omes.KitchenSink.ClientActionSet value) { if (actionSetsBuilder_ == null) { if (value == null) { throw new NullPointerException(); @@ -2263,7 +2148,9 @@ public Builder addActionSets(int index, io.temporal.omes.KitchenSink.ClientActio } return this; } - /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; + */ public Builder addActionSets( io.temporal.omes.KitchenSink.ClientActionSet.Builder builderForValue) { if (actionSetsBuilder_ == null) { @@ -2275,7 +2162,9 @@ public Builder addActionSets( } return this; } - /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; + */ public Builder addActionSets( int index, io.temporal.omes.KitchenSink.ClientActionSet.Builder builderForValue) { if (actionSetsBuilder_ == null) { @@ -2287,19 +2176,24 @@ public Builder addActionSets( } return this; } - /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; + */ public Builder addAllActionSets( java.lang.Iterable values) { if (actionSetsBuilder_ == null) { ensureActionSetsIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll(values, actionSets_); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, actionSets_); onChanged(); } else { actionSetsBuilder_.addAllMessages(values); } return this; } - /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; + */ public Builder clearActionSets() { if (actionSetsBuilder_ == null) { actionSets_ = java.util.Collections.emptyList(); @@ -2310,7 +2204,9 @@ public Builder clearActionSets() { } return this; } - /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; + */ public Builder removeActionSets(int index) { if (actionSetsBuilder_ == null) { ensureActionSetsIsMutable(); @@ -2321,61 +2217,70 @@ public Builder removeActionSets(int index) { } return this; } - /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */ - public io.temporal.omes.KitchenSink.ClientActionSet.Builder getActionSetsBuilder(int index) { + /** + * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; + */ + public io.temporal.omes.KitchenSink.ClientActionSet.Builder getActionSetsBuilder( + int index) { return getActionSetsFieldBuilder().getBuilder(index); } - /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; + */ public io.temporal.omes.KitchenSink.ClientActionSetOrBuilder getActionSetsOrBuilder( int index) { if (actionSetsBuilder_ == null) { - return actionSets_.get(index); - } else { + return actionSets_.get(index); } else { return actionSetsBuilder_.getMessageOrBuilder(index); } } - /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */ - public java.util.List - getActionSetsOrBuilderList() { + /** + * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; + */ + public java.util.List + getActionSetsOrBuilderList() { if (actionSetsBuilder_ != null) { return actionSetsBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(actionSets_); } } - /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; + */ public io.temporal.omes.KitchenSink.ClientActionSet.Builder addActionSetsBuilder() { - return getActionSetsFieldBuilder() - .addBuilder(io.temporal.omes.KitchenSink.ClientActionSet.getDefaultInstance()); + return getActionSetsFieldBuilder().addBuilder( + io.temporal.omes.KitchenSink.ClientActionSet.getDefaultInstance()); } - /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */ - public io.temporal.omes.KitchenSink.ClientActionSet.Builder addActionSetsBuilder(int index) { - return getActionSetsFieldBuilder() - .addBuilder(index, io.temporal.omes.KitchenSink.ClientActionSet.getDefaultInstance()); + /** + * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; + */ + public io.temporal.omes.KitchenSink.ClientActionSet.Builder addActionSetsBuilder( + int index) { + return getActionSetsFieldBuilder().addBuilder( + index, io.temporal.omes.KitchenSink.ClientActionSet.getDefaultInstance()); } - /** repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; */ - public java.util.List - getActionSetsBuilderList() { + /** + * repeated .temporal.omes.kitchen_sink.ClientActionSet action_sets = 1; + */ + public java.util.List + getActionSetsBuilderList() { return getActionSetsFieldBuilder().getBuilderList(); } - private com.google.protobuf.RepeatedFieldBuilderV3< - io.temporal.omes.KitchenSink.ClientActionSet, - io.temporal.omes.KitchenSink.ClientActionSet.Builder, - io.temporal.omes.KitchenSink.ClientActionSetOrBuilder> + io.temporal.omes.KitchenSink.ClientActionSet, io.temporal.omes.KitchenSink.ClientActionSet.Builder, io.temporal.omes.KitchenSink.ClientActionSetOrBuilder> getActionSetsFieldBuilder() { if (actionSetsBuilder_ == null) { - actionSetsBuilder_ = - new com.google.protobuf.RepeatedFieldBuilderV3< - io.temporal.omes.KitchenSink.ClientActionSet, - io.temporal.omes.KitchenSink.ClientActionSet.Builder, - io.temporal.omes.KitchenSink.ClientActionSetOrBuilder>( - actionSets_, ((bitField0_ & 0x00000001) != 0), getParentForChildren(), isClean()); + actionSetsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + io.temporal.omes.KitchenSink.ClientActionSet, io.temporal.omes.KitchenSink.ClientActionSet.Builder, io.temporal.omes.KitchenSink.ClientActionSetOrBuilder>( + actionSets_, + ((bitField0_ & 0x00000001) != 0), + getParentForChildren(), + isClean()); actionSets_ = null; } return actionSetsBuilder_; } - @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -2388,12 +2293,12 @@ public final Builder mergeUnknownFields( return super.mergeUnknownFields(unknownFields); } + // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.ClientSequence) } // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.ClientSequence) private static final io.temporal.omes.KitchenSink.ClientSequence DEFAULT_INSTANCE; - static { DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.ClientSequence(); } @@ -2402,28 +2307,27 @@ public static io.temporal.omes.KitchenSink.ClientSequence getDefaultInstance() { return DEFAULT_INSTANCE; } - private static final com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser() { - @java.lang.Override - public ClientSequence parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException() - .setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public ClientSequence parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; public static com.google.protobuf.Parser parser() { return PARSER; @@ -2438,61 +2342,64 @@ public com.google.protobuf.Parser getParserForType() { public io.temporal.omes.KitchenSink.ClientSequence getDefaultInstanceForType() { return DEFAULT_INSTANCE; } + } - public interface ClientActionSetOrBuilder - extends + public interface ClientActionSetOrBuilder extends // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.ClientActionSet) com.google.protobuf.MessageOrBuilder { - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ - java.util.List getActionsList(); - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ + java.util.List + getActionsList(); + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ io.temporal.omes.KitchenSink.ClientAction getActions(int index); - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ int getActionsCount(); - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ - java.util.List + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ + java.util.List getActionsOrBuilderList(); - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ - io.temporal.omes.KitchenSink.ClientActionOrBuilder getActionsOrBuilder(int index); + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ + io.temporal.omes.KitchenSink.ClientActionOrBuilder getActionsOrBuilder( + int index); /** * bool concurrent = 2; - * * @return The concurrent. */ boolean getConcurrent(); /** - * - * *
      * Wait the specified amount of time at the end of the action set before proceeding to the next
      * (if there is one, if not, ignored).
      * 
* * .google.protobuf.Duration wait_at_end = 3; - * * @return Whether the waitAtEnd field is set. */ boolean hasWaitAtEnd(); /** - * - * *
      * Wait the specified amount of time at the end of the action set before proceeding to the next
      * (if there is one, if not, ignored).
      * 
* * .google.protobuf.Duration wait_at_end = 3; - * * @return The waitAtEnd. */ com.google.protobuf.Duration getWaitAtEnd(); /** - * - * *
      * Wait the specified amount of time at the end of the action set before proceeding to the next
      * (if there is one, if not, ignored).
@@ -2503,92 +2410,95 @@ public interface ClientActionSetOrBuilder
     com.google.protobuf.DurationOrBuilder getWaitAtEndOrBuilder();
 
     /**
-     *
-     *
      * 
      * If set, the client should wait for the current run to end before proceeding (IE: the workflow
      * is going to continue-as-new).
      * 
* * bool wait_for_current_run_to_finish_at_end = 4; - * * @return The waitForCurrentRunToFinishAtEnd. */ boolean getWaitForCurrentRunToFinishAtEnd(); } /** - * - * *
    * A set of client actions to execute.
    * 
* * Protobuf type {@code temporal.omes.kitchen_sink.ClientActionSet} */ - public static final class ClientActionSet extends com.google.protobuf.GeneratedMessageV3 - implements + public static final class ClientActionSet extends + com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.ClientActionSet) ClientActionSetOrBuilder { - private static final long serialVersionUID = 0L; + private static final long serialVersionUID = 0L; // Use ClientActionSet.newBuilder() to construct. private ClientActionSet(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } - private ClientActionSet() { actions_ = java.util.Collections.emptyList(); } @java.lang.Override @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { return new ClientActionSet(); } - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ClientActionSet_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ClientActionSet_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ClientActionSet_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ClientActionSet_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.ClientActionSet.class, - io.temporal.omes.KitchenSink.ClientActionSet.Builder.class); + io.temporal.omes.KitchenSink.ClientActionSet.class, io.temporal.omes.KitchenSink.ClientActionSet.Builder.class); } private int bitField0_; public static final int ACTIONS_FIELD_NUMBER = 1; - @SuppressWarnings("serial") private java.util.List actions_; - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ @java.lang.Override public java.util.List getActionsList() { return actions_; } - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ @java.lang.Override - public java.util.List + public java.util.List getActionsOrBuilderList() { return actions_; } - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ @java.lang.Override public int getActionsCount() { return actions_.size(); } - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ @java.lang.Override public io.temporal.omes.KitchenSink.ClientAction getActions(int index) { return actions_.get(index); } - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ @java.lang.Override - public io.temporal.omes.KitchenSink.ClientActionOrBuilder getActionsOrBuilder(int index) { + public io.temporal.omes.KitchenSink.ClientActionOrBuilder getActionsOrBuilder( + int index) { return actions_.get(index); } @@ -2596,7 +2506,6 @@ public io.temporal.omes.KitchenSink.ClientActionOrBuilder getActionsOrBuilder(in private boolean concurrent_ = false; /** * bool concurrent = 2; - * * @return The concurrent. */ @java.lang.Override @@ -2607,15 +2516,12 @@ public boolean getConcurrent() { public static final int WAIT_AT_END_FIELD_NUMBER = 3; private com.google.protobuf.Duration waitAtEnd_; /** - * - * *
      * Wait the specified amount of time at the end of the action set before proceeding to the next
      * (if there is one, if not, ignored).
      * 
* * .google.protobuf.Duration wait_at_end = 3; - * * @return Whether the waitAtEnd field is set. */ @java.lang.Override @@ -2623,15 +2529,12 @@ public boolean hasWaitAtEnd() { return ((bitField0_ & 0x00000001) != 0); } /** - * - * *
      * Wait the specified amount of time at the end of the action set before proceeding to the next
      * (if there is one, if not, ignored).
      * 
* * .google.protobuf.Duration wait_at_end = 3; - * * @return The waitAtEnd. */ @java.lang.Override @@ -2639,8 +2542,6 @@ public com.google.protobuf.Duration getWaitAtEnd() { return waitAtEnd_ == null ? com.google.protobuf.Duration.getDefaultInstance() : waitAtEnd_; } /** - * - * *
      * Wait the specified amount of time at the end of the action set before proceeding to the next
      * (if there is one, if not, ignored).
@@ -2656,15 +2557,12 @@ public com.google.protobuf.DurationOrBuilder getWaitAtEndOrBuilder() {
     public static final int WAIT_FOR_CURRENT_RUN_TO_FINISH_AT_END_FIELD_NUMBER = 4;
     private boolean waitForCurrentRunToFinishAtEnd_ = false;
     /**
-     *
-     *
      * 
      * If set, the client should wait for the current run to end before proceeding (IE: the workflow
      * is going to continue-as-new).
      * 
* * bool wait_for_current_run_to_finish_at_end = 4; - * * @return The waitForCurrentRunToFinishAtEnd. */ @java.lang.Override @@ -2673,7 +2571,6 @@ public boolean getWaitForCurrentRunToFinishAtEnd() { } private byte memoizedIsInitialized = -1; - @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; @@ -2685,7 +2582,8 @@ public final boolean isInitialized() { } @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { for (int i = 0; i < actions_.size(); i++) { output.writeMessage(1, actions_.get(i)); } @@ -2708,18 +2606,20 @@ public int getSerializedSize() { size = 0; for (int i = 0; i < actions_.size(); i++) { - size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, actions_.get(i)); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, actions_.get(i)); } if (concurrent_ != false) { - size += com.google.protobuf.CodedOutputStream.computeBoolSize(2, concurrent_); + size += com.google.protobuf.CodedOutputStream + .computeBoolSize(2, concurrent_); } if (((bitField0_ & 0x00000001) != 0)) { - size += com.google.protobuf.CodedOutputStream.computeMessageSize(3, getWaitAtEnd()); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(3, getWaitAtEnd()); } if (waitForCurrentRunToFinishAtEnd_ != false) { - size += - com.google.protobuf.CodedOutputStream.computeBoolSize( - 4, waitForCurrentRunToFinishAtEnd_); + size += com.google.protobuf.CodedOutputStream + .computeBoolSize(4, waitForCurrentRunToFinishAtEnd_); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; @@ -2729,22 +2629,24 @@ public int getSerializedSize() { @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { - return true; + return true; } if (!(obj instanceof io.temporal.omes.KitchenSink.ClientActionSet)) { return super.equals(obj); } - io.temporal.omes.KitchenSink.ClientActionSet other = - (io.temporal.omes.KitchenSink.ClientActionSet) obj; + io.temporal.omes.KitchenSink.ClientActionSet other = (io.temporal.omes.KitchenSink.ClientActionSet) obj; - if (!getActionsList().equals(other.getActionsList())) return false; - if (getConcurrent() != other.getConcurrent()) return false; + if (!getActionsList() + .equals(other.getActionsList())) return false; + if (getConcurrent() + != other.getConcurrent()) return false; if (hasWaitAtEnd() != other.hasWaitAtEnd()) return false; if (hasWaitAtEnd()) { - if (!getWaitAtEnd().equals(other.getWaitAtEnd())) return false; + if (!getWaitAtEnd() + .equals(other.getWaitAtEnd())) return false; } - if (getWaitForCurrentRunToFinishAtEnd() != other.getWaitForCurrentRunToFinishAtEnd()) - return false; + if (getWaitForCurrentRunToFinishAtEnd() + != other.getWaitForCurrentRunToFinishAtEnd()) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -2761,108 +2663,104 @@ public int hashCode() { hash = (53 * hash) + getActionsList().hashCode(); } hash = (37 * hash) + CONCURRENT_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getConcurrent()); + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( + getConcurrent()); if (hasWaitAtEnd()) { hash = (37 * hash) + WAIT_AT_END_FIELD_NUMBER; hash = (53 * hash) + getWaitAtEnd().hashCode(); } hash = (37 * hash) + WAIT_FOR_CURRENT_RUN_TO_FINISH_AT_END_FIELD_NUMBER; - hash = - (53 * hash) - + com.google.protobuf.Internal.hashBoolean(getWaitForCurrentRunToFinishAtEnd()); + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( + getWaitForCurrentRunToFinishAtEnd()); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } - public static io.temporal.omes.KitchenSink.ClientActionSet parseFrom(java.nio.ByteBuffer data) + public static io.temporal.omes.KitchenSink.ClientActionSet parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.ClientActionSet parseFrom( - java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.ClientActionSet parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.ClientActionSet parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.ClientActionSet parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.ClientActionSet parseFrom( - byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.ClientActionSet parseFrom(java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.ClientActionSet parseFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.ClientActionSet parseDelimitedFrom( - java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + public static io.temporal.omes.KitchenSink.ClientActionSet parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); } public static io.temporal.omes.KitchenSink.ClientActionSet parseDelimitedFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.ClientActionSet parseFrom( - com.google.protobuf.CodedInputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.ClientActionSet parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override - public Builder newBuilderForType() { - return newBuilder(); - } - + public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(io.temporal.omes.KitchenSink.ClientActionSet prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } - @java.lang.Override public Builder toBuilder() { - return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override @@ -2872,32 +2770,27 @@ protected Builder newBuilderForType( return builder; } /** - * - * *
      * A set of client actions to execute.
      * 
* * Protobuf type {@code temporal.omes.kitchen_sink.ClientActionSet} */ - public static final class Builder - extends com.google.protobuf.GeneratedMessageV3.Builder - implements + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.ClientActionSet) io.temporal.omes.KitchenSink.ClientActionSetOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ClientActionSet_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ClientActionSet_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ClientActionSet_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ClientActionSet_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.ClientActionSet.class, - io.temporal.omes.KitchenSink.ClientActionSet.Builder.class); + io.temporal.omes.KitchenSink.ClientActionSet.class, io.temporal.omes.KitchenSink.ClientActionSet.Builder.class); } // Construct using io.temporal.omes.KitchenSink.ClientActionSet.newBuilder() @@ -2905,18 +2798,18 @@ private Builder() { maybeForceBuilderInitialization(); } - private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { getActionsFieldBuilder(); getWaitAtEndFieldBuilder(); } } - @java.lang.Override public Builder clear() { super.clear(); @@ -2939,9 +2832,9 @@ public Builder clear() { } @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ClientActionSet_descriptor; + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ClientActionSet_descriptor; } @java.lang.Override @@ -2960,12 +2853,9 @@ public io.temporal.omes.KitchenSink.ClientActionSet build() { @java.lang.Override public io.temporal.omes.KitchenSink.ClientActionSet buildPartial() { - io.temporal.omes.KitchenSink.ClientActionSet result = - new io.temporal.omes.KitchenSink.ClientActionSet(this); + io.temporal.omes.KitchenSink.ClientActionSet result = new io.temporal.omes.KitchenSink.ClientActionSet(this); buildPartialRepeatedFields(result); - if (bitField0_ != 0) { - buildPartial0(result); - } + if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } @@ -2989,7 +2879,9 @@ private void buildPartial0(io.temporal.omes.KitchenSink.ClientActionSet result) } int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000004) != 0)) { - result.waitAtEnd_ = waitAtEndBuilder_ == null ? waitAtEnd_ : waitAtEndBuilder_.build(); + result.waitAtEnd_ = waitAtEndBuilder_ == null + ? waitAtEnd_ + : waitAtEndBuilder_.build(); to_bitField0_ |= 0x00000001; } if (((from_bitField0_ & 0x00000008) != 0)) { @@ -3002,41 +2894,38 @@ private void buildPartial0(io.temporal.omes.KitchenSink.ClientActionSet result) public Builder clone() { return super.clone(); } - @java.lang.Override public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.setField(field, value); } - @java.lang.Override - public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } - @java.lang.Override - public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } - @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, - int index, - java.lang.Object value) { + int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } - @java.lang.Override public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.addRepeatedField(field, value); } - @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.temporal.omes.KitchenSink.ClientActionSet) { - return mergeFrom((io.temporal.omes.KitchenSink.ClientActionSet) other); + return mergeFrom((io.temporal.omes.KitchenSink.ClientActionSet)other); } else { super.mergeFrom(other); return this; @@ -3063,10 +2952,9 @@ public Builder mergeFrom(io.temporal.omes.KitchenSink.ClientActionSet other) { actionsBuilder_ = null; actions_ = other.actions_; bitField0_ = (bitField0_ & ~0x00000001); - actionsBuilder_ = - com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders - ? getActionsFieldBuilder() - : null; + actionsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getActionsFieldBuilder() : null; } else { actionsBuilder_.addAllMessages(other.actions_); } @@ -3107,44 +2995,42 @@ public Builder mergeFrom( case 0: done = true; break; - case 10: - { - io.temporal.omes.KitchenSink.ClientAction m = - input.readMessage( - io.temporal.omes.KitchenSink.ClientAction.parser(), extensionRegistry); - if (actionsBuilder_ == null) { - ensureActionsIsMutable(); - actions_.add(m); - } else { - actionsBuilder_.addMessage(m); - } - break; - } // case 10 - case 16: - { - concurrent_ = input.readBool(); - bitField0_ |= 0x00000002; - break; - } // case 16 - case 26: - { - input.readMessage(getWaitAtEndFieldBuilder().getBuilder(), extensionRegistry); - bitField0_ |= 0x00000004; - break; - } // case 26 - case 32: - { - waitForCurrentRunToFinishAtEnd_ = input.readBool(); - bitField0_ |= 0x00000008; - break; - } // case 32 - default: - { - if (!super.parseUnknownField(input, extensionRegistry, tag)) { - done = true; // was an endgroup tag - } - break; - } // default: + case 10: { + io.temporal.omes.KitchenSink.ClientAction m = + input.readMessage( + io.temporal.omes.KitchenSink.ClientAction.parser(), + extensionRegistry); + if (actionsBuilder_ == null) { + ensureActionsIsMutable(); + actions_.add(m); + } else { + actionsBuilder_.addMessage(m); + } + break; + } // case 10 + case 16: { + concurrent_ = input.readBool(); + bitField0_ |= 0x00000002; + break; + } // case 16 + case 26: { + input.readMessage( + getWaitAtEndFieldBuilder().getBuilder(), + extensionRegistry); + bitField0_ |= 0x00000004; + break; + } // case 26 + case 32: { + waitForCurrentRunToFinishAtEnd_ = input.readBool(); + bitField0_ |= 0x00000008; + break; + } // case 32 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -3154,26 +3040,23 @@ public Builder mergeFrom( } // finally return this; } - private int bitField0_; private java.util.List actions_ = - java.util.Collections.emptyList(); - + java.util.Collections.emptyList(); private void ensureActionsIsMutable() { if (!((bitField0_ & 0x00000001) != 0)) { actions_ = new java.util.ArrayList(actions_); bitField0_ |= 0x00000001; - } + } } private com.google.protobuf.RepeatedFieldBuilderV3< - io.temporal.omes.KitchenSink.ClientAction, - io.temporal.omes.KitchenSink.ClientAction.Builder, - io.temporal.omes.KitchenSink.ClientActionOrBuilder> - actionsBuilder_; + io.temporal.omes.KitchenSink.ClientAction, io.temporal.omes.KitchenSink.ClientAction.Builder, io.temporal.omes.KitchenSink.ClientActionOrBuilder> actionsBuilder_; - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ public java.util.List getActionsList() { if (actionsBuilder_ == null) { return java.util.Collections.unmodifiableList(actions_); @@ -3181,7 +3064,9 @@ public java.util.List getActionsList( return actionsBuilder_.getMessageList(); } } - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ public int getActionsCount() { if (actionsBuilder_ == null) { return actions_.size(); @@ -3189,7 +3074,9 @@ public int getActionsCount() { return actionsBuilder_.getCount(); } } - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ public io.temporal.omes.KitchenSink.ClientAction getActions(int index) { if (actionsBuilder_ == null) { return actions_.get(index); @@ -3197,8 +3084,11 @@ public io.temporal.omes.KitchenSink.ClientAction getActions(int index) { return actionsBuilder_.getMessage(index); } } - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ - public Builder setActions(int index, io.temporal.omes.KitchenSink.ClientAction value) { + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ + public Builder setActions( + int index, io.temporal.omes.KitchenSink.ClientAction value) { if (actionsBuilder_ == null) { if (value == null) { throw new NullPointerException(); @@ -3211,7 +3101,9 @@ public Builder setActions(int index, io.temporal.omes.KitchenSink.ClientAction v } return this; } - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ public Builder setActions( int index, io.temporal.omes.KitchenSink.ClientAction.Builder builderForValue) { if (actionsBuilder_ == null) { @@ -3223,7 +3115,9 @@ public Builder setActions( } return this; } - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ public Builder addActions(io.temporal.omes.KitchenSink.ClientAction value) { if (actionsBuilder_ == null) { if (value == null) { @@ -3237,8 +3131,11 @@ public Builder addActions(io.temporal.omes.KitchenSink.ClientAction value) { } return this; } - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ - public Builder addActions(int index, io.temporal.omes.KitchenSink.ClientAction value) { + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ + public Builder addActions( + int index, io.temporal.omes.KitchenSink.ClientAction value) { if (actionsBuilder_ == null) { if (value == null) { throw new NullPointerException(); @@ -3251,8 +3148,11 @@ public Builder addActions(int index, io.temporal.omes.KitchenSink.ClientAction v } return this; } - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ - public Builder addActions(io.temporal.omes.KitchenSink.ClientAction.Builder builderForValue) { + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ + public Builder addActions( + io.temporal.omes.KitchenSink.ClientAction.Builder builderForValue) { if (actionsBuilder_ == null) { ensureActionsIsMutable(); actions_.add(builderForValue.build()); @@ -3262,7 +3162,9 @@ public Builder addActions(io.temporal.omes.KitchenSink.ClientAction.Builder buil } return this; } - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ public Builder addActions( int index, io.temporal.omes.KitchenSink.ClientAction.Builder builderForValue) { if (actionsBuilder_ == null) { @@ -3274,19 +3176,24 @@ public Builder addActions( } return this; } - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ public Builder addAllActions( java.lang.Iterable values) { if (actionsBuilder_ == null) { ensureActionsIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll(values, actions_); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, actions_); onChanged(); } else { actionsBuilder_.addAllMessages(values); } return this; } - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ public Builder clearActions() { if (actionsBuilder_ == null) { actions_ = java.util.Collections.emptyList(); @@ -3297,7 +3204,9 @@ public Builder clearActions() { } return this; } - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ public Builder removeActions(int index) { if (actionsBuilder_ == null) { ensureActionsIsMutable(); @@ -3308,64 +3217,74 @@ public Builder removeActions(int index) { } return this; } - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ - public io.temporal.omes.KitchenSink.ClientAction.Builder getActionsBuilder(int index) { + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ + public io.temporal.omes.KitchenSink.ClientAction.Builder getActionsBuilder( + int index) { return getActionsFieldBuilder().getBuilder(index); } - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ - public io.temporal.omes.KitchenSink.ClientActionOrBuilder getActionsOrBuilder(int index) { + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ + public io.temporal.omes.KitchenSink.ClientActionOrBuilder getActionsOrBuilder( + int index) { if (actionsBuilder_ == null) { - return actions_.get(index); - } else { + return actions_.get(index); } else { return actionsBuilder_.getMessageOrBuilder(index); } } - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ - public java.util.List - getActionsOrBuilderList() { + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ + public java.util.List + getActionsOrBuilderList() { if (actionsBuilder_ != null) { return actionsBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(actions_); } } - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ public io.temporal.omes.KitchenSink.ClientAction.Builder addActionsBuilder() { - return getActionsFieldBuilder() - .addBuilder(io.temporal.omes.KitchenSink.ClientAction.getDefaultInstance()); + return getActionsFieldBuilder().addBuilder( + io.temporal.omes.KitchenSink.ClientAction.getDefaultInstance()); } - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ - public io.temporal.omes.KitchenSink.ClientAction.Builder addActionsBuilder(int index) { - return getActionsFieldBuilder() - .addBuilder(index, io.temporal.omes.KitchenSink.ClientAction.getDefaultInstance()); + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ + public io.temporal.omes.KitchenSink.ClientAction.Builder addActionsBuilder( + int index) { + return getActionsFieldBuilder().addBuilder( + index, io.temporal.omes.KitchenSink.ClientAction.getDefaultInstance()); } - /** repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; */ - public java.util.List - getActionsBuilderList() { + /** + * repeated .temporal.omes.kitchen_sink.ClientAction actions = 1; + */ + public java.util.List + getActionsBuilderList() { return getActionsFieldBuilder().getBuilderList(); } - private com.google.protobuf.RepeatedFieldBuilderV3< - io.temporal.omes.KitchenSink.ClientAction, - io.temporal.omes.KitchenSink.ClientAction.Builder, - io.temporal.omes.KitchenSink.ClientActionOrBuilder> + io.temporal.omes.KitchenSink.ClientAction, io.temporal.omes.KitchenSink.ClientAction.Builder, io.temporal.omes.KitchenSink.ClientActionOrBuilder> getActionsFieldBuilder() { if (actionsBuilder_ == null) { - actionsBuilder_ = - new com.google.protobuf.RepeatedFieldBuilderV3< - io.temporal.omes.KitchenSink.ClientAction, - io.temporal.omes.KitchenSink.ClientAction.Builder, - io.temporal.omes.KitchenSink.ClientActionOrBuilder>( - actions_, ((bitField0_ & 0x00000001) != 0), getParentForChildren(), isClean()); + actionsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + io.temporal.omes.KitchenSink.ClientAction, io.temporal.omes.KitchenSink.ClientAction.Builder, io.temporal.omes.KitchenSink.ClientActionOrBuilder>( + actions_, + ((bitField0_ & 0x00000001) != 0), + getParentForChildren(), + isClean()); actions_ = null; } return actionsBuilder_; } - private boolean concurrent_; + private boolean concurrent_ ; /** * bool concurrent = 2; - * * @return The concurrent. */ @java.lang.Override @@ -3374,7 +3293,6 @@ public boolean getConcurrent() { } /** * bool concurrent = 2; - * * @param value The concurrent to set. * @return This builder for chaining. */ @@ -3387,7 +3305,6 @@ public Builder setConcurrent(boolean value) { } /** * bool concurrent = 2; - * * @return This builder for chaining. */ public Builder clearConcurrent() { @@ -3399,49 +3316,36 @@ public Builder clearConcurrent() { private com.google.protobuf.Duration waitAtEnd_; private com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Duration, - com.google.protobuf.Duration.Builder, - com.google.protobuf.DurationOrBuilder> - waitAtEndBuilder_; + com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> waitAtEndBuilder_; /** - * - * *
        * Wait the specified amount of time at the end of the action set before proceeding to the next
        * (if there is one, if not, ignored).
        * 
* * .google.protobuf.Duration wait_at_end = 3; - * * @return Whether the waitAtEnd field is set. */ public boolean hasWaitAtEnd() { return ((bitField0_ & 0x00000004) != 0); } /** - * - * *
        * Wait the specified amount of time at the end of the action set before proceeding to the next
        * (if there is one, if not, ignored).
        * 
* * .google.protobuf.Duration wait_at_end = 3; - * * @return The waitAtEnd. */ public com.google.protobuf.Duration getWaitAtEnd() { if (waitAtEndBuilder_ == null) { - return waitAtEnd_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : waitAtEnd_; + return waitAtEnd_ == null ? com.google.protobuf.Duration.getDefaultInstance() : waitAtEnd_; } else { return waitAtEndBuilder_.getMessage(); } } /** - * - * *
        * Wait the specified amount of time at the end of the action set before proceeding to the next
        * (if there is one, if not, ignored).
@@ -3463,8 +3367,6 @@ public Builder setWaitAtEnd(com.google.protobuf.Duration value) {
         return this;
       }
       /**
-       *
-       *
        * 
        * Wait the specified amount of time at the end of the action set before proceeding to the next
        * (if there is one, if not, ignored).
@@ -3472,7 +3374,8 @@ public Builder setWaitAtEnd(com.google.protobuf.Duration value) {
        *
        * .google.protobuf.Duration wait_at_end = 3;
        */
-      public Builder setWaitAtEnd(com.google.protobuf.Duration.Builder builderForValue) {
+      public Builder setWaitAtEnd(
+          com.google.protobuf.Duration.Builder builderForValue) {
         if (waitAtEndBuilder_ == null) {
           waitAtEnd_ = builderForValue.build();
         } else {
@@ -3483,8 +3386,6 @@ public Builder setWaitAtEnd(com.google.protobuf.Duration.Builder builderForValue
         return this;
       }
       /**
-       *
-       *
        * 
        * Wait the specified amount of time at the end of the action set before proceeding to the next
        * (if there is one, if not, ignored).
@@ -3494,9 +3395,9 @@ public Builder setWaitAtEnd(com.google.protobuf.Duration.Builder builderForValue
        */
       public Builder mergeWaitAtEnd(com.google.protobuf.Duration value) {
         if (waitAtEndBuilder_ == null) {
-          if (((bitField0_ & 0x00000004) != 0)
-              && waitAtEnd_ != null
-              && waitAtEnd_ != com.google.protobuf.Duration.getDefaultInstance()) {
+          if (((bitField0_ & 0x00000004) != 0) &&
+            waitAtEnd_ != null &&
+            waitAtEnd_ != com.google.protobuf.Duration.getDefaultInstance()) {
             getWaitAtEndBuilder().mergeFrom(value);
           } else {
             waitAtEnd_ = value;
@@ -3511,8 +3412,6 @@ public Builder mergeWaitAtEnd(com.google.protobuf.Duration value) {
         return this;
       }
       /**
-       *
-       *
        * 
        * Wait the specified amount of time at the end of the action set before proceeding to the next
        * (if there is one, if not, ignored).
@@ -3531,8 +3430,6 @@ public Builder clearWaitAtEnd() {
         return this;
       }
       /**
-       *
-       *
        * 
        * Wait the specified amount of time at the end of the action set before proceeding to the next
        * (if there is one, if not, ignored).
@@ -3546,8 +3443,6 @@ public com.google.protobuf.Duration.Builder getWaitAtEndBuilder() {
         return getWaitAtEndFieldBuilder().getBuilder();
       }
       /**
-       *
-       *
        * 
        * Wait the specified amount of time at the end of the action set before proceeding to the next
        * (if there is one, if not, ignored).
@@ -3559,14 +3454,11 @@ public com.google.protobuf.DurationOrBuilder getWaitAtEndOrBuilder() {
         if (waitAtEndBuilder_ != null) {
           return waitAtEndBuilder_.getMessageOrBuilder();
         } else {
-          return waitAtEnd_ == null
-              ? com.google.protobuf.Duration.getDefaultInstance()
-              : waitAtEnd_;
+          return waitAtEnd_ == null ?
+              com.google.protobuf.Duration.getDefaultInstance() : waitAtEnd_;
         }
       }
       /**
-       *
-       *
        * 
        * Wait the specified amount of time at the end of the action set before proceeding to the next
        * (if there is one, if not, ignored).
@@ -3575,33 +3467,27 @@ public com.google.protobuf.DurationOrBuilder getWaitAtEndOrBuilder() {
        * .google.protobuf.Duration wait_at_end = 3;
        */
       private com.google.protobuf.SingleFieldBuilderV3<
-              com.google.protobuf.Duration,
-              com.google.protobuf.Duration.Builder,
-              com.google.protobuf.DurationOrBuilder>
+          com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> 
           getWaitAtEndFieldBuilder() {
         if (waitAtEndBuilder_ == null) {
-          waitAtEndBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  com.google.protobuf.Duration,
-                  com.google.protobuf.Duration.Builder,
-                  com.google.protobuf.DurationOrBuilder>(
-                  getWaitAtEnd(), getParentForChildren(), isClean());
+          waitAtEndBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder>(
+                  getWaitAtEnd(),
+                  getParentForChildren(),
+                  isClean());
           waitAtEnd_ = null;
         }
         return waitAtEndBuilder_;
       }
 
-      private boolean waitForCurrentRunToFinishAtEnd_;
+      private boolean waitForCurrentRunToFinishAtEnd_ ;
       /**
-       *
-       *
        * 
        * If set, the client should wait for the current run to end before proceeding (IE: the workflow
        * is going to continue-as-new).
        * 
* * bool wait_for_current_run_to_finish_at_end = 4; - * * @return The waitForCurrentRunToFinishAtEnd. */ @java.lang.Override @@ -3609,15 +3495,12 @@ public boolean getWaitForCurrentRunToFinishAtEnd() { return waitForCurrentRunToFinishAtEnd_; } /** - * - * *
        * If set, the client should wait for the current run to end before proceeding (IE: the workflow
        * is going to continue-as-new).
        * 
* * bool wait_for_current_run_to_finish_at_end = 4; - * * @param value The waitForCurrentRunToFinishAtEnd to set. * @return This builder for chaining. */ @@ -3629,15 +3512,12 @@ public Builder setWaitForCurrentRunToFinishAtEnd(boolean value) { return this; } /** - * - * *
        * If set, the client should wait for the current run to end before proceeding (IE: the workflow
        * is going to continue-as-new).
        * 
* * bool wait_for_current_run_to_finish_at_end = 4; - * * @return This builder for chaining. */ public Builder clearWaitForCurrentRunToFinishAtEnd() { @@ -3646,7 +3526,6 @@ public Builder clearWaitForCurrentRunToFinishAtEnd() { onChanged(); return this; } - @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -3659,12 +3538,12 @@ public final Builder mergeUnknownFields( return super.mergeUnknownFields(unknownFields); } + // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.ClientActionSet) } // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.ClientActionSet) private static final io.temporal.omes.KitchenSink.ClientActionSet DEFAULT_INSTANCE; - static { DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.ClientActionSet(); } @@ -3673,28 +3552,27 @@ public static io.temporal.omes.KitchenSink.ClientActionSet getDefaultInstance() return DEFAULT_INSTANCE; } - private static final com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser() { - @java.lang.Override - public ClientActionSet parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException() - .setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public ClientActionSet parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; public static com.google.protobuf.Parser parser() { return PARSER; @@ -3709,117 +3587,115 @@ public com.google.protobuf.Parser getParserForType() { public io.temporal.omes.KitchenSink.ClientActionSet getDefaultInstanceForType() { return DEFAULT_INSTANCE; } + } - public interface ClientActionOrBuilder - extends + public interface ClientActionOrBuilder extends // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.ClientAction) com.google.protobuf.MessageOrBuilder { /** * .temporal.omes.kitchen_sink.DoSignal do_signal = 1; - * * @return Whether the doSignal field is set. */ boolean hasDoSignal(); /** * .temporal.omes.kitchen_sink.DoSignal do_signal = 1; - * * @return The doSignal. */ io.temporal.omes.KitchenSink.DoSignal getDoSignal(); - /** .temporal.omes.kitchen_sink.DoSignal do_signal = 1; */ + /** + * .temporal.omes.kitchen_sink.DoSignal do_signal = 1; + */ io.temporal.omes.KitchenSink.DoSignalOrBuilder getDoSignalOrBuilder(); /** * .temporal.omes.kitchen_sink.DoQuery do_query = 2; - * * @return Whether the doQuery field is set. */ boolean hasDoQuery(); /** * .temporal.omes.kitchen_sink.DoQuery do_query = 2; - * * @return The doQuery. */ io.temporal.omes.KitchenSink.DoQuery getDoQuery(); - /** .temporal.omes.kitchen_sink.DoQuery do_query = 2; */ + /** + * .temporal.omes.kitchen_sink.DoQuery do_query = 2; + */ io.temporal.omes.KitchenSink.DoQueryOrBuilder getDoQueryOrBuilder(); /** * .temporal.omes.kitchen_sink.DoUpdate do_update = 3; - * * @return Whether the doUpdate field is set. */ boolean hasDoUpdate(); /** * .temporal.omes.kitchen_sink.DoUpdate do_update = 3; - * * @return The doUpdate. */ io.temporal.omes.KitchenSink.DoUpdate getDoUpdate(); - /** .temporal.omes.kitchen_sink.DoUpdate do_update = 3; */ + /** + * .temporal.omes.kitchen_sink.DoUpdate do_update = 3; + */ io.temporal.omes.KitchenSink.DoUpdateOrBuilder getDoUpdateOrBuilder(); /** * .temporal.omes.kitchen_sink.ClientActionSet nested_actions = 4; - * * @return Whether the nestedActions field is set. */ boolean hasNestedActions(); /** * .temporal.omes.kitchen_sink.ClientActionSet nested_actions = 4; - * * @return The nestedActions. */ io.temporal.omes.KitchenSink.ClientActionSet getNestedActions(); - /** .temporal.omes.kitchen_sink.ClientActionSet nested_actions = 4; */ + /** + * .temporal.omes.kitchen_sink.ClientActionSet nested_actions = 4; + */ io.temporal.omes.KitchenSink.ClientActionSetOrBuilder getNestedActionsOrBuilder(); io.temporal.omes.KitchenSink.ClientAction.VariantCase getVariantCase(); } - /** Protobuf type {@code temporal.omes.kitchen_sink.ClientAction} */ - public static final class ClientAction extends com.google.protobuf.GeneratedMessageV3 - implements + /** + * Protobuf type {@code temporal.omes.kitchen_sink.ClientAction} + */ + public static final class ClientAction extends + com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.ClientAction) ClientActionOrBuilder { - private static final long serialVersionUID = 0L; + private static final long serialVersionUID = 0L; // Use ClientAction.newBuilder() to construct. private ClientAction(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } - - private ClientAction() {} + private ClientAction() { + } @java.lang.Override @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { return new ClientAction(); } - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ClientAction_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ClientAction_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ClientAction_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ClientAction_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.ClientAction.class, - io.temporal.omes.KitchenSink.ClientAction.Builder.class); + io.temporal.omes.KitchenSink.ClientAction.class, io.temporal.omes.KitchenSink.ClientAction.Builder.class); } private int variantCase_ = 0; - @SuppressWarnings("serial") private java.lang.Object variant_; - public enum VariantCase - implements - com.google.protobuf.Internal.EnumLite, + implements com.google.protobuf.Internal.EnumLite, com.google.protobuf.AbstractMessage.InternalOneOfEnum { DO_SIGNAL(1), DO_QUERY(2), @@ -3827,7 +3703,6 @@ public enum VariantCase NESTED_ACTIONS(4), VARIANT_NOT_SET(0); private final int value; - private VariantCase(int value) { this.value = value; } @@ -3843,34 +3718,28 @@ public static VariantCase valueOf(int value) { public static VariantCase forNumber(int value) { switch (value) { - case 1: - return DO_SIGNAL; - case 2: - return DO_QUERY; - case 3: - return DO_UPDATE; - case 4: - return NESTED_ACTIONS; - case 0: - return VARIANT_NOT_SET; - default: - return null; + case 1: return DO_SIGNAL; + case 2: return DO_QUERY; + case 3: return DO_UPDATE; + case 4: return NESTED_ACTIONS; + case 0: return VARIANT_NOT_SET; + default: return null; } } - public int getNumber() { return this.value; } }; - public VariantCase getVariantCase() { - return VariantCase.forNumber(variantCase_); + public VariantCase + getVariantCase() { + return VariantCase.forNumber( + variantCase_); } public static final int DO_SIGNAL_FIELD_NUMBER = 1; /** * .temporal.omes.kitchen_sink.DoSignal do_signal = 1; - * * @return Whether the doSignal field is set. */ @java.lang.Override @@ -3879,21 +3748,22 @@ public boolean hasDoSignal() { } /** * .temporal.omes.kitchen_sink.DoSignal do_signal = 1; - * * @return The doSignal. */ @java.lang.Override public io.temporal.omes.KitchenSink.DoSignal getDoSignal() { if (variantCase_ == 1) { - return (io.temporal.omes.KitchenSink.DoSignal) variant_; + return (io.temporal.omes.KitchenSink.DoSignal) variant_; } return io.temporal.omes.KitchenSink.DoSignal.getDefaultInstance(); } - /** .temporal.omes.kitchen_sink.DoSignal do_signal = 1; */ + /** + * .temporal.omes.kitchen_sink.DoSignal do_signal = 1; + */ @java.lang.Override public io.temporal.omes.KitchenSink.DoSignalOrBuilder getDoSignalOrBuilder() { if (variantCase_ == 1) { - return (io.temporal.omes.KitchenSink.DoSignal) variant_; + return (io.temporal.omes.KitchenSink.DoSignal) variant_; } return io.temporal.omes.KitchenSink.DoSignal.getDefaultInstance(); } @@ -3901,7 +3771,6 @@ public io.temporal.omes.KitchenSink.DoSignalOrBuilder getDoSignalOrBuilder() { public static final int DO_QUERY_FIELD_NUMBER = 2; /** * .temporal.omes.kitchen_sink.DoQuery do_query = 2; - * * @return Whether the doQuery field is set. */ @java.lang.Override @@ -3910,21 +3779,22 @@ public boolean hasDoQuery() { } /** * .temporal.omes.kitchen_sink.DoQuery do_query = 2; - * * @return The doQuery. */ @java.lang.Override public io.temporal.omes.KitchenSink.DoQuery getDoQuery() { if (variantCase_ == 2) { - return (io.temporal.omes.KitchenSink.DoQuery) variant_; + return (io.temporal.omes.KitchenSink.DoQuery) variant_; } return io.temporal.omes.KitchenSink.DoQuery.getDefaultInstance(); } - /** .temporal.omes.kitchen_sink.DoQuery do_query = 2; */ + /** + * .temporal.omes.kitchen_sink.DoQuery do_query = 2; + */ @java.lang.Override public io.temporal.omes.KitchenSink.DoQueryOrBuilder getDoQueryOrBuilder() { if (variantCase_ == 2) { - return (io.temporal.omes.KitchenSink.DoQuery) variant_; + return (io.temporal.omes.KitchenSink.DoQuery) variant_; } return io.temporal.omes.KitchenSink.DoQuery.getDefaultInstance(); } @@ -3932,7 +3802,6 @@ public io.temporal.omes.KitchenSink.DoQueryOrBuilder getDoQueryOrBuilder() { public static final int DO_UPDATE_FIELD_NUMBER = 3; /** * .temporal.omes.kitchen_sink.DoUpdate do_update = 3; - * * @return Whether the doUpdate field is set. */ @java.lang.Override @@ -3941,21 +3810,22 @@ public boolean hasDoUpdate() { } /** * .temporal.omes.kitchen_sink.DoUpdate do_update = 3; - * * @return The doUpdate. */ @java.lang.Override public io.temporal.omes.KitchenSink.DoUpdate getDoUpdate() { if (variantCase_ == 3) { - return (io.temporal.omes.KitchenSink.DoUpdate) variant_; + return (io.temporal.omes.KitchenSink.DoUpdate) variant_; } return io.temporal.omes.KitchenSink.DoUpdate.getDefaultInstance(); } - /** .temporal.omes.kitchen_sink.DoUpdate do_update = 3; */ + /** + * .temporal.omes.kitchen_sink.DoUpdate do_update = 3; + */ @java.lang.Override public io.temporal.omes.KitchenSink.DoUpdateOrBuilder getDoUpdateOrBuilder() { if (variantCase_ == 3) { - return (io.temporal.omes.KitchenSink.DoUpdate) variant_; + return (io.temporal.omes.KitchenSink.DoUpdate) variant_; } return io.temporal.omes.KitchenSink.DoUpdate.getDefaultInstance(); } @@ -3963,7 +3833,6 @@ public io.temporal.omes.KitchenSink.DoUpdateOrBuilder getDoUpdateOrBuilder() { public static final int NESTED_ACTIONS_FIELD_NUMBER = 4; /** * .temporal.omes.kitchen_sink.ClientActionSet nested_actions = 4; - * * @return Whether the nestedActions field is set. */ @java.lang.Override @@ -3972,27 +3841,27 @@ public boolean hasNestedActions() { } /** * .temporal.omes.kitchen_sink.ClientActionSet nested_actions = 4; - * * @return The nestedActions. */ @java.lang.Override public io.temporal.omes.KitchenSink.ClientActionSet getNestedActions() { if (variantCase_ == 4) { - return (io.temporal.omes.KitchenSink.ClientActionSet) variant_; + return (io.temporal.omes.KitchenSink.ClientActionSet) variant_; } return io.temporal.omes.KitchenSink.ClientActionSet.getDefaultInstance(); } - /** .temporal.omes.kitchen_sink.ClientActionSet nested_actions = 4; */ + /** + * .temporal.omes.kitchen_sink.ClientActionSet nested_actions = 4; + */ @java.lang.Override public io.temporal.omes.KitchenSink.ClientActionSetOrBuilder getNestedActionsOrBuilder() { if (variantCase_ == 4) { - return (io.temporal.omes.KitchenSink.ClientActionSet) variant_; + return (io.temporal.omes.KitchenSink.ClientActionSet) variant_; } return io.temporal.omes.KitchenSink.ClientActionSet.getDefaultInstance(); } private byte memoizedIsInitialized = -1; - @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; @@ -4004,7 +3873,8 @@ public final boolean isInitialized() { } @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { if (variantCase_ == 1) { output.writeMessage(1, (io.temporal.omes.KitchenSink.DoSignal) variant_); } @@ -4027,24 +3897,20 @@ public int getSerializedSize() { size = 0; if (variantCase_ == 1) { - size += - com.google.protobuf.CodedOutputStream.computeMessageSize( - 1, (io.temporal.omes.KitchenSink.DoSignal) variant_); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, (io.temporal.omes.KitchenSink.DoSignal) variant_); } if (variantCase_ == 2) { - size += - com.google.protobuf.CodedOutputStream.computeMessageSize( - 2, (io.temporal.omes.KitchenSink.DoQuery) variant_); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(2, (io.temporal.omes.KitchenSink.DoQuery) variant_); } if (variantCase_ == 3) { - size += - com.google.protobuf.CodedOutputStream.computeMessageSize( - 3, (io.temporal.omes.KitchenSink.DoUpdate) variant_); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(3, (io.temporal.omes.KitchenSink.DoUpdate) variant_); } if (variantCase_ == 4) { - size += - com.google.protobuf.CodedOutputStream.computeMessageSize( - 4, (io.temporal.omes.KitchenSink.ClientActionSet) variant_); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(4, (io.temporal.omes.KitchenSink.ClientActionSet) variant_); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; @@ -4054,27 +3920,30 @@ public int getSerializedSize() { @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { - return true; + return true; } if (!(obj instanceof io.temporal.omes.KitchenSink.ClientAction)) { return super.equals(obj); } - io.temporal.omes.KitchenSink.ClientAction other = - (io.temporal.omes.KitchenSink.ClientAction) obj; + io.temporal.omes.KitchenSink.ClientAction other = (io.temporal.omes.KitchenSink.ClientAction) obj; if (!getVariantCase().equals(other.getVariantCase())) return false; switch (variantCase_) { case 1: - if (!getDoSignal().equals(other.getDoSignal())) return false; + if (!getDoSignal() + .equals(other.getDoSignal())) return false; break; case 2: - if (!getDoQuery().equals(other.getDoQuery())) return false; + if (!getDoQuery() + .equals(other.getDoQuery())) return false; break; case 3: - if (!getDoUpdate().equals(other.getDoUpdate())) return false; + if (!getDoUpdate() + .equals(other.getDoUpdate())) return false; break; case 4: - if (!getNestedActions().equals(other.getNestedActions())) return false; + if (!getNestedActions() + .equals(other.getNestedActions())) return false; break; case 0: default: @@ -4115,94 +3984,90 @@ public int hashCode() { return hash; } - public static io.temporal.omes.KitchenSink.ClientAction parseFrom(java.nio.ByteBuffer data) + public static io.temporal.omes.KitchenSink.ClientAction parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.ClientAction parseFrom( - java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.ClientAction parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.ClientAction parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.ClientAction parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.ClientAction parseFrom( - byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.ClientAction parseFrom(java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.ClientAction parseFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.ClientAction parseDelimitedFrom( - java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + public static io.temporal.omes.KitchenSink.ClientAction parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); } public static io.temporal.omes.KitchenSink.ClientAction parseDelimitedFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.ClientAction parseFrom( - com.google.protobuf.CodedInputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.ClientAction parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override - public Builder newBuilderForType() { - return newBuilder(); - } - + public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(io.temporal.omes.KitchenSink.ClientAction prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } - @java.lang.Override public Builder toBuilder() { - return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override @@ -4211,34 +4076,36 @@ protected Builder newBuilderForType( Builder builder = new Builder(parent); return builder; } - /** Protobuf type {@code temporal.omes.kitchen_sink.ClientAction} */ - public static final class Builder - extends com.google.protobuf.GeneratedMessageV3.Builder - implements + /** + * Protobuf type {@code temporal.omes.kitchen_sink.ClientAction} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.ClientAction) io.temporal.omes.KitchenSink.ClientActionOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ClientAction_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ClientAction_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ClientAction_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ClientAction_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.ClientAction.class, - io.temporal.omes.KitchenSink.ClientAction.Builder.class); + io.temporal.omes.KitchenSink.ClientAction.class, io.temporal.omes.KitchenSink.ClientAction.Builder.class); } // Construct using io.temporal.omes.KitchenSink.ClientAction.newBuilder() - private Builder() {} + private Builder() { - private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); } + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } @java.lang.Override public Builder clear() { super.clear(); @@ -4261,9 +4128,9 @@ public Builder clear() { } @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ClientAction_descriptor; + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ClientAction_descriptor; } @java.lang.Override @@ -4282,11 +4149,8 @@ public io.temporal.omes.KitchenSink.ClientAction build() { @java.lang.Override public io.temporal.omes.KitchenSink.ClientAction buildPartial() { - io.temporal.omes.KitchenSink.ClientAction result = - new io.temporal.omes.KitchenSink.ClientAction(this); - if (bitField0_ != 0) { - buildPartial0(result); - } + io.temporal.omes.KitchenSink.ClientAction result = new io.temporal.omes.KitchenSink.ClientAction(this); + if (bitField0_ != 0) { buildPartial0(result); } buildPartialOneofs(result); onBuilt(); return result; @@ -4299,16 +4163,20 @@ private void buildPartial0(io.temporal.omes.KitchenSink.ClientAction result) { private void buildPartialOneofs(io.temporal.omes.KitchenSink.ClientAction result) { result.variantCase_ = variantCase_; result.variant_ = this.variant_; - if (variantCase_ == 1 && doSignalBuilder_ != null) { + if (variantCase_ == 1 && + doSignalBuilder_ != null) { result.variant_ = doSignalBuilder_.build(); } - if (variantCase_ == 2 && doQueryBuilder_ != null) { + if (variantCase_ == 2 && + doQueryBuilder_ != null) { result.variant_ = doQueryBuilder_.build(); } - if (variantCase_ == 3 && doUpdateBuilder_ != null) { + if (variantCase_ == 3 && + doUpdateBuilder_ != null) { result.variant_ = doUpdateBuilder_.build(); } - if (variantCase_ == 4 && nestedActionsBuilder_ != null) { + if (variantCase_ == 4 && + nestedActionsBuilder_ != null) { result.variant_ = nestedActionsBuilder_.build(); } } @@ -4317,41 +4185,38 @@ private void buildPartialOneofs(io.temporal.omes.KitchenSink.ClientAction result public Builder clone() { return super.clone(); } - @java.lang.Override public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.setField(field, value); } - @java.lang.Override - public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } - @java.lang.Override - public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } - @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, - int index, - java.lang.Object value) { + int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } - @java.lang.Override public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.addRepeatedField(field, value); } - @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.temporal.omes.KitchenSink.ClientAction) { - return mergeFrom((io.temporal.omes.KitchenSink.ClientAction) other); + return mergeFrom((io.temporal.omes.KitchenSink.ClientAction)other); } else { super.mergeFrom(other); return this; @@ -4361,30 +4226,25 @@ public Builder mergeFrom(com.google.protobuf.Message other) { public Builder mergeFrom(io.temporal.omes.KitchenSink.ClientAction other) { if (other == io.temporal.omes.KitchenSink.ClientAction.getDefaultInstance()) return this; switch (other.getVariantCase()) { - case DO_SIGNAL: - { - mergeDoSignal(other.getDoSignal()); - break; - } - case DO_QUERY: - { - mergeDoQuery(other.getDoQuery()); - break; - } - case DO_UPDATE: - { - mergeDoUpdate(other.getDoUpdate()); - break; - } - case NESTED_ACTIONS: - { - mergeNestedActions(other.getNestedActions()); - break; - } - case VARIANT_NOT_SET: - { - break; - } + case DO_SIGNAL: { + mergeDoSignal(other.getDoSignal()); + break; + } + case DO_QUERY: { + mergeDoQuery(other.getDoQuery()); + break; + } + case DO_UPDATE: { + mergeDoUpdate(other.getDoUpdate()); + break; + } + case NESTED_ACTIONS: { + mergeNestedActions(other.getNestedActions()); + break; + } + case VARIANT_NOT_SET: { + break; + } } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); @@ -4412,37 +4272,40 @@ public Builder mergeFrom( case 0: done = true; break; - case 10: - { - input.readMessage(getDoSignalFieldBuilder().getBuilder(), extensionRegistry); - variantCase_ = 1; - break; - } // case 10 - case 18: - { - input.readMessage(getDoQueryFieldBuilder().getBuilder(), extensionRegistry); - variantCase_ = 2; - break; - } // case 18 - case 26: - { - input.readMessage(getDoUpdateFieldBuilder().getBuilder(), extensionRegistry); - variantCase_ = 3; - break; - } // case 26 - case 34: - { - input.readMessage(getNestedActionsFieldBuilder().getBuilder(), extensionRegistry); - variantCase_ = 4; - break; - } // case 34 - default: - { - if (!super.parseUnknownField(input, extensionRegistry, tag)) { - done = true; // was an endgroup tag - } - break; - } // default: + case 10: { + input.readMessage( + getDoSignalFieldBuilder().getBuilder(), + extensionRegistry); + variantCase_ = 1; + break; + } // case 10 + case 18: { + input.readMessage( + getDoQueryFieldBuilder().getBuilder(), + extensionRegistry); + variantCase_ = 2; + break; + } // case 18 + case 26: { + input.readMessage( + getDoUpdateFieldBuilder().getBuilder(), + extensionRegistry); + variantCase_ = 3; + break; + } // case 26 + case 34: { + input.readMessage( + getNestedActionsFieldBuilder().getBuilder(), + extensionRegistry); + variantCase_ = 4; + break; + } // case 34 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -4452,12 +4315,12 @@ public Builder mergeFrom( } // finally return this; } - private int variantCase_ = 0; private java.lang.Object variant_; - - public VariantCase getVariantCase() { - return VariantCase.forNumber(variantCase_); + public VariantCase + getVariantCase() { + return VariantCase.forNumber( + variantCase_); } public Builder clearVariant() { @@ -4470,13 +4333,9 @@ public Builder clearVariant() { private int bitField0_; private com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.DoSignal, - io.temporal.omes.KitchenSink.DoSignal.Builder, - io.temporal.omes.KitchenSink.DoSignalOrBuilder> - doSignalBuilder_; + io.temporal.omes.KitchenSink.DoSignal, io.temporal.omes.KitchenSink.DoSignal.Builder, io.temporal.omes.KitchenSink.DoSignalOrBuilder> doSignalBuilder_; /** * .temporal.omes.kitchen_sink.DoSignal do_signal = 1; - * * @return Whether the doSignal field is set. */ @java.lang.Override @@ -4485,7 +4344,6 @@ public boolean hasDoSignal() { } /** * .temporal.omes.kitchen_sink.DoSignal do_signal = 1; - * * @return The doSignal. */ @java.lang.Override @@ -4502,7 +4360,9 @@ public io.temporal.omes.KitchenSink.DoSignal getDoSignal() { return io.temporal.omes.KitchenSink.DoSignal.getDefaultInstance(); } } - /** .temporal.omes.kitchen_sink.DoSignal do_signal = 1; */ + /** + * .temporal.omes.kitchen_sink.DoSignal do_signal = 1; + */ public Builder setDoSignal(io.temporal.omes.KitchenSink.DoSignal value) { if (doSignalBuilder_ == null) { if (value == null) { @@ -4516,8 +4376,11 @@ public Builder setDoSignal(io.temporal.omes.KitchenSink.DoSignal value) { variantCase_ = 1; return this; } - /** .temporal.omes.kitchen_sink.DoSignal do_signal = 1; */ - public Builder setDoSignal(io.temporal.omes.KitchenSink.DoSignal.Builder builderForValue) { + /** + * .temporal.omes.kitchen_sink.DoSignal do_signal = 1; + */ + public Builder setDoSignal( + io.temporal.omes.KitchenSink.DoSignal.Builder builderForValue) { if (doSignalBuilder_ == null) { variant_ = builderForValue.build(); onChanged(); @@ -4527,16 +4390,15 @@ public Builder setDoSignal(io.temporal.omes.KitchenSink.DoSignal.Builder builder variantCase_ = 1; return this; } - /** .temporal.omes.kitchen_sink.DoSignal do_signal = 1; */ + /** + * .temporal.omes.kitchen_sink.DoSignal do_signal = 1; + */ public Builder mergeDoSignal(io.temporal.omes.KitchenSink.DoSignal value) { if (doSignalBuilder_ == null) { - if (variantCase_ == 1 - && variant_ != io.temporal.omes.KitchenSink.DoSignal.getDefaultInstance()) { - variant_ = - io.temporal.omes.KitchenSink.DoSignal.newBuilder( - (io.temporal.omes.KitchenSink.DoSignal) variant_) - .mergeFrom(value) - .buildPartial(); + if (variantCase_ == 1 && + variant_ != io.temporal.omes.KitchenSink.DoSignal.getDefaultInstance()) { + variant_ = io.temporal.omes.KitchenSink.DoSignal.newBuilder((io.temporal.omes.KitchenSink.DoSignal) variant_) + .mergeFrom(value).buildPartial(); } else { variant_ = value; } @@ -4551,7 +4413,9 @@ public Builder mergeDoSignal(io.temporal.omes.KitchenSink.DoSignal value) { variantCase_ = 1; return this; } - /** .temporal.omes.kitchen_sink.DoSignal do_signal = 1; */ + /** + * .temporal.omes.kitchen_sink.DoSignal do_signal = 1; + */ public Builder clearDoSignal() { if (doSignalBuilder_ == null) { if (variantCase_ == 1) { @@ -4568,11 +4432,15 @@ public Builder clearDoSignal() { } return this; } - /** .temporal.omes.kitchen_sink.DoSignal do_signal = 1; */ + /** + * .temporal.omes.kitchen_sink.DoSignal do_signal = 1; + */ public io.temporal.omes.KitchenSink.DoSignal.Builder getDoSignalBuilder() { return getDoSignalFieldBuilder().getBuilder(); } - /** .temporal.omes.kitchen_sink.DoSignal do_signal = 1; */ + /** + * .temporal.omes.kitchen_sink.DoSignal do_signal = 1; + */ @java.lang.Override public io.temporal.omes.KitchenSink.DoSignalOrBuilder getDoSignalOrBuilder() { if ((variantCase_ == 1) && (doSignalBuilder_ != null)) { @@ -4584,21 +4452,18 @@ public io.temporal.omes.KitchenSink.DoSignalOrBuilder getDoSignalOrBuilder() { return io.temporal.omes.KitchenSink.DoSignal.getDefaultInstance(); } } - /** .temporal.omes.kitchen_sink.DoSignal do_signal = 1; */ + /** + * .temporal.omes.kitchen_sink.DoSignal do_signal = 1; + */ private com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.DoSignal, - io.temporal.omes.KitchenSink.DoSignal.Builder, - io.temporal.omes.KitchenSink.DoSignalOrBuilder> + io.temporal.omes.KitchenSink.DoSignal, io.temporal.omes.KitchenSink.DoSignal.Builder, io.temporal.omes.KitchenSink.DoSignalOrBuilder> getDoSignalFieldBuilder() { if (doSignalBuilder_ == null) { if (!(variantCase_ == 1)) { variant_ = io.temporal.omes.KitchenSink.DoSignal.getDefaultInstance(); } - doSignalBuilder_ = - new com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.DoSignal, - io.temporal.omes.KitchenSink.DoSignal.Builder, - io.temporal.omes.KitchenSink.DoSignalOrBuilder>( + doSignalBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + io.temporal.omes.KitchenSink.DoSignal, io.temporal.omes.KitchenSink.DoSignal.Builder, io.temporal.omes.KitchenSink.DoSignalOrBuilder>( (io.temporal.omes.KitchenSink.DoSignal) variant_, getParentForChildren(), isClean()); @@ -4610,13 +4475,9 @@ public io.temporal.omes.KitchenSink.DoSignalOrBuilder getDoSignalOrBuilder() { } private com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.DoQuery, - io.temporal.omes.KitchenSink.DoQuery.Builder, - io.temporal.omes.KitchenSink.DoQueryOrBuilder> - doQueryBuilder_; + io.temporal.omes.KitchenSink.DoQuery, io.temporal.omes.KitchenSink.DoQuery.Builder, io.temporal.omes.KitchenSink.DoQueryOrBuilder> doQueryBuilder_; /** * .temporal.omes.kitchen_sink.DoQuery do_query = 2; - * * @return Whether the doQuery field is set. */ @java.lang.Override @@ -4625,7 +4486,6 @@ public boolean hasDoQuery() { } /** * .temporal.omes.kitchen_sink.DoQuery do_query = 2; - * * @return The doQuery. */ @java.lang.Override @@ -4642,7 +4502,9 @@ public io.temporal.omes.KitchenSink.DoQuery getDoQuery() { return io.temporal.omes.KitchenSink.DoQuery.getDefaultInstance(); } } - /** .temporal.omes.kitchen_sink.DoQuery do_query = 2; */ + /** + * .temporal.omes.kitchen_sink.DoQuery do_query = 2; + */ public Builder setDoQuery(io.temporal.omes.KitchenSink.DoQuery value) { if (doQueryBuilder_ == null) { if (value == null) { @@ -4656,8 +4518,11 @@ public Builder setDoQuery(io.temporal.omes.KitchenSink.DoQuery value) { variantCase_ = 2; return this; } - /** .temporal.omes.kitchen_sink.DoQuery do_query = 2; */ - public Builder setDoQuery(io.temporal.omes.KitchenSink.DoQuery.Builder builderForValue) { + /** + * .temporal.omes.kitchen_sink.DoQuery do_query = 2; + */ + public Builder setDoQuery( + io.temporal.omes.KitchenSink.DoQuery.Builder builderForValue) { if (doQueryBuilder_ == null) { variant_ = builderForValue.build(); onChanged(); @@ -4667,16 +4532,15 @@ public Builder setDoQuery(io.temporal.omes.KitchenSink.DoQuery.Builder builderFo variantCase_ = 2; return this; } - /** .temporal.omes.kitchen_sink.DoQuery do_query = 2; */ + /** + * .temporal.omes.kitchen_sink.DoQuery do_query = 2; + */ public Builder mergeDoQuery(io.temporal.omes.KitchenSink.DoQuery value) { if (doQueryBuilder_ == null) { - if (variantCase_ == 2 - && variant_ != io.temporal.omes.KitchenSink.DoQuery.getDefaultInstance()) { - variant_ = - io.temporal.omes.KitchenSink.DoQuery.newBuilder( - (io.temporal.omes.KitchenSink.DoQuery) variant_) - .mergeFrom(value) - .buildPartial(); + if (variantCase_ == 2 && + variant_ != io.temporal.omes.KitchenSink.DoQuery.getDefaultInstance()) { + variant_ = io.temporal.omes.KitchenSink.DoQuery.newBuilder((io.temporal.omes.KitchenSink.DoQuery) variant_) + .mergeFrom(value).buildPartial(); } else { variant_ = value; } @@ -4691,7 +4555,9 @@ public Builder mergeDoQuery(io.temporal.omes.KitchenSink.DoQuery value) { variantCase_ = 2; return this; } - /** .temporal.omes.kitchen_sink.DoQuery do_query = 2; */ + /** + * .temporal.omes.kitchen_sink.DoQuery do_query = 2; + */ public Builder clearDoQuery() { if (doQueryBuilder_ == null) { if (variantCase_ == 2) { @@ -4708,11 +4574,15 @@ public Builder clearDoQuery() { } return this; } - /** .temporal.omes.kitchen_sink.DoQuery do_query = 2; */ + /** + * .temporal.omes.kitchen_sink.DoQuery do_query = 2; + */ public io.temporal.omes.KitchenSink.DoQuery.Builder getDoQueryBuilder() { return getDoQueryFieldBuilder().getBuilder(); } - /** .temporal.omes.kitchen_sink.DoQuery do_query = 2; */ + /** + * .temporal.omes.kitchen_sink.DoQuery do_query = 2; + */ @java.lang.Override public io.temporal.omes.KitchenSink.DoQueryOrBuilder getDoQueryOrBuilder() { if ((variantCase_ == 2) && (doQueryBuilder_ != null)) { @@ -4724,21 +4594,18 @@ public io.temporal.omes.KitchenSink.DoQueryOrBuilder getDoQueryOrBuilder() { return io.temporal.omes.KitchenSink.DoQuery.getDefaultInstance(); } } - /** .temporal.omes.kitchen_sink.DoQuery do_query = 2; */ + /** + * .temporal.omes.kitchen_sink.DoQuery do_query = 2; + */ private com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.DoQuery, - io.temporal.omes.KitchenSink.DoQuery.Builder, - io.temporal.omes.KitchenSink.DoQueryOrBuilder> + io.temporal.omes.KitchenSink.DoQuery, io.temporal.omes.KitchenSink.DoQuery.Builder, io.temporal.omes.KitchenSink.DoQueryOrBuilder> getDoQueryFieldBuilder() { if (doQueryBuilder_ == null) { if (!(variantCase_ == 2)) { variant_ = io.temporal.omes.KitchenSink.DoQuery.getDefaultInstance(); } - doQueryBuilder_ = - new com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.DoQuery, - io.temporal.omes.KitchenSink.DoQuery.Builder, - io.temporal.omes.KitchenSink.DoQueryOrBuilder>( + doQueryBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + io.temporal.omes.KitchenSink.DoQuery, io.temporal.omes.KitchenSink.DoQuery.Builder, io.temporal.omes.KitchenSink.DoQueryOrBuilder>( (io.temporal.omes.KitchenSink.DoQuery) variant_, getParentForChildren(), isClean()); @@ -4750,13 +4617,9 @@ public io.temporal.omes.KitchenSink.DoQueryOrBuilder getDoQueryOrBuilder() { } private com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.DoUpdate, - io.temporal.omes.KitchenSink.DoUpdate.Builder, - io.temporal.omes.KitchenSink.DoUpdateOrBuilder> - doUpdateBuilder_; + io.temporal.omes.KitchenSink.DoUpdate, io.temporal.omes.KitchenSink.DoUpdate.Builder, io.temporal.omes.KitchenSink.DoUpdateOrBuilder> doUpdateBuilder_; /** * .temporal.omes.kitchen_sink.DoUpdate do_update = 3; - * * @return Whether the doUpdate field is set. */ @java.lang.Override @@ -4765,7 +4628,6 @@ public boolean hasDoUpdate() { } /** * .temporal.omes.kitchen_sink.DoUpdate do_update = 3; - * * @return The doUpdate. */ @java.lang.Override @@ -4782,7 +4644,9 @@ public io.temporal.omes.KitchenSink.DoUpdate getDoUpdate() { return io.temporal.omes.KitchenSink.DoUpdate.getDefaultInstance(); } } - /** .temporal.omes.kitchen_sink.DoUpdate do_update = 3; */ + /** + * .temporal.omes.kitchen_sink.DoUpdate do_update = 3; + */ public Builder setDoUpdate(io.temporal.omes.KitchenSink.DoUpdate value) { if (doUpdateBuilder_ == null) { if (value == null) { @@ -4796,8 +4660,11 @@ public Builder setDoUpdate(io.temporal.omes.KitchenSink.DoUpdate value) { variantCase_ = 3; return this; } - /** .temporal.omes.kitchen_sink.DoUpdate do_update = 3; */ - public Builder setDoUpdate(io.temporal.omes.KitchenSink.DoUpdate.Builder builderForValue) { + /** + * .temporal.omes.kitchen_sink.DoUpdate do_update = 3; + */ + public Builder setDoUpdate( + io.temporal.omes.KitchenSink.DoUpdate.Builder builderForValue) { if (doUpdateBuilder_ == null) { variant_ = builderForValue.build(); onChanged(); @@ -4807,16 +4674,15 @@ public Builder setDoUpdate(io.temporal.omes.KitchenSink.DoUpdate.Builder builder variantCase_ = 3; return this; } - /** .temporal.omes.kitchen_sink.DoUpdate do_update = 3; */ + /** + * .temporal.omes.kitchen_sink.DoUpdate do_update = 3; + */ public Builder mergeDoUpdate(io.temporal.omes.KitchenSink.DoUpdate value) { if (doUpdateBuilder_ == null) { - if (variantCase_ == 3 - && variant_ != io.temporal.omes.KitchenSink.DoUpdate.getDefaultInstance()) { - variant_ = - io.temporal.omes.KitchenSink.DoUpdate.newBuilder( - (io.temporal.omes.KitchenSink.DoUpdate) variant_) - .mergeFrom(value) - .buildPartial(); + if (variantCase_ == 3 && + variant_ != io.temporal.omes.KitchenSink.DoUpdate.getDefaultInstance()) { + variant_ = io.temporal.omes.KitchenSink.DoUpdate.newBuilder((io.temporal.omes.KitchenSink.DoUpdate) variant_) + .mergeFrom(value).buildPartial(); } else { variant_ = value; } @@ -4831,7 +4697,9 @@ public Builder mergeDoUpdate(io.temporal.omes.KitchenSink.DoUpdate value) { variantCase_ = 3; return this; } - /** .temporal.omes.kitchen_sink.DoUpdate do_update = 3; */ + /** + * .temporal.omes.kitchen_sink.DoUpdate do_update = 3; + */ public Builder clearDoUpdate() { if (doUpdateBuilder_ == null) { if (variantCase_ == 3) { @@ -4848,11 +4716,15 @@ public Builder clearDoUpdate() { } return this; } - /** .temporal.omes.kitchen_sink.DoUpdate do_update = 3; */ + /** + * .temporal.omes.kitchen_sink.DoUpdate do_update = 3; + */ public io.temporal.omes.KitchenSink.DoUpdate.Builder getDoUpdateBuilder() { return getDoUpdateFieldBuilder().getBuilder(); } - /** .temporal.omes.kitchen_sink.DoUpdate do_update = 3; */ + /** + * .temporal.omes.kitchen_sink.DoUpdate do_update = 3; + */ @java.lang.Override public io.temporal.omes.KitchenSink.DoUpdateOrBuilder getDoUpdateOrBuilder() { if ((variantCase_ == 3) && (doUpdateBuilder_ != null)) { @@ -4864,21 +4736,18 @@ public io.temporal.omes.KitchenSink.DoUpdateOrBuilder getDoUpdateOrBuilder() { return io.temporal.omes.KitchenSink.DoUpdate.getDefaultInstance(); } } - /** .temporal.omes.kitchen_sink.DoUpdate do_update = 3; */ + /** + * .temporal.omes.kitchen_sink.DoUpdate do_update = 3; + */ private com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.DoUpdate, - io.temporal.omes.KitchenSink.DoUpdate.Builder, - io.temporal.omes.KitchenSink.DoUpdateOrBuilder> + io.temporal.omes.KitchenSink.DoUpdate, io.temporal.omes.KitchenSink.DoUpdate.Builder, io.temporal.omes.KitchenSink.DoUpdateOrBuilder> getDoUpdateFieldBuilder() { if (doUpdateBuilder_ == null) { if (!(variantCase_ == 3)) { variant_ = io.temporal.omes.KitchenSink.DoUpdate.getDefaultInstance(); } - doUpdateBuilder_ = - new com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.DoUpdate, - io.temporal.omes.KitchenSink.DoUpdate.Builder, - io.temporal.omes.KitchenSink.DoUpdateOrBuilder>( + doUpdateBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + io.temporal.omes.KitchenSink.DoUpdate, io.temporal.omes.KitchenSink.DoUpdate.Builder, io.temporal.omes.KitchenSink.DoUpdateOrBuilder>( (io.temporal.omes.KitchenSink.DoUpdate) variant_, getParentForChildren(), isClean()); @@ -4890,13 +4759,9 @@ public io.temporal.omes.KitchenSink.DoUpdateOrBuilder getDoUpdateOrBuilder() { } private com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.ClientActionSet, - io.temporal.omes.KitchenSink.ClientActionSet.Builder, - io.temporal.omes.KitchenSink.ClientActionSetOrBuilder> - nestedActionsBuilder_; + io.temporal.omes.KitchenSink.ClientActionSet, io.temporal.omes.KitchenSink.ClientActionSet.Builder, io.temporal.omes.KitchenSink.ClientActionSetOrBuilder> nestedActionsBuilder_; /** * .temporal.omes.kitchen_sink.ClientActionSet nested_actions = 4; - * * @return Whether the nestedActions field is set. */ @java.lang.Override @@ -4905,7 +4770,6 @@ public boolean hasNestedActions() { } /** * .temporal.omes.kitchen_sink.ClientActionSet nested_actions = 4; - * * @return The nestedActions. */ @java.lang.Override @@ -4922,7 +4786,9 @@ public io.temporal.omes.KitchenSink.ClientActionSet getNestedActions() { return io.temporal.omes.KitchenSink.ClientActionSet.getDefaultInstance(); } } - /** .temporal.omes.kitchen_sink.ClientActionSet nested_actions = 4; */ + /** + * .temporal.omes.kitchen_sink.ClientActionSet nested_actions = 4; + */ public Builder setNestedActions(io.temporal.omes.KitchenSink.ClientActionSet value) { if (nestedActionsBuilder_ == null) { if (value == null) { @@ -4936,7 +4802,9 @@ public Builder setNestedActions(io.temporal.omes.KitchenSink.ClientActionSet val variantCase_ = 4; return this; } - /** .temporal.omes.kitchen_sink.ClientActionSet nested_actions = 4; */ + /** + * .temporal.omes.kitchen_sink.ClientActionSet nested_actions = 4; + */ public Builder setNestedActions( io.temporal.omes.KitchenSink.ClientActionSet.Builder builderForValue) { if (nestedActionsBuilder_ == null) { @@ -4948,16 +4816,15 @@ public Builder setNestedActions( variantCase_ = 4; return this; } - /** .temporal.omes.kitchen_sink.ClientActionSet nested_actions = 4; */ + /** + * .temporal.omes.kitchen_sink.ClientActionSet nested_actions = 4; + */ public Builder mergeNestedActions(io.temporal.omes.KitchenSink.ClientActionSet value) { if (nestedActionsBuilder_ == null) { - if (variantCase_ == 4 - && variant_ != io.temporal.omes.KitchenSink.ClientActionSet.getDefaultInstance()) { - variant_ = - io.temporal.omes.KitchenSink.ClientActionSet.newBuilder( - (io.temporal.omes.KitchenSink.ClientActionSet) variant_) - .mergeFrom(value) - .buildPartial(); + if (variantCase_ == 4 && + variant_ != io.temporal.omes.KitchenSink.ClientActionSet.getDefaultInstance()) { + variant_ = io.temporal.omes.KitchenSink.ClientActionSet.newBuilder((io.temporal.omes.KitchenSink.ClientActionSet) variant_) + .mergeFrom(value).buildPartial(); } else { variant_ = value; } @@ -4972,7 +4839,9 @@ public Builder mergeNestedActions(io.temporal.omes.KitchenSink.ClientActionSet v variantCase_ = 4; return this; } - /** .temporal.omes.kitchen_sink.ClientActionSet nested_actions = 4; */ + /** + * .temporal.omes.kitchen_sink.ClientActionSet nested_actions = 4; + */ public Builder clearNestedActions() { if (nestedActionsBuilder_ == null) { if (variantCase_ == 4) { @@ -4989,11 +4858,15 @@ public Builder clearNestedActions() { } return this; } - /** .temporal.omes.kitchen_sink.ClientActionSet nested_actions = 4; */ + /** + * .temporal.omes.kitchen_sink.ClientActionSet nested_actions = 4; + */ public io.temporal.omes.KitchenSink.ClientActionSet.Builder getNestedActionsBuilder() { return getNestedActionsFieldBuilder().getBuilder(); } - /** .temporal.omes.kitchen_sink.ClientActionSet nested_actions = 4; */ + /** + * .temporal.omes.kitchen_sink.ClientActionSet nested_actions = 4; + */ @java.lang.Override public io.temporal.omes.KitchenSink.ClientActionSetOrBuilder getNestedActionsOrBuilder() { if ((variantCase_ == 4) && (nestedActionsBuilder_ != null)) { @@ -5005,21 +4878,18 @@ public io.temporal.omes.KitchenSink.ClientActionSetOrBuilder getNestedActionsOrB return io.temporal.omes.KitchenSink.ClientActionSet.getDefaultInstance(); } } - /** .temporal.omes.kitchen_sink.ClientActionSet nested_actions = 4; */ + /** + * .temporal.omes.kitchen_sink.ClientActionSet nested_actions = 4; + */ private com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.ClientActionSet, - io.temporal.omes.KitchenSink.ClientActionSet.Builder, - io.temporal.omes.KitchenSink.ClientActionSetOrBuilder> + io.temporal.omes.KitchenSink.ClientActionSet, io.temporal.omes.KitchenSink.ClientActionSet.Builder, io.temporal.omes.KitchenSink.ClientActionSetOrBuilder> getNestedActionsFieldBuilder() { if (nestedActionsBuilder_ == null) { if (!(variantCase_ == 4)) { variant_ = io.temporal.omes.KitchenSink.ClientActionSet.getDefaultInstance(); } - nestedActionsBuilder_ = - new com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.ClientActionSet, - io.temporal.omes.KitchenSink.ClientActionSet.Builder, - io.temporal.omes.KitchenSink.ClientActionSetOrBuilder>( + nestedActionsBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + io.temporal.omes.KitchenSink.ClientActionSet, io.temporal.omes.KitchenSink.ClientActionSet.Builder, io.temporal.omes.KitchenSink.ClientActionSetOrBuilder>( (io.temporal.omes.KitchenSink.ClientActionSet) variant_, getParentForChildren(), isClean()); @@ -5029,7 +4899,6 @@ public io.temporal.omes.KitchenSink.ClientActionSetOrBuilder getNestedActionsOrB onChanged(); return nestedActionsBuilder_; } - @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -5042,12 +4911,12 @@ public final Builder mergeUnknownFields( return super.mergeUnknownFields(unknownFields); } + // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.ClientAction) } // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.ClientAction) private static final io.temporal.omes.KitchenSink.ClientAction DEFAULT_INSTANCE; - static { DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.ClientAction(); } @@ -5056,28 +4925,27 @@ public static io.temporal.omes.KitchenSink.ClientAction getDefaultInstance() { return DEFAULT_INSTANCE; } - private static final com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser() { - @java.lang.Override - public ClientAction parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException() - .setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public ClientAction parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; public static com.google.protobuf.Parser parser() { return PARSER; @@ -5092,42 +4960,34 @@ public com.google.protobuf.Parser getParserForType() { public io.temporal.omes.KitchenSink.ClientAction getDefaultInstanceForType() { return DEFAULT_INSTANCE; } + } - public interface DoSignalOrBuilder - extends + public interface DoSignalOrBuilder extends // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.DoSignal) com.google.protobuf.MessageOrBuilder { /** - * - * *
      * A signal handler must exist named `do_actions_signal` which is responsible for handling the
      * DoSignalActions message. See it's doc for details.
      * 
* * .temporal.omes.kitchen_sink.DoSignal.DoSignalActions do_signal_actions = 1; - * * @return Whether the doSignalActions field is set. */ boolean hasDoSignalActions(); /** - * - * *
      * A signal handler must exist named `do_actions_signal` which is responsible for handling the
      * DoSignalActions message. See it's doc for details.
      * 
* * .temporal.omes.kitchen_sink.DoSignal.DoSignalActions do_signal_actions = 1; - * * @return The doSignalActions. */ io.temporal.omes.KitchenSink.DoSignal.DoSignalActions getDoSignalActions(); /** - * - * *
      * A signal handler must exist named `do_actions_signal` which is responsible for handling the
      * DoSignalActions message. See it's doc for details.
@@ -5138,32 +4998,24 @@ public interface DoSignalOrBuilder
     io.temporal.omes.KitchenSink.DoSignal.DoSignalActionsOrBuilder getDoSignalActionsOrBuilder();
 
     /**
-     *
-     *
      * 
      * Send an arbitrary signal
      * 
* * .temporal.omes.kitchen_sink.HandlerInvocation custom = 2; - * * @return Whether the custom field is set. */ boolean hasCustom(); /** - * - * *
      * Send an arbitrary signal
      * 
* * .temporal.omes.kitchen_sink.HandlerInvocation custom = 2; - * * @return The custom. */ io.temporal.omes.KitchenSink.HandlerInvocation getCustom(); /** - * - * *
      * Send an arbitrary signal
      * 
@@ -5174,48 +5026,46 @@ public interface DoSignalOrBuilder io.temporal.omes.KitchenSink.DoSignal.VariantCase getVariantCase(); } - /** Protobuf type {@code temporal.omes.kitchen_sink.DoSignal} */ - public static final class DoSignal extends com.google.protobuf.GeneratedMessageV3 - implements + /** + * Protobuf type {@code temporal.omes.kitchen_sink.DoSignal} + */ + public static final class DoSignal extends + com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.DoSignal) DoSignalOrBuilder { - private static final long serialVersionUID = 0L; + private static final long serialVersionUID = 0L; // Use DoSignal.newBuilder() to construct. private DoSignal(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } - - private DoSignal() {} + private DoSignal() { + } @java.lang.Override @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { return new DoSignal(); } - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_DoSignal_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_DoSignal_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_DoSignal_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_DoSignal_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.DoSignal.class, - io.temporal.omes.KitchenSink.DoSignal.Builder.class); + io.temporal.omes.KitchenSink.DoSignal.class, io.temporal.omes.KitchenSink.DoSignal.Builder.class); } - public interface DoSignalActionsOrBuilder - extends + public interface DoSignalActionsOrBuilder extends // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.DoSignal.DoSignalActions) com.google.protobuf.MessageOrBuilder { /** - * - * *
        * Execute the action set in the handler. Since Go doesn't have explicit signal handlers it
        * should instead run the actions in a goroutine for both of these variants, as the
@@ -5223,13 +5073,10 @@ public interface DoSignalActionsOrBuilder
        * 
* * .temporal.omes.kitchen_sink.ActionSet do_actions = 1; - * * @return Whether the doActions field is set. */ boolean hasDoActions(); /** - * - * *
        * Execute the action set in the handler. Since Go doesn't have explicit signal handlers it
        * should instead run the actions in a goroutine for both of these variants, as the
@@ -5237,13 +5084,10 @@ public interface DoSignalActionsOrBuilder
        * 
* * .temporal.omes.kitchen_sink.ActionSet do_actions = 1; - * * @return The doActions. */ io.temporal.omes.KitchenSink.ActionSet getDoActions(); /** - * - * *
        * Execute the action set in the handler. Since Go doesn't have explicit signal handlers it
        * should instead run the actions in a goroutine for both of these variants, as the
@@ -5255,34 +5099,26 @@ public interface DoSignalActionsOrBuilder
       io.temporal.omes.KitchenSink.ActionSetOrBuilder getDoActionsOrBuilder();
 
       /**
-       *
-       *
        * 
        * Pipe the actions back to the main workflow function via a queue or similar mechanism, where
        * they will then be run.
        * 
* * .temporal.omes.kitchen_sink.ActionSet do_actions_in_main = 2; - * * @return Whether the doActionsInMain field is set. */ boolean hasDoActionsInMain(); /** - * - * *
        * Pipe the actions back to the main workflow function via a queue or similar mechanism, where
        * they will then be run.
        * 
* * .temporal.omes.kitchen_sink.ActionSet do_actions_in_main = 2; - * * @return The doActionsInMain. */ io.temporal.omes.KitchenSink.ActionSet getDoActionsInMain(); /** - * - * *
        * Pipe the actions back to the main workflow function via a queue or similar mechanism, where
        * they will then be run.
@@ -5294,54 +5130,51 @@ public interface DoSignalActionsOrBuilder
 
       io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.VariantCase getVariantCase();
     }
-    /** Protobuf type {@code temporal.omes.kitchen_sink.DoSignal.DoSignalActions} */
-    public static final class DoSignalActions extends com.google.protobuf.GeneratedMessageV3
-        implements
+    /**
+     * Protobuf type {@code temporal.omes.kitchen_sink.DoSignal.DoSignalActions}
+     */
+    public static final class DoSignalActions extends
+        com.google.protobuf.GeneratedMessageV3 implements
         // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.DoSignal.DoSignalActions)
         DoSignalActionsOrBuilder {
-      private static final long serialVersionUID = 0L;
+    private static final long serialVersionUID = 0L;
       // Use DoSignalActions.newBuilder() to construct.
       private DoSignalActions(com.google.protobuf.GeneratedMessageV3.Builder builder) {
         super(builder);
       }
-
-      private DoSignalActions() {}
+      private DoSignalActions() {
+      }
 
       @java.lang.Override
       @SuppressWarnings({"unused"})
-      protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
+      protected java.lang.Object newInstance(
+          UnusedPrivateParameter unused) {
         return new DoSignalActions();
       }
 
-      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_DoSignal_DoSignalActions_descriptor;
+      public static final com.google.protobuf.Descriptors.Descriptor
+          getDescriptor() {
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_DoSignal_DoSignalActions_descriptor;
       }
 
       @java.lang.Override
       protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
           internalGetFieldAccessorTable() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_DoSignal_DoSignalActions_fieldAccessorTable
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_DoSignal_DoSignalActions_fieldAccessorTable
             .ensureFieldAccessorsInitialized(
-                io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.class,
-                io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.Builder.class);
+                io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.class, io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.Builder.class);
       }
 
       private int variantCase_ = 0;
-
       @SuppressWarnings("serial")
       private java.lang.Object variant_;
-
       public enum VariantCase
-          implements
-              com.google.protobuf.Internal.EnumLite,
+          implements com.google.protobuf.Internal.EnumLite,
               com.google.protobuf.AbstractMessage.InternalOneOfEnum {
         DO_ACTIONS(1),
         DO_ACTIONS_IN_MAIN(2),
         VARIANT_NOT_SET(0);
         private final int value;
-
         private VariantCase(int value) {
           this.value = value;
         }
@@ -5357,30 +5190,25 @@ public static VariantCase valueOf(int value) {
 
         public static VariantCase forNumber(int value) {
           switch (value) {
-            case 1:
-              return DO_ACTIONS;
-            case 2:
-              return DO_ACTIONS_IN_MAIN;
-            case 0:
-              return VARIANT_NOT_SET;
-            default:
-              return null;
+            case 1: return DO_ACTIONS;
+            case 2: return DO_ACTIONS_IN_MAIN;
+            case 0: return VARIANT_NOT_SET;
+            default: return null;
           }
         }
-
         public int getNumber() {
           return this.value;
         }
       };
 
-      public VariantCase getVariantCase() {
-        return VariantCase.forNumber(variantCase_);
+      public VariantCase
+      getVariantCase() {
+        return VariantCase.forNumber(
+            variantCase_);
       }
 
       public static final int DO_ACTIONS_FIELD_NUMBER = 1;
       /**
-       *
-       *
        * 
        * Execute the action set in the handler. Since Go doesn't have explicit signal handlers it
        * should instead run the actions in a goroutine for both of these variants, as the
@@ -5388,7 +5216,6 @@ public VariantCase getVariantCase() {
        * 
* * .temporal.omes.kitchen_sink.ActionSet do_actions = 1; - * * @return Whether the doActions field is set. */ @java.lang.Override @@ -5396,8 +5223,6 @@ public boolean hasDoActions() { return variantCase_ == 1; } /** - * - * *
        * Execute the action set in the handler. Since Go doesn't have explicit signal handlers it
        * should instead run the actions in a goroutine for both of these variants, as the
@@ -5405,19 +5230,16 @@ public boolean hasDoActions() {
        * 
* * .temporal.omes.kitchen_sink.ActionSet do_actions = 1; - * * @return The doActions. */ @java.lang.Override public io.temporal.omes.KitchenSink.ActionSet getDoActions() { if (variantCase_ == 1) { - return (io.temporal.omes.KitchenSink.ActionSet) variant_; + return (io.temporal.omes.KitchenSink.ActionSet) variant_; } return io.temporal.omes.KitchenSink.ActionSet.getDefaultInstance(); } /** - * - * *
        * Execute the action set in the handler. Since Go doesn't have explicit signal handlers it
        * should instead run the actions in a goroutine for both of these variants, as the
@@ -5429,22 +5251,19 @@ public io.temporal.omes.KitchenSink.ActionSet getDoActions() {
       @java.lang.Override
       public io.temporal.omes.KitchenSink.ActionSetOrBuilder getDoActionsOrBuilder() {
         if (variantCase_ == 1) {
-          return (io.temporal.omes.KitchenSink.ActionSet) variant_;
+           return (io.temporal.omes.KitchenSink.ActionSet) variant_;
         }
         return io.temporal.omes.KitchenSink.ActionSet.getDefaultInstance();
       }
 
       public static final int DO_ACTIONS_IN_MAIN_FIELD_NUMBER = 2;
       /**
-       *
-       *
        * 
        * Pipe the actions back to the main workflow function via a queue or similar mechanism, where
        * they will then be run.
        * 
* * .temporal.omes.kitchen_sink.ActionSet do_actions_in_main = 2; - * * @return Whether the doActionsInMain field is set. */ @java.lang.Override @@ -5452,27 +5271,22 @@ public boolean hasDoActionsInMain() { return variantCase_ == 2; } /** - * - * *
        * Pipe the actions back to the main workflow function via a queue or similar mechanism, where
        * they will then be run.
        * 
* * .temporal.omes.kitchen_sink.ActionSet do_actions_in_main = 2; - * * @return The doActionsInMain. */ @java.lang.Override public io.temporal.omes.KitchenSink.ActionSet getDoActionsInMain() { if (variantCase_ == 2) { - return (io.temporal.omes.KitchenSink.ActionSet) variant_; + return (io.temporal.omes.KitchenSink.ActionSet) variant_; } return io.temporal.omes.KitchenSink.ActionSet.getDefaultInstance(); } /** - * - * *
        * Pipe the actions back to the main workflow function via a queue or similar mechanism, where
        * they will then be run.
@@ -5483,13 +5297,12 @@ public io.temporal.omes.KitchenSink.ActionSet getDoActionsInMain() {
       @java.lang.Override
       public io.temporal.omes.KitchenSink.ActionSetOrBuilder getDoActionsInMainOrBuilder() {
         if (variantCase_ == 2) {
-          return (io.temporal.omes.KitchenSink.ActionSet) variant_;
+           return (io.temporal.omes.KitchenSink.ActionSet) variant_;
         }
         return io.temporal.omes.KitchenSink.ActionSet.getDefaultInstance();
       }
 
       private byte memoizedIsInitialized = -1;
-
       @java.lang.Override
       public final boolean isInitialized() {
         byte isInitialized = memoizedIsInitialized;
@@ -5501,7 +5314,8 @@ public final boolean isInitialized() {
       }
 
       @java.lang.Override
-      public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
+      public void writeTo(com.google.protobuf.CodedOutputStream output)
+                          throws java.io.IOException {
         if (variantCase_ == 1) {
           output.writeMessage(1, (io.temporal.omes.KitchenSink.ActionSet) variant_);
         }
@@ -5518,14 +5332,12 @@ public int getSerializedSize() {
 
         size = 0;
         if (variantCase_ == 1) {
-          size +=
-              com.google.protobuf.CodedOutputStream.computeMessageSize(
-                  1, (io.temporal.omes.KitchenSink.ActionSet) variant_);
+          size += com.google.protobuf.CodedOutputStream
+            .computeMessageSize(1, (io.temporal.omes.KitchenSink.ActionSet) variant_);
         }
         if (variantCase_ == 2) {
-          size +=
-              com.google.protobuf.CodedOutputStream.computeMessageSize(
-                  2, (io.temporal.omes.KitchenSink.ActionSet) variant_);
+          size += com.google.protobuf.CodedOutputStream
+            .computeMessageSize(2, (io.temporal.omes.KitchenSink.ActionSet) variant_);
         }
         size += getUnknownFields().getSerializedSize();
         memoizedSize = size;
@@ -5535,21 +5347,22 @@ public int getSerializedSize() {
       @java.lang.Override
       public boolean equals(final java.lang.Object obj) {
         if (obj == this) {
-          return true;
+         return true;
         }
         if (!(obj instanceof io.temporal.omes.KitchenSink.DoSignal.DoSignalActions)) {
           return super.equals(obj);
         }
-        io.temporal.omes.KitchenSink.DoSignal.DoSignalActions other =
-            (io.temporal.omes.KitchenSink.DoSignal.DoSignalActions) obj;
+        io.temporal.omes.KitchenSink.DoSignal.DoSignalActions other = (io.temporal.omes.KitchenSink.DoSignal.DoSignalActions) obj;
 
         if (!getVariantCase().equals(other.getVariantCase())) return false;
         switch (variantCase_) {
           case 1:
-            if (!getDoActions().equals(other.getDoActions())) return false;
+            if (!getDoActions()
+                .equals(other.getDoActions())) return false;
             break;
           case 2:
-            if (!getDoActionsInMain().equals(other.getDoActionsInMain())) return false;
+            if (!getDoActionsInMain()
+                .equals(other.getDoActionsInMain())) return false;
             break;
           case 0:
           default:
@@ -5583,94 +5396,89 @@ public int hashCode() {
       }
 
       public static io.temporal.omes.KitchenSink.DoSignal.DoSignalActions parseFrom(
-          java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
+          java.nio.ByteBuffer data)
+          throws com.google.protobuf.InvalidProtocolBufferException {
         return PARSER.parseFrom(data);
       }
-
       public static io.temporal.omes.KitchenSink.DoSignal.DoSignalActions parseFrom(
-          java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+          java.nio.ByteBuffer data,
+          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
           throws com.google.protobuf.InvalidProtocolBufferException {
         return PARSER.parseFrom(data, extensionRegistry);
       }
-
       public static io.temporal.omes.KitchenSink.DoSignal.DoSignalActions parseFrom(
           com.google.protobuf.ByteString data)
           throws com.google.protobuf.InvalidProtocolBufferException {
         return PARSER.parseFrom(data);
       }
-
       public static io.temporal.omes.KitchenSink.DoSignal.DoSignalActions parseFrom(
           com.google.protobuf.ByteString data,
           com.google.protobuf.ExtensionRegistryLite extensionRegistry)
           throws com.google.protobuf.InvalidProtocolBufferException {
         return PARSER.parseFrom(data, extensionRegistry);
       }
-
       public static io.temporal.omes.KitchenSink.DoSignal.DoSignalActions parseFrom(byte[] data)
           throws com.google.protobuf.InvalidProtocolBufferException {
         return PARSER.parseFrom(data);
       }
-
       public static io.temporal.omes.KitchenSink.DoSignal.DoSignalActions parseFrom(
-          byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+          byte[] data,
+          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
           throws com.google.protobuf.InvalidProtocolBufferException {
         return PARSER.parseFrom(data, extensionRegistry);
       }
-
-      public static io.temporal.omes.KitchenSink.DoSignal.DoSignalActions parseFrom(
-          java.io.InputStream input) throws java.io.IOException {
-        return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
+      public static io.temporal.omes.KitchenSink.DoSignal.DoSignalActions parseFrom(java.io.InputStream input)
+          throws java.io.IOException {
+        return com.google.protobuf.GeneratedMessageV3
+            .parseWithIOException(PARSER, input);
       }
-
       public static io.temporal.omes.KitchenSink.DoSignal.DoSignalActions parseFrom(
-          java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+          java.io.InputStream input,
+          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
           throws java.io.IOException {
-        return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
-            PARSER, input, extensionRegistry);
+        return com.google.protobuf.GeneratedMessageV3
+            .parseWithIOException(PARSER, input, extensionRegistry);
       }
 
-      public static io.temporal.omes.KitchenSink.DoSignal.DoSignalActions parseDelimitedFrom(
-          java.io.InputStream input) throws java.io.IOException {
-        return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
+      public static io.temporal.omes.KitchenSink.DoSignal.DoSignalActions parseDelimitedFrom(java.io.InputStream input)
+          throws java.io.IOException {
+        return com.google.protobuf.GeneratedMessageV3
+            .parseDelimitedWithIOException(PARSER, input);
       }
 
       public static io.temporal.omes.KitchenSink.DoSignal.DoSignalActions parseDelimitedFrom(
-          java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+          java.io.InputStream input,
+          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
           throws java.io.IOException {
-        return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
-            PARSER, input, extensionRegistry);
+        return com.google.protobuf.GeneratedMessageV3
+            .parseDelimitedWithIOException(PARSER, input, extensionRegistry);
       }
-
       public static io.temporal.omes.KitchenSink.DoSignal.DoSignalActions parseFrom(
-          com.google.protobuf.CodedInputStream input) throws java.io.IOException {
-        return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
+          com.google.protobuf.CodedInputStream input)
+          throws java.io.IOException {
+        return com.google.protobuf.GeneratedMessageV3
+            .parseWithIOException(PARSER, input);
       }
-
       public static io.temporal.omes.KitchenSink.DoSignal.DoSignalActions parseFrom(
           com.google.protobuf.CodedInputStream input,
           com.google.protobuf.ExtensionRegistryLite extensionRegistry)
           throws java.io.IOException {
-        return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
-            PARSER, input, extensionRegistry);
+        return com.google.protobuf.GeneratedMessageV3
+            .parseWithIOException(PARSER, input, extensionRegistry);
       }
 
       @java.lang.Override
-      public Builder newBuilderForType() {
-        return newBuilder();
-      }
-
+      public Builder newBuilderForType() { return newBuilder(); }
       public static Builder newBuilder() {
         return DEFAULT_INSTANCE.toBuilder();
       }
-
-      public static Builder newBuilder(
-          io.temporal.omes.KitchenSink.DoSignal.DoSignalActions prototype) {
+      public static Builder newBuilder(io.temporal.omes.KitchenSink.DoSignal.DoSignalActions prototype) {
         return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
       }
-
       @java.lang.Override
       public Builder toBuilder() {
-        return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
+        return this == DEFAULT_INSTANCE
+            ? new Builder() : new Builder().mergeFrom(this);
       }
 
       @java.lang.Override
@@ -5679,34 +5487,36 @@ protected Builder newBuilderForType(
         Builder builder = new Builder(parent);
         return builder;
       }
-      /** Protobuf type {@code temporal.omes.kitchen_sink.DoSignal.DoSignalActions} */
-      public static final class Builder
-          extends com.google.protobuf.GeneratedMessageV3.Builder
-          implements
+      /**
+       * Protobuf type {@code temporal.omes.kitchen_sink.DoSignal.DoSignalActions}
+       */
+      public static final class Builder extends
+          com.google.protobuf.GeneratedMessageV3.Builder implements
           // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.DoSignal.DoSignalActions)
           io.temporal.omes.KitchenSink.DoSignal.DoSignalActionsOrBuilder {
-        public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
-          return io.temporal.omes.KitchenSink
-              .internal_static_temporal_omes_kitchen_sink_DoSignal_DoSignalActions_descriptor;
+        public static final com.google.protobuf.Descriptors.Descriptor
+            getDescriptor() {
+          return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_DoSignal_DoSignalActions_descriptor;
         }
 
         @java.lang.Override
         protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
             internalGetFieldAccessorTable() {
-          return io.temporal.omes.KitchenSink
-              .internal_static_temporal_omes_kitchen_sink_DoSignal_DoSignalActions_fieldAccessorTable
+          return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_DoSignal_DoSignalActions_fieldAccessorTable
               .ensureFieldAccessorsInitialized(
-                  io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.class,
-                  io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.Builder.class);
+                  io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.class, io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.Builder.class);
         }
 
         // Construct using io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.newBuilder()
-        private Builder() {}
+        private Builder() {
 
-        private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
-          super(parent);
         }
 
+        private Builder(
+            com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
+          super(parent);
+
+        }
         @java.lang.Override
         public Builder clear() {
           super.clear();
@@ -5723,9 +5533,9 @@ public Builder clear() {
         }
 
         @java.lang.Override
-        public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
-          return io.temporal.omes.KitchenSink
-              .internal_static_temporal_omes_kitchen_sink_DoSignal_DoSignalActions_descriptor;
+        public com.google.protobuf.Descriptors.Descriptor
+            getDescriptorForType() {
+          return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_DoSignal_DoSignalActions_descriptor;
         }
 
         @java.lang.Override
@@ -5744,11 +5554,8 @@ public io.temporal.omes.KitchenSink.DoSignal.DoSignalActions build() {
 
         @java.lang.Override
         public io.temporal.omes.KitchenSink.DoSignal.DoSignalActions buildPartial() {
-          io.temporal.omes.KitchenSink.DoSignal.DoSignalActions result =
-              new io.temporal.omes.KitchenSink.DoSignal.DoSignalActions(this);
-          if (bitField0_ != 0) {
-            buildPartial0(result);
-          }
+          io.temporal.omes.KitchenSink.DoSignal.DoSignalActions result = new io.temporal.omes.KitchenSink.DoSignal.DoSignalActions(this);
+          if (bitField0_ != 0) { buildPartial0(result); }
           buildPartialOneofs(result);
           onBuilt();
           return result;
@@ -5758,14 +5565,15 @@ private void buildPartial0(io.temporal.omes.KitchenSink.DoSignal.DoSignalActions
           int from_bitField0_ = bitField0_;
         }
 
-        private void buildPartialOneofs(
-            io.temporal.omes.KitchenSink.DoSignal.DoSignalActions result) {
+        private void buildPartialOneofs(io.temporal.omes.KitchenSink.DoSignal.DoSignalActions result) {
           result.variantCase_ = variantCase_;
           result.variant_ = this.variant_;
-          if (variantCase_ == 1 && doActionsBuilder_ != null) {
+          if (variantCase_ == 1 &&
+              doActionsBuilder_ != null) {
             result.variant_ = doActionsBuilder_.build();
           }
-          if (variantCase_ == 2 && doActionsInMainBuilder_ != null) {
+          if (variantCase_ == 2 &&
+              doActionsInMainBuilder_ != null) {
             result.variant_ = doActionsInMainBuilder_.build();
           }
         }
@@ -5774,41 +5582,38 @@ private void buildPartialOneofs(
         public Builder clone() {
           return super.clone();
         }
-
         @java.lang.Override
         public Builder setField(
-            com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
+            com.google.protobuf.Descriptors.FieldDescriptor field,
+            java.lang.Object value) {
           return super.setField(field, value);
         }
-
         @java.lang.Override
-        public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
+        public Builder clearField(
+            com.google.protobuf.Descriptors.FieldDescriptor field) {
           return super.clearField(field);
         }
-
         @java.lang.Override
-        public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
+        public Builder clearOneof(
+            com.google.protobuf.Descriptors.OneofDescriptor oneof) {
           return super.clearOneof(oneof);
         }
-
         @java.lang.Override
         public Builder setRepeatedField(
             com.google.protobuf.Descriptors.FieldDescriptor field,
-            int index,
-            java.lang.Object value) {
+            int index, java.lang.Object value) {
           return super.setRepeatedField(field, index, value);
         }
-
         @java.lang.Override
         public Builder addRepeatedField(
-            com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
+            com.google.protobuf.Descriptors.FieldDescriptor field,
+            java.lang.Object value) {
           return super.addRepeatedField(field, value);
         }
-
         @java.lang.Override
         public Builder mergeFrom(com.google.protobuf.Message other) {
           if (other instanceof io.temporal.omes.KitchenSink.DoSignal.DoSignalActions) {
-            return mergeFrom((io.temporal.omes.KitchenSink.DoSignal.DoSignalActions) other);
+            return mergeFrom((io.temporal.omes.KitchenSink.DoSignal.DoSignalActions)other);
           } else {
             super.mergeFrom(other);
             return this;
@@ -5816,23 +5621,19 @@ public Builder mergeFrom(com.google.protobuf.Message other) {
         }
 
         public Builder mergeFrom(io.temporal.omes.KitchenSink.DoSignal.DoSignalActions other) {
-          if (other == io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.getDefaultInstance())
-            return this;
+          if (other == io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.getDefaultInstance()) return this;
           switch (other.getVariantCase()) {
-            case DO_ACTIONS:
-              {
-                mergeDoActions(other.getDoActions());
-                break;
-              }
-            case DO_ACTIONS_IN_MAIN:
-              {
-                mergeDoActionsInMain(other.getDoActionsInMain());
-                break;
-              }
-            case VARIANT_NOT_SET:
-              {
-                break;
-              }
+            case DO_ACTIONS: {
+              mergeDoActions(other.getDoActions());
+              break;
+            }
+            case DO_ACTIONS_IN_MAIN: {
+              mergeDoActionsInMain(other.getDoActionsInMain());
+              break;
+            }
+            case VARIANT_NOT_SET: {
+              break;
+            }
           }
           this.mergeUnknownFields(other.getUnknownFields());
           onChanged();
@@ -5860,26 +5661,26 @@ public Builder mergeFrom(
                 case 0:
                   done = true;
                   break;
-                case 10:
-                  {
-                    input.readMessage(getDoActionsFieldBuilder().getBuilder(), extensionRegistry);
-                    variantCase_ = 1;
-                    break;
-                  } // case 10
-                case 18:
-                  {
-                    input.readMessage(
-                        getDoActionsInMainFieldBuilder().getBuilder(), extensionRegistry);
-                    variantCase_ = 2;
-                    break;
-                  } // case 18
-                default:
-                  {
-                    if (!super.parseUnknownField(input, extensionRegistry, tag)) {
-                      done = true; // was an endgroup tag
-                    }
-                    break;
-                  } // default:
+                case 10: {
+                  input.readMessage(
+                      getDoActionsFieldBuilder().getBuilder(),
+                      extensionRegistry);
+                  variantCase_ = 1;
+                  break;
+                } // case 10
+                case 18: {
+                  input.readMessage(
+                      getDoActionsInMainFieldBuilder().getBuilder(),
+                      extensionRegistry);
+                  variantCase_ = 2;
+                  break;
+                } // case 18
+                default: {
+                  if (!super.parseUnknownField(input, extensionRegistry, tag)) {
+                    done = true; // was an endgroup tag
+                  }
+                  break;
+                } // default:
               } // switch (tag)
             } // while (!done)
           } catch (com.google.protobuf.InvalidProtocolBufferException e) {
@@ -5889,12 +5690,12 @@ public Builder mergeFrom(
           } // finally
           return this;
         }
-
         private int variantCase_ = 0;
         private java.lang.Object variant_;
-
-        public VariantCase getVariantCase() {
-          return VariantCase.forNumber(variantCase_);
+        public VariantCase
+            getVariantCase() {
+          return VariantCase.forNumber(
+              variantCase_);
         }
 
         public Builder clearVariant() {
@@ -5907,13 +5708,8 @@ public Builder clearVariant() {
         private int bitField0_;
 
         private com.google.protobuf.SingleFieldBuilderV3<
-                io.temporal.omes.KitchenSink.ActionSet,
-                io.temporal.omes.KitchenSink.ActionSet.Builder,
-                io.temporal.omes.KitchenSink.ActionSetOrBuilder>
-            doActionsBuilder_;
+            io.temporal.omes.KitchenSink.ActionSet, io.temporal.omes.KitchenSink.ActionSet.Builder, io.temporal.omes.KitchenSink.ActionSetOrBuilder> doActionsBuilder_;
         /**
-         *
-         *
          * 
          * Execute the action set in the handler. Since Go doesn't have explicit signal handlers it
          * should instead run the actions in a goroutine for both of these variants, as the
@@ -5921,7 +5717,6 @@ public Builder clearVariant() {
          * 
* * .temporal.omes.kitchen_sink.ActionSet do_actions = 1; - * * @return Whether the doActions field is set. */ @java.lang.Override @@ -5929,8 +5724,6 @@ public boolean hasDoActions() { return variantCase_ == 1; } /** - * - * *
          * Execute the action set in the handler. Since Go doesn't have explicit signal handlers it
          * should instead run the actions in a goroutine for both of these variants, as the
@@ -5938,7 +5731,6 @@ public boolean hasDoActions() {
          * 
* * .temporal.omes.kitchen_sink.ActionSet do_actions = 1; - * * @return The doActions. */ @java.lang.Override @@ -5956,8 +5748,6 @@ public io.temporal.omes.KitchenSink.ActionSet getDoActions() { } } /** - * - * *
          * Execute the action set in the handler. Since Go doesn't have explicit signal handlers it
          * should instead run the actions in a goroutine for both of these variants, as the
@@ -5980,8 +5770,6 @@ public Builder setDoActions(io.temporal.omes.KitchenSink.ActionSet value) {
           return this;
         }
         /**
-         *
-         *
          * 
          * Execute the action set in the handler. Since Go doesn't have explicit signal handlers it
          * should instead run the actions in a goroutine for both of these variants, as the
@@ -6002,8 +5790,6 @@ public Builder setDoActions(
           return this;
         }
         /**
-         *
-         *
          * 
          * Execute the action set in the handler. Since Go doesn't have explicit signal handlers it
          * should instead run the actions in a goroutine for both of these variants, as the
@@ -6014,13 +5800,10 @@ public Builder setDoActions(
          */
         public Builder mergeDoActions(io.temporal.omes.KitchenSink.ActionSet value) {
           if (doActionsBuilder_ == null) {
-            if (variantCase_ == 1
-                && variant_ != io.temporal.omes.KitchenSink.ActionSet.getDefaultInstance()) {
-              variant_ =
-                  io.temporal.omes.KitchenSink.ActionSet.newBuilder(
-                          (io.temporal.omes.KitchenSink.ActionSet) variant_)
-                      .mergeFrom(value)
-                      .buildPartial();
+            if (variantCase_ == 1 &&
+                variant_ != io.temporal.omes.KitchenSink.ActionSet.getDefaultInstance()) {
+              variant_ = io.temporal.omes.KitchenSink.ActionSet.newBuilder((io.temporal.omes.KitchenSink.ActionSet) variant_)
+                  .mergeFrom(value).buildPartial();
             } else {
               variant_ = value;
             }
@@ -6036,8 +5819,6 @@ public Builder mergeDoActions(io.temporal.omes.KitchenSink.ActionSet value) {
           return this;
         }
         /**
-         *
-         *
          * 
          * Execute the action set in the handler. Since Go doesn't have explicit signal handlers it
          * should instead run the actions in a goroutine for both of these variants, as the
@@ -6063,8 +5844,6 @@ public Builder clearDoActions() {
           return this;
         }
         /**
-         *
-         *
          * 
          * Execute the action set in the handler. Since Go doesn't have explicit signal handlers it
          * should instead run the actions in a goroutine for both of these variants, as the
@@ -6077,8 +5856,6 @@ public io.temporal.omes.KitchenSink.ActionSet.Builder getDoActionsBuilder() {
           return getDoActionsFieldBuilder().getBuilder();
         }
         /**
-         *
-         *
          * 
          * Execute the action set in the handler. Since Go doesn't have explicit signal handlers it
          * should instead run the actions in a goroutine for both of these variants, as the
@@ -6099,8 +5876,6 @@ public io.temporal.omes.KitchenSink.ActionSetOrBuilder getDoActionsOrBuilder() {
           }
         }
         /**
-         *
-         *
          * 
          * Execute the action set in the handler. Since Go doesn't have explicit signal handlers it
          * should instead run the actions in a goroutine for both of these variants, as the
@@ -6110,19 +5885,14 @@ public io.temporal.omes.KitchenSink.ActionSetOrBuilder getDoActionsOrBuilder() {
          * .temporal.omes.kitchen_sink.ActionSet do_actions = 1;
          */
         private com.google.protobuf.SingleFieldBuilderV3<
-                io.temporal.omes.KitchenSink.ActionSet,
-                io.temporal.omes.KitchenSink.ActionSet.Builder,
-                io.temporal.omes.KitchenSink.ActionSetOrBuilder>
+            io.temporal.omes.KitchenSink.ActionSet, io.temporal.omes.KitchenSink.ActionSet.Builder, io.temporal.omes.KitchenSink.ActionSetOrBuilder> 
             getDoActionsFieldBuilder() {
           if (doActionsBuilder_ == null) {
             if (!(variantCase_ == 1)) {
               variant_ = io.temporal.omes.KitchenSink.ActionSet.getDefaultInstance();
             }
-            doActionsBuilder_ =
-                new com.google.protobuf.SingleFieldBuilderV3<
-                    io.temporal.omes.KitchenSink.ActionSet,
-                    io.temporal.omes.KitchenSink.ActionSet.Builder,
-                    io.temporal.omes.KitchenSink.ActionSetOrBuilder>(
+            doActionsBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+                io.temporal.omes.KitchenSink.ActionSet, io.temporal.omes.KitchenSink.ActionSet.Builder, io.temporal.omes.KitchenSink.ActionSetOrBuilder>(
                     (io.temporal.omes.KitchenSink.ActionSet) variant_,
                     getParentForChildren(),
                     isClean());
@@ -6134,20 +5904,14 @@ public io.temporal.omes.KitchenSink.ActionSetOrBuilder getDoActionsOrBuilder() {
         }
 
         private com.google.protobuf.SingleFieldBuilderV3<
-                io.temporal.omes.KitchenSink.ActionSet,
-                io.temporal.omes.KitchenSink.ActionSet.Builder,
-                io.temporal.omes.KitchenSink.ActionSetOrBuilder>
-            doActionsInMainBuilder_;
+            io.temporal.omes.KitchenSink.ActionSet, io.temporal.omes.KitchenSink.ActionSet.Builder, io.temporal.omes.KitchenSink.ActionSetOrBuilder> doActionsInMainBuilder_;
         /**
-         *
-         *
          * 
          * Pipe the actions back to the main workflow function via a queue or similar mechanism, where
          * they will then be run.
          * 
* * .temporal.omes.kitchen_sink.ActionSet do_actions_in_main = 2; - * * @return Whether the doActionsInMain field is set. */ @java.lang.Override @@ -6155,15 +5919,12 @@ public boolean hasDoActionsInMain() { return variantCase_ == 2; } /** - * - * *
          * Pipe the actions back to the main workflow function via a queue or similar mechanism, where
          * they will then be run.
          * 
* * .temporal.omes.kitchen_sink.ActionSet do_actions_in_main = 2; - * * @return The doActionsInMain. */ @java.lang.Override @@ -6181,8 +5942,6 @@ public io.temporal.omes.KitchenSink.ActionSet getDoActionsInMain() { } } /** - * - * *
          * Pipe the actions back to the main workflow function via a queue or similar mechanism, where
          * they will then be run.
@@ -6204,8 +5963,6 @@ public Builder setDoActionsInMain(io.temporal.omes.KitchenSink.ActionSet value)
           return this;
         }
         /**
-         *
-         *
          * 
          * Pipe the actions back to the main workflow function via a queue or similar mechanism, where
          * they will then be run.
@@ -6225,8 +5982,6 @@ public Builder setDoActionsInMain(
           return this;
         }
         /**
-         *
-         *
          * 
          * Pipe the actions back to the main workflow function via a queue or similar mechanism, where
          * they will then be run.
@@ -6236,13 +5991,10 @@ public Builder setDoActionsInMain(
          */
         public Builder mergeDoActionsInMain(io.temporal.omes.KitchenSink.ActionSet value) {
           if (doActionsInMainBuilder_ == null) {
-            if (variantCase_ == 2
-                && variant_ != io.temporal.omes.KitchenSink.ActionSet.getDefaultInstance()) {
-              variant_ =
-                  io.temporal.omes.KitchenSink.ActionSet.newBuilder(
-                          (io.temporal.omes.KitchenSink.ActionSet) variant_)
-                      .mergeFrom(value)
-                      .buildPartial();
+            if (variantCase_ == 2 &&
+                variant_ != io.temporal.omes.KitchenSink.ActionSet.getDefaultInstance()) {
+              variant_ = io.temporal.omes.KitchenSink.ActionSet.newBuilder((io.temporal.omes.KitchenSink.ActionSet) variant_)
+                  .mergeFrom(value).buildPartial();
             } else {
               variant_ = value;
             }
@@ -6258,8 +6010,6 @@ public Builder mergeDoActionsInMain(io.temporal.omes.KitchenSink.ActionSet value
           return this;
         }
         /**
-         *
-         *
          * 
          * Pipe the actions back to the main workflow function via a queue or similar mechanism, where
          * they will then be run.
@@ -6284,8 +6034,6 @@ public Builder clearDoActionsInMain() {
           return this;
         }
         /**
-         *
-         *
          * 
          * Pipe the actions back to the main workflow function via a queue or similar mechanism, where
          * they will then be run.
@@ -6297,8 +6045,6 @@ public io.temporal.omes.KitchenSink.ActionSet.Builder getDoActionsInMainBuilder(
           return getDoActionsInMainFieldBuilder().getBuilder();
         }
         /**
-         *
-         *
          * 
          * Pipe the actions back to the main workflow function via a queue or similar mechanism, where
          * they will then be run.
@@ -6318,8 +6064,6 @@ public io.temporal.omes.KitchenSink.ActionSetOrBuilder getDoActionsInMainOrBuild
           }
         }
         /**
-         *
-         *
          * 
          * Pipe the actions back to the main workflow function via a queue or similar mechanism, where
          * they will then be run.
@@ -6328,19 +6072,14 @@ public io.temporal.omes.KitchenSink.ActionSetOrBuilder getDoActionsInMainOrBuild
          * .temporal.omes.kitchen_sink.ActionSet do_actions_in_main = 2;
          */
         private com.google.protobuf.SingleFieldBuilderV3<
-                io.temporal.omes.KitchenSink.ActionSet,
-                io.temporal.omes.KitchenSink.ActionSet.Builder,
-                io.temporal.omes.KitchenSink.ActionSetOrBuilder>
+            io.temporal.omes.KitchenSink.ActionSet, io.temporal.omes.KitchenSink.ActionSet.Builder, io.temporal.omes.KitchenSink.ActionSetOrBuilder> 
             getDoActionsInMainFieldBuilder() {
           if (doActionsInMainBuilder_ == null) {
             if (!(variantCase_ == 2)) {
               variant_ = io.temporal.omes.KitchenSink.ActionSet.getDefaultInstance();
             }
-            doActionsInMainBuilder_ =
-                new com.google.protobuf.SingleFieldBuilderV3<
-                    io.temporal.omes.KitchenSink.ActionSet,
-                    io.temporal.omes.KitchenSink.ActionSet.Builder,
-                    io.temporal.omes.KitchenSink.ActionSetOrBuilder>(
+            doActionsInMainBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+                io.temporal.omes.KitchenSink.ActionSet, io.temporal.omes.KitchenSink.ActionSet.Builder, io.temporal.omes.KitchenSink.ActionSetOrBuilder>(
                     (io.temporal.omes.KitchenSink.ActionSet) variant_,
                     getParentForChildren(),
                     isClean());
@@ -6350,7 +6089,6 @@ public io.temporal.omes.KitchenSink.ActionSetOrBuilder getDoActionsInMainOrBuild
           onChanged();
           return doActionsInMainBuilder_;
         }
-
         @java.lang.Override
         public final Builder setUnknownFields(
             final com.google.protobuf.UnknownFieldSet unknownFields) {
@@ -6363,12 +6101,12 @@ public final Builder mergeUnknownFields(
           return super.mergeUnknownFields(unknownFields);
         }
 
+
         // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.DoSignal.DoSignalActions)
       }
 
       // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.DoSignal.DoSignalActions)
       private static final io.temporal.omes.KitchenSink.DoSignal.DoSignalActions DEFAULT_INSTANCE;
-
       static {
         DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.DoSignal.DoSignalActions();
       }
@@ -6377,28 +6115,27 @@ public static io.temporal.omes.KitchenSink.DoSignal.DoSignalActions getDefaultIn
         return DEFAULT_INSTANCE;
       }
 
-      private static final com.google.protobuf.Parser PARSER =
-          new com.google.protobuf.AbstractParser() {
-            @java.lang.Override
-            public DoSignalActions parsePartialFrom(
-                com.google.protobuf.CodedInputStream input,
-                com.google.protobuf.ExtensionRegistryLite extensionRegistry)
-                throws com.google.protobuf.InvalidProtocolBufferException {
-              Builder builder = newBuilder();
-              try {
-                builder.mergeFrom(input, extensionRegistry);
-              } catch (com.google.protobuf.InvalidProtocolBufferException e) {
-                throw e.setUnfinishedMessage(builder.buildPartial());
-              } catch (com.google.protobuf.UninitializedMessageException e) {
-                throw e.asInvalidProtocolBufferException()
-                    .setUnfinishedMessage(builder.buildPartial());
-              } catch (java.io.IOException e) {
-                throw new com.google.protobuf.InvalidProtocolBufferException(e)
-                    .setUnfinishedMessage(builder.buildPartial());
-              }
-              return builder.buildPartial();
-            }
-          };
+      private static final com.google.protobuf.Parser
+          PARSER = new com.google.protobuf.AbstractParser() {
+        @java.lang.Override
+        public DoSignalActions parsePartialFrom(
+            com.google.protobuf.CodedInputStream input,
+            com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+            throws com.google.protobuf.InvalidProtocolBufferException {
+          Builder builder = newBuilder();
+          try {
+            builder.mergeFrom(input, extensionRegistry);
+          } catch (com.google.protobuf.InvalidProtocolBufferException e) {
+            throw e.setUnfinishedMessage(builder.buildPartial());
+          } catch (com.google.protobuf.UninitializedMessageException e) {
+            throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
+          } catch (java.io.IOException e) {
+            throw new com.google.protobuf.InvalidProtocolBufferException(e)
+                .setUnfinishedMessage(builder.buildPartial());
+          }
+          return builder.buildPartial();
+        }
+      };
 
       public static com.google.protobuf.Parser parser() {
         return PARSER;
@@ -6413,22 +6150,19 @@ public com.google.protobuf.Parser getParserForType() {
       public io.temporal.omes.KitchenSink.DoSignal.DoSignalActions getDefaultInstanceForType() {
         return DEFAULT_INSTANCE;
       }
+
     }
 
     private int variantCase_ = 0;
-
     @SuppressWarnings("serial")
     private java.lang.Object variant_;
-
     public enum VariantCase
-        implements
-            com.google.protobuf.Internal.EnumLite,
+        implements com.google.protobuf.Internal.EnumLite,
             com.google.protobuf.AbstractMessage.InternalOneOfEnum {
       DO_SIGNAL_ACTIONS(1),
       CUSTOM(2),
       VARIANT_NOT_SET(0);
       private final int value;
-
       private VariantCase(int value) {
         this.value = value;
       }
@@ -6444,37 +6178,31 @@ public static VariantCase valueOf(int value) {
 
       public static VariantCase forNumber(int value) {
         switch (value) {
-          case 1:
-            return DO_SIGNAL_ACTIONS;
-          case 2:
-            return CUSTOM;
-          case 0:
-            return VARIANT_NOT_SET;
-          default:
-            return null;
+          case 1: return DO_SIGNAL_ACTIONS;
+          case 2: return CUSTOM;
+          case 0: return VARIANT_NOT_SET;
+          default: return null;
         }
       }
-
       public int getNumber() {
         return this.value;
       }
     };
 
-    public VariantCase getVariantCase() {
-      return VariantCase.forNumber(variantCase_);
+    public VariantCase
+    getVariantCase() {
+      return VariantCase.forNumber(
+          variantCase_);
     }
 
     public static final int DO_SIGNAL_ACTIONS_FIELD_NUMBER = 1;
     /**
-     *
-     *
      * 
      * A signal handler must exist named `do_actions_signal` which is responsible for handling the
      * DoSignalActions message. See it's doc for details.
      * 
* * .temporal.omes.kitchen_sink.DoSignal.DoSignalActions do_signal_actions = 1; - * * @return Whether the doSignalActions field is set. */ @java.lang.Override @@ -6482,27 +6210,22 @@ public boolean hasDoSignalActions() { return variantCase_ == 1; } /** - * - * *
      * A signal handler must exist named `do_actions_signal` which is responsible for handling the
      * DoSignalActions message. See it's doc for details.
      * 
* * .temporal.omes.kitchen_sink.DoSignal.DoSignalActions do_signal_actions = 1; - * * @return The doSignalActions. */ @java.lang.Override public io.temporal.omes.KitchenSink.DoSignal.DoSignalActions getDoSignalActions() { if (variantCase_ == 1) { - return (io.temporal.omes.KitchenSink.DoSignal.DoSignalActions) variant_; + return (io.temporal.omes.KitchenSink.DoSignal.DoSignalActions) variant_; } return io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.getDefaultInstance(); } /** - * - * *
      * A signal handler must exist named `do_actions_signal` which is responsible for handling the
      * DoSignalActions message. See it's doc for details.
@@ -6511,24 +6234,20 @@ public io.temporal.omes.KitchenSink.DoSignal.DoSignalActions getDoSignalActions(
      * .temporal.omes.kitchen_sink.DoSignal.DoSignalActions do_signal_actions = 1;
      */
     @java.lang.Override
-    public io.temporal.omes.KitchenSink.DoSignal.DoSignalActionsOrBuilder
-        getDoSignalActionsOrBuilder() {
+    public io.temporal.omes.KitchenSink.DoSignal.DoSignalActionsOrBuilder getDoSignalActionsOrBuilder() {
       if (variantCase_ == 1) {
-        return (io.temporal.omes.KitchenSink.DoSignal.DoSignalActions) variant_;
+         return (io.temporal.omes.KitchenSink.DoSignal.DoSignalActions) variant_;
       }
       return io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.getDefaultInstance();
     }
 
     public static final int CUSTOM_FIELD_NUMBER = 2;
     /**
-     *
-     *
      * 
      * Send an arbitrary signal
      * 
* * .temporal.omes.kitchen_sink.HandlerInvocation custom = 2; - * * @return Whether the custom field is set. */ @java.lang.Override @@ -6536,26 +6255,21 @@ public boolean hasCustom() { return variantCase_ == 2; } /** - * - * *
      * Send an arbitrary signal
      * 
* * .temporal.omes.kitchen_sink.HandlerInvocation custom = 2; - * * @return The custom. */ @java.lang.Override public io.temporal.omes.KitchenSink.HandlerInvocation getCustom() { if (variantCase_ == 2) { - return (io.temporal.omes.KitchenSink.HandlerInvocation) variant_; + return (io.temporal.omes.KitchenSink.HandlerInvocation) variant_; } return io.temporal.omes.KitchenSink.HandlerInvocation.getDefaultInstance(); } /** - * - * *
      * Send an arbitrary signal
      * 
@@ -6565,13 +6279,12 @@ public io.temporal.omes.KitchenSink.HandlerInvocation getCustom() { @java.lang.Override public io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder getCustomOrBuilder() { if (variantCase_ == 2) { - return (io.temporal.omes.KitchenSink.HandlerInvocation) variant_; + return (io.temporal.omes.KitchenSink.HandlerInvocation) variant_; } return io.temporal.omes.KitchenSink.HandlerInvocation.getDefaultInstance(); } private byte memoizedIsInitialized = -1; - @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; @@ -6583,7 +6296,8 @@ public final boolean isInitialized() { } @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { if (variantCase_ == 1) { output.writeMessage(1, (io.temporal.omes.KitchenSink.DoSignal.DoSignalActions) variant_); } @@ -6600,14 +6314,12 @@ public int getSerializedSize() { size = 0; if (variantCase_ == 1) { - size += - com.google.protobuf.CodedOutputStream.computeMessageSize( - 1, (io.temporal.omes.KitchenSink.DoSignal.DoSignalActions) variant_); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, (io.temporal.omes.KitchenSink.DoSignal.DoSignalActions) variant_); } if (variantCase_ == 2) { - size += - com.google.protobuf.CodedOutputStream.computeMessageSize( - 2, (io.temporal.omes.KitchenSink.HandlerInvocation) variant_); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(2, (io.temporal.omes.KitchenSink.HandlerInvocation) variant_); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; @@ -6617,7 +6329,7 @@ public int getSerializedSize() { @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { - return true; + return true; } if (!(obj instanceof io.temporal.omes.KitchenSink.DoSignal)) { return super.equals(obj); @@ -6627,10 +6339,12 @@ public boolean equals(final java.lang.Object obj) { if (!getVariantCase().equals(other.getVariantCase())) return false; switch (variantCase_) { case 1: - if (!getDoSignalActions().equals(other.getDoSignalActions())) return false; + if (!getDoSignalActions() + .equals(other.getDoSignalActions())) return false; break; case 2: - if (!getCustom().equals(other.getCustom())) return false; + if (!getCustom() + .equals(other.getCustom())) return false; break; case 0: default: @@ -6663,94 +6377,90 @@ public int hashCode() { return hash; } - public static io.temporal.omes.KitchenSink.DoSignal parseFrom(java.nio.ByteBuffer data) + public static io.temporal.omes.KitchenSink.DoSignal parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.DoSignal parseFrom( - java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.DoSignal parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.DoSignal parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.DoSignal parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.DoSignal parseFrom( - byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.DoSignal parseFrom(java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.DoSignal parseFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.DoSignal parseDelimitedFrom( - java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + public static io.temporal.omes.KitchenSink.DoSignal parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); } public static io.temporal.omes.KitchenSink.DoSignal parseDelimitedFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.DoSignal parseFrom( - com.google.protobuf.CodedInputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.DoSignal parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override - public Builder newBuilderForType() { - return newBuilder(); - } - + public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(io.temporal.omes.KitchenSink.DoSignal prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } - @java.lang.Override public Builder toBuilder() { - return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override @@ -6759,34 +6469,36 @@ protected Builder newBuilderForType( Builder builder = new Builder(parent); return builder; } - /** Protobuf type {@code temporal.omes.kitchen_sink.DoSignal} */ - public static final class Builder - extends com.google.protobuf.GeneratedMessageV3.Builder - implements + /** + * Protobuf type {@code temporal.omes.kitchen_sink.DoSignal} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.DoSignal) io.temporal.omes.KitchenSink.DoSignalOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_DoSignal_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_DoSignal_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_DoSignal_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_DoSignal_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.DoSignal.class, - io.temporal.omes.KitchenSink.DoSignal.Builder.class); + io.temporal.omes.KitchenSink.DoSignal.class, io.temporal.omes.KitchenSink.DoSignal.Builder.class); } // Construct using io.temporal.omes.KitchenSink.DoSignal.newBuilder() - private Builder() {} + private Builder() { - private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); } + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } @java.lang.Override public Builder clear() { super.clear(); @@ -6803,9 +6515,9 @@ public Builder clear() { } @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_DoSignal_descriptor; + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_DoSignal_descriptor; } @java.lang.Override @@ -6824,11 +6536,8 @@ public io.temporal.omes.KitchenSink.DoSignal build() { @java.lang.Override public io.temporal.omes.KitchenSink.DoSignal buildPartial() { - io.temporal.omes.KitchenSink.DoSignal result = - new io.temporal.omes.KitchenSink.DoSignal(this); - if (bitField0_ != 0) { - buildPartial0(result); - } + io.temporal.omes.KitchenSink.DoSignal result = new io.temporal.omes.KitchenSink.DoSignal(this); + if (bitField0_ != 0) { buildPartial0(result); } buildPartialOneofs(result); onBuilt(); return result; @@ -6841,10 +6550,12 @@ private void buildPartial0(io.temporal.omes.KitchenSink.DoSignal result) { private void buildPartialOneofs(io.temporal.omes.KitchenSink.DoSignal result) { result.variantCase_ = variantCase_; result.variant_ = this.variant_; - if (variantCase_ == 1 && doSignalActionsBuilder_ != null) { + if (variantCase_ == 1 && + doSignalActionsBuilder_ != null) { result.variant_ = doSignalActionsBuilder_.build(); } - if (variantCase_ == 2 && customBuilder_ != null) { + if (variantCase_ == 2 && + customBuilder_ != null) { result.variant_ = customBuilder_.build(); } } @@ -6853,41 +6564,38 @@ private void buildPartialOneofs(io.temporal.omes.KitchenSink.DoSignal result) { public Builder clone() { return super.clone(); } - @java.lang.Override public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.setField(field, value); } - @java.lang.Override - public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } - @java.lang.Override - public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } - @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, - int index, - java.lang.Object value) { + int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } - @java.lang.Override public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.addRepeatedField(field, value); } - @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.temporal.omes.KitchenSink.DoSignal) { - return mergeFrom((io.temporal.omes.KitchenSink.DoSignal) other); + return mergeFrom((io.temporal.omes.KitchenSink.DoSignal)other); } else { super.mergeFrom(other); return this; @@ -6897,20 +6605,17 @@ public Builder mergeFrom(com.google.protobuf.Message other) { public Builder mergeFrom(io.temporal.omes.KitchenSink.DoSignal other) { if (other == io.temporal.omes.KitchenSink.DoSignal.getDefaultInstance()) return this; switch (other.getVariantCase()) { - case DO_SIGNAL_ACTIONS: - { - mergeDoSignalActions(other.getDoSignalActions()); - break; - } - case CUSTOM: - { - mergeCustom(other.getCustom()); - break; - } - case VARIANT_NOT_SET: - { - break; - } + case DO_SIGNAL_ACTIONS: { + mergeDoSignalActions(other.getDoSignalActions()); + break; + } + case CUSTOM: { + mergeCustom(other.getCustom()); + break; + } + case VARIANT_NOT_SET: { + break; + } } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); @@ -6938,26 +6643,26 @@ public Builder mergeFrom( case 0: done = true; break; - case 10: - { - input.readMessage( - getDoSignalActionsFieldBuilder().getBuilder(), extensionRegistry); - variantCase_ = 1; - break; - } // case 10 - case 18: - { - input.readMessage(getCustomFieldBuilder().getBuilder(), extensionRegistry); - variantCase_ = 2; - break; - } // case 18 - default: - { - if (!super.parseUnknownField(input, extensionRegistry, tag)) { - done = true; // was an endgroup tag - } - break; - } // default: + case 10: { + input.readMessage( + getDoSignalActionsFieldBuilder().getBuilder(), + extensionRegistry); + variantCase_ = 1; + break; + } // case 10 + case 18: { + input.readMessage( + getCustomFieldBuilder().getBuilder(), + extensionRegistry); + variantCase_ = 2; + break; + } // case 18 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -6967,12 +6672,12 @@ public Builder mergeFrom( } // finally return this; } - private int variantCase_ = 0; private java.lang.Object variant_; - - public VariantCase getVariantCase() { - return VariantCase.forNumber(variantCase_); + public VariantCase + getVariantCase() { + return VariantCase.forNumber( + variantCase_); } public Builder clearVariant() { @@ -6985,20 +6690,14 @@ public Builder clearVariant() { private int bitField0_; private com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.DoSignal.DoSignalActions, - io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.Builder, - io.temporal.omes.KitchenSink.DoSignal.DoSignalActionsOrBuilder> - doSignalActionsBuilder_; + io.temporal.omes.KitchenSink.DoSignal.DoSignalActions, io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.Builder, io.temporal.omes.KitchenSink.DoSignal.DoSignalActionsOrBuilder> doSignalActionsBuilder_; /** - * - * *
        * A signal handler must exist named `do_actions_signal` which is responsible for handling the
        * DoSignalActions message. See it's doc for details.
        * 
* * .temporal.omes.kitchen_sink.DoSignal.DoSignalActions do_signal_actions = 1; - * * @return Whether the doSignalActions field is set. */ @java.lang.Override @@ -7006,15 +6705,12 @@ public boolean hasDoSignalActions() { return variantCase_ == 1; } /** - * - * *
        * A signal handler must exist named `do_actions_signal` which is responsible for handling the
        * DoSignalActions message. See it's doc for details.
        * 
* * .temporal.omes.kitchen_sink.DoSignal.DoSignalActions do_signal_actions = 1; - * * @return The doSignalActions. */ @java.lang.Override @@ -7032,8 +6728,6 @@ public io.temporal.omes.KitchenSink.DoSignal.DoSignalActions getDoSignalActions( } } /** - * - * *
        * A signal handler must exist named `do_actions_signal` which is responsible for handling the
        * DoSignalActions message. See it's doc for details.
@@ -7041,8 +6735,7 @@ public io.temporal.omes.KitchenSink.DoSignal.DoSignalActions getDoSignalActions(
        *
        * .temporal.omes.kitchen_sink.DoSignal.DoSignalActions do_signal_actions = 1;
        */
-      public Builder setDoSignalActions(
-          io.temporal.omes.KitchenSink.DoSignal.DoSignalActions value) {
+      public Builder setDoSignalActions(io.temporal.omes.KitchenSink.DoSignal.DoSignalActions value) {
         if (doSignalActionsBuilder_ == null) {
           if (value == null) {
             throw new NullPointerException();
@@ -7056,8 +6749,6 @@ public Builder setDoSignalActions(
         return this;
       }
       /**
-       *
-       *
        * 
        * A signal handler must exist named `do_actions_signal` which is responsible for handling the
        * DoSignalActions message. See it's doc for details.
@@ -7077,8 +6768,6 @@ public Builder setDoSignalActions(
         return this;
       }
       /**
-       *
-       *
        * 
        * A signal handler must exist named `do_actions_signal` which is responsible for handling the
        * DoSignalActions message. See it's doc for details.
@@ -7086,17 +6775,12 @@ public Builder setDoSignalActions(
        *
        * .temporal.omes.kitchen_sink.DoSignal.DoSignalActions do_signal_actions = 1;
        */
-      public Builder mergeDoSignalActions(
-          io.temporal.omes.KitchenSink.DoSignal.DoSignalActions value) {
+      public Builder mergeDoSignalActions(io.temporal.omes.KitchenSink.DoSignal.DoSignalActions value) {
         if (doSignalActionsBuilder_ == null) {
-          if (variantCase_ == 1
-              && variant_
-                  != io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.getDefaultInstance()) {
-            variant_ =
-                io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.newBuilder(
-                        (io.temporal.omes.KitchenSink.DoSignal.DoSignalActions) variant_)
-                    .mergeFrom(value)
-                    .buildPartial();
+          if (variantCase_ == 1 &&
+              variant_ != io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.getDefaultInstance()) {
+            variant_ = io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.newBuilder((io.temporal.omes.KitchenSink.DoSignal.DoSignalActions) variant_)
+                .mergeFrom(value).buildPartial();
           } else {
             variant_ = value;
           }
@@ -7112,8 +6796,6 @@ public Builder mergeDoSignalActions(
         return this;
       }
       /**
-       *
-       *
        * 
        * A signal handler must exist named `do_actions_signal` which is responsible for handling the
        * DoSignalActions message. See it's doc for details.
@@ -7138,8 +6820,6 @@ public Builder clearDoSignalActions() {
         return this;
       }
       /**
-       *
-       *
        * 
        * A signal handler must exist named `do_actions_signal` which is responsible for handling the
        * DoSignalActions message. See it's doc for details.
@@ -7147,13 +6827,10 @@ public Builder clearDoSignalActions() {
        *
        * .temporal.omes.kitchen_sink.DoSignal.DoSignalActions do_signal_actions = 1;
        */
-      public io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.Builder
-          getDoSignalActionsBuilder() {
+      public io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.Builder getDoSignalActionsBuilder() {
         return getDoSignalActionsFieldBuilder().getBuilder();
       }
       /**
-       *
-       *
        * 
        * A signal handler must exist named `do_actions_signal` which is responsible for handling the
        * DoSignalActions message. See it's doc for details.
@@ -7162,8 +6839,7 @@ public Builder clearDoSignalActions() {
        * .temporal.omes.kitchen_sink.DoSignal.DoSignalActions do_signal_actions = 1;
        */
       @java.lang.Override
-      public io.temporal.omes.KitchenSink.DoSignal.DoSignalActionsOrBuilder
-          getDoSignalActionsOrBuilder() {
+      public io.temporal.omes.KitchenSink.DoSignal.DoSignalActionsOrBuilder getDoSignalActionsOrBuilder() {
         if ((variantCase_ == 1) && (doSignalActionsBuilder_ != null)) {
           return doSignalActionsBuilder_.getMessageOrBuilder();
         } else {
@@ -7174,8 +6850,6 @@ public Builder clearDoSignalActions() {
         }
       }
       /**
-       *
-       *
        * 
        * A signal handler must exist named `do_actions_signal` which is responsible for handling the
        * DoSignalActions message. See it's doc for details.
@@ -7184,19 +6858,14 @@ public Builder clearDoSignalActions() {
        * .temporal.omes.kitchen_sink.DoSignal.DoSignalActions do_signal_actions = 1;
        */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.DoSignal.DoSignalActions,
-              io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.Builder,
-              io.temporal.omes.KitchenSink.DoSignal.DoSignalActionsOrBuilder>
+          io.temporal.omes.KitchenSink.DoSignal.DoSignalActions, io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.Builder, io.temporal.omes.KitchenSink.DoSignal.DoSignalActionsOrBuilder> 
           getDoSignalActionsFieldBuilder() {
         if (doSignalActionsBuilder_ == null) {
           if (!(variantCase_ == 1)) {
             variant_ = io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.getDefaultInstance();
           }
-          doSignalActionsBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.omes.KitchenSink.DoSignal.DoSignalActions,
-                  io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.Builder,
-                  io.temporal.omes.KitchenSink.DoSignal.DoSignalActionsOrBuilder>(
+          doSignalActionsBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.omes.KitchenSink.DoSignal.DoSignalActions, io.temporal.omes.KitchenSink.DoSignal.DoSignalActions.Builder, io.temporal.omes.KitchenSink.DoSignal.DoSignalActionsOrBuilder>(
                   (io.temporal.omes.KitchenSink.DoSignal.DoSignalActions) variant_,
                   getParentForChildren(),
                   isClean());
@@ -7208,19 +6877,13 @@ public Builder clearDoSignalActions() {
       }
 
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.HandlerInvocation,
-              io.temporal.omes.KitchenSink.HandlerInvocation.Builder,
-              io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder>
-          customBuilder_;
+          io.temporal.omes.KitchenSink.HandlerInvocation, io.temporal.omes.KitchenSink.HandlerInvocation.Builder, io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder> customBuilder_;
       /**
-       *
-       *
        * 
        * Send an arbitrary signal
        * 
* * .temporal.omes.kitchen_sink.HandlerInvocation custom = 2; - * * @return Whether the custom field is set. */ @java.lang.Override @@ -7228,14 +6891,11 @@ public boolean hasCustom() { return variantCase_ == 2; } /** - * - * *
        * Send an arbitrary signal
        * 
* * .temporal.omes.kitchen_sink.HandlerInvocation custom = 2; - * * @return The custom. */ @java.lang.Override @@ -7253,8 +6913,6 @@ public io.temporal.omes.KitchenSink.HandlerInvocation getCustom() { } } /** - * - * *
        * Send an arbitrary signal
        * 
@@ -7275,8 +6933,6 @@ public Builder setCustom(io.temporal.omes.KitchenSink.HandlerInvocation value) { return this; } /** - * - * *
        * Send an arbitrary signal
        * 
@@ -7295,8 +6951,6 @@ public Builder setCustom( return this; } /** - * - * *
        * Send an arbitrary signal
        * 
@@ -7305,13 +6959,10 @@ public Builder setCustom( */ public Builder mergeCustom(io.temporal.omes.KitchenSink.HandlerInvocation value) { if (customBuilder_ == null) { - if (variantCase_ == 2 - && variant_ != io.temporal.omes.KitchenSink.HandlerInvocation.getDefaultInstance()) { - variant_ = - io.temporal.omes.KitchenSink.HandlerInvocation.newBuilder( - (io.temporal.omes.KitchenSink.HandlerInvocation) variant_) - .mergeFrom(value) - .buildPartial(); + if (variantCase_ == 2 && + variant_ != io.temporal.omes.KitchenSink.HandlerInvocation.getDefaultInstance()) { + variant_ = io.temporal.omes.KitchenSink.HandlerInvocation.newBuilder((io.temporal.omes.KitchenSink.HandlerInvocation) variant_) + .mergeFrom(value).buildPartial(); } else { variant_ = value; } @@ -7327,8 +6978,6 @@ public Builder mergeCustom(io.temporal.omes.KitchenSink.HandlerInvocation value) return this; } /** - * - * *
        * Send an arbitrary signal
        * 
@@ -7352,8 +7001,6 @@ public Builder clearCustom() { return this; } /** - * - * *
        * Send an arbitrary signal
        * 
@@ -7364,8 +7011,6 @@ public io.temporal.omes.KitchenSink.HandlerInvocation.Builder getCustomBuilder() return getCustomFieldBuilder().getBuilder(); } /** - * - * *
        * Send an arbitrary signal
        * 
@@ -7384,8 +7029,6 @@ public io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder getCustomOrBuilde } } /** - * - * *
        * Send an arbitrary signal
        * 
@@ -7393,19 +7036,14 @@ public io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder getCustomOrBuilde * .temporal.omes.kitchen_sink.HandlerInvocation custom = 2; */ private com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.HandlerInvocation, - io.temporal.omes.KitchenSink.HandlerInvocation.Builder, - io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder> + io.temporal.omes.KitchenSink.HandlerInvocation, io.temporal.omes.KitchenSink.HandlerInvocation.Builder, io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder> getCustomFieldBuilder() { if (customBuilder_ == null) { if (!(variantCase_ == 2)) { variant_ = io.temporal.omes.KitchenSink.HandlerInvocation.getDefaultInstance(); } - customBuilder_ = - new com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.HandlerInvocation, - io.temporal.omes.KitchenSink.HandlerInvocation.Builder, - io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder>( + customBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + io.temporal.omes.KitchenSink.HandlerInvocation, io.temporal.omes.KitchenSink.HandlerInvocation.Builder, io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder>( (io.temporal.omes.KitchenSink.HandlerInvocation) variant_, getParentForChildren(), isClean()); @@ -7415,7 +7053,6 @@ public io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder getCustomOrBuilde onChanged(); return customBuilder_; } - @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -7428,12 +7065,12 @@ public final Builder mergeUnknownFields( return super.mergeUnknownFields(unknownFields); } + // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.DoSignal) } // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.DoSignal) private static final io.temporal.omes.KitchenSink.DoSignal DEFAULT_INSTANCE; - static { DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.DoSignal(); } @@ -7442,28 +7079,27 @@ public static io.temporal.omes.KitchenSink.DoSignal getDefaultInstance() { return DEFAULT_INSTANCE; } - private static final com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser() { - @java.lang.Override - public DoSignal parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException() - .setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public DoSignal parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; public static com.google.protobuf.Parser parser() { return PARSER; @@ -7478,42 +7114,34 @@ public com.google.protobuf.Parser getParserForType() { public io.temporal.omes.KitchenSink.DoSignal getDefaultInstanceForType() { return DEFAULT_INSTANCE; } + } - public interface DoQueryOrBuilder - extends + public interface DoQueryOrBuilder extends // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.DoQuery) com.google.protobuf.MessageOrBuilder { /** - * - * *
      * A query must exist named `report_state` which returns the `WorkflowState` message. The input
      * is pointless and only exists to allow testing of variably-sized query args.
      * 
* * .temporal.api.common.v1.Payloads report_state = 1; - * * @return Whether the reportState field is set. */ boolean hasReportState(); /** - * - * *
      * A query must exist named `report_state` which returns the `WorkflowState` message. The input
      * is pointless and only exists to allow testing of variably-sized query args.
      * 
* * .temporal.api.common.v1.Payloads report_state = 1; - * * @return The reportState. */ io.temporal.api.common.v1.Payloads getReportState(); /** - * - * *
      * A query must exist named `report_state` which returns the `WorkflowState` message. The input
      * is pointless and only exists to allow testing of variably-sized query args.
@@ -7524,32 +7152,24 @@ public interface DoQueryOrBuilder
     io.temporal.api.common.v1.PayloadsOrBuilder getReportStateOrBuilder();
 
     /**
-     *
-     *
      * 
      * Send an arbitrary query
      * 
* * .temporal.omes.kitchen_sink.HandlerInvocation custom = 2; - * * @return Whether the custom field is set. */ boolean hasCustom(); /** - * - * *
      * Send an arbitrary query
      * 
* * .temporal.omes.kitchen_sink.HandlerInvocation custom = 2; - * * @return The custom. */ io.temporal.omes.KitchenSink.HandlerInvocation getCustom(); /** - * - * *
      * Send an arbitrary query
      * 
@@ -7559,68 +7179,62 @@ public interface DoQueryOrBuilder io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder getCustomOrBuilder(); /** - * - * *
      * If set, the client should expect the query to fail
      * 
* * bool failure_expected = 10; - * * @return The failureExpected. */ boolean getFailureExpected(); io.temporal.omes.KitchenSink.DoQuery.VariantCase getVariantCase(); } - /** Protobuf type {@code temporal.omes.kitchen_sink.DoQuery} */ - public static final class DoQuery extends com.google.protobuf.GeneratedMessageV3 - implements + /** + * Protobuf type {@code temporal.omes.kitchen_sink.DoQuery} + */ + public static final class DoQuery extends + com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.DoQuery) DoQueryOrBuilder { - private static final long serialVersionUID = 0L; + private static final long serialVersionUID = 0L; // Use DoQuery.newBuilder() to construct. private DoQuery(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } - - private DoQuery() {} + private DoQuery() { + } @java.lang.Override @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { return new DoQuery(); } - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_DoQuery_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_DoQuery_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_DoQuery_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_DoQuery_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.DoQuery.class, - io.temporal.omes.KitchenSink.DoQuery.Builder.class); + io.temporal.omes.KitchenSink.DoQuery.class, io.temporal.omes.KitchenSink.DoQuery.Builder.class); } private int variantCase_ = 0; - @SuppressWarnings("serial") private java.lang.Object variant_; - public enum VariantCase - implements - com.google.protobuf.Internal.EnumLite, + implements com.google.protobuf.Internal.EnumLite, com.google.protobuf.AbstractMessage.InternalOneOfEnum { REPORT_STATE(1), CUSTOM(2), VARIANT_NOT_SET(0); private final int value; - private VariantCase(int value) { this.value = value; } @@ -7636,37 +7250,31 @@ public static VariantCase valueOf(int value) { public static VariantCase forNumber(int value) { switch (value) { - case 1: - return REPORT_STATE; - case 2: - return CUSTOM; - case 0: - return VARIANT_NOT_SET; - default: - return null; + case 1: return REPORT_STATE; + case 2: return CUSTOM; + case 0: return VARIANT_NOT_SET; + default: return null; } } - public int getNumber() { return this.value; } }; - public VariantCase getVariantCase() { - return VariantCase.forNumber(variantCase_); + public VariantCase + getVariantCase() { + return VariantCase.forNumber( + variantCase_); } public static final int REPORT_STATE_FIELD_NUMBER = 1; /** - * - * *
      * A query must exist named `report_state` which returns the `WorkflowState` message. The input
      * is pointless and only exists to allow testing of variably-sized query args.
      * 
* * .temporal.api.common.v1.Payloads report_state = 1; - * * @return Whether the reportState field is set. */ @java.lang.Override @@ -7674,27 +7282,22 @@ public boolean hasReportState() { return variantCase_ == 1; } /** - * - * *
      * A query must exist named `report_state` which returns the `WorkflowState` message. The input
      * is pointless and only exists to allow testing of variably-sized query args.
      * 
* * .temporal.api.common.v1.Payloads report_state = 1; - * * @return The reportState. */ @java.lang.Override public io.temporal.api.common.v1.Payloads getReportState() { if (variantCase_ == 1) { - return (io.temporal.api.common.v1.Payloads) variant_; + return (io.temporal.api.common.v1.Payloads) variant_; } return io.temporal.api.common.v1.Payloads.getDefaultInstance(); } /** - * - * *
      * A query must exist named `report_state` which returns the `WorkflowState` message. The input
      * is pointless and only exists to allow testing of variably-sized query args.
@@ -7705,21 +7308,18 @@ public io.temporal.api.common.v1.Payloads getReportState() {
     @java.lang.Override
     public io.temporal.api.common.v1.PayloadsOrBuilder getReportStateOrBuilder() {
       if (variantCase_ == 1) {
-        return (io.temporal.api.common.v1.Payloads) variant_;
+         return (io.temporal.api.common.v1.Payloads) variant_;
       }
       return io.temporal.api.common.v1.Payloads.getDefaultInstance();
     }
 
     public static final int CUSTOM_FIELD_NUMBER = 2;
     /**
-     *
-     *
      * 
      * Send an arbitrary query
      * 
* * .temporal.omes.kitchen_sink.HandlerInvocation custom = 2; - * * @return Whether the custom field is set. */ @java.lang.Override @@ -7727,26 +7327,21 @@ public boolean hasCustom() { return variantCase_ == 2; } /** - * - * *
      * Send an arbitrary query
      * 
* * .temporal.omes.kitchen_sink.HandlerInvocation custom = 2; - * * @return The custom. */ @java.lang.Override public io.temporal.omes.KitchenSink.HandlerInvocation getCustom() { if (variantCase_ == 2) { - return (io.temporal.omes.KitchenSink.HandlerInvocation) variant_; + return (io.temporal.omes.KitchenSink.HandlerInvocation) variant_; } return io.temporal.omes.KitchenSink.HandlerInvocation.getDefaultInstance(); } /** - * - * *
      * Send an arbitrary query
      * 
@@ -7756,7 +7351,7 @@ public io.temporal.omes.KitchenSink.HandlerInvocation getCustom() { @java.lang.Override public io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder getCustomOrBuilder() { if (variantCase_ == 2) { - return (io.temporal.omes.KitchenSink.HandlerInvocation) variant_; + return (io.temporal.omes.KitchenSink.HandlerInvocation) variant_; } return io.temporal.omes.KitchenSink.HandlerInvocation.getDefaultInstance(); } @@ -7764,14 +7359,11 @@ public io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder getCustomOrBuilde public static final int FAILURE_EXPECTED_FIELD_NUMBER = 10; private boolean failureExpected_ = false; /** - * - * *
      * If set, the client should expect the query to fail
      * 
* * bool failure_expected = 10; - * * @return The failureExpected. */ @java.lang.Override @@ -7780,7 +7372,6 @@ public boolean getFailureExpected() { } private byte memoizedIsInitialized = -1; - @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; @@ -7792,7 +7383,8 @@ public final boolean isInitialized() { } @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { if (variantCase_ == 1) { output.writeMessage(1, (io.temporal.api.common.v1.Payloads) variant_); } @@ -7812,17 +7404,16 @@ public int getSerializedSize() { size = 0; if (variantCase_ == 1) { - size += - com.google.protobuf.CodedOutputStream.computeMessageSize( - 1, (io.temporal.api.common.v1.Payloads) variant_); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, (io.temporal.api.common.v1.Payloads) variant_); } if (variantCase_ == 2) { - size += - com.google.protobuf.CodedOutputStream.computeMessageSize( - 2, (io.temporal.omes.KitchenSink.HandlerInvocation) variant_); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(2, (io.temporal.omes.KitchenSink.HandlerInvocation) variant_); } if (failureExpected_ != false) { - size += com.google.protobuf.CodedOutputStream.computeBoolSize(10, failureExpected_); + size += com.google.protobuf.CodedOutputStream + .computeBoolSize(10, failureExpected_); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; @@ -7832,21 +7423,24 @@ public int getSerializedSize() { @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { - return true; + return true; } if (!(obj instanceof io.temporal.omes.KitchenSink.DoQuery)) { return super.equals(obj); } io.temporal.omes.KitchenSink.DoQuery other = (io.temporal.omes.KitchenSink.DoQuery) obj; - if (getFailureExpected() != other.getFailureExpected()) return false; + if (getFailureExpected() + != other.getFailureExpected()) return false; if (!getVariantCase().equals(other.getVariantCase())) return false; switch (variantCase_) { case 1: - if (!getReportState().equals(other.getReportState())) return false; + if (!getReportState() + .equals(other.getReportState())) return false; break; case 2: - if (!getCustom().equals(other.getCustom())) return false; + if (!getCustom() + .equals(other.getCustom())) return false; break; case 0: default: @@ -7863,7 +7457,8 @@ public int hashCode() { int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + FAILURE_EXPECTED_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getFailureExpected()); + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( + getFailureExpected()); switch (variantCase_) { case 1: hash = (37 * hash) + REPORT_STATE_FIELD_NUMBER; @@ -7881,94 +7476,90 @@ public int hashCode() { return hash; } - public static io.temporal.omes.KitchenSink.DoQuery parseFrom(java.nio.ByteBuffer data) + public static io.temporal.omes.KitchenSink.DoQuery parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.DoQuery parseFrom( - java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.DoQuery parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.DoQuery parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.DoQuery parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.DoQuery parseFrom( - byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.DoQuery parseFrom(java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.DoQuery parseFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } public static io.temporal.omes.KitchenSink.DoQuery parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); } public static io.temporal.omes.KitchenSink.DoQuery parseDelimitedFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.DoQuery parseFrom( - com.google.protobuf.CodedInputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.DoQuery parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override - public Builder newBuilderForType() { - return newBuilder(); - } - + public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(io.temporal.omes.KitchenSink.DoQuery prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } - @java.lang.Override public Builder toBuilder() { - return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override @@ -7977,34 +7568,36 @@ protected Builder newBuilderForType( Builder builder = new Builder(parent); return builder; } - /** Protobuf type {@code temporal.omes.kitchen_sink.DoQuery} */ - public static final class Builder - extends com.google.protobuf.GeneratedMessageV3.Builder - implements + /** + * Protobuf type {@code temporal.omes.kitchen_sink.DoQuery} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.DoQuery) io.temporal.omes.KitchenSink.DoQueryOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_DoQuery_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_DoQuery_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_DoQuery_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_DoQuery_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.DoQuery.class, - io.temporal.omes.KitchenSink.DoQuery.Builder.class); + io.temporal.omes.KitchenSink.DoQuery.class, io.temporal.omes.KitchenSink.DoQuery.Builder.class); } // Construct using io.temporal.omes.KitchenSink.DoQuery.newBuilder() - private Builder() {} + private Builder() { - private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); } + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } @java.lang.Override public Builder clear() { super.clear(); @@ -8022,9 +7615,9 @@ public Builder clear() { } @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_DoQuery_descriptor; + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_DoQuery_descriptor; } @java.lang.Override @@ -8043,11 +7636,8 @@ public io.temporal.omes.KitchenSink.DoQuery build() { @java.lang.Override public io.temporal.omes.KitchenSink.DoQuery buildPartial() { - io.temporal.omes.KitchenSink.DoQuery result = - new io.temporal.omes.KitchenSink.DoQuery(this); - if (bitField0_ != 0) { - buildPartial0(result); - } + io.temporal.omes.KitchenSink.DoQuery result = new io.temporal.omes.KitchenSink.DoQuery(this); + if (bitField0_ != 0) { buildPartial0(result); } buildPartialOneofs(result); onBuilt(); return result; @@ -8063,10 +7653,12 @@ private void buildPartial0(io.temporal.omes.KitchenSink.DoQuery result) { private void buildPartialOneofs(io.temporal.omes.KitchenSink.DoQuery result) { result.variantCase_ = variantCase_; result.variant_ = this.variant_; - if (variantCase_ == 1 && reportStateBuilder_ != null) { + if (variantCase_ == 1 && + reportStateBuilder_ != null) { result.variant_ = reportStateBuilder_.build(); } - if (variantCase_ == 2 && customBuilder_ != null) { + if (variantCase_ == 2 && + customBuilder_ != null) { result.variant_ = customBuilder_.build(); } } @@ -8075,41 +7667,38 @@ private void buildPartialOneofs(io.temporal.omes.KitchenSink.DoQuery result) { public Builder clone() { return super.clone(); } - @java.lang.Override public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.setField(field, value); } - @java.lang.Override - public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } - @java.lang.Override - public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } - @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, - int index, - java.lang.Object value) { + int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } - @java.lang.Override public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.addRepeatedField(field, value); } - @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.temporal.omes.KitchenSink.DoQuery) { - return mergeFrom((io.temporal.omes.KitchenSink.DoQuery) other); + return mergeFrom((io.temporal.omes.KitchenSink.DoQuery)other); } else { super.mergeFrom(other); return this; @@ -8122,20 +7711,17 @@ public Builder mergeFrom(io.temporal.omes.KitchenSink.DoQuery other) { setFailureExpected(other.getFailureExpected()); } switch (other.getVariantCase()) { - case REPORT_STATE: - { - mergeReportState(other.getReportState()); - break; - } - case CUSTOM: - { - mergeCustom(other.getCustom()); - break; - } - case VARIANT_NOT_SET: - { - break; - } + case REPORT_STATE: { + mergeReportState(other.getReportState()); + break; + } + case CUSTOM: { + mergeCustom(other.getCustom()); + break; + } + case VARIANT_NOT_SET: { + break; + } } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); @@ -8163,31 +7749,31 @@ public Builder mergeFrom( case 0: done = true; break; - case 10: - { - input.readMessage(getReportStateFieldBuilder().getBuilder(), extensionRegistry); - variantCase_ = 1; - break; - } // case 10 - case 18: - { - input.readMessage(getCustomFieldBuilder().getBuilder(), extensionRegistry); - variantCase_ = 2; - break; - } // case 18 - case 80: - { - failureExpected_ = input.readBool(); - bitField0_ |= 0x00000004; - break; - } // case 80 - default: - { - if (!super.parseUnknownField(input, extensionRegistry, tag)) { - done = true; // was an endgroup tag - } - break; - } // default: + case 10: { + input.readMessage( + getReportStateFieldBuilder().getBuilder(), + extensionRegistry); + variantCase_ = 1; + break; + } // case 10 + case 18: { + input.readMessage( + getCustomFieldBuilder().getBuilder(), + extensionRegistry); + variantCase_ = 2; + break; + } // case 18 + case 80: { + failureExpected_ = input.readBool(); + bitField0_ |= 0x00000004; + break; + } // case 80 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -8197,12 +7783,12 @@ public Builder mergeFrom( } // finally return this; } - private int variantCase_ = 0; private java.lang.Object variant_; - - public VariantCase getVariantCase() { - return VariantCase.forNumber(variantCase_); + public VariantCase + getVariantCase() { + return VariantCase.forNumber( + variantCase_); } public Builder clearVariant() { @@ -8215,20 +7801,14 @@ public Builder clearVariant() { private int bitField0_; private com.google.protobuf.SingleFieldBuilderV3< - io.temporal.api.common.v1.Payloads, - io.temporal.api.common.v1.Payloads.Builder, - io.temporal.api.common.v1.PayloadsOrBuilder> - reportStateBuilder_; + io.temporal.api.common.v1.Payloads, io.temporal.api.common.v1.Payloads.Builder, io.temporal.api.common.v1.PayloadsOrBuilder> reportStateBuilder_; /** - * - * *
        * A query must exist named `report_state` which returns the `WorkflowState` message. The input
        * is pointless and only exists to allow testing of variably-sized query args.
        * 
* * .temporal.api.common.v1.Payloads report_state = 1; - * * @return Whether the reportState field is set. */ @java.lang.Override @@ -8236,15 +7816,12 @@ public boolean hasReportState() { return variantCase_ == 1; } /** - * - * *
        * A query must exist named `report_state` which returns the `WorkflowState` message. The input
        * is pointless and only exists to allow testing of variably-sized query args.
        * 
* * .temporal.api.common.v1.Payloads report_state = 1; - * * @return The reportState. */ @java.lang.Override @@ -8262,8 +7839,6 @@ public io.temporal.api.common.v1.Payloads getReportState() { } } /** - * - * *
        * A query must exist named `report_state` which returns the `WorkflowState` message. The input
        * is pointless and only exists to allow testing of variably-sized query args.
@@ -8285,8 +7860,6 @@ public Builder setReportState(io.temporal.api.common.v1.Payloads value) {
         return this;
       }
       /**
-       *
-       *
        * 
        * A query must exist named `report_state` which returns the `WorkflowState` message. The input
        * is pointless and only exists to allow testing of variably-sized query args.
@@ -8294,7 +7867,8 @@ public Builder setReportState(io.temporal.api.common.v1.Payloads value) {
        *
        * .temporal.api.common.v1.Payloads report_state = 1;
        */
-      public Builder setReportState(io.temporal.api.common.v1.Payloads.Builder builderForValue) {
+      public Builder setReportState(
+          io.temporal.api.common.v1.Payloads.Builder builderForValue) {
         if (reportStateBuilder_ == null) {
           variant_ = builderForValue.build();
           onChanged();
@@ -8305,8 +7879,6 @@ public Builder setReportState(io.temporal.api.common.v1.Payloads.Builder builder
         return this;
       }
       /**
-       *
-       *
        * 
        * A query must exist named `report_state` which returns the `WorkflowState` message. The input
        * is pointless and only exists to allow testing of variably-sized query args.
@@ -8316,13 +7888,10 @@ public Builder setReportState(io.temporal.api.common.v1.Payloads.Builder builder
        */
       public Builder mergeReportState(io.temporal.api.common.v1.Payloads value) {
         if (reportStateBuilder_ == null) {
-          if (variantCase_ == 1
-              && variant_ != io.temporal.api.common.v1.Payloads.getDefaultInstance()) {
-            variant_ =
-                io.temporal.api.common.v1.Payloads.newBuilder(
-                        (io.temporal.api.common.v1.Payloads) variant_)
-                    .mergeFrom(value)
-                    .buildPartial();
+          if (variantCase_ == 1 &&
+              variant_ != io.temporal.api.common.v1.Payloads.getDefaultInstance()) {
+            variant_ = io.temporal.api.common.v1.Payloads.newBuilder((io.temporal.api.common.v1.Payloads) variant_)
+                .mergeFrom(value).buildPartial();
           } else {
             variant_ = value;
           }
@@ -8338,8 +7907,6 @@ public Builder mergeReportState(io.temporal.api.common.v1.Payloads value) {
         return this;
       }
       /**
-       *
-       *
        * 
        * A query must exist named `report_state` which returns the `WorkflowState` message. The input
        * is pointless and only exists to allow testing of variably-sized query args.
@@ -8364,8 +7931,6 @@ public Builder clearReportState() {
         return this;
       }
       /**
-       *
-       *
        * 
        * A query must exist named `report_state` which returns the `WorkflowState` message. The input
        * is pointless and only exists to allow testing of variably-sized query args.
@@ -8377,8 +7942,6 @@ public io.temporal.api.common.v1.Payloads.Builder getReportStateBuilder() {
         return getReportStateFieldBuilder().getBuilder();
       }
       /**
-       *
-       *
        * 
        * A query must exist named `report_state` which returns the `WorkflowState` message. The input
        * is pointless and only exists to allow testing of variably-sized query args.
@@ -8398,8 +7961,6 @@ public io.temporal.api.common.v1.PayloadsOrBuilder getReportStateOrBuilder() {
         }
       }
       /**
-       *
-       *
        * 
        * A query must exist named `report_state` which returns the `WorkflowState` message. The input
        * is pointless and only exists to allow testing of variably-sized query args.
@@ -8408,20 +7969,17 @@ public io.temporal.api.common.v1.PayloadsOrBuilder getReportStateOrBuilder() {
        * .temporal.api.common.v1.Payloads report_state = 1;
        */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.api.common.v1.Payloads,
-              io.temporal.api.common.v1.Payloads.Builder,
-              io.temporal.api.common.v1.PayloadsOrBuilder>
+          io.temporal.api.common.v1.Payloads, io.temporal.api.common.v1.Payloads.Builder, io.temporal.api.common.v1.PayloadsOrBuilder> 
           getReportStateFieldBuilder() {
         if (reportStateBuilder_ == null) {
           if (!(variantCase_ == 1)) {
             variant_ = io.temporal.api.common.v1.Payloads.getDefaultInstance();
           }
-          reportStateBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.api.common.v1.Payloads,
-                  io.temporal.api.common.v1.Payloads.Builder,
-                  io.temporal.api.common.v1.PayloadsOrBuilder>(
-                  (io.temporal.api.common.v1.Payloads) variant_, getParentForChildren(), isClean());
+          reportStateBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.api.common.v1.Payloads, io.temporal.api.common.v1.Payloads.Builder, io.temporal.api.common.v1.PayloadsOrBuilder>(
+                  (io.temporal.api.common.v1.Payloads) variant_,
+                  getParentForChildren(),
+                  isClean());
           variant_ = null;
         }
         variantCase_ = 1;
@@ -8430,19 +7988,13 @@ public io.temporal.api.common.v1.PayloadsOrBuilder getReportStateOrBuilder() {
       }
 
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.HandlerInvocation,
-              io.temporal.omes.KitchenSink.HandlerInvocation.Builder,
-              io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder>
-          customBuilder_;
+          io.temporal.omes.KitchenSink.HandlerInvocation, io.temporal.omes.KitchenSink.HandlerInvocation.Builder, io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder> customBuilder_;
       /**
-       *
-       *
        * 
        * Send an arbitrary query
        * 
* * .temporal.omes.kitchen_sink.HandlerInvocation custom = 2; - * * @return Whether the custom field is set. */ @java.lang.Override @@ -8450,14 +8002,11 @@ public boolean hasCustom() { return variantCase_ == 2; } /** - * - * *
        * Send an arbitrary query
        * 
* * .temporal.omes.kitchen_sink.HandlerInvocation custom = 2; - * * @return The custom. */ @java.lang.Override @@ -8475,8 +8024,6 @@ public io.temporal.omes.KitchenSink.HandlerInvocation getCustom() { } } /** - * - * *
        * Send an arbitrary query
        * 
@@ -8497,8 +8044,6 @@ public Builder setCustom(io.temporal.omes.KitchenSink.HandlerInvocation value) { return this; } /** - * - * *
        * Send an arbitrary query
        * 
@@ -8517,8 +8062,6 @@ public Builder setCustom( return this; } /** - * - * *
        * Send an arbitrary query
        * 
@@ -8527,13 +8070,10 @@ public Builder setCustom( */ public Builder mergeCustom(io.temporal.omes.KitchenSink.HandlerInvocation value) { if (customBuilder_ == null) { - if (variantCase_ == 2 - && variant_ != io.temporal.omes.KitchenSink.HandlerInvocation.getDefaultInstance()) { - variant_ = - io.temporal.omes.KitchenSink.HandlerInvocation.newBuilder( - (io.temporal.omes.KitchenSink.HandlerInvocation) variant_) - .mergeFrom(value) - .buildPartial(); + if (variantCase_ == 2 && + variant_ != io.temporal.omes.KitchenSink.HandlerInvocation.getDefaultInstance()) { + variant_ = io.temporal.omes.KitchenSink.HandlerInvocation.newBuilder((io.temporal.omes.KitchenSink.HandlerInvocation) variant_) + .mergeFrom(value).buildPartial(); } else { variant_ = value; } @@ -8549,8 +8089,6 @@ public Builder mergeCustom(io.temporal.omes.KitchenSink.HandlerInvocation value) return this; } /** - * - * *
        * Send an arbitrary query
        * 
@@ -8574,8 +8112,6 @@ public Builder clearCustom() { return this; } /** - * - * *
        * Send an arbitrary query
        * 
@@ -8586,8 +8122,6 @@ public io.temporal.omes.KitchenSink.HandlerInvocation.Builder getCustomBuilder() return getCustomFieldBuilder().getBuilder(); } /** - * - * *
        * Send an arbitrary query
        * 
@@ -8606,8 +8140,6 @@ public io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder getCustomOrBuilde } } /** - * - * *
        * Send an arbitrary query
        * 
@@ -8615,19 +8147,14 @@ public io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder getCustomOrBuilde * .temporal.omes.kitchen_sink.HandlerInvocation custom = 2; */ private com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.HandlerInvocation, - io.temporal.omes.KitchenSink.HandlerInvocation.Builder, - io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder> + io.temporal.omes.KitchenSink.HandlerInvocation, io.temporal.omes.KitchenSink.HandlerInvocation.Builder, io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder> getCustomFieldBuilder() { if (customBuilder_ == null) { if (!(variantCase_ == 2)) { variant_ = io.temporal.omes.KitchenSink.HandlerInvocation.getDefaultInstance(); } - customBuilder_ = - new com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.HandlerInvocation, - io.temporal.omes.KitchenSink.HandlerInvocation.Builder, - io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder>( + customBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + io.temporal.omes.KitchenSink.HandlerInvocation, io.temporal.omes.KitchenSink.HandlerInvocation.Builder, io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder>( (io.temporal.omes.KitchenSink.HandlerInvocation) variant_, getParentForChildren(), isClean()); @@ -8638,16 +8165,13 @@ public io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder getCustomOrBuilde return customBuilder_; } - private boolean failureExpected_; + private boolean failureExpected_ ; /** - * - * *
        * If set, the client should expect the query to fail
        * 
* * bool failure_expected = 10; - * * @return The failureExpected. */ @java.lang.Override @@ -8655,14 +8179,11 @@ public boolean getFailureExpected() { return failureExpected_; } /** - * - * *
        * If set, the client should expect the query to fail
        * 
* * bool failure_expected = 10; - * * @param value The failureExpected to set. * @return This builder for chaining. */ @@ -8674,14 +8195,11 @@ public Builder setFailureExpected(boolean value) { return this; } /** - * - * *
        * If set, the client should expect the query to fail
        * 
* * bool failure_expected = 10; - * * @return This builder for chaining. */ public Builder clearFailureExpected() { @@ -8690,7 +8208,6 @@ public Builder clearFailureExpected() { onChanged(); return this; } - @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -8703,12 +8220,12 @@ public final Builder mergeUnknownFields( return super.mergeUnknownFields(unknownFields); } + // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.DoQuery) } // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.DoQuery) private static final io.temporal.omes.KitchenSink.DoQuery DEFAULT_INSTANCE; - static { DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.DoQuery(); } @@ -8717,28 +8234,27 @@ public static io.temporal.omes.KitchenSink.DoQuery getDefaultInstance() { return DEFAULT_INSTANCE; } - private static final com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser() { - @java.lang.Override - public DoQuery parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException() - .setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public DoQuery parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; public static com.google.protobuf.Parser parser() { return PARSER; @@ -8753,42 +8269,34 @@ public com.google.protobuf.Parser getParserForType() { public io.temporal.omes.KitchenSink.DoQuery getDefaultInstanceForType() { return DEFAULT_INSTANCE; } + } - public interface DoUpdateOrBuilder - extends + public interface DoUpdateOrBuilder extends // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.DoUpdate) com.google.protobuf.MessageOrBuilder { /** - * - * *
      * An update must exist named `do_actions_update` which handles the `DoActionsUpdate` message.
      * See message doc for what it should do.
      * 
* * .temporal.omes.kitchen_sink.DoActionsUpdate do_actions = 1; - * * @return Whether the doActions field is set. */ boolean hasDoActions(); /** - * - * *
      * An update must exist named `do_actions_update` which handles the `DoActionsUpdate` message.
      * See message doc for what it should do.
      * 
* * .temporal.omes.kitchen_sink.DoActionsUpdate do_actions = 1; - * * @return The doActions. */ io.temporal.omes.KitchenSink.DoActionsUpdate getDoActions(); /** - * - * *
      * An update must exist named `do_actions_update` which handles the `DoActionsUpdate` message.
      * See message doc for what it should do.
@@ -8799,32 +8307,24 @@ public interface DoUpdateOrBuilder
     io.temporal.omes.KitchenSink.DoActionsUpdateOrBuilder getDoActionsOrBuilder();
 
     /**
-     *
-     *
      * 
      * Send an arbitrary update request
      * 
* * .temporal.omes.kitchen_sink.HandlerInvocation custom = 2; - * * @return Whether the custom field is set. */ boolean hasCustom(); /** - * - * *
      * Send an arbitrary update request
      * 
* * .temporal.omes.kitchen_sink.HandlerInvocation custom = 2; - * * @return The custom. */ io.temporal.omes.KitchenSink.HandlerInvocation getCustom(); /** - * - * *
      * Send an arbitrary update request
      * 
@@ -8834,68 +8334,62 @@ public interface DoUpdateOrBuilder io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder getCustomOrBuilder(); /** - * - * *
      * If set, the client should expect the update to fail
      * 
* * bool failure_expected = 10; - * * @return The failureExpected. */ boolean getFailureExpected(); io.temporal.omes.KitchenSink.DoUpdate.VariantCase getVariantCase(); } - /** Protobuf type {@code temporal.omes.kitchen_sink.DoUpdate} */ - public static final class DoUpdate extends com.google.protobuf.GeneratedMessageV3 - implements + /** + * Protobuf type {@code temporal.omes.kitchen_sink.DoUpdate} + */ + public static final class DoUpdate extends + com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.DoUpdate) DoUpdateOrBuilder { - private static final long serialVersionUID = 0L; + private static final long serialVersionUID = 0L; // Use DoUpdate.newBuilder() to construct. private DoUpdate(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } - - private DoUpdate() {} + private DoUpdate() { + } @java.lang.Override @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { return new DoUpdate(); } - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_DoUpdate_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_DoUpdate_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_DoUpdate_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_DoUpdate_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.DoUpdate.class, - io.temporal.omes.KitchenSink.DoUpdate.Builder.class); + io.temporal.omes.KitchenSink.DoUpdate.class, io.temporal.omes.KitchenSink.DoUpdate.Builder.class); } private int variantCase_ = 0; - @SuppressWarnings("serial") private java.lang.Object variant_; - public enum VariantCase - implements - com.google.protobuf.Internal.EnumLite, + implements com.google.protobuf.Internal.EnumLite, com.google.protobuf.AbstractMessage.InternalOneOfEnum { DO_ACTIONS(1), CUSTOM(2), VARIANT_NOT_SET(0); private final int value; - private VariantCase(int value) { this.value = value; } @@ -8911,37 +8405,31 @@ public static VariantCase valueOf(int value) { public static VariantCase forNumber(int value) { switch (value) { - case 1: - return DO_ACTIONS; - case 2: - return CUSTOM; - case 0: - return VARIANT_NOT_SET; - default: - return null; + case 1: return DO_ACTIONS; + case 2: return CUSTOM; + case 0: return VARIANT_NOT_SET; + default: return null; } } - public int getNumber() { return this.value; } }; - public VariantCase getVariantCase() { - return VariantCase.forNumber(variantCase_); + public VariantCase + getVariantCase() { + return VariantCase.forNumber( + variantCase_); } public static final int DO_ACTIONS_FIELD_NUMBER = 1; /** - * - * *
      * An update must exist named `do_actions_update` which handles the `DoActionsUpdate` message.
      * See message doc for what it should do.
      * 
* * .temporal.omes.kitchen_sink.DoActionsUpdate do_actions = 1; - * * @return Whether the doActions field is set. */ @java.lang.Override @@ -8949,27 +8437,22 @@ public boolean hasDoActions() { return variantCase_ == 1; } /** - * - * *
      * An update must exist named `do_actions_update` which handles the `DoActionsUpdate` message.
      * See message doc for what it should do.
      * 
* * .temporal.omes.kitchen_sink.DoActionsUpdate do_actions = 1; - * * @return The doActions. */ @java.lang.Override public io.temporal.omes.KitchenSink.DoActionsUpdate getDoActions() { if (variantCase_ == 1) { - return (io.temporal.omes.KitchenSink.DoActionsUpdate) variant_; + return (io.temporal.omes.KitchenSink.DoActionsUpdate) variant_; } return io.temporal.omes.KitchenSink.DoActionsUpdate.getDefaultInstance(); } /** - * - * *
      * An update must exist named `do_actions_update` which handles the `DoActionsUpdate` message.
      * See message doc for what it should do.
@@ -8980,21 +8463,18 @@ public io.temporal.omes.KitchenSink.DoActionsUpdate getDoActions() {
     @java.lang.Override
     public io.temporal.omes.KitchenSink.DoActionsUpdateOrBuilder getDoActionsOrBuilder() {
       if (variantCase_ == 1) {
-        return (io.temporal.omes.KitchenSink.DoActionsUpdate) variant_;
+         return (io.temporal.omes.KitchenSink.DoActionsUpdate) variant_;
       }
       return io.temporal.omes.KitchenSink.DoActionsUpdate.getDefaultInstance();
     }
 
     public static final int CUSTOM_FIELD_NUMBER = 2;
     /**
-     *
-     *
      * 
      * Send an arbitrary update request
      * 
* * .temporal.omes.kitchen_sink.HandlerInvocation custom = 2; - * * @return Whether the custom field is set. */ @java.lang.Override @@ -9002,26 +8482,21 @@ public boolean hasCustom() { return variantCase_ == 2; } /** - * - * *
      * Send an arbitrary update request
      * 
* * .temporal.omes.kitchen_sink.HandlerInvocation custom = 2; - * * @return The custom. */ @java.lang.Override public io.temporal.omes.KitchenSink.HandlerInvocation getCustom() { if (variantCase_ == 2) { - return (io.temporal.omes.KitchenSink.HandlerInvocation) variant_; + return (io.temporal.omes.KitchenSink.HandlerInvocation) variant_; } return io.temporal.omes.KitchenSink.HandlerInvocation.getDefaultInstance(); } /** - * - * *
      * Send an arbitrary update request
      * 
@@ -9031,7 +8506,7 @@ public io.temporal.omes.KitchenSink.HandlerInvocation getCustom() { @java.lang.Override public io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder getCustomOrBuilder() { if (variantCase_ == 2) { - return (io.temporal.omes.KitchenSink.HandlerInvocation) variant_; + return (io.temporal.omes.KitchenSink.HandlerInvocation) variant_; } return io.temporal.omes.KitchenSink.HandlerInvocation.getDefaultInstance(); } @@ -9039,14 +8514,11 @@ public io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder getCustomOrBuilde public static final int FAILURE_EXPECTED_FIELD_NUMBER = 10; private boolean failureExpected_ = false; /** - * - * *
      * If set, the client should expect the update to fail
      * 
* * bool failure_expected = 10; - * * @return The failureExpected. */ @java.lang.Override @@ -9055,7 +8527,6 @@ public boolean getFailureExpected() { } private byte memoizedIsInitialized = -1; - @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; @@ -9067,7 +8538,8 @@ public final boolean isInitialized() { } @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { if (variantCase_ == 1) { output.writeMessage(1, (io.temporal.omes.KitchenSink.DoActionsUpdate) variant_); } @@ -9087,17 +8559,16 @@ public int getSerializedSize() { size = 0; if (variantCase_ == 1) { - size += - com.google.protobuf.CodedOutputStream.computeMessageSize( - 1, (io.temporal.omes.KitchenSink.DoActionsUpdate) variant_); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, (io.temporal.omes.KitchenSink.DoActionsUpdate) variant_); } if (variantCase_ == 2) { - size += - com.google.protobuf.CodedOutputStream.computeMessageSize( - 2, (io.temporal.omes.KitchenSink.HandlerInvocation) variant_); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(2, (io.temporal.omes.KitchenSink.HandlerInvocation) variant_); } if (failureExpected_ != false) { - size += com.google.protobuf.CodedOutputStream.computeBoolSize(10, failureExpected_); + size += com.google.protobuf.CodedOutputStream + .computeBoolSize(10, failureExpected_); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; @@ -9107,21 +8578,24 @@ public int getSerializedSize() { @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { - return true; + return true; } if (!(obj instanceof io.temporal.omes.KitchenSink.DoUpdate)) { return super.equals(obj); } io.temporal.omes.KitchenSink.DoUpdate other = (io.temporal.omes.KitchenSink.DoUpdate) obj; - if (getFailureExpected() != other.getFailureExpected()) return false; + if (getFailureExpected() + != other.getFailureExpected()) return false; if (!getVariantCase().equals(other.getVariantCase())) return false; switch (variantCase_) { case 1: - if (!getDoActions().equals(other.getDoActions())) return false; + if (!getDoActions() + .equals(other.getDoActions())) return false; break; case 2: - if (!getCustom().equals(other.getCustom())) return false; + if (!getCustom() + .equals(other.getCustom())) return false; break; case 0: default: @@ -9138,7 +8612,8 @@ public int hashCode() { int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + FAILURE_EXPECTED_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getFailureExpected()); + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( + getFailureExpected()); switch (variantCase_) { case 1: hash = (37 * hash) + DO_ACTIONS_FIELD_NUMBER; @@ -9156,94 +8631,90 @@ public int hashCode() { return hash; } - public static io.temporal.omes.KitchenSink.DoUpdate parseFrom(java.nio.ByteBuffer data) + public static io.temporal.omes.KitchenSink.DoUpdate parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.DoUpdate parseFrom( - java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.DoUpdate parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.DoUpdate parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.DoUpdate parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.DoUpdate parseFrom( - byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.DoUpdate parseFrom(java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.DoUpdate parseFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.DoUpdate parseDelimitedFrom( - java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + public static io.temporal.omes.KitchenSink.DoUpdate parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); } public static io.temporal.omes.KitchenSink.DoUpdate parseDelimitedFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.DoUpdate parseFrom( - com.google.protobuf.CodedInputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.DoUpdate parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override - public Builder newBuilderForType() { - return newBuilder(); - } - + public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(io.temporal.omes.KitchenSink.DoUpdate prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } - @java.lang.Override public Builder toBuilder() { - return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override @@ -9252,34 +8723,36 @@ protected Builder newBuilderForType( Builder builder = new Builder(parent); return builder; } - /** Protobuf type {@code temporal.omes.kitchen_sink.DoUpdate} */ - public static final class Builder - extends com.google.protobuf.GeneratedMessageV3.Builder - implements + /** + * Protobuf type {@code temporal.omes.kitchen_sink.DoUpdate} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.DoUpdate) io.temporal.omes.KitchenSink.DoUpdateOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_DoUpdate_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_DoUpdate_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_DoUpdate_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_DoUpdate_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.DoUpdate.class, - io.temporal.omes.KitchenSink.DoUpdate.Builder.class); + io.temporal.omes.KitchenSink.DoUpdate.class, io.temporal.omes.KitchenSink.DoUpdate.Builder.class); } // Construct using io.temporal.omes.KitchenSink.DoUpdate.newBuilder() - private Builder() {} + private Builder() { - private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); } + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } @java.lang.Override public Builder clear() { super.clear(); @@ -9297,9 +8770,9 @@ public Builder clear() { } @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_DoUpdate_descriptor; + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_DoUpdate_descriptor; } @java.lang.Override @@ -9318,11 +8791,8 @@ public io.temporal.omes.KitchenSink.DoUpdate build() { @java.lang.Override public io.temporal.omes.KitchenSink.DoUpdate buildPartial() { - io.temporal.omes.KitchenSink.DoUpdate result = - new io.temporal.omes.KitchenSink.DoUpdate(this); - if (bitField0_ != 0) { - buildPartial0(result); - } + io.temporal.omes.KitchenSink.DoUpdate result = new io.temporal.omes.KitchenSink.DoUpdate(this); + if (bitField0_ != 0) { buildPartial0(result); } buildPartialOneofs(result); onBuilt(); return result; @@ -9338,10 +8808,12 @@ private void buildPartial0(io.temporal.omes.KitchenSink.DoUpdate result) { private void buildPartialOneofs(io.temporal.omes.KitchenSink.DoUpdate result) { result.variantCase_ = variantCase_; result.variant_ = this.variant_; - if (variantCase_ == 1 && doActionsBuilder_ != null) { + if (variantCase_ == 1 && + doActionsBuilder_ != null) { result.variant_ = doActionsBuilder_.build(); } - if (variantCase_ == 2 && customBuilder_ != null) { + if (variantCase_ == 2 && + customBuilder_ != null) { result.variant_ = customBuilder_.build(); } } @@ -9350,41 +8822,38 @@ private void buildPartialOneofs(io.temporal.omes.KitchenSink.DoUpdate result) { public Builder clone() { return super.clone(); } - @java.lang.Override public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.setField(field, value); } - @java.lang.Override - public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } - @java.lang.Override - public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } - @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, - int index, - java.lang.Object value) { + int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } - @java.lang.Override public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.addRepeatedField(field, value); } - @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.temporal.omes.KitchenSink.DoUpdate) { - return mergeFrom((io.temporal.omes.KitchenSink.DoUpdate) other); + return mergeFrom((io.temporal.omes.KitchenSink.DoUpdate)other); } else { super.mergeFrom(other); return this; @@ -9397,20 +8866,17 @@ public Builder mergeFrom(io.temporal.omes.KitchenSink.DoUpdate other) { setFailureExpected(other.getFailureExpected()); } switch (other.getVariantCase()) { - case DO_ACTIONS: - { - mergeDoActions(other.getDoActions()); - break; - } - case CUSTOM: - { - mergeCustom(other.getCustom()); - break; - } - case VARIANT_NOT_SET: - { - break; - } + case DO_ACTIONS: { + mergeDoActions(other.getDoActions()); + break; + } + case CUSTOM: { + mergeCustom(other.getCustom()); + break; + } + case VARIANT_NOT_SET: { + break; + } } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); @@ -9438,31 +8904,31 @@ public Builder mergeFrom( case 0: done = true; break; - case 10: - { - input.readMessage(getDoActionsFieldBuilder().getBuilder(), extensionRegistry); - variantCase_ = 1; - break; - } // case 10 - case 18: - { - input.readMessage(getCustomFieldBuilder().getBuilder(), extensionRegistry); - variantCase_ = 2; - break; - } // case 18 - case 80: - { - failureExpected_ = input.readBool(); - bitField0_ |= 0x00000004; - break; - } // case 80 - default: - { - if (!super.parseUnknownField(input, extensionRegistry, tag)) { - done = true; // was an endgroup tag - } - break; - } // default: + case 10: { + input.readMessage( + getDoActionsFieldBuilder().getBuilder(), + extensionRegistry); + variantCase_ = 1; + break; + } // case 10 + case 18: { + input.readMessage( + getCustomFieldBuilder().getBuilder(), + extensionRegistry); + variantCase_ = 2; + break; + } // case 18 + case 80: { + failureExpected_ = input.readBool(); + bitField0_ |= 0x00000004; + break; + } // case 80 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -9472,12 +8938,12 @@ public Builder mergeFrom( } // finally return this; } - private int variantCase_ = 0; private java.lang.Object variant_; - - public VariantCase getVariantCase() { - return VariantCase.forNumber(variantCase_); + public VariantCase + getVariantCase() { + return VariantCase.forNumber( + variantCase_); } public Builder clearVariant() { @@ -9490,20 +8956,14 @@ public Builder clearVariant() { private int bitField0_; private com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.DoActionsUpdate, - io.temporal.omes.KitchenSink.DoActionsUpdate.Builder, - io.temporal.omes.KitchenSink.DoActionsUpdateOrBuilder> - doActionsBuilder_; + io.temporal.omes.KitchenSink.DoActionsUpdate, io.temporal.omes.KitchenSink.DoActionsUpdate.Builder, io.temporal.omes.KitchenSink.DoActionsUpdateOrBuilder> doActionsBuilder_; /** - * - * *
        * An update must exist named `do_actions_update` which handles the `DoActionsUpdate` message.
        * See message doc for what it should do.
        * 
* * .temporal.omes.kitchen_sink.DoActionsUpdate do_actions = 1; - * * @return Whether the doActions field is set. */ @java.lang.Override @@ -9511,15 +8971,12 @@ public boolean hasDoActions() { return variantCase_ == 1; } /** - * - * *
        * An update must exist named `do_actions_update` which handles the `DoActionsUpdate` message.
        * See message doc for what it should do.
        * 
* * .temporal.omes.kitchen_sink.DoActionsUpdate do_actions = 1; - * * @return The doActions. */ @java.lang.Override @@ -9537,8 +8994,6 @@ public io.temporal.omes.KitchenSink.DoActionsUpdate getDoActions() { } } /** - * - * *
        * An update must exist named `do_actions_update` which handles the `DoActionsUpdate` message.
        * See message doc for what it should do.
@@ -9560,8 +9015,6 @@ public Builder setDoActions(io.temporal.omes.KitchenSink.DoActionsUpdate value)
         return this;
       }
       /**
-       *
-       *
        * 
        * An update must exist named `do_actions_update` which handles the `DoActionsUpdate` message.
        * See message doc for what it should do.
@@ -9581,8 +9034,6 @@ public Builder setDoActions(
         return this;
       }
       /**
-       *
-       *
        * 
        * An update must exist named `do_actions_update` which handles the `DoActionsUpdate` message.
        * See message doc for what it should do.
@@ -9592,13 +9043,10 @@ public Builder setDoActions(
        */
       public Builder mergeDoActions(io.temporal.omes.KitchenSink.DoActionsUpdate value) {
         if (doActionsBuilder_ == null) {
-          if (variantCase_ == 1
-              && variant_ != io.temporal.omes.KitchenSink.DoActionsUpdate.getDefaultInstance()) {
-            variant_ =
-                io.temporal.omes.KitchenSink.DoActionsUpdate.newBuilder(
-                        (io.temporal.omes.KitchenSink.DoActionsUpdate) variant_)
-                    .mergeFrom(value)
-                    .buildPartial();
+          if (variantCase_ == 1 &&
+              variant_ != io.temporal.omes.KitchenSink.DoActionsUpdate.getDefaultInstance()) {
+            variant_ = io.temporal.omes.KitchenSink.DoActionsUpdate.newBuilder((io.temporal.omes.KitchenSink.DoActionsUpdate) variant_)
+                .mergeFrom(value).buildPartial();
           } else {
             variant_ = value;
           }
@@ -9614,8 +9062,6 @@ public Builder mergeDoActions(io.temporal.omes.KitchenSink.DoActionsUpdate value
         return this;
       }
       /**
-       *
-       *
        * 
        * An update must exist named `do_actions_update` which handles the `DoActionsUpdate` message.
        * See message doc for what it should do.
@@ -9640,8 +9086,6 @@ public Builder clearDoActions() {
         return this;
       }
       /**
-       *
-       *
        * 
        * An update must exist named `do_actions_update` which handles the `DoActionsUpdate` message.
        * See message doc for what it should do.
@@ -9653,8 +9097,6 @@ public io.temporal.omes.KitchenSink.DoActionsUpdate.Builder getDoActionsBuilder(
         return getDoActionsFieldBuilder().getBuilder();
       }
       /**
-       *
-       *
        * 
        * An update must exist named `do_actions_update` which handles the `DoActionsUpdate` message.
        * See message doc for what it should do.
@@ -9674,8 +9116,6 @@ public io.temporal.omes.KitchenSink.DoActionsUpdateOrBuilder getDoActionsOrBuild
         }
       }
       /**
-       *
-       *
        * 
        * An update must exist named `do_actions_update` which handles the `DoActionsUpdate` message.
        * See message doc for what it should do.
@@ -9684,19 +9124,14 @@ public io.temporal.omes.KitchenSink.DoActionsUpdateOrBuilder getDoActionsOrBuild
        * .temporal.omes.kitchen_sink.DoActionsUpdate do_actions = 1;
        */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.DoActionsUpdate,
-              io.temporal.omes.KitchenSink.DoActionsUpdate.Builder,
-              io.temporal.omes.KitchenSink.DoActionsUpdateOrBuilder>
+          io.temporal.omes.KitchenSink.DoActionsUpdate, io.temporal.omes.KitchenSink.DoActionsUpdate.Builder, io.temporal.omes.KitchenSink.DoActionsUpdateOrBuilder> 
           getDoActionsFieldBuilder() {
         if (doActionsBuilder_ == null) {
           if (!(variantCase_ == 1)) {
             variant_ = io.temporal.omes.KitchenSink.DoActionsUpdate.getDefaultInstance();
           }
-          doActionsBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.omes.KitchenSink.DoActionsUpdate,
-                  io.temporal.omes.KitchenSink.DoActionsUpdate.Builder,
-                  io.temporal.omes.KitchenSink.DoActionsUpdateOrBuilder>(
+          doActionsBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.omes.KitchenSink.DoActionsUpdate, io.temporal.omes.KitchenSink.DoActionsUpdate.Builder, io.temporal.omes.KitchenSink.DoActionsUpdateOrBuilder>(
                   (io.temporal.omes.KitchenSink.DoActionsUpdate) variant_,
                   getParentForChildren(),
                   isClean());
@@ -9708,19 +9143,13 @@ public io.temporal.omes.KitchenSink.DoActionsUpdateOrBuilder getDoActionsOrBuild
       }
 
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.HandlerInvocation,
-              io.temporal.omes.KitchenSink.HandlerInvocation.Builder,
-              io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder>
-          customBuilder_;
+          io.temporal.omes.KitchenSink.HandlerInvocation, io.temporal.omes.KitchenSink.HandlerInvocation.Builder, io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder> customBuilder_;
       /**
-       *
-       *
        * 
        * Send an arbitrary update request
        * 
* * .temporal.omes.kitchen_sink.HandlerInvocation custom = 2; - * * @return Whether the custom field is set. */ @java.lang.Override @@ -9728,14 +9157,11 @@ public boolean hasCustom() { return variantCase_ == 2; } /** - * - * *
        * Send an arbitrary update request
        * 
* * .temporal.omes.kitchen_sink.HandlerInvocation custom = 2; - * * @return The custom. */ @java.lang.Override @@ -9753,8 +9179,6 @@ public io.temporal.omes.KitchenSink.HandlerInvocation getCustom() { } } /** - * - * *
        * Send an arbitrary update request
        * 
@@ -9775,8 +9199,6 @@ public Builder setCustom(io.temporal.omes.KitchenSink.HandlerInvocation value) { return this; } /** - * - * *
        * Send an arbitrary update request
        * 
@@ -9795,8 +9217,6 @@ public Builder setCustom( return this; } /** - * - * *
        * Send an arbitrary update request
        * 
@@ -9805,13 +9225,10 @@ public Builder setCustom( */ public Builder mergeCustom(io.temporal.omes.KitchenSink.HandlerInvocation value) { if (customBuilder_ == null) { - if (variantCase_ == 2 - && variant_ != io.temporal.omes.KitchenSink.HandlerInvocation.getDefaultInstance()) { - variant_ = - io.temporal.omes.KitchenSink.HandlerInvocation.newBuilder( - (io.temporal.omes.KitchenSink.HandlerInvocation) variant_) - .mergeFrom(value) - .buildPartial(); + if (variantCase_ == 2 && + variant_ != io.temporal.omes.KitchenSink.HandlerInvocation.getDefaultInstance()) { + variant_ = io.temporal.omes.KitchenSink.HandlerInvocation.newBuilder((io.temporal.omes.KitchenSink.HandlerInvocation) variant_) + .mergeFrom(value).buildPartial(); } else { variant_ = value; } @@ -9827,8 +9244,6 @@ public Builder mergeCustom(io.temporal.omes.KitchenSink.HandlerInvocation value) return this; } /** - * - * *
        * Send an arbitrary update request
        * 
@@ -9852,8 +9267,6 @@ public Builder clearCustom() { return this; } /** - * - * *
        * Send an arbitrary update request
        * 
@@ -9864,8 +9277,6 @@ public io.temporal.omes.KitchenSink.HandlerInvocation.Builder getCustomBuilder() return getCustomFieldBuilder().getBuilder(); } /** - * - * *
        * Send an arbitrary update request
        * 
@@ -9884,8 +9295,6 @@ public io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder getCustomOrBuilde } } /** - * - * *
        * Send an arbitrary update request
        * 
@@ -9893,19 +9302,14 @@ public io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder getCustomOrBuilde * .temporal.omes.kitchen_sink.HandlerInvocation custom = 2; */ private com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.HandlerInvocation, - io.temporal.omes.KitchenSink.HandlerInvocation.Builder, - io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder> + io.temporal.omes.KitchenSink.HandlerInvocation, io.temporal.omes.KitchenSink.HandlerInvocation.Builder, io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder> getCustomFieldBuilder() { if (customBuilder_ == null) { if (!(variantCase_ == 2)) { variant_ = io.temporal.omes.KitchenSink.HandlerInvocation.getDefaultInstance(); } - customBuilder_ = - new com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.HandlerInvocation, - io.temporal.omes.KitchenSink.HandlerInvocation.Builder, - io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder>( + customBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + io.temporal.omes.KitchenSink.HandlerInvocation, io.temporal.omes.KitchenSink.HandlerInvocation.Builder, io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder>( (io.temporal.omes.KitchenSink.HandlerInvocation) variant_, getParentForChildren(), isClean()); @@ -9916,16 +9320,13 @@ public io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder getCustomOrBuilde return customBuilder_; } - private boolean failureExpected_; + private boolean failureExpected_ ; /** - * - * *
        * If set, the client should expect the update to fail
        * 
* * bool failure_expected = 10; - * * @return The failureExpected. */ @java.lang.Override @@ -9933,14 +9334,11 @@ public boolean getFailureExpected() { return failureExpected_; } /** - * - * *
        * If set, the client should expect the update to fail
        * 
* * bool failure_expected = 10; - * * @param value The failureExpected to set. * @return This builder for chaining. */ @@ -9952,14 +9350,11 @@ public Builder setFailureExpected(boolean value) { return this; } /** - * - * *
        * If set, the client should expect the update to fail
        * 
* * bool failure_expected = 10; - * * @return This builder for chaining. */ public Builder clearFailureExpected() { @@ -9968,7 +9363,6 @@ public Builder clearFailureExpected() { onChanged(); return this; } - @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -9981,12 +9375,12 @@ public final Builder mergeUnknownFields( return super.mergeUnknownFields(unknownFields); } + // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.DoUpdate) } // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.DoUpdate) private static final io.temporal.omes.KitchenSink.DoUpdate DEFAULT_INSTANCE; - static { DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.DoUpdate(); } @@ -9995,28 +9389,27 @@ public static io.temporal.omes.KitchenSink.DoUpdate getDefaultInstance() { return DEFAULT_INSTANCE; } - private static final com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser() { - @java.lang.Override - public DoUpdate parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException() - .setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public DoUpdate parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; public static com.google.protobuf.Parser parser() { return PARSER; @@ -10031,16 +9424,14 @@ public com.google.protobuf.Parser getParserForType() { public io.temporal.omes.KitchenSink.DoUpdate getDefaultInstanceForType() { return DEFAULT_INSTANCE; } + } - public interface DoActionsUpdateOrBuilder - extends + public interface DoActionsUpdateOrBuilder extends // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.DoActionsUpdate) com.google.protobuf.MessageOrBuilder { /** - * - * *
      * Do same thing signal handler would do when given the provided action set. The handler should
      * return the `WorkflowState` when done with all the provided actions. You may also include a
@@ -10048,13 +9439,10 @@ public interface DoActionsUpdateOrBuilder
      * 
* * .temporal.omes.kitchen_sink.ActionSet do_actions = 1; - * * @return Whether the doActions field is set. */ boolean hasDoActions(); /** - * - * *
      * Do same thing signal handler would do when given the provided action set. The handler should
      * return the `WorkflowState` when done with all the provided actions. You may also include a
@@ -10062,13 +9450,10 @@ public interface DoActionsUpdateOrBuilder
      * 
* * .temporal.omes.kitchen_sink.ActionSet do_actions = 1; - * * @return The doActions. */ io.temporal.omes.KitchenSink.ActionSet getDoActions(); /** - * - * *
      * Do same thing signal handler would do when given the provided action set. The handler should
      * return the `WorkflowState` when done with all the provided actions. You may also include a
@@ -10080,32 +9465,24 @@ public interface DoActionsUpdateOrBuilder
     io.temporal.omes.KitchenSink.ActionSetOrBuilder getDoActionsOrBuilder();
 
     /**
-     *
-     *
      * 
      * The validator should reject the update
      * 
* * .google.protobuf.Empty reject_me = 2; - * * @return Whether the rejectMe field is set. */ boolean hasRejectMe(); /** - * - * *
      * The validator should reject the update
      * 
* * .google.protobuf.Empty reject_me = 2; - * * @return The rejectMe. */ com.google.protobuf.Empty getRejectMe(); /** - * - * *
      * The validator should reject the update
      * 
@@ -10116,54 +9493,51 @@ public interface DoActionsUpdateOrBuilder io.temporal.omes.KitchenSink.DoActionsUpdate.VariantCase getVariantCase(); } - /** Protobuf type {@code temporal.omes.kitchen_sink.DoActionsUpdate} */ - public static final class DoActionsUpdate extends com.google.protobuf.GeneratedMessageV3 - implements + /** + * Protobuf type {@code temporal.omes.kitchen_sink.DoActionsUpdate} + */ + public static final class DoActionsUpdate extends + com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.DoActionsUpdate) DoActionsUpdateOrBuilder { - private static final long serialVersionUID = 0L; + private static final long serialVersionUID = 0L; // Use DoActionsUpdate.newBuilder() to construct. private DoActionsUpdate(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } - - private DoActionsUpdate() {} + private DoActionsUpdate() { + } @java.lang.Override @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { return new DoActionsUpdate(); } - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_DoActionsUpdate_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_DoActionsUpdate_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_DoActionsUpdate_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_DoActionsUpdate_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.DoActionsUpdate.class, - io.temporal.omes.KitchenSink.DoActionsUpdate.Builder.class); + io.temporal.omes.KitchenSink.DoActionsUpdate.class, io.temporal.omes.KitchenSink.DoActionsUpdate.Builder.class); } private int variantCase_ = 0; - @SuppressWarnings("serial") private java.lang.Object variant_; - public enum VariantCase - implements - com.google.protobuf.Internal.EnumLite, + implements com.google.protobuf.Internal.EnumLite, com.google.protobuf.AbstractMessage.InternalOneOfEnum { DO_ACTIONS(1), REJECT_ME(2), VARIANT_NOT_SET(0); private final int value; - private VariantCase(int value) { this.value = value; } @@ -10179,30 +9553,25 @@ public static VariantCase valueOf(int value) { public static VariantCase forNumber(int value) { switch (value) { - case 1: - return DO_ACTIONS; - case 2: - return REJECT_ME; - case 0: - return VARIANT_NOT_SET; - default: - return null; + case 1: return DO_ACTIONS; + case 2: return REJECT_ME; + case 0: return VARIANT_NOT_SET; + default: return null; } } - public int getNumber() { return this.value; } }; - public VariantCase getVariantCase() { - return VariantCase.forNumber(variantCase_); + public VariantCase + getVariantCase() { + return VariantCase.forNumber( + variantCase_); } public static final int DO_ACTIONS_FIELD_NUMBER = 1; /** - * - * *
      * Do same thing signal handler would do when given the provided action set. The handler should
      * return the `WorkflowState` when done with all the provided actions. You may also include a
@@ -10210,7 +9579,6 @@ public VariantCase getVariantCase() {
      * 
* * .temporal.omes.kitchen_sink.ActionSet do_actions = 1; - * * @return Whether the doActions field is set. */ @java.lang.Override @@ -10218,8 +9586,6 @@ public boolean hasDoActions() { return variantCase_ == 1; } /** - * - * *
      * Do same thing signal handler would do when given the provided action set. The handler should
      * return the `WorkflowState` when done with all the provided actions. You may also include a
@@ -10227,19 +9593,16 @@ public boolean hasDoActions() {
      * 
* * .temporal.omes.kitchen_sink.ActionSet do_actions = 1; - * * @return The doActions. */ @java.lang.Override public io.temporal.omes.KitchenSink.ActionSet getDoActions() { if (variantCase_ == 1) { - return (io.temporal.omes.KitchenSink.ActionSet) variant_; + return (io.temporal.omes.KitchenSink.ActionSet) variant_; } return io.temporal.omes.KitchenSink.ActionSet.getDefaultInstance(); } /** - * - * *
      * Do same thing signal handler would do when given the provided action set. The handler should
      * return the `WorkflowState` when done with all the provided actions. You may also include a
@@ -10251,21 +9614,18 @@ public io.temporal.omes.KitchenSink.ActionSet getDoActions() {
     @java.lang.Override
     public io.temporal.omes.KitchenSink.ActionSetOrBuilder getDoActionsOrBuilder() {
       if (variantCase_ == 1) {
-        return (io.temporal.omes.KitchenSink.ActionSet) variant_;
+         return (io.temporal.omes.KitchenSink.ActionSet) variant_;
       }
       return io.temporal.omes.KitchenSink.ActionSet.getDefaultInstance();
     }
 
     public static final int REJECT_ME_FIELD_NUMBER = 2;
     /**
-     *
-     *
      * 
      * The validator should reject the update
      * 
* * .google.protobuf.Empty reject_me = 2; - * * @return Whether the rejectMe field is set. */ @java.lang.Override @@ -10273,26 +9633,21 @@ public boolean hasRejectMe() { return variantCase_ == 2; } /** - * - * *
      * The validator should reject the update
      * 
* * .google.protobuf.Empty reject_me = 2; - * * @return The rejectMe. */ @java.lang.Override public com.google.protobuf.Empty getRejectMe() { if (variantCase_ == 2) { - return (com.google.protobuf.Empty) variant_; + return (com.google.protobuf.Empty) variant_; } return com.google.protobuf.Empty.getDefaultInstance(); } /** - * - * *
      * The validator should reject the update
      * 
@@ -10302,13 +9657,12 @@ public com.google.protobuf.Empty getRejectMe() { @java.lang.Override public com.google.protobuf.EmptyOrBuilder getRejectMeOrBuilder() { if (variantCase_ == 2) { - return (com.google.protobuf.Empty) variant_; + return (com.google.protobuf.Empty) variant_; } return com.google.protobuf.Empty.getDefaultInstance(); } private byte memoizedIsInitialized = -1; - @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; @@ -10320,7 +9674,8 @@ public final boolean isInitialized() { } @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { if (variantCase_ == 1) { output.writeMessage(1, (io.temporal.omes.KitchenSink.ActionSet) variant_); } @@ -10337,14 +9692,12 @@ public int getSerializedSize() { size = 0; if (variantCase_ == 1) { - size += - com.google.protobuf.CodedOutputStream.computeMessageSize( - 1, (io.temporal.omes.KitchenSink.ActionSet) variant_); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, (io.temporal.omes.KitchenSink.ActionSet) variant_); } if (variantCase_ == 2) { - size += - com.google.protobuf.CodedOutputStream.computeMessageSize( - 2, (com.google.protobuf.Empty) variant_); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(2, (com.google.protobuf.Empty) variant_); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; @@ -10354,21 +9707,22 @@ public int getSerializedSize() { @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { - return true; + return true; } if (!(obj instanceof io.temporal.omes.KitchenSink.DoActionsUpdate)) { return super.equals(obj); } - io.temporal.omes.KitchenSink.DoActionsUpdate other = - (io.temporal.omes.KitchenSink.DoActionsUpdate) obj; + io.temporal.omes.KitchenSink.DoActionsUpdate other = (io.temporal.omes.KitchenSink.DoActionsUpdate) obj; if (!getVariantCase().equals(other.getVariantCase())) return false; switch (variantCase_) { case 1: - if (!getDoActions().equals(other.getDoActions())) return false; + if (!getDoActions() + .equals(other.getDoActions())) return false; break; case 2: - if (!getRejectMe().equals(other.getRejectMe())) return false; + if (!getRejectMe() + .equals(other.getRejectMe())) return false; break; case 0: default: @@ -10401,94 +9755,90 @@ public int hashCode() { return hash; } - public static io.temporal.omes.KitchenSink.DoActionsUpdate parseFrom(java.nio.ByteBuffer data) + public static io.temporal.omes.KitchenSink.DoActionsUpdate parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.DoActionsUpdate parseFrom( - java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.DoActionsUpdate parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.DoActionsUpdate parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.DoActionsUpdate parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.DoActionsUpdate parseFrom( - byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.DoActionsUpdate parseFrom(java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.DoActionsUpdate parseFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.DoActionsUpdate parseDelimitedFrom( - java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + public static io.temporal.omes.KitchenSink.DoActionsUpdate parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); } public static io.temporal.omes.KitchenSink.DoActionsUpdate parseDelimitedFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.DoActionsUpdate parseFrom( - com.google.protobuf.CodedInputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.DoActionsUpdate parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override - public Builder newBuilderForType() { - return newBuilder(); - } - + public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(io.temporal.omes.KitchenSink.DoActionsUpdate prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } - @java.lang.Override public Builder toBuilder() { - return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override @@ -10497,34 +9847,36 @@ protected Builder newBuilderForType( Builder builder = new Builder(parent); return builder; } - /** Protobuf type {@code temporal.omes.kitchen_sink.DoActionsUpdate} */ - public static final class Builder - extends com.google.protobuf.GeneratedMessageV3.Builder - implements + /** + * Protobuf type {@code temporal.omes.kitchen_sink.DoActionsUpdate} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.DoActionsUpdate) io.temporal.omes.KitchenSink.DoActionsUpdateOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_DoActionsUpdate_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_DoActionsUpdate_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_DoActionsUpdate_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_DoActionsUpdate_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.DoActionsUpdate.class, - io.temporal.omes.KitchenSink.DoActionsUpdate.Builder.class); + io.temporal.omes.KitchenSink.DoActionsUpdate.class, io.temporal.omes.KitchenSink.DoActionsUpdate.Builder.class); } // Construct using io.temporal.omes.KitchenSink.DoActionsUpdate.newBuilder() - private Builder() {} + private Builder() { - private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); } + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } @java.lang.Override public Builder clear() { super.clear(); @@ -10541,9 +9893,9 @@ public Builder clear() { } @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_DoActionsUpdate_descriptor; + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_DoActionsUpdate_descriptor; } @java.lang.Override @@ -10562,11 +9914,8 @@ public io.temporal.omes.KitchenSink.DoActionsUpdate build() { @java.lang.Override public io.temporal.omes.KitchenSink.DoActionsUpdate buildPartial() { - io.temporal.omes.KitchenSink.DoActionsUpdate result = - new io.temporal.omes.KitchenSink.DoActionsUpdate(this); - if (bitField0_ != 0) { - buildPartial0(result); - } + io.temporal.omes.KitchenSink.DoActionsUpdate result = new io.temporal.omes.KitchenSink.DoActionsUpdate(this); + if (bitField0_ != 0) { buildPartial0(result); } buildPartialOneofs(result); onBuilt(); return result; @@ -10579,10 +9928,12 @@ private void buildPartial0(io.temporal.omes.KitchenSink.DoActionsUpdate result) private void buildPartialOneofs(io.temporal.omes.KitchenSink.DoActionsUpdate result) { result.variantCase_ = variantCase_; result.variant_ = this.variant_; - if (variantCase_ == 1 && doActionsBuilder_ != null) { + if (variantCase_ == 1 && + doActionsBuilder_ != null) { result.variant_ = doActionsBuilder_.build(); } - if (variantCase_ == 2 && rejectMeBuilder_ != null) { + if (variantCase_ == 2 && + rejectMeBuilder_ != null) { result.variant_ = rejectMeBuilder_.build(); } } @@ -10591,41 +9942,38 @@ private void buildPartialOneofs(io.temporal.omes.KitchenSink.DoActionsUpdate res public Builder clone() { return super.clone(); } - @java.lang.Override public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.setField(field, value); } - @java.lang.Override - public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } - @java.lang.Override - public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } - @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, - int index, - java.lang.Object value) { + int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } - @java.lang.Override public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.addRepeatedField(field, value); } - @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.temporal.omes.KitchenSink.DoActionsUpdate) { - return mergeFrom((io.temporal.omes.KitchenSink.DoActionsUpdate) other); + return mergeFrom((io.temporal.omes.KitchenSink.DoActionsUpdate)other); } else { super.mergeFrom(other); return this; @@ -10635,20 +9983,17 @@ public Builder mergeFrom(com.google.protobuf.Message other) { public Builder mergeFrom(io.temporal.omes.KitchenSink.DoActionsUpdate other) { if (other == io.temporal.omes.KitchenSink.DoActionsUpdate.getDefaultInstance()) return this; switch (other.getVariantCase()) { - case DO_ACTIONS: - { - mergeDoActions(other.getDoActions()); - break; - } - case REJECT_ME: - { - mergeRejectMe(other.getRejectMe()); - break; - } - case VARIANT_NOT_SET: - { - break; - } + case DO_ACTIONS: { + mergeDoActions(other.getDoActions()); + break; + } + case REJECT_ME: { + mergeRejectMe(other.getRejectMe()); + break; + } + case VARIANT_NOT_SET: { + break; + } } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); @@ -10676,25 +10021,26 @@ public Builder mergeFrom( case 0: done = true; break; - case 10: - { - input.readMessage(getDoActionsFieldBuilder().getBuilder(), extensionRegistry); - variantCase_ = 1; - break; - } // case 10 - case 18: - { - input.readMessage(getRejectMeFieldBuilder().getBuilder(), extensionRegistry); - variantCase_ = 2; - break; - } // case 18 - default: - { - if (!super.parseUnknownField(input, extensionRegistry, tag)) { - done = true; // was an endgroup tag - } - break; - } // default: + case 10: { + input.readMessage( + getDoActionsFieldBuilder().getBuilder(), + extensionRegistry); + variantCase_ = 1; + break; + } // case 10 + case 18: { + input.readMessage( + getRejectMeFieldBuilder().getBuilder(), + extensionRegistry); + variantCase_ = 2; + break; + } // case 18 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -10704,12 +10050,12 @@ public Builder mergeFrom( } // finally return this; } - private int variantCase_ = 0; private java.lang.Object variant_; - - public VariantCase getVariantCase() { - return VariantCase.forNumber(variantCase_); + public VariantCase + getVariantCase() { + return VariantCase.forNumber( + variantCase_); } public Builder clearVariant() { @@ -10722,13 +10068,8 @@ public Builder clearVariant() { private int bitField0_; private com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.ActionSet, - io.temporal.omes.KitchenSink.ActionSet.Builder, - io.temporal.omes.KitchenSink.ActionSetOrBuilder> - doActionsBuilder_; + io.temporal.omes.KitchenSink.ActionSet, io.temporal.omes.KitchenSink.ActionSet.Builder, io.temporal.omes.KitchenSink.ActionSetOrBuilder> doActionsBuilder_; /** - * - * *
        * Do same thing signal handler would do when given the provided action set. The handler should
        * return the `WorkflowState` when done with all the provided actions. You may also include a
@@ -10736,7 +10077,6 @@ public Builder clearVariant() {
        * 
* * .temporal.omes.kitchen_sink.ActionSet do_actions = 1; - * * @return Whether the doActions field is set. */ @java.lang.Override @@ -10744,8 +10084,6 @@ public boolean hasDoActions() { return variantCase_ == 1; } /** - * - * *
        * Do same thing signal handler would do when given the provided action set. The handler should
        * return the `WorkflowState` when done with all the provided actions. You may also include a
@@ -10753,7 +10091,6 @@ public boolean hasDoActions() {
        * 
* * .temporal.omes.kitchen_sink.ActionSet do_actions = 1; - * * @return The doActions. */ @java.lang.Override @@ -10771,8 +10108,6 @@ public io.temporal.omes.KitchenSink.ActionSet getDoActions() { } } /** - * - * *
        * Do same thing signal handler would do when given the provided action set. The handler should
        * return the `WorkflowState` when done with all the provided actions. You may also include a
@@ -10795,8 +10130,6 @@ public Builder setDoActions(io.temporal.omes.KitchenSink.ActionSet value) {
         return this;
       }
       /**
-       *
-       *
        * 
        * Do same thing signal handler would do when given the provided action set. The handler should
        * return the `WorkflowState` when done with all the provided actions. You may also include a
@@ -10805,7 +10138,8 @@ public Builder setDoActions(io.temporal.omes.KitchenSink.ActionSet value) {
        *
        * .temporal.omes.kitchen_sink.ActionSet do_actions = 1;
        */
-      public Builder setDoActions(io.temporal.omes.KitchenSink.ActionSet.Builder builderForValue) {
+      public Builder setDoActions(
+          io.temporal.omes.KitchenSink.ActionSet.Builder builderForValue) {
         if (doActionsBuilder_ == null) {
           variant_ = builderForValue.build();
           onChanged();
@@ -10816,8 +10150,6 @@ public Builder setDoActions(io.temporal.omes.KitchenSink.ActionSet.Builder build
         return this;
       }
       /**
-       *
-       *
        * 
        * Do same thing signal handler would do when given the provided action set. The handler should
        * return the `WorkflowState` when done with all the provided actions. You may also include a
@@ -10828,13 +10160,10 @@ public Builder setDoActions(io.temporal.omes.KitchenSink.ActionSet.Builder build
        */
       public Builder mergeDoActions(io.temporal.omes.KitchenSink.ActionSet value) {
         if (doActionsBuilder_ == null) {
-          if (variantCase_ == 1
-              && variant_ != io.temporal.omes.KitchenSink.ActionSet.getDefaultInstance()) {
-            variant_ =
-                io.temporal.omes.KitchenSink.ActionSet.newBuilder(
-                        (io.temporal.omes.KitchenSink.ActionSet) variant_)
-                    .mergeFrom(value)
-                    .buildPartial();
+          if (variantCase_ == 1 &&
+              variant_ != io.temporal.omes.KitchenSink.ActionSet.getDefaultInstance()) {
+            variant_ = io.temporal.omes.KitchenSink.ActionSet.newBuilder((io.temporal.omes.KitchenSink.ActionSet) variant_)
+                .mergeFrom(value).buildPartial();
           } else {
             variant_ = value;
           }
@@ -10850,8 +10179,6 @@ public Builder mergeDoActions(io.temporal.omes.KitchenSink.ActionSet value) {
         return this;
       }
       /**
-       *
-       *
        * 
        * Do same thing signal handler would do when given the provided action set. The handler should
        * return the `WorkflowState` when done with all the provided actions. You may also include a
@@ -10877,8 +10204,6 @@ public Builder clearDoActions() {
         return this;
       }
       /**
-       *
-       *
        * 
        * Do same thing signal handler would do when given the provided action set. The handler should
        * return the `WorkflowState` when done with all the provided actions. You may also include a
@@ -10891,8 +10216,6 @@ public io.temporal.omes.KitchenSink.ActionSet.Builder getDoActionsBuilder() {
         return getDoActionsFieldBuilder().getBuilder();
       }
       /**
-       *
-       *
        * 
        * Do same thing signal handler would do when given the provided action set. The handler should
        * return the `WorkflowState` when done with all the provided actions. You may also include a
@@ -10913,8 +10236,6 @@ public io.temporal.omes.KitchenSink.ActionSetOrBuilder getDoActionsOrBuilder() {
         }
       }
       /**
-       *
-       *
        * 
        * Do same thing signal handler would do when given the provided action set. The handler should
        * return the `WorkflowState` when done with all the provided actions. You may also include a
@@ -10924,19 +10245,14 @@ public io.temporal.omes.KitchenSink.ActionSetOrBuilder getDoActionsOrBuilder() {
        * .temporal.omes.kitchen_sink.ActionSet do_actions = 1;
        */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.ActionSet,
-              io.temporal.omes.KitchenSink.ActionSet.Builder,
-              io.temporal.omes.KitchenSink.ActionSetOrBuilder>
+          io.temporal.omes.KitchenSink.ActionSet, io.temporal.omes.KitchenSink.ActionSet.Builder, io.temporal.omes.KitchenSink.ActionSetOrBuilder> 
           getDoActionsFieldBuilder() {
         if (doActionsBuilder_ == null) {
           if (!(variantCase_ == 1)) {
             variant_ = io.temporal.omes.KitchenSink.ActionSet.getDefaultInstance();
           }
-          doActionsBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.omes.KitchenSink.ActionSet,
-                  io.temporal.omes.KitchenSink.ActionSet.Builder,
-                  io.temporal.omes.KitchenSink.ActionSetOrBuilder>(
+          doActionsBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.omes.KitchenSink.ActionSet, io.temporal.omes.KitchenSink.ActionSet.Builder, io.temporal.omes.KitchenSink.ActionSetOrBuilder>(
                   (io.temporal.omes.KitchenSink.ActionSet) variant_,
                   getParentForChildren(),
                   isClean());
@@ -10948,19 +10264,13 @@ public io.temporal.omes.KitchenSink.ActionSetOrBuilder getDoActionsOrBuilder() {
       }
 
       private com.google.protobuf.SingleFieldBuilderV3<
-              com.google.protobuf.Empty,
-              com.google.protobuf.Empty.Builder,
-              com.google.protobuf.EmptyOrBuilder>
-          rejectMeBuilder_;
+          com.google.protobuf.Empty, com.google.protobuf.Empty.Builder, com.google.protobuf.EmptyOrBuilder> rejectMeBuilder_;
       /**
-       *
-       *
        * 
        * The validator should reject the update
        * 
* * .google.protobuf.Empty reject_me = 2; - * * @return Whether the rejectMe field is set. */ @java.lang.Override @@ -10968,14 +10278,11 @@ public boolean hasRejectMe() { return variantCase_ == 2; } /** - * - * *
        * The validator should reject the update
        * 
* * .google.protobuf.Empty reject_me = 2; - * * @return The rejectMe. */ @java.lang.Override @@ -10993,8 +10300,6 @@ public com.google.protobuf.Empty getRejectMe() { } } /** - * - * *
        * The validator should reject the update
        * 
@@ -11015,15 +10320,14 @@ public Builder setRejectMe(com.google.protobuf.Empty value) { return this; } /** - * - * *
        * The validator should reject the update
        * 
* * .google.protobuf.Empty reject_me = 2; */ - public Builder setRejectMe(com.google.protobuf.Empty.Builder builderForValue) { + public Builder setRejectMe( + com.google.protobuf.Empty.Builder builderForValue) { if (rejectMeBuilder_ == null) { variant_ = builderForValue.build(); onChanged(); @@ -11034,8 +10338,6 @@ public Builder setRejectMe(com.google.protobuf.Empty.Builder builderForValue) { return this; } /** - * - * *
        * The validator should reject the update
        * 
@@ -11044,11 +10346,10 @@ public Builder setRejectMe(com.google.protobuf.Empty.Builder builderForValue) { */ public Builder mergeRejectMe(com.google.protobuf.Empty value) { if (rejectMeBuilder_ == null) { - if (variantCase_ == 2 && variant_ != com.google.protobuf.Empty.getDefaultInstance()) { - variant_ = - com.google.protobuf.Empty.newBuilder((com.google.protobuf.Empty) variant_) - .mergeFrom(value) - .buildPartial(); + if (variantCase_ == 2 && + variant_ != com.google.protobuf.Empty.getDefaultInstance()) { + variant_ = com.google.protobuf.Empty.newBuilder((com.google.protobuf.Empty) variant_) + .mergeFrom(value).buildPartial(); } else { variant_ = value; } @@ -11064,8 +10365,6 @@ public Builder mergeRejectMe(com.google.protobuf.Empty value) { return this; } /** - * - * *
        * The validator should reject the update
        * 
@@ -11089,8 +10388,6 @@ public Builder clearRejectMe() { return this; } /** - * - * *
        * The validator should reject the update
        * 
@@ -11101,8 +10398,6 @@ public com.google.protobuf.Empty.Builder getRejectMeBuilder() { return getRejectMeFieldBuilder().getBuilder(); } /** - * - * *
        * The validator should reject the update
        * 
@@ -11121,8 +10416,6 @@ public com.google.protobuf.EmptyOrBuilder getRejectMeOrBuilder() { } } /** - * - * *
        * The validator should reject the update
        * 
@@ -11130,27 +10423,23 @@ public com.google.protobuf.EmptyOrBuilder getRejectMeOrBuilder() { * .google.protobuf.Empty reject_me = 2; */ private com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Empty, - com.google.protobuf.Empty.Builder, - com.google.protobuf.EmptyOrBuilder> + com.google.protobuf.Empty, com.google.protobuf.Empty.Builder, com.google.protobuf.EmptyOrBuilder> getRejectMeFieldBuilder() { if (rejectMeBuilder_ == null) { if (!(variantCase_ == 2)) { variant_ = com.google.protobuf.Empty.getDefaultInstance(); } - rejectMeBuilder_ = - new com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Empty, - com.google.protobuf.Empty.Builder, - com.google.protobuf.EmptyOrBuilder>( - (com.google.protobuf.Empty) variant_, getParentForChildren(), isClean()); + rejectMeBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Empty, com.google.protobuf.Empty.Builder, com.google.protobuf.EmptyOrBuilder>( + (com.google.protobuf.Empty) variant_, + getParentForChildren(), + isClean()); variant_ = null; } variantCase_ = 2; onChanged(); return rejectMeBuilder_; } - @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -11163,12 +10452,12 @@ public final Builder mergeUnknownFields( return super.mergeUnknownFields(unknownFields); } + // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.DoActionsUpdate) } // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.DoActionsUpdate) private static final io.temporal.omes.KitchenSink.DoActionsUpdate DEFAULT_INSTANCE; - static { DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.DoActionsUpdate(); } @@ -11177,28 +10466,27 @@ public static io.temporal.omes.KitchenSink.DoActionsUpdate getDefaultInstance() return DEFAULT_INSTANCE; } - private static final com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser() { - @java.lang.Override - public DoActionsUpdate parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException() - .setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public DoActionsUpdate parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; public static com.google.protobuf.Parser parser() { return PARSER; @@ -11213,48 +10501,61 @@ public com.google.protobuf.Parser getParserForType() { public io.temporal.omes.KitchenSink.DoActionsUpdate getDefaultInstanceForType() { return DEFAULT_INSTANCE; } + } - public interface HandlerInvocationOrBuilder - extends + public interface HandlerInvocationOrBuilder extends // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.HandlerInvocation) com.google.protobuf.MessageOrBuilder { /** * string name = 1; - * * @return The name. */ java.lang.String getName(); /** * string name = 1; - * * @return The bytes for name. */ - com.google.protobuf.ByteString getNameBytes(); + com.google.protobuf.ByteString + getNameBytes(); - /** repeated .temporal.api.common.v1.Payload args = 2; */ - java.util.List getArgsList(); - /** repeated .temporal.api.common.v1.Payload args = 2; */ + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ + java.util.List + getArgsList(); + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ io.temporal.api.common.v1.Payload getArgs(int index); - /** repeated .temporal.api.common.v1.Payload args = 2; */ + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ int getArgsCount(); - /** repeated .temporal.api.common.v1.Payload args = 2; */ - java.util.List getArgsOrBuilderList(); - /** repeated .temporal.api.common.v1.Payload args = 2; */ - io.temporal.api.common.v1.PayloadOrBuilder getArgsOrBuilder(int index); + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ + java.util.List + getArgsOrBuilderList(); + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ + io.temporal.api.common.v1.PayloadOrBuilder getArgsOrBuilder( + int index); } - /** Protobuf type {@code temporal.omes.kitchen_sink.HandlerInvocation} */ - public static final class HandlerInvocation extends com.google.protobuf.GeneratedMessageV3 - implements + /** + * Protobuf type {@code temporal.omes.kitchen_sink.HandlerInvocation} + */ + public static final class HandlerInvocation extends + com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.HandlerInvocation) HandlerInvocationOrBuilder { - private static final long serialVersionUID = 0L; + private static final long serialVersionUID = 0L; // Use HandlerInvocation.newBuilder() to construct. private HandlerInvocation(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } - private HandlerInvocation() { name_ = ""; args_ = java.util.Collections.emptyList(); @@ -11262,32 +10563,29 @@ private HandlerInvocation() { @java.lang.Override @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { return new HandlerInvocation(); } - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_HandlerInvocation_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_HandlerInvocation_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_HandlerInvocation_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_HandlerInvocation_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.HandlerInvocation.class, - io.temporal.omes.KitchenSink.HandlerInvocation.Builder.class); + io.temporal.omes.KitchenSink.HandlerInvocation.class, io.temporal.omes.KitchenSink.HandlerInvocation.Builder.class); } public static final int NAME_FIELD_NUMBER = 1; - @SuppressWarnings("serial") private volatile java.lang.Object name_ = ""; /** * string name = 1; - * * @return The name. */ @java.lang.Override @@ -11296,7 +10594,8 @@ public java.lang.String getName() { if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); name_ = s; return s; @@ -11304,15 +10603,16 @@ public java.lang.String getName() { } /** * string name = 1; - * * @return The bytes for name. */ @java.lang.Override - public com.google.protobuf.ByteString getNameBytes() { + public com.google.protobuf.ByteString + getNameBytes() { java.lang.Object ref = name_; if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); name_ = b; return b; } else { @@ -11321,38 +10621,47 @@ public com.google.protobuf.ByteString getNameBytes() { } public static final int ARGS_FIELD_NUMBER = 2; - @SuppressWarnings("serial") private java.util.List args_; - /** repeated .temporal.api.common.v1.Payload args = 2; */ + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ @java.lang.Override public java.util.List getArgsList() { return args_; } - /** repeated .temporal.api.common.v1.Payload args = 2; */ + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ @java.lang.Override - public java.util.List + public java.util.List getArgsOrBuilderList() { return args_; } - /** repeated .temporal.api.common.v1.Payload args = 2; */ + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ @java.lang.Override public int getArgsCount() { return args_.size(); } - /** repeated .temporal.api.common.v1.Payload args = 2; */ + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ @java.lang.Override public io.temporal.api.common.v1.Payload getArgs(int index) { return args_.get(index); } - /** repeated .temporal.api.common.v1.Payload args = 2; */ + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ @java.lang.Override - public io.temporal.api.common.v1.PayloadOrBuilder getArgsOrBuilder(int index) { + public io.temporal.api.common.v1.PayloadOrBuilder getArgsOrBuilder( + int index) { return args_.get(index); } private byte memoizedIsInitialized = -1; - @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; @@ -11364,7 +10673,8 @@ public final boolean isInitialized() { } @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_); } @@ -11384,7 +10694,8 @@ public int getSerializedSize() { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_); } for (int i = 0; i < args_.size(); i++) { - size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, args_.get(i)); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(2, args_.get(i)); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; @@ -11394,16 +10705,17 @@ public int getSerializedSize() { @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { - return true; + return true; } if (!(obj instanceof io.temporal.omes.KitchenSink.HandlerInvocation)) { return super.equals(obj); } - io.temporal.omes.KitchenSink.HandlerInvocation other = - (io.temporal.omes.KitchenSink.HandlerInvocation) obj; + io.temporal.omes.KitchenSink.HandlerInvocation other = (io.temporal.omes.KitchenSink.HandlerInvocation) obj; - if (!getName().equals(other.getName())) return false; - if (!getArgsList().equals(other.getArgsList())) return false; + if (!getName() + .equals(other.getName())) return false; + if (!getArgsList() + .equals(other.getArgsList())) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -11426,94 +10738,90 @@ public int hashCode() { return hash; } - public static io.temporal.omes.KitchenSink.HandlerInvocation parseFrom(java.nio.ByteBuffer data) + public static io.temporal.omes.KitchenSink.HandlerInvocation parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.HandlerInvocation parseFrom( - java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.HandlerInvocation parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.HandlerInvocation parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.HandlerInvocation parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.HandlerInvocation parseFrom( - byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - - public static io.temporal.omes.KitchenSink.HandlerInvocation parseFrom( - java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + public static io.temporal.omes.KitchenSink.HandlerInvocation parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.HandlerInvocation parseFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.HandlerInvocation parseDelimitedFrom( - java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + public static io.temporal.omes.KitchenSink.HandlerInvocation parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); } public static io.temporal.omes.KitchenSink.HandlerInvocation parseDelimitedFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.HandlerInvocation parseFrom( - com.google.protobuf.CodedInputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.HandlerInvocation parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override - public Builder newBuilderForType() { - return newBuilder(); - } - + public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(io.temporal.omes.KitchenSink.HandlerInvocation prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } - @java.lang.Override public Builder toBuilder() { - return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override @@ -11522,34 +10830,36 @@ protected Builder newBuilderForType( Builder builder = new Builder(parent); return builder; } - /** Protobuf type {@code temporal.omes.kitchen_sink.HandlerInvocation} */ - public static final class Builder - extends com.google.protobuf.GeneratedMessageV3.Builder - implements + /** + * Protobuf type {@code temporal.omes.kitchen_sink.HandlerInvocation} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.HandlerInvocation) io.temporal.omes.KitchenSink.HandlerInvocationOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_HandlerInvocation_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_HandlerInvocation_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_HandlerInvocation_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_HandlerInvocation_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.HandlerInvocation.class, - io.temporal.omes.KitchenSink.HandlerInvocation.Builder.class); + io.temporal.omes.KitchenSink.HandlerInvocation.class, io.temporal.omes.KitchenSink.HandlerInvocation.Builder.class); } // Construct using io.temporal.omes.KitchenSink.HandlerInvocation.newBuilder() - private Builder() {} + private Builder() { - private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); } + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } @java.lang.Override public Builder clear() { super.clear(); @@ -11566,9 +10876,9 @@ public Builder clear() { } @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_HandlerInvocation_descriptor; + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_HandlerInvocation_descriptor; } @java.lang.Override @@ -11587,18 +10897,14 @@ public io.temporal.omes.KitchenSink.HandlerInvocation build() { @java.lang.Override public io.temporal.omes.KitchenSink.HandlerInvocation buildPartial() { - io.temporal.omes.KitchenSink.HandlerInvocation result = - new io.temporal.omes.KitchenSink.HandlerInvocation(this); + io.temporal.omes.KitchenSink.HandlerInvocation result = new io.temporal.omes.KitchenSink.HandlerInvocation(this); buildPartialRepeatedFields(result); - if (bitField0_ != 0) { - buildPartial0(result); - } + if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } - private void buildPartialRepeatedFields( - io.temporal.omes.KitchenSink.HandlerInvocation result) { + private void buildPartialRepeatedFields(io.temporal.omes.KitchenSink.HandlerInvocation result) { if (argsBuilder_ == null) { if (((bitField0_ & 0x00000002) != 0)) { args_ = java.util.Collections.unmodifiableList(args_); @@ -11621,41 +10927,38 @@ private void buildPartial0(io.temporal.omes.KitchenSink.HandlerInvocation result public Builder clone() { return super.clone(); } - @java.lang.Override public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.setField(field, value); } - @java.lang.Override - public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } - @java.lang.Override - public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } - @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, - int index, - java.lang.Object value) { + int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } - @java.lang.Override public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.addRepeatedField(field, value); } - @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.temporal.omes.KitchenSink.HandlerInvocation) { - return mergeFrom((io.temporal.omes.KitchenSink.HandlerInvocation) other); + return mergeFrom((io.temporal.omes.KitchenSink.HandlerInvocation)other); } else { super.mergeFrom(other); return this; @@ -11663,8 +10966,7 @@ public Builder mergeFrom(com.google.protobuf.Message other) { } public Builder mergeFrom(io.temporal.omes.KitchenSink.HandlerInvocation other) { - if (other == io.temporal.omes.KitchenSink.HandlerInvocation.getDefaultInstance()) - return this; + if (other == io.temporal.omes.KitchenSink.HandlerInvocation.getDefaultInstance()) return this; if (!other.getName().isEmpty()) { name_ = other.name_; bitField0_ |= 0x00000001; @@ -11688,10 +10990,9 @@ public Builder mergeFrom(io.temporal.omes.KitchenSink.HandlerInvocation other) { argsBuilder_ = null; args_ = other.args_; bitField0_ = (bitField0_ & ~0x00000002); - argsBuilder_ = - com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders - ? getArgsFieldBuilder() - : null; + argsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getArgsFieldBuilder() : null; } else { argsBuilder_.addAllMessages(other.args_); } @@ -11723,32 +11024,30 @@ public Builder mergeFrom( case 0: done = true; break; - case 10: - { - name_ = input.readStringRequireUtf8(); - bitField0_ |= 0x00000001; - break; - } // case 10 - case 18: - { - io.temporal.api.common.v1.Payload m = - input.readMessage( - io.temporal.api.common.v1.Payload.parser(), extensionRegistry); - if (argsBuilder_ == null) { - ensureArgsIsMutable(); - args_.add(m); - } else { - argsBuilder_.addMessage(m); - } - break; - } // case 18 - default: - { - if (!super.parseUnknownField(input, extensionRegistry, tag)) { - done = true; // was an endgroup tag - } - break; - } // default: + case 10: { + name_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: { + io.temporal.api.common.v1.Payload m = + input.readMessage( + io.temporal.api.common.v1.Payload.parser(), + extensionRegistry); + if (argsBuilder_ == null) { + ensureArgsIsMutable(); + args_.add(m); + } else { + argsBuilder_.addMessage(m); + } + break; + } // case 18 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -11758,19 +11057,18 @@ public Builder mergeFrom( } // finally return this; } - private int bitField0_; private java.lang.Object name_ = ""; /** * string name = 1; - * * @return The name. */ public java.lang.String getName() { java.lang.Object ref = name_; if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); name_ = s; return s; @@ -11780,14 +11078,15 @@ public java.lang.String getName() { } /** * string name = 1; - * * @return The bytes for name. */ - public com.google.protobuf.ByteString getNameBytes() { + public com.google.protobuf.ByteString + getNameBytes() { java.lang.Object ref = name_; if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); name_ = b; return b; } else { @@ -11796,14 +11095,12 @@ public com.google.protobuf.ByteString getNameBytes() { } /** * string name = 1; - * * @param value The name to set. * @return This builder for chaining. */ - public Builder setName(java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setName( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } name_ = value; bitField0_ |= 0x00000001; onChanged(); @@ -11811,7 +11108,6 @@ public Builder setName(java.lang.String value) { } /** * string name = 1; - * * @return This builder for chaining. */ public Builder clearName() { @@ -11822,14 +11118,12 @@ public Builder clearName() { } /** * string name = 1; - * * @param value The bytes for name to set. * @return This builder for chaining. */ - public Builder setNameBytes(com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setNameBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); name_ = value; bitField0_ |= 0x00000001; @@ -11838,22 +11132,20 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) { } private java.util.List args_ = - java.util.Collections.emptyList(); - + java.util.Collections.emptyList(); private void ensureArgsIsMutable() { if (!((bitField0_ & 0x00000002) != 0)) { args_ = new java.util.ArrayList(args_); bitField0_ |= 0x00000002; - } + } } private com.google.protobuf.RepeatedFieldBuilderV3< - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder, - io.temporal.api.common.v1.PayloadOrBuilder> - argsBuilder_; + io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder, io.temporal.api.common.v1.PayloadOrBuilder> argsBuilder_; - /** repeated .temporal.api.common.v1.Payload args = 2; */ + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ public java.util.List getArgsList() { if (argsBuilder_ == null) { return java.util.Collections.unmodifiableList(args_); @@ -11861,7 +11153,9 @@ public java.util.List getArgsList() { return argsBuilder_.getMessageList(); } } - /** repeated .temporal.api.common.v1.Payload args = 2; */ + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ public int getArgsCount() { if (argsBuilder_ == null) { return args_.size(); @@ -11869,7 +11163,9 @@ public int getArgsCount() { return argsBuilder_.getCount(); } } - /** repeated .temporal.api.common.v1.Payload args = 2; */ + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ public io.temporal.api.common.v1.Payload getArgs(int index) { if (argsBuilder_ == null) { return args_.get(index); @@ -11877,8 +11173,11 @@ public io.temporal.api.common.v1.Payload getArgs(int index) { return argsBuilder_.getMessage(index); } } - /** repeated .temporal.api.common.v1.Payload args = 2; */ - public Builder setArgs(int index, io.temporal.api.common.v1.Payload value) { + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ + public Builder setArgs( + int index, io.temporal.api.common.v1.Payload value) { if (argsBuilder_ == null) { if (value == null) { throw new NullPointerException(); @@ -11891,8 +11190,11 @@ public Builder setArgs(int index, io.temporal.api.common.v1.Payload value) { } return this; } - /** repeated .temporal.api.common.v1.Payload args = 2; */ - public Builder setArgs(int index, io.temporal.api.common.v1.Payload.Builder builderForValue) { + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ + public Builder setArgs( + int index, io.temporal.api.common.v1.Payload.Builder builderForValue) { if (argsBuilder_ == null) { ensureArgsIsMutable(); args_.set(index, builderForValue.build()); @@ -11902,7 +11204,9 @@ public Builder setArgs(int index, io.temporal.api.common.v1.Payload.Builder buil } return this; } - /** repeated .temporal.api.common.v1.Payload args = 2; */ + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ public Builder addArgs(io.temporal.api.common.v1.Payload value) { if (argsBuilder_ == null) { if (value == null) { @@ -11916,8 +11220,11 @@ public Builder addArgs(io.temporal.api.common.v1.Payload value) { } return this; } - /** repeated .temporal.api.common.v1.Payload args = 2; */ - public Builder addArgs(int index, io.temporal.api.common.v1.Payload value) { + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ + public Builder addArgs( + int index, io.temporal.api.common.v1.Payload value) { if (argsBuilder_ == null) { if (value == null) { throw new NullPointerException(); @@ -11930,8 +11237,11 @@ public Builder addArgs(int index, io.temporal.api.common.v1.Payload value) { } return this; } - /** repeated .temporal.api.common.v1.Payload args = 2; */ - public Builder addArgs(io.temporal.api.common.v1.Payload.Builder builderForValue) { + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ + public Builder addArgs( + io.temporal.api.common.v1.Payload.Builder builderForValue) { if (argsBuilder_ == null) { ensureArgsIsMutable(); args_.add(builderForValue.build()); @@ -11941,8 +11251,11 @@ public Builder addArgs(io.temporal.api.common.v1.Payload.Builder builderForValue } return this; } - /** repeated .temporal.api.common.v1.Payload args = 2; */ - public Builder addArgs(int index, io.temporal.api.common.v1.Payload.Builder builderForValue) { + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ + public Builder addArgs( + int index, io.temporal.api.common.v1.Payload.Builder builderForValue) { if (argsBuilder_ == null) { ensureArgsIsMutable(); args_.add(index, builderForValue.build()); @@ -11952,19 +11265,24 @@ public Builder addArgs(int index, io.temporal.api.common.v1.Payload.Builder buil } return this; } - /** repeated .temporal.api.common.v1.Payload args = 2; */ + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ public Builder addAllArgs( java.lang.Iterable values) { if (argsBuilder_ == null) { ensureArgsIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll(values, args_); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, args_); onChanged(); } else { argsBuilder_.addAllMessages(values); } return this; } - /** repeated .temporal.api.common.v1.Payload args = 2; */ + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ public Builder clearArgs() { if (argsBuilder_ == null) { args_ = java.util.Collections.emptyList(); @@ -11975,7 +11293,9 @@ public Builder clearArgs() { } return this; } - /** repeated .temporal.api.common.v1.Payload args = 2; */ + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ public Builder removeArgs(int index) { if (argsBuilder_ == null) { ensureArgsIsMutable(); @@ -11986,59 +11306,70 @@ public Builder removeArgs(int index) { } return this; } - /** repeated .temporal.api.common.v1.Payload args = 2; */ - public io.temporal.api.common.v1.Payload.Builder getArgsBuilder(int index) { + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ + public io.temporal.api.common.v1.Payload.Builder getArgsBuilder( + int index) { return getArgsFieldBuilder().getBuilder(index); } - /** repeated .temporal.api.common.v1.Payload args = 2; */ - public io.temporal.api.common.v1.PayloadOrBuilder getArgsOrBuilder(int index) { + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ + public io.temporal.api.common.v1.PayloadOrBuilder getArgsOrBuilder( + int index) { if (argsBuilder_ == null) { - return args_.get(index); - } else { + return args_.get(index); } else { return argsBuilder_.getMessageOrBuilder(index); } } - /** repeated .temporal.api.common.v1.Payload args = 2; */ - public java.util.List - getArgsOrBuilderList() { + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ + public java.util.List + getArgsOrBuilderList() { if (argsBuilder_ != null) { return argsBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(args_); } } - /** repeated .temporal.api.common.v1.Payload args = 2; */ + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ public io.temporal.api.common.v1.Payload.Builder addArgsBuilder() { - return getArgsFieldBuilder() - .addBuilder(io.temporal.api.common.v1.Payload.getDefaultInstance()); + return getArgsFieldBuilder().addBuilder( + io.temporal.api.common.v1.Payload.getDefaultInstance()); } - /** repeated .temporal.api.common.v1.Payload args = 2; */ - public io.temporal.api.common.v1.Payload.Builder addArgsBuilder(int index) { - return getArgsFieldBuilder() - .addBuilder(index, io.temporal.api.common.v1.Payload.getDefaultInstance()); + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ + public io.temporal.api.common.v1.Payload.Builder addArgsBuilder( + int index) { + return getArgsFieldBuilder().addBuilder( + index, io.temporal.api.common.v1.Payload.getDefaultInstance()); } - /** repeated .temporal.api.common.v1.Payload args = 2; */ - public java.util.List getArgsBuilderList() { + /** + * repeated .temporal.api.common.v1.Payload args = 2; + */ + public java.util.List + getArgsBuilderList() { return getArgsFieldBuilder().getBuilderList(); } - private com.google.protobuf.RepeatedFieldBuilderV3< - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder, - io.temporal.api.common.v1.PayloadOrBuilder> + io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder, io.temporal.api.common.v1.PayloadOrBuilder> getArgsFieldBuilder() { if (argsBuilder_ == null) { - argsBuilder_ = - new com.google.protobuf.RepeatedFieldBuilderV3< - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder, - io.temporal.api.common.v1.PayloadOrBuilder>( - args_, ((bitField0_ & 0x00000002) != 0), getParentForChildren(), isClean()); + argsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder, io.temporal.api.common.v1.PayloadOrBuilder>( + args_, + ((bitField0_ & 0x00000002) != 0), + getParentForChildren(), + isClean()); args_ = null; } return argsBuilder_; } - @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -12051,12 +11382,12 @@ public final Builder mergeUnknownFields( return super.mergeUnknownFields(unknownFields); } + // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.HandlerInvocation) } // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.HandlerInvocation) private static final io.temporal.omes.KitchenSink.HandlerInvocation DEFAULT_INSTANCE; - static { DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.HandlerInvocation(); } @@ -12065,28 +11396,27 @@ public static io.temporal.omes.KitchenSink.HandlerInvocation getDefaultInstance( return DEFAULT_INSTANCE; } - private static final com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser() { - @java.lang.Override - public HandlerInvocation parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException() - .setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public HandlerInvocation parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; public static com.google.protobuf.Parser parser() { return PARSER; @@ -12101,61 +11431,76 @@ public com.google.protobuf.Parser getParserForType() { public io.temporal.omes.KitchenSink.HandlerInvocation getDefaultInstanceForType() { return DEFAULT_INSTANCE; } + } - public interface WorkflowStateOrBuilder - extends + public interface WorkflowStateOrBuilder extends // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.WorkflowState) com.google.protobuf.MessageOrBuilder { - /** map<string, string> kvs = 1; */ + /** + * map<string, string> kvs = 1; + */ int getKvsCount(); - /** map<string, string> kvs = 1; */ - boolean containsKvs(java.lang.String key); - /** Use {@link #getKvsMap()} instead. */ + /** + * map<string, string> kvs = 1; + */ + boolean containsKvs( + java.lang.String key); + /** + * Use {@link #getKvsMap()} instead. + */ @java.lang.Deprecated - java.util.Map getKvs(); - /** map<string, string> kvs = 1; */ - java.util.Map getKvsMap(); - /** map<string, string> kvs = 1; */ + java.util.Map + getKvs(); + /** + * map<string, string> kvs = 1; + */ + java.util.Map + getKvsMap(); + /** + * map<string, string> kvs = 1; + */ /* nullable */ - java.lang.String getKvsOrDefault( +java.lang.String getKvsOrDefault( java.lang.String key, /* nullable */ - java.lang.String defaultValue); - /** map<string, string> kvs = 1; */ - java.lang.String getKvsOrThrow(java.lang.String key); +java.lang.String defaultValue); + /** + * map<string, string> kvs = 1; + */ + java.lang.String getKvsOrThrow( + java.lang.String key); } /** - * - * *
    * Each workflow must maintain an instance of this state
    * 
* * Protobuf type {@code temporal.omes.kitchen_sink.WorkflowState} */ - public static final class WorkflowState extends com.google.protobuf.GeneratedMessageV3 - implements + public static final class WorkflowState extends + com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.WorkflowState) WorkflowStateOrBuilder { - private static final long serialVersionUID = 0L; + private static final long serialVersionUID = 0L; // Use WorkflowState.newBuilder() to construct. private WorkflowState(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } - - private WorkflowState() {} + private WorkflowState() { + } @java.lang.Override @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { return new WorkflowState(); } - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_WorkflowState_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_WorkflowState_descriptor; } @SuppressWarnings({"rawtypes"}) @@ -12166,84 +11511,91 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMapFieldRefl case 1: return internalGetKvs(); default: - throw new RuntimeException("Invalid map field number: " + number); + throw new RuntimeException( + "Invalid map field number: " + number); } } - @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_WorkflowState_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_WorkflowState_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.WorkflowState.class, - io.temporal.omes.KitchenSink.WorkflowState.Builder.class); + io.temporal.omes.KitchenSink.WorkflowState.class, io.temporal.omes.KitchenSink.WorkflowState.Builder.class); } public static final int KVS_FIELD_NUMBER = 1; - private static final class KvsDefaultEntryHolder { - static final com.google.protobuf.MapEntry defaultEntry = - com.google.protobuf.MapEntry.newDefaultInstance( - io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_WorkflowState_KvsEntry_descriptor, - com.google.protobuf.WireFormat.FieldType.STRING, - "", - com.google.protobuf.WireFormat.FieldType.STRING, - ""); + static final com.google.protobuf.MapEntry< + java.lang.String, java.lang.String> defaultEntry = + com.google.protobuf.MapEntry + .newDefaultInstance( + io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_WorkflowState_KvsEntry_descriptor, + com.google.protobuf.WireFormat.FieldType.STRING, + "", + com.google.protobuf.WireFormat.FieldType.STRING, + ""); } - @SuppressWarnings("serial") - private com.google.protobuf.MapField kvs_; - - private com.google.protobuf.MapField internalGetKvs() { + private com.google.protobuf.MapField< + java.lang.String, java.lang.String> kvs_; + private com.google.protobuf.MapField + internalGetKvs() { if (kvs_ == null) { - return com.google.protobuf.MapField.emptyMapField(KvsDefaultEntryHolder.defaultEntry); + return com.google.protobuf.MapField.emptyMapField( + KvsDefaultEntryHolder.defaultEntry); } return kvs_; } - public int getKvsCount() { return internalGetKvs().getMap().size(); } - /** map<string, string> kvs = 1; */ + /** + * map<string, string> kvs = 1; + */ @java.lang.Override - public boolean containsKvs(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } + public boolean containsKvs( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } return internalGetKvs().getMap().containsKey(key); } - /** Use {@link #getKvsMap()} instead. */ + /** + * Use {@link #getKvsMap()} instead. + */ @java.lang.Override @java.lang.Deprecated public java.util.Map getKvs() { return getKvsMap(); } - /** map<string, string> kvs = 1; */ + /** + * map<string, string> kvs = 1; + */ @java.lang.Override public java.util.Map getKvsMap() { return internalGetKvs().getMap(); } - /** map<string, string> kvs = 1; */ + /** + * map<string, string> kvs = 1; + */ @java.lang.Override - public /* nullable */ java.lang.String getKvsOrDefault( + public /* nullable */ +java.lang.String getKvsOrDefault( java.lang.String key, /* nullable */ - java.lang.String defaultValue) { - if (key == null) { - throw new NullPointerException("map key"); - } - java.util.Map map = internalGetKvs().getMap(); +java.lang.String defaultValue) { + if (key == null) { throw new NullPointerException("map key"); } + java.util.Map map = + internalGetKvs().getMap(); return map.containsKey(key) ? map.get(key) : defaultValue; } - /** map<string, string> kvs = 1; */ + /** + * map<string, string> kvs = 1; + */ @java.lang.Override - public java.lang.String getKvsOrThrow(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } - java.util.Map map = internalGetKvs().getMap(); + public java.lang.String getKvsOrThrow( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } + java.util.Map map = + internalGetKvs().getMap(); if (!map.containsKey(key)) { throw new java.lang.IllegalArgumentException(); } @@ -12251,7 +11603,6 @@ public java.lang.String getKvsOrThrow(java.lang.String key) { } private byte memoizedIsInitialized = -1; - @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; @@ -12263,9 +11614,14 @@ public final boolean isInitialized() { } @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { - com.google.protobuf.GeneratedMessageV3.serializeStringMapTo( - output, internalGetKvs(), KvsDefaultEntryHolder.defaultEntry, 1); + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + com.google.protobuf.GeneratedMessageV3 + .serializeStringMapTo( + output, + internalGetKvs(), + KvsDefaultEntryHolder.defaultEntry, + 1); getUnknownFields().writeTo(output); } @@ -12275,15 +11631,15 @@ public int getSerializedSize() { if (size != -1) return size; size = 0; - for (java.util.Map.Entry entry : - internalGetKvs().getMap().entrySet()) { - com.google.protobuf.MapEntry kvs__ = - KvsDefaultEntryHolder.defaultEntry - .newBuilderForType() - .setKey(entry.getKey()) - .setValue(entry.getValue()) - .build(); - size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, kvs__); + for (java.util.Map.Entry entry + : internalGetKvs().getMap().entrySet()) { + com.google.protobuf.MapEntry + kvs__ = KvsDefaultEntryHolder.defaultEntry.newBuilderForType() + .setKey(entry.getKey()) + .setValue(entry.getValue()) + .build(); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, kvs__); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; @@ -12293,15 +11649,15 @@ public int getSerializedSize() { @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { - return true; + return true; } if (!(obj instanceof io.temporal.omes.KitchenSink.WorkflowState)) { return super.equals(obj); } - io.temporal.omes.KitchenSink.WorkflowState other = - (io.temporal.omes.KitchenSink.WorkflowState) obj; + io.temporal.omes.KitchenSink.WorkflowState other = (io.temporal.omes.KitchenSink.WorkflowState) obj; - if (!internalGetKvs().equals(other.internalGetKvs())) return false; + if (!internalGetKvs().equals( + other.internalGetKvs())) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -12322,94 +11678,90 @@ public int hashCode() { return hash; } - public static io.temporal.omes.KitchenSink.WorkflowState parseFrom(java.nio.ByteBuffer data) + public static io.temporal.omes.KitchenSink.WorkflowState parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.WorkflowState parseFrom( - java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.WorkflowState parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.WorkflowState parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.WorkflowState parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.WorkflowState parseFrom( - byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.WorkflowState parseFrom(java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.WorkflowState parseFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.WorkflowState parseDelimitedFrom( - java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + public static io.temporal.omes.KitchenSink.WorkflowState parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); } public static io.temporal.omes.KitchenSink.WorkflowState parseDelimitedFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.WorkflowState parseFrom( - com.google.protobuf.CodedInputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.WorkflowState parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override - public Builder newBuilderForType() { - return newBuilder(); - } - + public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(io.temporal.omes.KitchenSink.WorkflowState prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } - @java.lang.Override public Builder toBuilder() { - return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override @@ -12419,22 +11771,19 @@ protected Builder newBuilderForType( return builder; } /** - * - * *
      * Each workflow must maintain an instance of this state
      * 
* * Protobuf type {@code temporal.omes.kitchen_sink.WorkflowState} */ - public static final class Builder - extends com.google.protobuf.GeneratedMessageV3.Builder - implements + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.WorkflowState) io.temporal.omes.KitchenSink.WorkflowStateOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_WorkflowState_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_WorkflowState_descriptor; } @SuppressWarnings({"rawtypes"}) @@ -12444,10 +11793,10 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMapFieldRefl case 1: return internalGetKvs(); default: - throw new RuntimeException("Invalid map field number: " + number); + throw new RuntimeException( + "Invalid map field number: " + number); } } - @SuppressWarnings({"rawtypes"}) protected com.google.protobuf.MapFieldReflectionAccessor internalGetMutableMapFieldReflection( int number) { @@ -12455,27 +11804,28 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMutableMapFi case 1: return internalGetMutableKvs(); default: - throw new RuntimeException("Invalid map field number: " + number); + throw new RuntimeException( + "Invalid map field number: " + number); } } - @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_WorkflowState_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_WorkflowState_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.WorkflowState.class, - io.temporal.omes.KitchenSink.WorkflowState.Builder.class); + io.temporal.omes.KitchenSink.WorkflowState.class, io.temporal.omes.KitchenSink.WorkflowState.Builder.class); } // Construct using io.temporal.omes.KitchenSink.WorkflowState.newBuilder() - private Builder() {} + private Builder() { - private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); } + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } @java.lang.Override public Builder clear() { super.clear(); @@ -12485,9 +11835,9 @@ public Builder clear() { } @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_WorkflowState_descriptor; + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_WorkflowState_descriptor; } @java.lang.Override @@ -12506,11 +11856,8 @@ public io.temporal.omes.KitchenSink.WorkflowState build() { @java.lang.Override public io.temporal.omes.KitchenSink.WorkflowState buildPartial() { - io.temporal.omes.KitchenSink.WorkflowState result = - new io.temporal.omes.KitchenSink.WorkflowState(this); - if (bitField0_ != 0) { - buildPartial0(result); - } + io.temporal.omes.KitchenSink.WorkflowState result = new io.temporal.omes.KitchenSink.WorkflowState(this); + if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } @@ -12527,41 +11874,38 @@ private void buildPartial0(io.temporal.omes.KitchenSink.WorkflowState result) { public Builder clone() { return super.clone(); } - @java.lang.Override public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.setField(field, value); } - @java.lang.Override - public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } - @java.lang.Override - public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } - @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, - int index, - java.lang.Object value) { + int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } - @java.lang.Override public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.addRepeatedField(field, value); } - @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.temporal.omes.KitchenSink.WorkflowState) { - return mergeFrom((io.temporal.omes.KitchenSink.WorkflowState) other); + return mergeFrom((io.temporal.omes.KitchenSink.WorkflowState)other); } else { super.mergeFrom(other); return this; @@ -12570,7 +11914,8 @@ public Builder mergeFrom(com.google.protobuf.Message other) { public Builder mergeFrom(io.temporal.omes.KitchenSink.WorkflowState other) { if (other == io.temporal.omes.KitchenSink.WorkflowState.getDefaultInstance()) return this; - internalGetMutableKvs().mergeFrom(other.internalGetKvs()); + internalGetMutableKvs().mergeFrom( + other.internalGetKvs()); bitField0_ |= 0x00000001; this.mergeUnknownFields(other.getUnknownFields()); onChanged(); @@ -12598,22 +11943,21 @@ public Builder mergeFrom( case 0: done = true; break; - case 10: - { - com.google.protobuf.MapEntry kvs__ = - input.readMessage( - KvsDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry); - internalGetMutableKvs().getMutableMap().put(kvs__.getKey(), kvs__.getValue()); - bitField0_ |= 0x00000001; - break; - } // case 10 - default: - { - if (!super.parseUnknownField(input, extensionRegistry, tag)) { - done = true; // was an endgroup tag - } - break; - } // default: + case 10: { + com.google.protobuf.MapEntry + kvs__ = input.readMessage( + KvsDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry); + internalGetMutableKvs().getMutableMap().put( + kvs__.getKey(), kvs__.getValue()); + bitField0_ |= 0x00000001; + break; + } // case 10 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -12623,22 +11967,23 @@ public Builder mergeFrom( } // finally return this; } - private int bitField0_; - private com.google.protobuf.MapField kvs_; - - private com.google.protobuf.MapField internalGetKvs() { + private com.google.protobuf.MapField< + java.lang.String, java.lang.String> kvs_; + private com.google.protobuf.MapField + internalGetKvs() { if (kvs_ == null) { - return com.google.protobuf.MapField.emptyMapField(KvsDefaultEntryHolder.defaultEntry); + return com.google.protobuf.MapField.emptyMapField( + KvsDefaultEntryHolder.defaultEntry); } return kvs_; } - private com.google.protobuf.MapField internalGetMutableKvs() { if (kvs_ == null) { - kvs_ = com.google.protobuf.MapField.newMapField(KvsDefaultEntryHolder.defaultEntry); + kvs_ = com.google.protobuf.MapField.newMapField( + KvsDefaultEntryHolder.defaultEntry); } if (!kvs_.isMutable()) { kvs_ = kvs_.copy(); @@ -12647,92 +11992,109 @@ private com.google.protobuf.MapField interna onChanged(); return kvs_; } - public int getKvsCount() { return internalGetKvs().getMap().size(); } - /** map<string, string> kvs = 1; */ + /** + * map<string, string> kvs = 1; + */ @java.lang.Override - public boolean containsKvs(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } + public boolean containsKvs( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } return internalGetKvs().getMap().containsKey(key); } - /** Use {@link #getKvsMap()} instead. */ + /** + * Use {@link #getKvsMap()} instead. + */ @java.lang.Override @java.lang.Deprecated public java.util.Map getKvs() { return getKvsMap(); } - /** map<string, string> kvs = 1; */ + /** + * map<string, string> kvs = 1; + */ @java.lang.Override public java.util.Map getKvsMap() { return internalGetKvs().getMap(); } - /** map<string, string> kvs = 1; */ + /** + * map<string, string> kvs = 1; + */ @java.lang.Override - public /* nullable */ java.lang.String getKvsOrDefault( + public /* nullable */ +java.lang.String getKvsOrDefault( java.lang.String key, /* nullable */ - java.lang.String defaultValue) { - if (key == null) { - throw new NullPointerException("map key"); - } - java.util.Map map = internalGetKvs().getMap(); +java.lang.String defaultValue) { + if (key == null) { throw new NullPointerException("map key"); } + java.util.Map map = + internalGetKvs().getMap(); return map.containsKey(key) ? map.get(key) : defaultValue; } - /** map<string, string> kvs = 1; */ + /** + * map<string, string> kvs = 1; + */ @java.lang.Override - public java.lang.String getKvsOrThrow(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } - java.util.Map map = internalGetKvs().getMap(); + public java.lang.String getKvsOrThrow( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } + java.util.Map map = + internalGetKvs().getMap(); if (!map.containsKey(key)) { throw new java.lang.IllegalArgumentException(); } return map.get(key); } - public Builder clearKvs() { bitField0_ = (bitField0_ & ~0x00000001); - internalGetMutableKvs().getMutableMap().clear(); + internalGetMutableKvs().getMutableMap() + .clear(); return this; } - /** map<string, string> kvs = 1; */ - public Builder removeKvs(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } - internalGetMutableKvs().getMutableMap().remove(key); + /** + * map<string, string> kvs = 1; + */ + public Builder removeKvs( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } + internalGetMutableKvs().getMutableMap() + .remove(key); return this; } - /** Use alternate mutation accessors instead. */ + /** + * Use alternate mutation accessors instead. + */ @java.lang.Deprecated - public java.util.Map getMutableKvs() { + public java.util.Map + getMutableKvs() { bitField0_ |= 0x00000001; return internalGetMutableKvs().getMutableMap(); } - /** map<string, string> kvs = 1; */ - public Builder putKvs(java.lang.String key, java.lang.String value) { - if (key == null) { - throw new NullPointerException("map key"); - } - if (value == null) { - throw new NullPointerException("map value"); - } - internalGetMutableKvs().getMutableMap().put(key, value); + /** + * map<string, string> kvs = 1; + */ + public Builder putKvs( + java.lang.String key, + java.lang.String value) { + if (key == null) { throw new NullPointerException("map key"); } + if (value == null) { throw new NullPointerException("map value"); } + internalGetMutableKvs().getMutableMap() + .put(key, value); bitField0_ |= 0x00000001; return this; } - /** map<string, string> kvs = 1; */ - public Builder putAllKvs(java.util.Map values) { - internalGetMutableKvs().getMutableMap().putAll(values); + /** + * map<string, string> kvs = 1; + */ + public Builder putAllKvs( + java.util.Map values) { + internalGetMutableKvs().getMutableMap() + .putAll(values); bitField0_ |= 0x00000001; return this; } - @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -12745,12 +12107,12 @@ public final Builder mergeUnknownFields( return super.mergeUnknownFields(unknownFields); } + // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.WorkflowState) } // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.WorkflowState) private static final io.temporal.omes.KitchenSink.WorkflowState DEFAULT_INSTANCE; - static { DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.WorkflowState(); } @@ -12759,28 +12121,27 @@ public static io.temporal.omes.KitchenSink.WorkflowState getDefaultInstance() { return DEFAULT_INSTANCE; } - private static final com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser() { - @java.lang.Override - public WorkflowState parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException() - .setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public WorkflowState parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; public static com.google.protobuf.Parser parser() { return PARSER; @@ -12795,94 +12156,115 @@ public com.google.protobuf.Parser getParserForType() { public io.temporal.omes.KitchenSink.WorkflowState getDefaultInstanceForType() { return DEFAULT_INSTANCE; } + } - public interface WorkflowInputOrBuilder - extends + public interface WorkflowInputOrBuilder extends // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.WorkflowInput) com.google.protobuf.MessageOrBuilder { - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ - java.util.List getInitialActionsList(); - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ + java.util.List + getInitialActionsList(); + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ io.temporal.omes.KitchenSink.ActionSet getInitialActions(int index); - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ int getInitialActionsCount(); - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ - java.util.List + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ + java.util.List getInitialActionsOrBuilderList(); - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ - io.temporal.omes.KitchenSink.ActionSetOrBuilder getInitialActionsOrBuilder(int index); + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ + io.temporal.omes.KitchenSink.ActionSetOrBuilder getInitialActionsOrBuilder( + int index); } - /** Protobuf type {@code temporal.omes.kitchen_sink.WorkflowInput} */ - public static final class WorkflowInput extends com.google.protobuf.GeneratedMessageV3 - implements + /** + * Protobuf type {@code temporal.omes.kitchen_sink.WorkflowInput} + */ + public static final class WorkflowInput extends + com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.WorkflowInput) WorkflowInputOrBuilder { - private static final long serialVersionUID = 0L; + private static final long serialVersionUID = 0L; // Use WorkflowInput.newBuilder() to construct. private WorkflowInput(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } - private WorkflowInput() { initialActions_ = java.util.Collections.emptyList(); } @java.lang.Override @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { return new WorkflowInput(); } - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_WorkflowInput_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_WorkflowInput_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_WorkflowInput_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_WorkflowInput_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.WorkflowInput.class, - io.temporal.omes.KitchenSink.WorkflowInput.Builder.class); + io.temporal.omes.KitchenSink.WorkflowInput.class, io.temporal.omes.KitchenSink.WorkflowInput.Builder.class); } public static final int INITIAL_ACTIONS_FIELD_NUMBER = 1; - @SuppressWarnings("serial") private java.util.List initialActions_; - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ @java.lang.Override public java.util.List getInitialActionsList() { return initialActions_; } - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ @java.lang.Override - public java.util.List + public java.util.List getInitialActionsOrBuilderList() { return initialActions_; } - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ @java.lang.Override public int getInitialActionsCount() { return initialActions_.size(); } - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ @java.lang.Override public io.temporal.omes.KitchenSink.ActionSet getInitialActions(int index) { return initialActions_.get(index); } - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ @java.lang.Override - public io.temporal.omes.KitchenSink.ActionSetOrBuilder getInitialActionsOrBuilder(int index) { + public io.temporal.omes.KitchenSink.ActionSetOrBuilder getInitialActionsOrBuilder( + int index) { return initialActions_.get(index); } private byte memoizedIsInitialized = -1; - @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; @@ -12894,7 +12276,8 @@ public final boolean isInitialized() { } @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { for (int i = 0; i < initialActions_.size(); i++) { output.writeMessage(1, initialActions_.get(i)); } @@ -12908,7 +12291,8 @@ public int getSerializedSize() { size = 0; for (int i = 0; i < initialActions_.size(); i++) { - size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, initialActions_.get(i)); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, initialActions_.get(i)); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; @@ -12918,15 +12302,15 @@ public int getSerializedSize() { @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { - return true; + return true; } if (!(obj instanceof io.temporal.omes.KitchenSink.WorkflowInput)) { return super.equals(obj); } - io.temporal.omes.KitchenSink.WorkflowInput other = - (io.temporal.omes.KitchenSink.WorkflowInput) obj; + io.temporal.omes.KitchenSink.WorkflowInput other = (io.temporal.omes.KitchenSink.WorkflowInput) obj; - if (!getInitialActionsList().equals(other.getInitialActionsList())) return false; + if (!getInitialActionsList() + .equals(other.getInitialActionsList())) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -12947,94 +12331,90 @@ public int hashCode() { return hash; } - public static io.temporal.omes.KitchenSink.WorkflowInput parseFrom(java.nio.ByteBuffer data) + public static io.temporal.omes.KitchenSink.WorkflowInput parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.WorkflowInput parseFrom( - java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.WorkflowInput parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.WorkflowInput parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.WorkflowInput parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.WorkflowInput parseFrom( - byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.WorkflowInput parseFrom(java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.WorkflowInput parseFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.WorkflowInput parseDelimitedFrom( - java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + public static io.temporal.omes.KitchenSink.WorkflowInput parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); } public static io.temporal.omes.KitchenSink.WorkflowInput parseDelimitedFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.WorkflowInput parseFrom( - com.google.protobuf.CodedInputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.WorkflowInput parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override - public Builder newBuilderForType() { - return newBuilder(); - } - + public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(io.temporal.omes.KitchenSink.WorkflowInput prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } - @java.lang.Override public Builder toBuilder() { - return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override @@ -13043,34 +12423,36 @@ protected Builder newBuilderForType( Builder builder = new Builder(parent); return builder; } - /** Protobuf type {@code temporal.omes.kitchen_sink.WorkflowInput} */ - public static final class Builder - extends com.google.protobuf.GeneratedMessageV3.Builder - implements + /** + * Protobuf type {@code temporal.omes.kitchen_sink.WorkflowInput} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.WorkflowInput) io.temporal.omes.KitchenSink.WorkflowInputOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_WorkflowInput_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_WorkflowInput_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_WorkflowInput_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_WorkflowInput_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.WorkflowInput.class, - io.temporal.omes.KitchenSink.WorkflowInput.Builder.class); + io.temporal.omes.KitchenSink.WorkflowInput.class, io.temporal.omes.KitchenSink.WorkflowInput.Builder.class); } // Construct using io.temporal.omes.KitchenSink.WorkflowInput.newBuilder() - private Builder() {} + private Builder() { - private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); } + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } @java.lang.Override public Builder clear() { super.clear(); @@ -13086,9 +12468,9 @@ public Builder clear() { } @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_WorkflowInput_descriptor; + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_WorkflowInput_descriptor; } @java.lang.Override @@ -13107,12 +12489,9 @@ public io.temporal.omes.KitchenSink.WorkflowInput build() { @java.lang.Override public io.temporal.omes.KitchenSink.WorkflowInput buildPartial() { - io.temporal.omes.KitchenSink.WorkflowInput result = - new io.temporal.omes.KitchenSink.WorkflowInput(this); + io.temporal.omes.KitchenSink.WorkflowInput result = new io.temporal.omes.KitchenSink.WorkflowInput(this); buildPartialRepeatedFields(result); - if (bitField0_ != 0) { - buildPartial0(result); - } + if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } @@ -13137,41 +12516,38 @@ private void buildPartial0(io.temporal.omes.KitchenSink.WorkflowInput result) { public Builder clone() { return super.clone(); } - @java.lang.Override public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.setField(field, value); } - @java.lang.Override - public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } - @java.lang.Override - public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } - @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, - int index, - java.lang.Object value) { + int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } - @java.lang.Override public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.addRepeatedField(field, value); } - @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.temporal.omes.KitchenSink.WorkflowInput) { - return mergeFrom((io.temporal.omes.KitchenSink.WorkflowInput) other); + return mergeFrom((io.temporal.omes.KitchenSink.WorkflowInput)other); } else { super.mergeFrom(other); return this; @@ -13198,10 +12574,9 @@ public Builder mergeFrom(io.temporal.omes.KitchenSink.WorkflowInput other) { initialActionsBuilder_ = null; initialActions_ = other.initialActions_; bitField0_ = (bitField0_ & ~0x00000001); - initialActionsBuilder_ = - com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders - ? getInitialActionsFieldBuilder() - : null; + initialActionsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getInitialActionsFieldBuilder() : null; } else { initialActionsBuilder_.addAllMessages(other.initialActions_); } @@ -13233,26 +12608,25 @@ public Builder mergeFrom( case 0: done = true; break; - case 10: - { - io.temporal.omes.KitchenSink.ActionSet m = - input.readMessage( - io.temporal.omes.KitchenSink.ActionSet.parser(), extensionRegistry); - if (initialActionsBuilder_ == null) { - ensureInitialActionsIsMutable(); - initialActions_.add(m); - } else { - initialActionsBuilder_.addMessage(m); - } - break; - } // case 10 - default: - { - if (!super.parseUnknownField(input, extensionRegistry, tag)) { - done = true; // was an endgroup tag - } - break; - } // default: + case 10: { + io.temporal.omes.KitchenSink.ActionSet m = + input.readMessage( + io.temporal.omes.KitchenSink.ActionSet.parser(), + extensionRegistry); + if (initialActionsBuilder_ == null) { + ensureInitialActionsIsMutable(); + initialActions_.add(m); + } else { + initialActionsBuilder_.addMessage(m); + } + break; + } // case 10 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -13262,27 +12636,23 @@ public Builder mergeFrom( } // finally return this; } - private int bitField0_; private java.util.List initialActions_ = - java.util.Collections.emptyList(); - + java.util.Collections.emptyList(); private void ensureInitialActionsIsMutable() { if (!((bitField0_ & 0x00000001) != 0)) { - initialActions_ = - new java.util.ArrayList(initialActions_); + initialActions_ = new java.util.ArrayList(initialActions_); bitField0_ |= 0x00000001; - } + } } private com.google.protobuf.RepeatedFieldBuilderV3< - io.temporal.omes.KitchenSink.ActionSet, - io.temporal.omes.KitchenSink.ActionSet.Builder, - io.temporal.omes.KitchenSink.ActionSetOrBuilder> - initialActionsBuilder_; + io.temporal.omes.KitchenSink.ActionSet, io.temporal.omes.KitchenSink.ActionSet.Builder, io.temporal.omes.KitchenSink.ActionSetOrBuilder> initialActionsBuilder_; - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ public java.util.List getInitialActionsList() { if (initialActionsBuilder_ == null) { return java.util.Collections.unmodifiableList(initialActions_); @@ -13290,7 +12660,9 @@ public java.util.List getInitialActionsL return initialActionsBuilder_.getMessageList(); } } - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ public int getInitialActionsCount() { if (initialActionsBuilder_ == null) { return initialActions_.size(); @@ -13298,7 +12670,9 @@ public int getInitialActionsCount() { return initialActionsBuilder_.getCount(); } } - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ public io.temporal.omes.KitchenSink.ActionSet getInitialActions(int index) { if (initialActionsBuilder_ == null) { return initialActions_.get(index); @@ -13306,8 +12680,11 @@ public io.temporal.omes.KitchenSink.ActionSet getInitialActions(int index) { return initialActionsBuilder_.getMessage(index); } } - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ - public Builder setInitialActions(int index, io.temporal.omes.KitchenSink.ActionSet value) { + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ + public Builder setInitialActions( + int index, io.temporal.omes.KitchenSink.ActionSet value) { if (initialActionsBuilder_ == null) { if (value == null) { throw new NullPointerException(); @@ -13320,7 +12697,9 @@ public Builder setInitialActions(int index, io.temporal.omes.KitchenSink.ActionS } return this; } - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ public Builder setInitialActions( int index, io.temporal.omes.KitchenSink.ActionSet.Builder builderForValue) { if (initialActionsBuilder_ == null) { @@ -13332,7 +12711,9 @@ public Builder setInitialActions( } return this; } - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ public Builder addInitialActions(io.temporal.omes.KitchenSink.ActionSet value) { if (initialActionsBuilder_ == null) { if (value == null) { @@ -13346,8 +12727,11 @@ public Builder addInitialActions(io.temporal.omes.KitchenSink.ActionSet value) { } return this; } - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ - public Builder addInitialActions(int index, io.temporal.omes.KitchenSink.ActionSet value) { + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ + public Builder addInitialActions( + int index, io.temporal.omes.KitchenSink.ActionSet value) { if (initialActionsBuilder_ == null) { if (value == null) { throw new NullPointerException(); @@ -13360,7 +12744,9 @@ public Builder addInitialActions(int index, io.temporal.omes.KitchenSink.ActionS } return this; } - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ public Builder addInitialActions( io.temporal.omes.KitchenSink.ActionSet.Builder builderForValue) { if (initialActionsBuilder_ == null) { @@ -13372,7 +12758,9 @@ public Builder addInitialActions( } return this; } - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ public Builder addInitialActions( int index, io.temporal.omes.KitchenSink.ActionSet.Builder builderForValue) { if (initialActionsBuilder_ == null) { @@ -13384,19 +12772,24 @@ public Builder addInitialActions( } return this; } - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ public Builder addAllInitialActions( java.lang.Iterable values) { if (initialActionsBuilder_ == null) { ensureInitialActionsIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll(values, initialActions_); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, initialActions_); onChanged(); } else { initialActionsBuilder_.addAllMessages(values); } return this; } - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ public Builder clearInitialActions() { if (initialActionsBuilder_ == null) { initialActions_ = java.util.Collections.emptyList(); @@ -13407,7 +12800,9 @@ public Builder clearInitialActions() { } return this; } - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ public Builder removeInitialActions(int index) { if (initialActionsBuilder_ == null) { ensureInitialActionsIsMutable(); @@ -13418,54 +12813,62 @@ public Builder removeInitialActions(int index) { } return this; } - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ - public io.temporal.omes.KitchenSink.ActionSet.Builder getInitialActionsBuilder(int index) { + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ + public io.temporal.omes.KitchenSink.ActionSet.Builder getInitialActionsBuilder( + int index) { return getInitialActionsFieldBuilder().getBuilder(index); } - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ - public io.temporal.omes.KitchenSink.ActionSetOrBuilder getInitialActionsOrBuilder(int index) { + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ + public io.temporal.omes.KitchenSink.ActionSetOrBuilder getInitialActionsOrBuilder( + int index) { if (initialActionsBuilder_ == null) { - return initialActions_.get(index); - } else { + return initialActions_.get(index); } else { return initialActionsBuilder_.getMessageOrBuilder(index); } } - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ - public java.util.List - getInitialActionsOrBuilderList() { + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ + public java.util.List + getInitialActionsOrBuilderList() { if (initialActionsBuilder_ != null) { return initialActionsBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(initialActions_); } } - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ public io.temporal.omes.KitchenSink.ActionSet.Builder addInitialActionsBuilder() { - return getInitialActionsFieldBuilder() - .addBuilder(io.temporal.omes.KitchenSink.ActionSet.getDefaultInstance()); + return getInitialActionsFieldBuilder().addBuilder( + io.temporal.omes.KitchenSink.ActionSet.getDefaultInstance()); } - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ - public io.temporal.omes.KitchenSink.ActionSet.Builder addInitialActionsBuilder(int index) { - return getInitialActionsFieldBuilder() - .addBuilder(index, io.temporal.omes.KitchenSink.ActionSet.getDefaultInstance()); + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ + public io.temporal.omes.KitchenSink.ActionSet.Builder addInitialActionsBuilder( + int index) { + return getInitialActionsFieldBuilder().addBuilder( + index, io.temporal.omes.KitchenSink.ActionSet.getDefaultInstance()); } - /** repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; */ - public java.util.List - getInitialActionsBuilderList() { + /** + * repeated .temporal.omes.kitchen_sink.ActionSet initial_actions = 1; + */ + public java.util.List + getInitialActionsBuilderList() { return getInitialActionsFieldBuilder().getBuilderList(); } - private com.google.protobuf.RepeatedFieldBuilderV3< - io.temporal.omes.KitchenSink.ActionSet, - io.temporal.omes.KitchenSink.ActionSet.Builder, - io.temporal.omes.KitchenSink.ActionSetOrBuilder> + io.temporal.omes.KitchenSink.ActionSet, io.temporal.omes.KitchenSink.ActionSet.Builder, io.temporal.omes.KitchenSink.ActionSetOrBuilder> getInitialActionsFieldBuilder() { if (initialActionsBuilder_ == null) { - initialActionsBuilder_ = - new com.google.protobuf.RepeatedFieldBuilderV3< - io.temporal.omes.KitchenSink.ActionSet, - io.temporal.omes.KitchenSink.ActionSet.Builder, - io.temporal.omes.KitchenSink.ActionSetOrBuilder>( + initialActionsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + io.temporal.omes.KitchenSink.ActionSet, io.temporal.omes.KitchenSink.ActionSet.Builder, io.temporal.omes.KitchenSink.ActionSetOrBuilder>( initialActions_, ((bitField0_ & 0x00000001) != 0), getParentForChildren(), @@ -13474,7 +12877,6 @@ public io.temporal.omes.KitchenSink.ActionSet.Builder addInitialActionsBuilder(i } return initialActionsBuilder_; } - @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -13487,12 +12889,12 @@ public final Builder mergeUnknownFields( return super.mergeUnknownFields(unknownFields); } + // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.WorkflowInput) } // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.WorkflowInput) private static final io.temporal.omes.KitchenSink.WorkflowInput DEFAULT_INSTANCE; - static { DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.WorkflowInput(); } @@ -13501,28 +12903,27 @@ public static io.temporal.omes.KitchenSink.WorkflowInput getDefaultInstance() { return DEFAULT_INSTANCE; } - private static final com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser() { - @java.lang.Override - public WorkflowInput parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException() - .setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public WorkflowInput parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; public static com.google.protobuf.Parser parser() { return PARSER; @@ -13537,35 +12938,44 @@ public com.google.protobuf.Parser getParserForType() { public io.temporal.omes.KitchenSink.WorkflowInput getDefaultInstanceForType() { return DEFAULT_INSTANCE; } + } - public interface ActionSetOrBuilder - extends + public interface ActionSetOrBuilder extends // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.ActionSet) com.google.protobuf.MessageOrBuilder { - /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */ - java.util.List getActionsList(); - /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.Action actions = 1; + */ + java.util.List + getActionsList(); + /** + * repeated .temporal.omes.kitchen_sink.Action actions = 1; + */ io.temporal.omes.KitchenSink.Action getActions(int index); - /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */ + /** + * repeated .temporal.omes.kitchen_sink.Action actions = 1; + */ int getActionsCount(); - /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */ - java.util.List + /** + * repeated .temporal.omes.kitchen_sink.Action actions = 1; + */ + java.util.List getActionsOrBuilderList(); - /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */ - io.temporal.omes.KitchenSink.ActionOrBuilder getActionsOrBuilder(int index); + /** + * repeated .temporal.omes.kitchen_sink.Action actions = 1; + */ + io.temporal.omes.KitchenSink.ActionOrBuilder getActionsOrBuilder( + int index); /** * bool concurrent = 2; - * * @return The concurrent. */ boolean getConcurrent(); } /** - * - * *
    * A set of actions to execute concurrently or sequentially. It is necessary to be able to represent
    * sequential execution without multiple 1-size action sets, as that implies the receipt of a signal
@@ -13577,69 +12987,77 @@ public interface ActionSetOrBuilder
    *
    * Protobuf type {@code temporal.omes.kitchen_sink.ActionSet}
    */
-  public static final class ActionSet extends com.google.protobuf.GeneratedMessageV3
-      implements
+  public static final class ActionSet extends
+      com.google.protobuf.GeneratedMessageV3 implements
       // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.ActionSet)
       ActionSetOrBuilder {
-    private static final long serialVersionUID = 0L;
+  private static final long serialVersionUID = 0L;
     // Use ActionSet.newBuilder() to construct.
     private ActionSet(com.google.protobuf.GeneratedMessageV3.Builder builder) {
       super(builder);
     }
-
     private ActionSet() {
       actions_ = java.util.Collections.emptyList();
     }
 
     @java.lang.Override
     @SuppressWarnings({"unused"})
-    protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
+    protected java.lang.Object newInstance(
+        UnusedPrivateParameter unused) {
       return new ActionSet();
     }
 
-    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
-      return io.temporal.omes.KitchenSink
-          .internal_static_temporal_omes_kitchen_sink_ActionSet_descriptor;
+    public static final com.google.protobuf.Descriptors.Descriptor
+        getDescriptor() {
+      return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ActionSet_descriptor;
     }
 
     @java.lang.Override
     protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
         internalGetFieldAccessorTable() {
-      return io.temporal.omes.KitchenSink
-          .internal_static_temporal_omes_kitchen_sink_ActionSet_fieldAccessorTable
+      return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ActionSet_fieldAccessorTable
           .ensureFieldAccessorsInitialized(
-              io.temporal.omes.KitchenSink.ActionSet.class,
-              io.temporal.omes.KitchenSink.ActionSet.Builder.class);
+              io.temporal.omes.KitchenSink.ActionSet.class, io.temporal.omes.KitchenSink.ActionSet.Builder.class);
     }
 
     public static final int ACTIONS_FIELD_NUMBER = 1;
-
     @SuppressWarnings("serial")
     private java.util.List actions_;
-    /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */
+    /**
+     * repeated .temporal.omes.kitchen_sink.Action actions = 1;
+     */
     @java.lang.Override
     public java.util.List getActionsList() {
       return actions_;
     }
-    /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */
+    /**
+     * repeated .temporal.omes.kitchen_sink.Action actions = 1;
+     */
     @java.lang.Override
-    public java.util.List
+    public java.util.List 
         getActionsOrBuilderList() {
       return actions_;
     }
-    /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */
+    /**
+     * repeated .temporal.omes.kitchen_sink.Action actions = 1;
+     */
     @java.lang.Override
     public int getActionsCount() {
       return actions_.size();
     }
-    /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */
+    /**
+     * repeated .temporal.omes.kitchen_sink.Action actions = 1;
+     */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.Action getActions(int index) {
       return actions_.get(index);
     }
-    /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */
+    /**
+     * repeated .temporal.omes.kitchen_sink.Action actions = 1;
+     */
     @java.lang.Override
-    public io.temporal.omes.KitchenSink.ActionOrBuilder getActionsOrBuilder(int index) {
+    public io.temporal.omes.KitchenSink.ActionOrBuilder getActionsOrBuilder(
+        int index) {
       return actions_.get(index);
     }
 
@@ -13647,7 +13065,6 @@ public io.temporal.omes.KitchenSink.ActionOrBuilder getActionsOrBuilder(int inde
     private boolean concurrent_ = false;
     /**
      * bool concurrent = 2;
-     *
      * @return The concurrent.
      */
     @java.lang.Override
@@ -13656,7 +13073,6 @@ public boolean getConcurrent() {
     }
 
     private byte memoizedIsInitialized = -1;
-
     @java.lang.Override
     public final boolean isInitialized() {
       byte isInitialized = memoizedIsInitialized;
@@ -13668,7 +13084,8 @@ public final boolean isInitialized() {
     }
 
     @java.lang.Override
-    public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
+    public void writeTo(com.google.protobuf.CodedOutputStream output)
+                        throws java.io.IOException {
       for (int i = 0; i < actions_.size(); i++) {
         output.writeMessage(1, actions_.get(i));
       }
@@ -13685,10 +13102,12 @@ public int getSerializedSize() {
 
       size = 0;
       for (int i = 0; i < actions_.size(); i++) {
-        size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, actions_.get(i));
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(1, actions_.get(i));
       }
       if (concurrent_ != false) {
-        size += com.google.protobuf.CodedOutputStream.computeBoolSize(2, concurrent_);
+        size += com.google.protobuf.CodedOutputStream
+          .computeBoolSize(2, concurrent_);
       }
       size += getUnknownFields().getSerializedSize();
       memoizedSize = size;
@@ -13698,15 +13117,17 @@ public int getSerializedSize() {
     @java.lang.Override
     public boolean equals(final java.lang.Object obj) {
       if (obj == this) {
-        return true;
+       return true;
       }
       if (!(obj instanceof io.temporal.omes.KitchenSink.ActionSet)) {
         return super.equals(obj);
       }
       io.temporal.omes.KitchenSink.ActionSet other = (io.temporal.omes.KitchenSink.ActionSet) obj;
 
-      if (!getActionsList().equals(other.getActionsList())) return false;
-      if (getConcurrent() != other.getConcurrent()) return false;
+      if (!getActionsList()
+          .equals(other.getActionsList())) return false;
+      if (getConcurrent()
+          != other.getConcurrent()) return false;
       if (!getUnknownFields().equals(other.getUnknownFields())) return false;
       return true;
     }
@@ -13723,100 +13144,97 @@ public int hashCode() {
         hash = (53 * hash) + getActionsList().hashCode();
       }
       hash = (37 * hash) + CONCURRENT_FIELD_NUMBER;
-      hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getConcurrent());
+      hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
+          getConcurrent());
       hash = (29 * hash) + getUnknownFields().hashCode();
       memoizedHashCode = hash;
       return hash;
     }
 
-    public static io.temporal.omes.KitchenSink.ActionSet parseFrom(java.nio.ByteBuffer data)
+    public static io.temporal.omes.KitchenSink.ActionSet parseFrom(
+        java.nio.ByteBuffer data)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data);
     }
-
     public static io.temporal.omes.KitchenSink.ActionSet parseFrom(
-        java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        java.nio.ByteBuffer data,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.ActionSet parseFrom(
         com.google.protobuf.ByteString data)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data);
     }
-
     public static io.temporal.omes.KitchenSink.ActionSet parseFrom(
         com.google.protobuf.ByteString data,
         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.ActionSet parseFrom(byte[] data)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data);
     }
-
     public static io.temporal.omes.KitchenSink.ActionSet parseFrom(
-        byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        byte[] data,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.ActionSet parseFrom(java.io.InputStream input)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input);
     }
-
     public static io.temporal.omes.KitchenSink.ActionSet parseFrom(
-        java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        java.io.InputStream input,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
-          PARSER, input, extensionRegistry);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input, extensionRegistry);
     }
 
-    public static io.temporal.omes.KitchenSink.ActionSet parseDelimitedFrom(
-        java.io.InputStream input) throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
+    public static io.temporal.omes.KitchenSink.ActionSet parseDelimitedFrom(java.io.InputStream input)
+        throws java.io.IOException {
+      return com.google.protobuf.GeneratedMessageV3
+          .parseDelimitedWithIOException(PARSER, input);
     }
 
     public static io.temporal.omes.KitchenSink.ActionSet parseDelimitedFrom(
-        java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        java.io.InputStream input,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
-          PARSER, input, extensionRegistry);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseDelimitedWithIOException(PARSER, input, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.ActionSet parseFrom(
-        com.google.protobuf.CodedInputStream input) throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
+        com.google.protobuf.CodedInputStream input)
+        throws java.io.IOException {
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input);
     }
-
     public static io.temporal.omes.KitchenSink.ActionSet parseFrom(
         com.google.protobuf.CodedInputStream input,
         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
-          PARSER, input, extensionRegistry);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input, extensionRegistry);
     }
 
     @java.lang.Override
-    public Builder newBuilderForType() {
-      return newBuilder();
-    }
-
+    public Builder newBuilderForType() { return newBuilder(); }
     public static Builder newBuilder() {
       return DEFAULT_INSTANCE.toBuilder();
     }
-
     public static Builder newBuilder(io.temporal.omes.KitchenSink.ActionSet prototype) {
       return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
     }
-
     @java.lang.Override
     public Builder toBuilder() {
-      return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
+      return this == DEFAULT_INSTANCE
+          ? new Builder() : new Builder().mergeFrom(this);
     }
 
     @java.lang.Override
@@ -13826,8 +13244,6 @@ protected Builder newBuilderForType(
       return builder;
     }
     /**
-     *
-     *
      * 
      * A set of actions to execute concurrently or sequentially. It is necessary to be able to represent
      * sequential execution without multiple 1-size action sets, as that implies the receipt of a signal
@@ -13839,33 +13255,33 @@ protected Builder newBuilderForType(
      *
      * Protobuf type {@code temporal.omes.kitchen_sink.ActionSet}
      */
-    public static final class Builder
-        extends com.google.protobuf.GeneratedMessageV3.Builder
-        implements
+    public static final class Builder extends
+        com.google.protobuf.GeneratedMessageV3.Builder implements
         // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.ActionSet)
         io.temporal.omes.KitchenSink.ActionSetOrBuilder {
-      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_ActionSet_descriptor;
+      public static final com.google.protobuf.Descriptors.Descriptor
+          getDescriptor() {
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ActionSet_descriptor;
       }
 
       @java.lang.Override
       protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
           internalGetFieldAccessorTable() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_ActionSet_fieldAccessorTable
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ActionSet_fieldAccessorTable
             .ensureFieldAccessorsInitialized(
-                io.temporal.omes.KitchenSink.ActionSet.class,
-                io.temporal.omes.KitchenSink.ActionSet.Builder.class);
+                io.temporal.omes.KitchenSink.ActionSet.class, io.temporal.omes.KitchenSink.ActionSet.Builder.class);
       }
 
       // Construct using io.temporal.omes.KitchenSink.ActionSet.newBuilder()
-      private Builder() {}
+      private Builder() {
 
-      private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
-        super(parent);
       }
 
+      private Builder(
+          com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
+        super(parent);
+
+      }
       @java.lang.Override
       public Builder clear() {
         super.clear();
@@ -13882,9 +13298,9 @@ public Builder clear() {
       }
 
       @java.lang.Override
-      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_ActionSet_descriptor;
+      public com.google.protobuf.Descriptors.Descriptor
+          getDescriptorForType() {
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ActionSet_descriptor;
       }
 
       @java.lang.Override
@@ -13903,12 +13319,9 @@ public io.temporal.omes.KitchenSink.ActionSet build() {
 
       @java.lang.Override
       public io.temporal.omes.KitchenSink.ActionSet buildPartial() {
-        io.temporal.omes.KitchenSink.ActionSet result =
-            new io.temporal.omes.KitchenSink.ActionSet(this);
+        io.temporal.omes.KitchenSink.ActionSet result = new io.temporal.omes.KitchenSink.ActionSet(this);
         buildPartialRepeatedFields(result);
-        if (bitField0_ != 0) {
-          buildPartial0(result);
-        }
+        if (bitField0_ != 0) { buildPartial0(result); }
         onBuilt();
         return result;
       }
@@ -13936,41 +13349,38 @@ private void buildPartial0(io.temporal.omes.KitchenSink.ActionSet result) {
       public Builder clone() {
         return super.clone();
       }
-
       @java.lang.Override
       public Builder setField(
-          com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
+          com.google.protobuf.Descriptors.FieldDescriptor field,
+          java.lang.Object value) {
         return super.setField(field, value);
       }
-
       @java.lang.Override
-      public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
+      public Builder clearField(
+          com.google.protobuf.Descriptors.FieldDescriptor field) {
         return super.clearField(field);
       }
-
       @java.lang.Override
-      public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
+      public Builder clearOneof(
+          com.google.protobuf.Descriptors.OneofDescriptor oneof) {
         return super.clearOneof(oneof);
       }
-
       @java.lang.Override
       public Builder setRepeatedField(
           com.google.protobuf.Descriptors.FieldDescriptor field,
-          int index,
-          java.lang.Object value) {
+          int index, java.lang.Object value) {
         return super.setRepeatedField(field, index, value);
       }
-
       @java.lang.Override
       public Builder addRepeatedField(
-          com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
+          com.google.protobuf.Descriptors.FieldDescriptor field,
+          java.lang.Object value) {
         return super.addRepeatedField(field, value);
       }
-
       @java.lang.Override
       public Builder mergeFrom(com.google.protobuf.Message other) {
         if (other instanceof io.temporal.omes.KitchenSink.ActionSet) {
-          return mergeFrom((io.temporal.omes.KitchenSink.ActionSet) other);
+          return mergeFrom((io.temporal.omes.KitchenSink.ActionSet)other);
         } else {
           super.mergeFrom(other);
           return this;
@@ -13997,10 +13407,9 @@ public Builder mergeFrom(io.temporal.omes.KitchenSink.ActionSet other) {
               actionsBuilder_ = null;
               actions_ = other.actions_;
               bitField0_ = (bitField0_ & ~0x00000001);
-              actionsBuilder_ =
-                  com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders
-                      ? getActionsFieldBuilder()
-                      : null;
+              actionsBuilder_ = 
+                com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
+                   getActionsFieldBuilder() : null;
             } else {
               actionsBuilder_.addAllMessages(other.actions_);
             }
@@ -14035,32 +13444,30 @@ public Builder mergeFrom(
               case 0:
                 done = true;
                 break;
-              case 10:
-                {
-                  io.temporal.omes.KitchenSink.Action m =
-                      input.readMessage(
-                          io.temporal.omes.KitchenSink.Action.parser(), extensionRegistry);
-                  if (actionsBuilder_ == null) {
-                    ensureActionsIsMutable();
-                    actions_.add(m);
-                  } else {
-                    actionsBuilder_.addMessage(m);
-                  }
-                  break;
-                } // case 10
-              case 16:
-                {
-                  concurrent_ = input.readBool();
-                  bitField0_ |= 0x00000002;
-                  break;
-                } // case 16
-              default:
-                {
-                  if (!super.parseUnknownField(input, extensionRegistry, tag)) {
-                    done = true; // was an endgroup tag
-                  }
-                  break;
-                } // default:
+              case 10: {
+                io.temporal.omes.KitchenSink.Action m =
+                    input.readMessage(
+                        io.temporal.omes.KitchenSink.Action.parser(),
+                        extensionRegistry);
+                if (actionsBuilder_ == null) {
+                  ensureActionsIsMutable();
+                  actions_.add(m);
+                } else {
+                  actionsBuilder_.addMessage(m);
+                }
+                break;
+              } // case 10
+              case 16: {
+                concurrent_ = input.readBool();
+                bitField0_ |= 0x00000002;
+                break;
+              } // case 16
+              default: {
+                if (!super.parseUnknownField(input, extensionRegistry, tag)) {
+                  done = true; // was an endgroup tag
+                }
+                break;
+              } // default:
             } // switch (tag)
           } // while (!done)
         } catch (com.google.protobuf.InvalidProtocolBufferException e) {
@@ -14070,26 +13477,23 @@ public Builder mergeFrom(
         } // finally
         return this;
       }
-
       private int bitField0_;
 
       private java.util.List actions_ =
-          java.util.Collections.emptyList();
-
+        java.util.Collections.emptyList();
       private void ensureActionsIsMutable() {
         if (!((bitField0_ & 0x00000001) != 0)) {
           actions_ = new java.util.ArrayList(actions_);
           bitField0_ |= 0x00000001;
-        }
+         }
       }
 
       private com.google.protobuf.RepeatedFieldBuilderV3<
-              io.temporal.omes.KitchenSink.Action,
-              io.temporal.omes.KitchenSink.Action.Builder,
-              io.temporal.omes.KitchenSink.ActionOrBuilder>
-          actionsBuilder_;
+          io.temporal.omes.KitchenSink.Action, io.temporal.omes.KitchenSink.Action.Builder, io.temporal.omes.KitchenSink.ActionOrBuilder> actionsBuilder_;
 
-      /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */
+      /**
+       * repeated .temporal.omes.kitchen_sink.Action actions = 1;
+       */
       public java.util.List getActionsList() {
         if (actionsBuilder_ == null) {
           return java.util.Collections.unmodifiableList(actions_);
@@ -14097,7 +13501,9 @@ public java.util.List getActionsList() {
           return actionsBuilder_.getMessageList();
         }
       }
-      /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */
+      /**
+       * repeated .temporal.omes.kitchen_sink.Action actions = 1;
+       */
       public int getActionsCount() {
         if (actionsBuilder_ == null) {
           return actions_.size();
@@ -14105,7 +13511,9 @@ public int getActionsCount() {
           return actionsBuilder_.getCount();
         }
       }
-      /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */
+      /**
+       * repeated .temporal.omes.kitchen_sink.Action actions = 1;
+       */
       public io.temporal.omes.KitchenSink.Action getActions(int index) {
         if (actionsBuilder_ == null) {
           return actions_.get(index);
@@ -14113,8 +13521,11 @@ public io.temporal.omes.KitchenSink.Action getActions(int index) {
           return actionsBuilder_.getMessage(index);
         }
       }
-      /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */
-      public Builder setActions(int index, io.temporal.omes.KitchenSink.Action value) {
+      /**
+       * repeated .temporal.omes.kitchen_sink.Action actions = 1;
+       */
+      public Builder setActions(
+          int index, io.temporal.omes.KitchenSink.Action value) {
         if (actionsBuilder_ == null) {
           if (value == null) {
             throw new NullPointerException();
@@ -14127,7 +13538,9 @@ public Builder setActions(int index, io.temporal.omes.KitchenSink.Action value)
         }
         return this;
       }
-      /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */
+      /**
+       * repeated .temporal.omes.kitchen_sink.Action actions = 1;
+       */
       public Builder setActions(
           int index, io.temporal.omes.KitchenSink.Action.Builder builderForValue) {
         if (actionsBuilder_ == null) {
@@ -14139,7 +13552,9 @@ public Builder setActions(
         }
         return this;
       }
-      /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */
+      /**
+       * repeated .temporal.omes.kitchen_sink.Action actions = 1;
+       */
       public Builder addActions(io.temporal.omes.KitchenSink.Action value) {
         if (actionsBuilder_ == null) {
           if (value == null) {
@@ -14153,8 +13568,11 @@ public Builder addActions(io.temporal.omes.KitchenSink.Action value) {
         }
         return this;
       }
-      /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */
-      public Builder addActions(int index, io.temporal.omes.KitchenSink.Action value) {
+      /**
+       * repeated .temporal.omes.kitchen_sink.Action actions = 1;
+       */
+      public Builder addActions(
+          int index, io.temporal.omes.KitchenSink.Action value) {
         if (actionsBuilder_ == null) {
           if (value == null) {
             throw new NullPointerException();
@@ -14167,8 +13585,11 @@ public Builder addActions(int index, io.temporal.omes.KitchenSink.Action value)
         }
         return this;
       }
-      /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */
-      public Builder addActions(io.temporal.omes.KitchenSink.Action.Builder builderForValue) {
+      /**
+       * repeated .temporal.omes.kitchen_sink.Action actions = 1;
+       */
+      public Builder addActions(
+          io.temporal.omes.KitchenSink.Action.Builder builderForValue) {
         if (actionsBuilder_ == null) {
           ensureActionsIsMutable();
           actions_.add(builderForValue.build());
@@ -14178,7 +13599,9 @@ public Builder addActions(io.temporal.omes.KitchenSink.Action.Builder builderFor
         }
         return this;
       }
-      /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */
+      /**
+       * repeated .temporal.omes.kitchen_sink.Action actions = 1;
+       */
       public Builder addActions(
           int index, io.temporal.omes.KitchenSink.Action.Builder builderForValue) {
         if (actionsBuilder_ == null) {
@@ -14190,19 +13613,24 @@ public Builder addActions(
         }
         return this;
       }
-      /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */
+      /**
+       * repeated .temporal.omes.kitchen_sink.Action actions = 1;
+       */
       public Builder addAllActions(
           java.lang.Iterable values) {
         if (actionsBuilder_ == null) {
           ensureActionsIsMutable();
-          com.google.protobuf.AbstractMessageLite.Builder.addAll(values, actions_);
+          com.google.protobuf.AbstractMessageLite.Builder.addAll(
+              values, actions_);
           onChanged();
         } else {
           actionsBuilder_.addAllMessages(values);
         }
         return this;
       }
-      /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */
+      /**
+       * repeated .temporal.omes.kitchen_sink.Action actions = 1;
+       */
       public Builder clearActions() {
         if (actionsBuilder_ == null) {
           actions_ = java.util.Collections.emptyList();
@@ -14213,7 +13641,9 @@ public Builder clearActions() {
         }
         return this;
       }
-      /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */
+      /**
+       * repeated .temporal.omes.kitchen_sink.Action actions = 1;
+       */
       public Builder removeActions(int index) {
         if (actionsBuilder_ == null) {
           ensureActionsIsMutable();
@@ -14224,63 +13654,74 @@ public Builder removeActions(int index) {
         }
         return this;
       }
-      /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */
-      public io.temporal.omes.KitchenSink.Action.Builder getActionsBuilder(int index) {
+      /**
+       * repeated .temporal.omes.kitchen_sink.Action actions = 1;
+       */
+      public io.temporal.omes.KitchenSink.Action.Builder getActionsBuilder(
+          int index) {
         return getActionsFieldBuilder().getBuilder(index);
       }
-      /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */
-      public io.temporal.omes.KitchenSink.ActionOrBuilder getActionsOrBuilder(int index) {
+      /**
+       * repeated .temporal.omes.kitchen_sink.Action actions = 1;
+       */
+      public io.temporal.omes.KitchenSink.ActionOrBuilder getActionsOrBuilder(
+          int index) {
         if (actionsBuilder_ == null) {
-          return actions_.get(index);
-        } else {
+          return actions_.get(index);  } else {
           return actionsBuilder_.getMessageOrBuilder(index);
         }
       }
-      /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */
-      public java.util.List
-          getActionsOrBuilderList() {
+      /**
+       * repeated .temporal.omes.kitchen_sink.Action actions = 1;
+       */
+      public java.util.List 
+           getActionsOrBuilderList() {
         if (actionsBuilder_ != null) {
           return actionsBuilder_.getMessageOrBuilderList();
         } else {
           return java.util.Collections.unmodifiableList(actions_);
         }
       }
-      /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */
+      /**
+       * repeated .temporal.omes.kitchen_sink.Action actions = 1;
+       */
       public io.temporal.omes.KitchenSink.Action.Builder addActionsBuilder() {
-        return getActionsFieldBuilder()
-            .addBuilder(io.temporal.omes.KitchenSink.Action.getDefaultInstance());
+        return getActionsFieldBuilder().addBuilder(
+            io.temporal.omes.KitchenSink.Action.getDefaultInstance());
       }
-      /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */
-      public io.temporal.omes.KitchenSink.Action.Builder addActionsBuilder(int index) {
-        return getActionsFieldBuilder()
-            .addBuilder(index, io.temporal.omes.KitchenSink.Action.getDefaultInstance());
+      /**
+       * repeated .temporal.omes.kitchen_sink.Action actions = 1;
+       */
+      public io.temporal.omes.KitchenSink.Action.Builder addActionsBuilder(
+          int index) {
+        return getActionsFieldBuilder().addBuilder(
+            index, io.temporal.omes.KitchenSink.Action.getDefaultInstance());
       }
-      /** repeated .temporal.omes.kitchen_sink.Action actions = 1; */
-      public java.util.List getActionsBuilderList() {
+      /**
+       * repeated .temporal.omes.kitchen_sink.Action actions = 1;
+       */
+      public java.util.List 
+           getActionsBuilderList() {
         return getActionsFieldBuilder().getBuilderList();
       }
-
       private com.google.protobuf.RepeatedFieldBuilderV3<
-              io.temporal.omes.KitchenSink.Action,
-              io.temporal.omes.KitchenSink.Action.Builder,
-              io.temporal.omes.KitchenSink.ActionOrBuilder>
+          io.temporal.omes.KitchenSink.Action, io.temporal.omes.KitchenSink.Action.Builder, io.temporal.omes.KitchenSink.ActionOrBuilder> 
           getActionsFieldBuilder() {
         if (actionsBuilder_ == null) {
-          actionsBuilder_ =
-              new com.google.protobuf.RepeatedFieldBuilderV3<
-                  io.temporal.omes.KitchenSink.Action,
-                  io.temporal.omes.KitchenSink.Action.Builder,
-                  io.temporal.omes.KitchenSink.ActionOrBuilder>(
-                  actions_, ((bitField0_ & 0x00000001) != 0), getParentForChildren(), isClean());
+          actionsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
+              io.temporal.omes.KitchenSink.Action, io.temporal.omes.KitchenSink.Action.Builder, io.temporal.omes.KitchenSink.ActionOrBuilder>(
+                  actions_,
+                  ((bitField0_ & 0x00000001) != 0),
+                  getParentForChildren(),
+                  isClean());
           actions_ = null;
         }
         return actionsBuilder_;
       }
 
-      private boolean concurrent_;
+      private boolean concurrent_ ;
       /**
        * bool concurrent = 2;
-       *
        * @return The concurrent.
        */
       @java.lang.Override
@@ -14289,7 +13730,6 @@ public boolean getConcurrent() {
       }
       /**
        * bool concurrent = 2;
-       *
        * @param value The concurrent to set.
        * @return This builder for chaining.
        */
@@ -14302,7 +13742,6 @@ public Builder setConcurrent(boolean value) {
       }
       /**
        * bool concurrent = 2;
-       *
        * @return This builder for chaining.
        */
       public Builder clearConcurrent() {
@@ -14311,7 +13750,6 @@ public Builder clearConcurrent() {
         onChanged();
         return this;
       }
-
       @java.lang.Override
       public final Builder setUnknownFields(
           final com.google.protobuf.UnknownFieldSet unknownFields) {
@@ -14324,12 +13762,12 @@ public final Builder mergeUnknownFields(
         return super.mergeUnknownFields(unknownFields);
       }
 
+
       // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.ActionSet)
     }
 
     // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.ActionSet)
     private static final io.temporal.omes.KitchenSink.ActionSet DEFAULT_INSTANCE;
-
     static {
       DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.ActionSet();
     }
@@ -14338,28 +13776,27 @@ public static io.temporal.omes.KitchenSink.ActionSet getDefaultInstance() {
       return DEFAULT_INSTANCE;
     }
 
-    private static final com.google.protobuf.Parser PARSER =
-        new com.google.protobuf.AbstractParser() {
-          @java.lang.Override
-          public ActionSet parsePartialFrom(
-              com.google.protobuf.CodedInputStream input,
-              com.google.protobuf.ExtensionRegistryLite extensionRegistry)
-              throws com.google.protobuf.InvalidProtocolBufferException {
-            Builder builder = newBuilder();
-            try {
-              builder.mergeFrom(input, extensionRegistry);
-            } catch (com.google.protobuf.InvalidProtocolBufferException e) {
-              throw e.setUnfinishedMessage(builder.buildPartial());
-            } catch (com.google.protobuf.UninitializedMessageException e) {
-              throw e.asInvalidProtocolBufferException()
-                  .setUnfinishedMessage(builder.buildPartial());
-            } catch (java.io.IOException e) {
-              throw new com.google.protobuf.InvalidProtocolBufferException(e)
-                  .setUnfinishedMessage(builder.buildPartial());
-            }
-            return builder.buildPartial();
-          }
-        };
+    private static final com.google.protobuf.Parser
+        PARSER = new com.google.protobuf.AbstractParser() {
+      @java.lang.Override
+      public ActionSet parsePartialFrom(
+          com.google.protobuf.CodedInputStream input,
+          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+          throws com.google.protobuf.InvalidProtocolBufferException {
+        Builder builder = newBuilder();
+        try {
+          builder.mergeFrom(input, extensionRegistry);
+        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
+          throw e.setUnfinishedMessage(builder.buildPartial());
+        } catch (com.google.protobuf.UninitializedMessageException e) {
+          throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
+        } catch (java.io.IOException e) {
+          throw new com.google.protobuf.InvalidProtocolBufferException(e)
+              .setUnfinishedMessage(builder.buildPartial());
+        }
+        return builder.buildPartial();
+      }
+    };
 
     public static com.google.protobuf.Parser parser() {
       return PARSER;
@@ -14374,276 +13811,265 @@ public com.google.protobuf.Parser getParserForType() {
     public io.temporal.omes.KitchenSink.ActionSet getDefaultInstanceForType() {
       return DEFAULT_INSTANCE;
     }
+
   }
 
-  public interface ActionOrBuilder
-      extends
+  public interface ActionOrBuilder extends
       // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.Action)
       com.google.protobuf.MessageOrBuilder {
 
     /**
      * .temporal.omes.kitchen_sink.TimerAction timer = 1;
-     *
      * @return Whether the timer field is set.
      */
     boolean hasTimer();
     /**
      * .temporal.omes.kitchen_sink.TimerAction timer = 1;
-     *
      * @return The timer.
      */
     io.temporal.omes.KitchenSink.TimerAction getTimer();
-    /** .temporal.omes.kitchen_sink.TimerAction timer = 1; */
+    /**
+     * .temporal.omes.kitchen_sink.TimerAction timer = 1;
+     */
     io.temporal.omes.KitchenSink.TimerActionOrBuilder getTimerOrBuilder();
 
     /**
      * .temporal.omes.kitchen_sink.ExecuteActivityAction exec_activity = 2;
-     *
      * @return Whether the execActivity field is set.
      */
     boolean hasExecActivity();
     /**
      * .temporal.omes.kitchen_sink.ExecuteActivityAction exec_activity = 2;
-     *
      * @return The execActivity.
      */
     io.temporal.omes.KitchenSink.ExecuteActivityAction getExecActivity();
-    /** .temporal.omes.kitchen_sink.ExecuteActivityAction exec_activity = 2; */
+    /**
+     * .temporal.omes.kitchen_sink.ExecuteActivityAction exec_activity = 2;
+     */
     io.temporal.omes.KitchenSink.ExecuteActivityActionOrBuilder getExecActivityOrBuilder();
 
     /**
      * .temporal.omes.kitchen_sink.ExecuteChildWorkflowAction exec_child_workflow = 3;
-     *
      * @return Whether the execChildWorkflow field is set.
      */
     boolean hasExecChildWorkflow();
     /**
      * .temporal.omes.kitchen_sink.ExecuteChildWorkflowAction exec_child_workflow = 3;
-     *
      * @return The execChildWorkflow.
      */
     io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction getExecChildWorkflow();
     /**
      * .temporal.omes.kitchen_sink.ExecuteChildWorkflowAction exec_child_workflow = 3;
      */
-    io.temporal.omes.KitchenSink.ExecuteChildWorkflowActionOrBuilder
-        getExecChildWorkflowOrBuilder();
+    io.temporal.omes.KitchenSink.ExecuteChildWorkflowActionOrBuilder getExecChildWorkflowOrBuilder();
 
     /**
      * .temporal.omes.kitchen_sink.AwaitWorkflowState await_workflow_state = 4;
-     *
      * @return Whether the awaitWorkflowState field is set.
      */
     boolean hasAwaitWorkflowState();
     /**
      * .temporal.omes.kitchen_sink.AwaitWorkflowState await_workflow_state = 4;
-     *
      * @return The awaitWorkflowState.
      */
     io.temporal.omes.KitchenSink.AwaitWorkflowState getAwaitWorkflowState();
-    /** .temporal.omes.kitchen_sink.AwaitWorkflowState await_workflow_state = 4; */
+    /**
+     * .temporal.omes.kitchen_sink.AwaitWorkflowState await_workflow_state = 4;
+     */
     io.temporal.omes.KitchenSink.AwaitWorkflowStateOrBuilder getAwaitWorkflowStateOrBuilder();
 
     /**
      * .temporal.omes.kitchen_sink.SendSignalAction send_signal = 5;
-     *
      * @return Whether the sendSignal field is set.
      */
     boolean hasSendSignal();
     /**
      * .temporal.omes.kitchen_sink.SendSignalAction send_signal = 5;
-     *
      * @return The sendSignal.
      */
     io.temporal.omes.KitchenSink.SendSignalAction getSendSignal();
-    /** .temporal.omes.kitchen_sink.SendSignalAction send_signal = 5; */
+    /**
+     * .temporal.omes.kitchen_sink.SendSignalAction send_signal = 5;
+     */
     io.temporal.omes.KitchenSink.SendSignalActionOrBuilder getSendSignalOrBuilder();
 
     /**
      * .temporal.omes.kitchen_sink.CancelWorkflowAction cancel_workflow = 6;
-     *
      * @return Whether the cancelWorkflow field is set.
      */
     boolean hasCancelWorkflow();
     /**
      * .temporal.omes.kitchen_sink.CancelWorkflowAction cancel_workflow = 6;
-     *
      * @return The cancelWorkflow.
      */
     io.temporal.omes.KitchenSink.CancelWorkflowAction getCancelWorkflow();
-    /** .temporal.omes.kitchen_sink.CancelWorkflowAction cancel_workflow = 6; */
+    /**
+     * .temporal.omes.kitchen_sink.CancelWorkflowAction cancel_workflow = 6;
+     */
     io.temporal.omes.KitchenSink.CancelWorkflowActionOrBuilder getCancelWorkflowOrBuilder();
 
     /**
      * .temporal.omes.kitchen_sink.SetPatchMarkerAction set_patch_marker = 7;
-     *
      * @return Whether the setPatchMarker field is set.
      */
     boolean hasSetPatchMarker();
     /**
      * .temporal.omes.kitchen_sink.SetPatchMarkerAction set_patch_marker = 7;
-     *
      * @return The setPatchMarker.
      */
     io.temporal.omes.KitchenSink.SetPatchMarkerAction getSetPatchMarker();
-    /** .temporal.omes.kitchen_sink.SetPatchMarkerAction set_patch_marker = 7; */
+    /**
+     * .temporal.omes.kitchen_sink.SetPatchMarkerAction set_patch_marker = 7;
+     */
     io.temporal.omes.KitchenSink.SetPatchMarkerActionOrBuilder getSetPatchMarkerOrBuilder();
 
     /**
-     * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
-     * 
-     *
+     * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
      * @return Whether the upsertSearchAttributes field is set.
      */
     boolean hasUpsertSearchAttributes();
     /**
-     * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
-     * 
-     *
+     * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
      * @return The upsertSearchAttributes.
      */
     io.temporal.omes.KitchenSink.UpsertSearchAttributesAction getUpsertSearchAttributes();
     /**
-     * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
-     * 
+     * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
      */
-    io.temporal.omes.KitchenSink.UpsertSearchAttributesActionOrBuilder
-        getUpsertSearchAttributesOrBuilder();
+    io.temporal.omes.KitchenSink.UpsertSearchAttributesActionOrBuilder getUpsertSearchAttributesOrBuilder();
 
     /**
      * .temporal.omes.kitchen_sink.UpsertMemoAction upsert_memo = 9;
-     *
      * @return Whether the upsertMemo field is set.
      */
     boolean hasUpsertMemo();
     /**
      * .temporal.omes.kitchen_sink.UpsertMemoAction upsert_memo = 9;
-     *
      * @return The upsertMemo.
      */
     io.temporal.omes.KitchenSink.UpsertMemoAction getUpsertMemo();
-    /** .temporal.omes.kitchen_sink.UpsertMemoAction upsert_memo = 9; */
+    /**
+     * .temporal.omes.kitchen_sink.UpsertMemoAction upsert_memo = 9;
+     */
     io.temporal.omes.KitchenSink.UpsertMemoActionOrBuilder getUpsertMemoOrBuilder();
 
     /**
      * .temporal.omes.kitchen_sink.WorkflowState set_workflow_state = 10;
-     *
      * @return Whether the setWorkflowState field is set.
      */
     boolean hasSetWorkflowState();
     /**
      * .temporal.omes.kitchen_sink.WorkflowState set_workflow_state = 10;
-     *
      * @return The setWorkflowState.
      */
     io.temporal.omes.KitchenSink.WorkflowState getSetWorkflowState();
-    /** .temporal.omes.kitchen_sink.WorkflowState set_workflow_state = 10; */
+    /**
+     * .temporal.omes.kitchen_sink.WorkflowState set_workflow_state = 10;
+     */
     io.temporal.omes.KitchenSink.WorkflowStateOrBuilder getSetWorkflowStateOrBuilder();
 
     /**
      * .temporal.omes.kitchen_sink.ReturnResultAction return_result = 11;
-     *
      * @return Whether the returnResult field is set.
      */
     boolean hasReturnResult();
     /**
      * .temporal.omes.kitchen_sink.ReturnResultAction return_result = 11;
-     *
      * @return The returnResult.
      */
     io.temporal.omes.KitchenSink.ReturnResultAction getReturnResult();
-    /** .temporal.omes.kitchen_sink.ReturnResultAction return_result = 11; */
+    /**
+     * .temporal.omes.kitchen_sink.ReturnResultAction return_result = 11;
+     */
     io.temporal.omes.KitchenSink.ReturnResultActionOrBuilder getReturnResultOrBuilder();
 
     /**
      * .temporal.omes.kitchen_sink.ReturnErrorAction return_error = 12;
-     *
      * @return Whether the returnError field is set.
      */
     boolean hasReturnError();
     /**
      * .temporal.omes.kitchen_sink.ReturnErrorAction return_error = 12;
-     *
      * @return The returnError.
      */
     io.temporal.omes.KitchenSink.ReturnErrorAction getReturnError();
-    /** .temporal.omes.kitchen_sink.ReturnErrorAction return_error = 12; */
+    /**
+     * .temporal.omes.kitchen_sink.ReturnErrorAction return_error = 12;
+     */
     io.temporal.omes.KitchenSink.ReturnErrorActionOrBuilder getReturnErrorOrBuilder();
 
     /**
      * .temporal.omes.kitchen_sink.ContinueAsNewAction continue_as_new = 13;
-     *
      * @return Whether the continueAsNew field is set.
      */
     boolean hasContinueAsNew();
     /**
      * .temporal.omes.kitchen_sink.ContinueAsNewAction continue_as_new = 13;
-     *
      * @return The continueAsNew.
      */
     io.temporal.omes.KitchenSink.ContinueAsNewAction getContinueAsNew();
-    /** .temporal.omes.kitchen_sink.ContinueAsNewAction continue_as_new = 13; */
+    /**
+     * .temporal.omes.kitchen_sink.ContinueAsNewAction continue_as_new = 13;
+     */
     io.temporal.omes.KitchenSink.ContinueAsNewActionOrBuilder getContinueAsNewOrBuilder();
 
     /**
      * .temporal.omes.kitchen_sink.ActionSet nested_action_set = 14;
-     *
      * @return Whether the nestedActionSet field is set.
      */
     boolean hasNestedActionSet();
     /**
      * .temporal.omes.kitchen_sink.ActionSet nested_action_set = 14;
-     *
      * @return The nestedActionSet.
      */
     io.temporal.omes.KitchenSink.ActionSet getNestedActionSet();
-    /** .temporal.omes.kitchen_sink.ActionSet nested_action_set = 14; */
+    /**
+     * .temporal.omes.kitchen_sink.ActionSet nested_action_set = 14;
+     */
     io.temporal.omes.KitchenSink.ActionSetOrBuilder getNestedActionSetOrBuilder();
 
     io.temporal.omes.KitchenSink.Action.VariantCase getVariantCase();
   }
-  /** Protobuf type {@code temporal.omes.kitchen_sink.Action} */
-  public static final class Action extends com.google.protobuf.GeneratedMessageV3
-      implements
+  /**
+   * Protobuf type {@code temporal.omes.kitchen_sink.Action}
+   */
+  public static final class Action extends
+      com.google.protobuf.GeneratedMessageV3 implements
       // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.Action)
       ActionOrBuilder {
-    private static final long serialVersionUID = 0L;
+  private static final long serialVersionUID = 0L;
     // Use Action.newBuilder() to construct.
     private Action(com.google.protobuf.GeneratedMessageV3.Builder builder) {
       super(builder);
     }
-
-    private Action() {}
+    private Action() {
+    }
 
     @java.lang.Override
     @SuppressWarnings({"unused"})
-    protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
+    protected java.lang.Object newInstance(
+        UnusedPrivateParameter unused) {
       return new Action();
     }
 
-    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
-      return io.temporal.omes.KitchenSink
-          .internal_static_temporal_omes_kitchen_sink_Action_descriptor;
+    public static final com.google.protobuf.Descriptors.Descriptor
+        getDescriptor() {
+      return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_Action_descriptor;
     }
 
     @java.lang.Override
     protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
         internalGetFieldAccessorTable() {
-      return io.temporal.omes.KitchenSink
-          .internal_static_temporal_omes_kitchen_sink_Action_fieldAccessorTable
+      return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_Action_fieldAccessorTable
           .ensureFieldAccessorsInitialized(
-              io.temporal.omes.KitchenSink.Action.class,
-              io.temporal.omes.KitchenSink.Action.Builder.class);
+              io.temporal.omes.KitchenSink.Action.class, io.temporal.omes.KitchenSink.Action.Builder.class);
     }
 
     private int variantCase_ = 0;
-
     @SuppressWarnings("serial")
     private java.lang.Object variant_;
-
     public enum VariantCase
-        implements
-            com.google.protobuf.Internal.EnumLite,
+        implements com.google.protobuf.Internal.EnumLite,
             com.google.protobuf.AbstractMessage.InternalOneOfEnum {
       TIMER(1),
       EXEC_ACTIVITY(2),
@@ -14661,7 +14087,6 @@ public enum VariantCase
       NESTED_ACTION_SET(14),
       VARIANT_NOT_SET(0);
       private final int value;
-
       private VariantCase(int value) {
         this.value = value;
       }
@@ -14677,54 +14102,38 @@ public static VariantCase valueOf(int value) {
 
       public static VariantCase forNumber(int value) {
         switch (value) {
-          case 1:
-            return TIMER;
-          case 2:
-            return EXEC_ACTIVITY;
-          case 3:
-            return EXEC_CHILD_WORKFLOW;
-          case 4:
-            return AWAIT_WORKFLOW_STATE;
-          case 5:
-            return SEND_SIGNAL;
-          case 6:
-            return CANCEL_WORKFLOW;
-          case 7:
-            return SET_PATCH_MARKER;
-          case 8:
-            return UPSERT_SEARCH_ATTRIBUTES;
-          case 9:
-            return UPSERT_MEMO;
-          case 10:
-            return SET_WORKFLOW_STATE;
-          case 11:
-            return RETURN_RESULT;
-          case 12:
-            return RETURN_ERROR;
-          case 13:
-            return CONTINUE_AS_NEW;
-          case 14:
-            return NESTED_ACTION_SET;
-          case 0:
-            return VARIANT_NOT_SET;
-          default:
-            return null;
+          case 1: return TIMER;
+          case 2: return EXEC_ACTIVITY;
+          case 3: return EXEC_CHILD_WORKFLOW;
+          case 4: return AWAIT_WORKFLOW_STATE;
+          case 5: return SEND_SIGNAL;
+          case 6: return CANCEL_WORKFLOW;
+          case 7: return SET_PATCH_MARKER;
+          case 8: return UPSERT_SEARCH_ATTRIBUTES;
+          case 9: return UPSERT_MEMO;
+          case 10: return SET_WORKFLOW_STATE;
+          case 11: return RETURN_RESULT;
+          case 12: return RETURN_ERROR;
+          case 13: return CONTINUE_AS_NEW;
+          case 14: return NESTED_ACTION_SET;
+          case 0: return VARIANT_NOT_SET;
+          default: return null;
         }
       }
-
       public int getNumber() {
         return this.value;
       }
     };
 
-    public VariantCase getVariantCase() {
-      return VariantCase.forNumber(variantCase_);
+    public VariantCase
+    getVariantCase() {
+      return VariantCase.forNumber(
+          variantCase_);
     }
 
     public static final int TIMER_FIELD_NUMBER = 1;
     /**
      * .temporal.omes.kitchen_sink.TimerAction timer = 1;
-     *
      * @return Whether the timer field is set.
      */
     @java.lang.Override
@@ -14733,21 +14142,22 @@ public boolean hasTimer() {
     }
     /**
      * .temporal.omes.kitchen_sink.TimerAction timer = 1;
-     *
      * @return The timer.
      */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.TimerAction getTimer() {
       if (variantCase_ == 1) {
-        return (io.temporal.omes.KitchenSink.TimerAction) variant_;
+         return (io.temporal.omes.KitchenSink.TimerAction) variant_;
       }
       return io.temporal.omes.KitchenSink.TimerAction.getDefaultInstance();
     }
-    /** .temporal.omes.kitchen_sink.TimerAction timer = 1; */
+    /**
+     * .temporal.omes.kitchen_sink.TimerAction timer = 1;
+     */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.TimerActionOrBuilder getTimerOrBuilder() {
       if (variantCase_ == 1) {
-        return (io.temporal.omes.KitchenSink.TimerAction) variant_;
+         return (io.temporal.omes.KitchenSink.TimerAction) variant_;
       }
       return io.temporal.omes.KitchenSink.TimerAction.getDefaultInstance();
     }
@@ -14755,7 +14165,6 @@ public io.temporal.omes.KitchenSink.TimerActionOrBuilder getTimerOrBuilder() {
     public static final int EXEC_ACTIVITY_FIELD_NUMBER = 2;
     /**
      * .temporal.omes.kitchen_sink.ExecuteActivityAction exec_activity = 2;
-     *
      * @return Whether the execActivity field is set.
      */
     @java.lang.Override
@@ -14764,21 +14173,22 @@ public boolean hasExecActivity() {
     }
     /**
      * .temporal.omes.kitchen_sink.ExecuteActivityAction exec_activity = 2;
-     *
      * @return The execActivity.
      */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.ExecuteActivityAction getExecActivity() {
       if (variantCase_ == 2) {
-        return (io.temporal.omes.KitchenSink.ExecuteActivityAction) variant_;
+         return (io.temporal.omes.KitchenSink.ExecuteActivityAction) variant_;
       }
       return io.temporal.omes.KitchenSink.ExecuteActivityAction.getDefaultInstance();
     }
-    /** .temporal.omes.kitchen_sink.ExecuteActivityAction exec_activity = 2; */
+    /**
+     * .temporal.omes.kitchen_sink.ExecuteActivityAction exec_activity = 2;
+     */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.ExecuteActivityActionOrBuilder getExecActivityOrBuilder() {
       if (variantCase_ == 2) {
-        return (io.temporal.omes.KitchenSink.ExecuteActivityAction) variant_;
+         return (io.temporal.omes.KitchenSink.ExecuteActivityAction) variant_;
       }
       return io.temporal.omes.KitchenSink.ExecuteActivityAction.getDefaultInstance();
     }
@@ -14786,7 +14196,6 @@ public io.temporal.omes.KitchenSink.ExecuteActivityActionOrBuilder getExecActivi
     public static final int EXEC_CHILD_WORKFLOW_FIELD_NUMBER = 3;
     /**
      * .temporal.omes.kitchen_sink.ExecuteChildWorkflowAction exec_child_workflow = 3;
-     *
      * @return Whether the execChildWorkflow field is set.
      */
     @java.lang.Override
@@ -14795,13 +14204,12 @@ public boolean hasExecChildWorkflow() {
     }
     /**
      * .temporal.omes.kitchen_sink.ExecuteChildWorkflowAction exec_child_workflow = 3;
-     *
      * @return The execChildWorkflow.
      */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction getExecChildWorkflow() {
       if (variantCase_ == 3) {
-        return (io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction) variant_;
+         return (io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction) variant_;
       }
       return io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.getDefaultInstance();
     }
@@ -14809,10 +14217,9 @@ public io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction getExecChildWorkf
      * .temporal.omes.kitchen_sink.ExecuteChildWorkflowAction exec_child_workflow = 3;
      */
     @java.lang.Override
-    public io.temporal.omes.KitchenSink.ExecuteChildWorkflowActionOrBuilder
-        getExecChildWorkflowOrBuilder() {
+    public io.temporal.omes.KitchenSink.ExecuteChildWorkflowActionOrBuilder getExecChildWorkflowOrBuilder() {
       if (variantCase_ == 3) {
-        return (io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction) variant_;
+         return (io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction) variant_;
       }
       return io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.getDefaultInstance();
     }
@@ -14820,7 +14227,6 @@ public io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction getExecChildWorkf
     public static final int AWAIT_WORKFLOW_STATE_FIELD_NUMBER = 4;
     /**
      * .temporal.omes.kitchen_sink.AwaitWorkflowState await_workflow_state = 4;
-     *
      * @return Whether the awaitWorkflowState field is set.
      */
     @java.lang.Override
@@ -14829,22 +14235,22 @@ public boolean hasAwaitWorkflowState() {
     }
     /**
      * .temporal.omes.kitchen_sink.AwaitWorkflowState await_workflow_state = 4;
-     *
      * @return The awaitWorkflowState.
      */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.AwaitWorkflowState getAwaitWorkflowState() {
       if (variantCase_ == 4) {
-        return (io.temporal.omes.KitchenSink.AwaitWorkflowState) variant_;
+         return (io.temporal.omes.KitchenSink.AwaitWorkflowState) variant_;
       }
       return io.temporal.omes.KitchenSink.AwaitWorkflowState.getDefaultInstance();
     }
-    /** .temporal.omes.kitchen_sink.AwaitWorkflowState await_workflow_state = 4; */
+    /**
+     * .temporal.omes.kitchen_sink.AwaitWorkflowState await_workflow_state = 4;
+     */
     @java.lang.Override
-    public io.temporal.omes.KitchenSink.AwaitWorkflowStateOrBuilder
-        getAwaitWorkflowStateOrBuilder() {
+    public io.temporal.omes.KitchenSink.AwaitWorkflowStateOrBuilder getAwaitWorkflowStateOrBuilder() {
       if (variantCase_ == 4) {
-        return (io.temporal.omes.KitchenSink.AwaitWorkflowState) variant_;
+         return (io.temporal.omes.KitchenSink.AwaitWorkflowState) variant_;
       }
       return io.temporal.omes.KitchenSink.AwaitWorkflowState.getDefaultInstance();
     }
@@ -14852,7 +14258,6 @@ public io.temporal.omes.KitchenSink.AwaitWorkflowState getAwaitWorkflowState() {
     public static final int SEND_SIGNAL_FIELD_NUMBER = 5;
     /**
      * .temporal.omes.kitchen_sink.SendSignalAction send_signal = 5;
-     *
      * @return Whether the sendSignal field is set.
      */
     @java.lang.Override
@@ -14861,21 +14266,22 @@ public boolean hasSendSignal() {
     }
     /**
      * .temporal.omes.kitchen_sink.SendSignalAction send_signal = 5;
-     *
      * @return The sendSignal.
      */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.SendSignalAction getSendSignal() {
       if (variantCase_ == 5) {
-        return (io.temporal.omes.KitchenSink.SendSignalAction) variant_;
+         return (io.temporal.omes.KitchenSink.SendSignalAction) variant_;
       }
       return io.temporal.omes.KitchenSink.SendSignalAction.getDefaultInstance();
     }
-    /** .temporal.omes.kitchen_sink.SendSignalAction send_signal = 5; */
+    /**
+     * .temporal.omes.kitchen_sink.SendSignalAction send_signal = 5;
+     */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.SendSignalActionOrBuilder getSendSignalOrBuilder() {
       if (variantCase_ == 5) {
-        return (io.temporal.omes.KitchenSink.SendSignalAction) variant_;
+         return (io.temporal.omes.KitchenSink.SendSignalAction) variant_;
       }
       return io.temporal.omes.KitchenSink.SendSignalAction.getDefaultInstance();
     }
@@ -14883,7 +14289,6 @@ public io.temporal.omes.KitchenSink.SendSignalActionOrBuilder getSendSignalOrBui
     public static final int CANCEL_WORKFLOW_FIELD_NUMBER = 6;
     /**
      * .temporal.omes.kitchen_sink.CancelWorkflowAction cancel_workflow = 6;
-     *
      * @return Whether the cancelWorkflow field is set.
      */
     @java.lang.Override
@@ -14892,21 +14297,22 @@ public boolean hasCancelWorkflow() {
     }
     /**
      * .temporal.omes.kitchen_sink.CancelWorkflowAction cancel_workflow = 6;
-     *
      * @return The cancelWorkflow.
      */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.CancelWorkflowAction getCancelWorkflow() {
       if (variantCase_ == 6) {
-        return (io.temporal.omes.KitchenSink.CancelWorkflowAction) variant_;
+         return (io.temporal.omes.KitchenSink.CancelWorkflowAction) variant_;
       }
       return io.temporal.omes.KitchenSink.CancelWorkflowAction.getDefaultInstance();
     }
-    /** .temporal.omes.kitchen_sink.CancelWorkflowAction cancel_workflow = 6; */
+    /**
+     * .temporal.omes.kitchen_sink.CancelWorkflowAction cancel_workflow = 6;
+     */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.CancelWorkflowActionOrBuilder getCancelWorkflowOrBuilder() {
       if (variantCase_ == 6) {
-        return (io.temporal.omes.KitchenSink.CancelWorkflowAction) variant_;
+         return (io.temporal.omes.KitchenSink.CancelWorkflowAction) variant_;
       }
       return io.temporal.omes.KitchenSink.CancelWorkflowAction.getDefaultInstance();
     }
@@ -14914,7 +14320,6 @@ public io.temporal.omes.KitchenSink.CancelWorkflowActionOrBuilder getCancelWorkf
     public static final int SET_PATCH_MARKER_FIELD_NUMBER = 7;
     /**
      * .temporal.omes.kitchen_sink.SetPatchMarkerAction set_patch_marker = 7;
-     *
      * @return Whether the setPatchMarker field is set.
      */
     @java.lang.Override
@@ -14923,30 +14328,29 @@ public boolean hasSetPatchMarker() {
     }
     /**
      * .temporal.omes.kitchen_sink.SetPatchMarkerAction set_patch_marker = 7;
-     *
      * @return The setPatchMarker.
      */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.SetPatchMarkerAction getSetPatchMarker() {
       if (variantCase_ == 7) {
-        return (io.temporal.omes.KitchenSink.SetPatchMarkerAction) variant_;
+         return (io.temporal.omes.KitchenSink.SetPatchMarkerAction) variant_;
       }
       return io.temporal.omes.KitchenSink.SetPatchMarkerAction.getDefaultInstance();
     }
-    /** .temporal.omes.kitchen_sink.SetPatchMarkerAction set_patch_marker = 7; */
+    /**
+     * .temporal.omes.kitchen_sink.SetPatchMarkerAction set_patch_marker = 7;
+     */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.SetPatchMarkerActionOrBuilder getSetPatchMarkerOrBuilder() {
       if (variantCase_ == 7) {
-        return (io.temporal.omes.KitchenSink.SetPatchMarkerAction) variant_;
+         return (io.temporal.omes.KitchenSink.SetPatchMarkerAction) variant_;
       }
       return io.temporal.omes.KitchenSink.SetPatchMarkerAction.getDefaultInstance();
     }
 
     public static final int UPSERT_SEARCH_ATTRIBUTES_FIELD_NUMBER = 8;
     /**
-     * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
-     * 
-     *
+     * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
      * @return Whether the upsertSearchAttributes field is set.
      */
     @java.lang.Override
@@ -14954,27 +14358,23 @@ public boolean hasUpsertSearchAttributes() {
       return variantCase_ == 8;
     }
     /**
-     * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
-     * 
-     *
+     * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
      * @return The upsertSearchAttributes.
      */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.UpsertSearchAttributesAction getUpsertSearchAttributes() {
       if (variantCase_ == 8) {
-        return (io.temporal.omes.KitchenSink.UpsertSearchAttributesAction) variant_;
+         return (io.temporal.omes.KitchenSink.UpsertSearchAttributesAction) variant_;
       }
       return io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.getDefaultInstance();
     }
     /**
-     * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
-     * 
+     * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
      */
     @java.lang.Override
-    public io.temporal.omes.KitchenSink.UpsertSearchAttributesActionOrBuilder
-        getUpsertSearchAttributesOrBuilder() {
+    public io.temporal.omes.KitchenSink.UpsertSearchAttributesActionOrBuilder getUpsertSearchAttributesOrBuilder() {
       if (variantCase_ == 8) {
-        return (io.temporal.omes.KitchenSink.UpsertSearchAttributesAction) variant_;
+         return (io.temporal.omes.KitchenSink.UpsertSearchAttributesAction) variant_;
       }
       return io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.getDefaultInstance();
     }
@@ -14982,7 +14382,6 @@ public io.temporal.omes.KitchenSink.UpsertSearchAttributesAction getUpsertSearch
     public static final int UPSERT_MEMO_FIELD_NUMBER = 9;
     /**
      * .temporal.omes.kitchen_sink.UpsertMemoAction upsert_memo = 9;
-     *
      * @return Whether the upsertMemo field is set.
      */
     @java.lang.Override
@@ -14991,21 +14390,22 @@ public boolean hasUpsertMemo() {
     }
     /**
      * .temporal.omes.kitchen_sink.UpsertMemoAction upsert_memo = 9;
-     *
      * @return The upsertMemo.
      */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.UpsertMemoAction getUpsertMemo() {
       if (variantCase_ == 9) {
-        return (io.temporal.omes.KitchenSink.UpsertMemoAction) variant_;
+         return (io.temporal.omes.KitchenSink.UpsertMemoAction) variant_;
       }
       return io.temporal.omes.KitchenSink.UpsertMemoAction.getDefaultInstance();
     }
-    /** .temporal.omes.kitchen_sink.UpsertMemoAction upsert_memo = 9; */
+    /**
+     * .temporal.omes.kitchen_sink.UpsertMemoAction upsert_memo = 9;
+     */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.UpsertMemoActionOrBuilder getUpsertMemoOrBuilder() {
       if (variantCase_ == 9) {
-        return (io.temporal.omes.KitchenSink.UpsertMemoAction) variant_;
+         return (io.temporal.omes.KitchenSink.UpsertMemoAction) variant_;
       }
       return io.temporal.omes.KitchenSink.UpsertMemoAction.getDefaultInstance();
     }
@@ -15013,7 +14413,6 @@ public io.temporal.omes.KitchenSink.UpsertMemoActionOrBuilder getUpsertMemoOrBui
     public static final int SET_WORKFLOW_STATE_FIELD_NUMBER = 10;
     /**
      * .temporal.omes.kitchen_sink.WorkflowState set_workflow_state = 10;
-     *
      * @return Whether the setWorkflowState field is set.
      */
     @java.lang.Override
@@ -15022,21 +14421,22 @@ public boolean hasSetWorkflowState() {
     }
     /**
      * .temporal.omes.kitchen_sink.WorkflowState set_workflow_state = 10;
-     *
      * @return The setWorkflowState.
      */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.WorkflowState getSetWorkflowState() {
       if (variantCase_ == 10) {
-        return (io.temporal.omes.KitchenSink.WorkflowState) variant_;
+         return (io.temporal.omes.KitchenSink.WorkflowState) variant_;
       }
       return io.temporal.omes.KitchenSink.WorkflowState.getDefaultInstance();
     }
-    /** .temporal.omes.kitchen_sink.WorkflowState set_workflow_state = 10; */
+    /**
+     * .temporal.omes.kitchen_sink.WorkflowState set_workflow_state = 10;
+     */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.WorkflowStateOrBuilder getSetWorkflowStateOrBuilder() {
       if (variantCase_ == 10) {
-        return (io.temporal.omes.KitchenSink.WorkflowState) variant_;
+         return (io.temporal.omes.KitchenSink.WorkflowState) variant_;
       }
       return io.temporal.omes.KitchenSink.WorkflowState.getDefaultInstance();
     }
@@ -15044,7 +14444,6 @@ public io.temporal.omes.KitchenSink.WorkflowStateOrBuilder getSetWorkflowStateOr
     public static final int RETURN_RESULT_FIELD_NUMBER = 11;
     /**
      * .temporal.omes.kitchen_sink.ReturnResultAction return_result = 11;
-     *
      * @return Whether the returnResult field is set.
      */
     @java.lang.Override
@@ -15053,21 +14452,22 @@ public boolean hasReturnResult() {
     }
     /**
      * .temporal.omes.kitchen_sink.ReturnResultAction return_result = 11;
-     *
      * @return The returnResult.
      */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.ReturnResultAction getReturnResult() {
       if (variantCase_ == 11) {
-        return (io.temporal.omes.KitchenSink.ReturnResultAction) variant_;
+         return (io.temporal.omes.KitchenSink.ReturnResultAction) variant_;
       }
       return io.temporal.omes.KitchenSink.ReturnResultAction.getDefaultInstance();
     }
-    /** .temporal.omes.kitchen_sink.ReturnResultAction return_result = 11; */
+    /**
+     * .temporal.omes.kitchen_sink.ReturnResultAction return_result = 11;
+     */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.ReturnResultActionOrBuilder getReturnResultOrBuilder() {
       if (variantCase_ == 11) {
-        return (io.temporal.omes.KitchenSink.ReturnResultAction) variant_;
+         return (io.temporal.omes.KitchenSink.ReturnResultAction) variant_;
       }
       return io.temporal.omes.KitchenSink.ReturnResultAction.getDefaultInstance();
     }
@@ -15075,7 +14475,6 @@ public io.temporal.omes.KitchenSink.ReturnResultActionOrBuilder getReturnResultO
     public static final int RETURN_ERROR_FIELD_NUMBER = 12;
     /**
      * .temporal.omes.kitchen_sink.ReturnErrorAction return_error = 12;
-     *
      * @return Whether the returnError field is set.
      */
     @java.lang.Override
@@ -15084,21 +14483,22 @@ public boolean hasReturnError() {
     }
     /**
      * .temporal.omes.kitchen_sink.ReturnErrorAction return_error = 12;
-     *
      * @return The returnError.
      */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.ReturnErrorAction getReturnError() {
       if (variantCase_ == 12) {
-        return (io.temporal.omes.KitchenSink.ReturnErrorAction) variant_;
+         return (io.temporal.omes.KitchenSink.ReturnErrorAction) variant_;
       }
       return io.temporal.omes.KitchenSink.ReturnErrorAction.getDefaultInstance();
     }
-    /** .temporal.omes.kitchen_sink.ReturnErrorAction return_error = 12; */
+    /**
+     * .temporal.omes.kitchen_sink.ReturnErrorAction return_error = 12;
+     */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.ReturnErrorActionOrBuilder getReturnErrorOrBuilder() {
       if (variantCase_ == 12) {
-        return (io.temporal.omes.KitchenSink.ReturnErrorAction) variant_;
+         return (io.temporal.omes.KitchenSink.ReturnErrorAction) variant_;
       }
       return io.temporal.omes.KitchenSink.ReturnErrorAction.getDefaultInstance();
     }
@@ -15106,7 +14506,6 @@ public io.temporal.omes.KitchenSink.ReturnErrorActionOrBuilder getReturnErrorOrB
     public static final int CONTINUE_AS_NEW_FIELD_NUMBER = 13;
     /**
      * .temporal.omes.kitchen_sink.ContinueAsNewAction continue_as_new = 13;
-     *
      * @return Whether the continueAsNew field is set.
      */
     @java.lang.Override
@@ -15115,21 +14514,22 @@ public boolean hasContinueAsNew() {
     }
     /**
      * .temporal.omes.kitchen_sink.ContinueAsNewAction continue_as_new = 13;
-     *
      * @return The continueAsNew.
      */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.ContinueAsNewAction getContinueAsNew() {
       if (variantCase_ == 13) {
-        return (io.temporal.omes.KitchenSink.ContinueAsNewAction) variant_;
+         return (io.temporal.omes.KitchenSink.ContinueAsNewAction) variant_;
       }
       return io.temporal.omes.KitchenSink.ContinueAsNewAction.getDefaultInstance();
     }
-    /** .temporal.omes.kitchen_sink.ContinueAsNewAction continue_as_new = 13; */
+    /**
+     * .temporal.omes.kitchen_sink.ContinueAsNewAction continue_as_new = 13;
+     */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.ContinueAsNewActionOrBuilder getContinueAsNewOrBuilder() {
       if (variantCase_ == 13) {
-        return (io.temporal.omes.KitchenSink.ContinueAsNewAction) variant_;
+         return (io.temporal.omes.KitchenSink.ContinueAsNewAction) variant_;
       }
       return io.temporal.omes.KitchenSink.ContinueAsNewAction.getDefaultInstance();
     }
@@ -15137,7 +14537,6 @@ public io.temporal.omes.KitchenSink.ContinueAsNewActionOrBuilder getContinueAsNe
     public static final int NESTED_ACTION_SET_FIELD_NUMBER = 14;
     /**
      * .temporal.omes.kitchen_sink.ActionSet nested_action_set = 14;
-     *
      * @return Whether the nestedActionSet field is set.
      */
     @java.lang.Override
@@ -15146,27 +14545,27 @@ public boolean hasNestedActionSet() {
     }
     /**
      * .temporal.omes.kitchen_sink.ActionSet nested_action_set = 14;
-     *
      * @return The nestedActionSet.
      */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.ActionSet getNestedActionSet() {
       if (variantCase_ == 14) {
-        return (io.temporal.omes.KitchenSink.ActionSet) variant_;
+         return (io.temporal.omes.KitchenSink.ActionSet) variant_;
       }
       return io.temporal.omes.KitchenSink.ActionSet.getDefaultInstance();
     }
-    /** .temporal.omes.kitchen_sink.ActionSet nested_action_set = 14; */
+    /**
+     * .temporal.omes.kitchen_sink.ActionSet nested_action_set = 14;
+     */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.ActionSetOrBuilder getNestedActionSetOrBuilder() {
       if (variantCase_ == 14) {
-        return (io.temporal.omes.KitchenSink.ActionSet) variant_;
+         return (io.temporal.omes.KitchenSink.ActionSet) variant_;
       }
       return io.temporal.omes.KitchenSink.ActionSet.getDefaultInstance();
     }
 
     private byte memoizedIsInitialized = -1;
-
     @java.lang.Override
     public final boolean isInitialized() {
       byte isInitialized = memoizedIsInitialized;
@@ -15178,7 +14577,8 @@ public final boolean isInitialized() {
     }
 
     @java.lang.Override
-    public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
+    public void writeTo(com.google.protobuf.CodedOutputStream output)
+                        throws java.io.IOException {
       if (variantCase_ == 1) {
         output.writeMessage(1, (io.temporal.omes.KitchenSink.TimerAction) variant_);
       }
@@ -15201,8 +14601,7 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io
         output.writeMessage(7, (io.temporal.omes.KitchenSink.SetPatchMarkerAction) variant_);
       }
       if (variantCase_ == 8) {
-        output.writeMessage(
-            8, (io.temporal.omes.KitchenSink.UpsertSearchAttributesAction) variant_);
+        output.writeMessage(8, (io.temporal.omes.KitchenSink.UpsertSearchAttributesAction) variant_);
       }
       if (variantCase_ == 9) {
         output.writeMessage(9, (io.temporal.omes.KitchenSink.UpsertMemoAction) variant_);
@@ -15232,74 +14631,60 @@ public int getSerializedSize() {
 
       size = 0;
       if (variantCase_ == 1) {
-        size +=
-            com.google.protobuf.CodedOutputStream.computeMessageSize(
-                1, (io.temporal.omes.KitchenSink.TimerAction) variant_);
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(1, (io.temporal.omes.KitchenSink.TimerAction) variant_);
       }
       if (variantCase_ == 2) {
-        size +=
-            com.google.protobuf.CodedOutputStream.computeMessageSize(
-                2, (io.temporal.omes.KitchenSink.ExecuteActivityAction) variant_);
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(2, (io.temporal.omes.KitchenSink.ExecuteActivityAction) variant_);
       }
       if (variantCase_ == 3) {
-        size +=
-            com.google.protobuf.CodedOutputStream.computeMessageSize(
-                3, (io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction) variant_);
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(3, (io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction) variant_);
       }
       if (variantCase_ == 4) {
-        size +=
-            com.google.protobuf.CodedOutputStream.computeMessageSize(
-                4, (io.temporal.omes.KitchenSink.AwaitWorkflowState) variant_);
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(4, (io.temporal.omes.KitchenSink.AwaitWorkflowState) variant_);
       }
       if (variantCase_ == 5) {
-        size +=
-            com.google.protobuf.CodedOutputStream.computeMessageSize(
-                5, (io.temporal.omes.KitchenSink.SendSignalAction) variant_);
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(5, (io.temporal.omes.KitchenSink.SendSignalAction) variant_);
       }
       if (variantCase_ == 6) {
-        size +=
-            com.google.protobuf.CodedOutputStream.computeMessageSize(
-                6, (io.temporal.omes.KitchenSink.CancelWorkflowAction) variant_);
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(6, (io.temporal.omes.KitchenSink.CancelWorkflowAction) variant_);
       }
       if (variantCase_ == 7) {
-        size +=
-            com.google.protobuf.CodedOutputStream.computeMessageSize(
-                7, (io.temporal.omes.KitchenSink.SetPatchMarkerAction) variant_);
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(7, (io.temporal.omes.KitchenSink.SetPatchMarkerAction) variant_);
       }
       if (variantCase_ == 8) {
-        size +=
-            com.google.protobuf.CodedOutputStream.computeMessageSize(
-                8, (io.temporal.omes.KitchenSink.UpsertSearchAttributesAction) variant_);
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(8, (io.temporal.omes.KitchenSink.UpsertSearchAttributesAction) variant_);
       }
       if (variantCase_ == 9) {
-        size +=
-            com.google.protobuf.CodedOutputStream.computeMessageSize(
-                9, (io.temporal.omes.KitchenSink.UpsertMemoAction) variant_);
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(9, (io.temporal.omes.KitchenSink.UpsertMemoAction) variant_);
       }
       if (variantCase_ == 10) {
-        size +=
-            com.google.protobuf.CodedOutputStream.computeMessageSize(
-                10, (io.temporal.omes.KitchenSink.WorkflowState) variant_);
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(10, (io.temporal.omes.KitchenSink.WorkflowState) variant_);
       }
       if (variantCase_ == 11) {
-        size +=
-            com.google.protobuf.CodedOutputStream.computeMessageSize(
-                11, (io.temporal.omes.KitchenSink.ReturnResultAction) variant_);
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(11, (io.temporal.omes.KitchenSink.ReturnResultAction) variant_);
       }
       if (variantCase_ == 12) {
-        size +=
-            com.google.protobuf.CodedOutputStream.computeMessageSize(
-                12, (io.temporal.omes.KitchenSink.ReturnErrorAction) variant_);
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(12, (io.temporal.omes.KitchenSink.ReturnErrorAction) variant_);
       }
       if (variantCase_ == 13) {
-        size +=
-            com.google.protobuf.CodedOutputStream.computeMessageSize(
-                13, (io.temporal.omes.KitchenSink.ContinueAsNewAction) variant_);
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(13, (io.temporal.omes.KitchenSink.ContinueAsNewAction) variant_);
       }
       if (variantCase_ == 14) {
-        size +=
-            com.google.protobuf.CodedOutputStream.computeMessageSize(
-                14, (io.temporal.omes.KitchenSink.ActionSet) variant_);
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(14, (io.temporal.omes.KitchenSink.ActionSet) variant_);
       }
       size += getUnknownFields().getSerializedSize();
       memoizedSize = size;
@@ -15309,7 +14694,7 @@ public int getSerializedSize() {
     @java.lang.Override
     public boolean equals(final java.lang.Object obj) {
       if (obj == this) {
-        return true;
+       return true;
       }
       if (!(obj instanceof io.temporal.omes.KitchenSink.Action)) {
         return super.equals(obj);
@@ -15319,46 +14704,60 @@ public boolean equals(final java.lang.Object obj) {
       if (!getVariantCase().equals(other.getVariantCase())) return false;
       switch (variantCase_) {
         case 1:
-          if (!getTimer().equals(other.getTimer())) return false;
+          if (!getTimer()
+              .equals(other.getTimer())) return false;
           break;
         case 2:
-          if (!getExecActivity().equals(other.getExecActivity())) return false;
+          if (!getExecActivity()
+              .equals(other.getExecActivity())) return false;
           break;
         case 3:
-          if (!getExecChildWorkflow().equals(other.getExecChildWorkflow())) return false;
+          if (!getExecChildWorkflow()
+              .equals(other.getExecChildWorkflow())) return false;
           break;
         case 4:
-          if (!getAwaitWorkflowState().equals(other.getAwaitWorkflowState())) return false;
+          if (!getAwaitWorkflowState()
+              .equals(other.getAwaitWorkflowState())) return false;
           break;
         case 5:
-          if (!getSendSignal().equals(other.getSendSignal())) return false;
+          if (!getSendSignal()
+              .equals(other.getSendSignal())) return false;
           break;
         case 6:
-          if (!getCancelWorkflow().equals(other.getCancelWorkflow())) return false;
+          if (!getCancelWorkflow()
+              .equals(other.getCancelWorkflow())) return false;
           break;
         case 7:
-          if (!getSetPatchMarker().equals(other.getSetPatchMarker())) return false;
+          if (!getSetPatchMarker()
+              .equals(other.getSetPatchMarker())) return false;
           break;
         case 8:
-          if (!getUpsertSearchAttributes().equals(other.getUpsertSearchAttributes())) return false;
+          if (!getUpsertSearchAttributes()
+              .equals(other.getUpsertSearchAttributes())) return false;
           break;
         case 9:
-          if (!getUpsertMemo().equals(other.getUpsertMemo())) return false;
+          if (!getUpsertMemo()
+              .equals(other.getUpsertMemo())) return false;
           break;
         case 10:
-          if (!getSetWorkflowState().equals(other.getSetWorkflowState())) return false;
+          if (!getSetWorkflowState()
+              .equals(other.getSetWorkflowState())) return false;
           break;
         case 11:
-          if (!getReturnResult().equals(other.getReturnResult())) return false;
+          if (!getReturnResult()
+              .equals(other.getReturnResult())) return false;
           break;
         case 12:
-          if (!getReturnError().equals(other.getReturnError())) return false;
+          if (!getReturnError()
+              .equals(other.getReturnError())) return false;
           break;
         case 13:
-          if (!getContinueAsNew().equals(other.getContinueAsNew())) return false;
+          if (!getContinueAsNew()
+              .equals(other.getContinueAsNew())) return false;
           break;
         case 14:
-          if (!getNestedActionSet().equals(other.getNestedActionSet())) return false;
+          if (!getNestedActionSet()
+              .equals(other.getNestedActionSet())) return false;
           break;
         case 0:
         default:
@@ -15439,93 +14838,90 @@ public int hashCode() {
       return hash;
     }
 
-    public static io.temporal.omes.KitchenSink.Action parseFrom(java.nio.ByteBuffer data)
+    public static io.temporal.omes.KitchenSink.Action parseFrom(
+        java.nio.ByteBuffer data)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data);
     }
-
     public static io.temporal.omes.KitchenSink.Action parseFrom(
-        java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        java.nio.ByteBuffer data,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data, extensionRegistry);
     }
-
-    public static io.temporal.omes.KitchenSink.Action parseFrom(com.google.protobuf.ByteString data)
+    public static io.temporal.omes.KitchenSink.Action parseFrom(
+        com.google.protobuf.ByteString data)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data);
     }
-
     public static io.temporal.omes.KitchenSink.Action parseFrom(
         com.google.protobuf.ByteString data,
         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.Action parseFrom(byte[] data)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data);
     }
-
     public static io.temporal.omes.KitchenSink.Action parseFrom(
-        byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        byte[] data,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.Action parseFrom(java.io.InputStream input)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input);
     }
-
     public static io.temporal.omes.KitchenSink.Action parseFrom(
-        java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        java.io.InputStream input,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
-          PARSER, input, extensionRegistry);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input, extensionRegistry);
     }
 
     public static io.temporal.omes.KitchenSink.Action parseDelimitedFrom(java.io.InputStream input)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseDelimitedWithIOException(PARSER, input);
     }
 
     public static io.temporal.omes.KitchenSink.Action parseDelimitedFrom(
-        java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        java.io.InputStream input,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
-          PARSER, input, extensionRegistry);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseDelimitedWithIOException(PARSER, input, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.Action parseFrom(
-        com.google.protobuf.CodedInputStream input) throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
+        com.google.protobuf.CodedInputStream input)
+        throws java.io.IOException {
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input);
     }
-
     public static io.temporal.omes.KitchenSink.Action parseFrom(
         com.google.protobuf.CodedInputStream input,
         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
-          PARSER, input, extensionRegistry);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input, extensionRegistry);
     }
 
     @java.lang.Override
-    public Builder newBuilderForType() {
-      return newBuilder();
-    }
-
+    public Builder newBuilderForType() { return newBuilder(); }
     public static Builder newBuilder() {
       return DEFAULT_INSTANCE.toBuilder();
     }
-
     public static Builder newBuilder(io.temporal.omes.KitchenSink.Action prototype) {
       return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
     }
-
     @java.lang.Override
     public Builder toBuilder() {
-      return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
+      return this == DEFAULT_INSTANCE
+          ? new Builder() : new Builder().mergeFrom(this);
     }
 
     @java.lang.Override
@@ -15534,34 +14930,36 @@ protected Builder newBuilderForType(
       Builder builder = new Builder(parent);
       return builder;
     }
-    /** Protobuf type {@code temporal.omes.kitchen_sink.Action} */
-    public static final class Builder
-        extends com.google.protobuf.GeneratedMessageV3.Builder
-        implements
+    /**
+     * Protobuf type {@code temporal.omes.kitchen_sink.Action}
+     */
+    public static final class Builder extends
+        com.google.protobuf.GeneratedMessageV3.Builder implements
         // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.Action)
         io.temporal.omes.KitchenSink.ActionOrBuilder {
-      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_Action_descriptor;
+      public static final com.google.protobuf.Descriptors.Descriptor
+          getDescriptor() {
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_Action_descriptor;
       }
 
       @java.lang.Override
       protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
           internalGetFieldAccessorTable() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_Action_fieldAccessorTable
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_Action_fieldAccessorTable
             .ensureFieldAccessorsInitialized(
-                io.temporal.omes.KitchenSink.Action.class,
-                io.temporal.omes.KitchenSink.Action.Builder.class);
+                io.temporal.omes.KitchenSink.Action.class, io.temporal.omes.KitchenSink.Action.Builder.class);
       }
 
       // Construct using io.temporal.omes.KitchenSink.Action.newBuilder()
-      private Builder() {}
+      private Builder() {
 
-      private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
-        super(parent);
       }
 
+      private Builder(
+          com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
+        super(parent);
+
+      }
       @java.lang.Override
       public Builder clear() {
         super.clear();
@@ -15614,9 +15012,9 @@ public Builder clear() {
       }
 
       @java.lang.Override
-      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_Action_descriptor;
+      public com.google.protobuf.Descriptors.Descriptor
+          getDescriptorForType() {
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_Action_descriptor;
       }
 
       @java.lang.Override
@@ -15636,9 +15034,7 @@ public io.temporal.omes.KitchenSink.Action build() {
       @java.lang.Override
       public io.temporal.omes.KitchenSink.Action buildPartial() {
         io.temporal.omes.KitchenSink.Action result = new io.temporal.omes.KitchenSink.Action(this);
-        if (bitField0_ != 0) {
-          buildPartial0(result);
-        }
+        if (bitField0_ != 0) { buildPartial0(result); }
         buildPartialOneofs(result);
         onBuilt();
         return result;
@@ -15651,46 +15047,60 @@ private void buildPartial0(io.temporal.omes.KitchenSink.Action result) {
       private void buildPartialOneofs(io.temporal.omes.KitchenSink.Action result) {
         result.variantCase_ = variantCase_;
         result.variant_ = this.variant_;
-        if (variantCase_ == 1 && timerBuilder_ != null) {
+        if (variantCase_ == 1 &&
+            timerBuilder_ != null) {
           result.variant_ = timerBuilder_.build();
         }
-        if (variantCase_ == 2 && execActivityBuilder_ != null) {
+        if (variantCase_ == 2 &&
+            execActivityBuilder_ != null) {
           result.variant_ = execActivityBuilder_.build();
         }
-        if (variantCase_ == 3 && execChildWorkflowBuilder_ != null) {
+        if (variantCase_ == 3 &&
+            execChildWorkflowBuilder_ != null) {
           result.variant_ = execChildWorkflowBuilder_.build();
         }
-        if (variantCase_ == 4 && awaitWorkflowStateBuilder_ != null) {
+        if (variantCase_ == 4 &&
+            awaitWorkflowStateBuilder_ != null) {
           result.variant_ = awaitWorkflowStateBuilder_.build();
         }
-        if (variantCase_ == 5 && sendSignalBuilder_ != null) {
+        if (variantCase_ == 5 &&
+            sendSignalBuilder_ != null) {
           result.variant_ = sendSignalBuilder_.build();
         }
-        if (variantCase_ == 6 && cancelWorkflowBuilder_ != null) {
+        if (variantCase_ == 6 &&
+            cancelWorkflowBuilder_ != null) {
           result.variant_ = cancelWorkflowBuilder_.build();
         }
-        if (variantCase_ == 7 && setPatchMarkerBuilder_ != null) {
+        if (variantCase_ == 7 &&
+            setPatchMarkerBuilder_ != null) {
           result.variant_ = setPatchMarkerBuilder_.build();
         }
-        if (variantCase_ == 8 && upsertSearchAttributesBuilder_ != null) {
+        if (variantCase_ == 8 &&
+            upsertSearchAttributesBuilder_ != null) {
           result.variant_ = upsertSearchAttributesBuilder_.build();
         }
-        if (variantCase_ == 9 && upsertMemoBuilder_ != null) {
+        if (variantCase_ == 9 &&
+            upsertMemoBuilder_ != null) {
           result.variant_ = upsertMemoBuilder_.build();
         }
-        if (variantCase_ == 10 && setWorkflowStateBuilder_ != null) {
+        if (variantCase_ == 10 &&
+            setWorkflowStateBuilder_ != null) {
           result.variant_ = setWorkflowStateBuilder_.build();
         }
-        if (variantCase_ == 11 && returnResultBuilder_ != null) {
+        if (variantCase_ == 11 &&
+            returnResultBuilder_ != null) {
           result.variant_ = returnResultBuilder_.build();
         }
-        if (variantCase_ == 12 && returnErrorBuilder_ != null) {
+        if (variantCase_ == 12 &&
+            returnErrorBuilder_ != null) {
           result.variant_ = returnErrorBuilder_.build();
         }
-        if (variantCase_ == 13 && continueAsNewBuilder_ != null) {
+        if (variantCase_ == 13 &&
+            continueAsNewBuilder_ != null) {
           result.variant_ = continueAsNewBuilder_.build();
         }
-        if (variantCase_ == 14 && nestedActionSetBuilder_ != null) {
+        if (variantCase_ == 14 &&
+            nestedActionSetBuilder_ != null) {
           result.variant_ = nestedActionSetBuilder_.build();
         }
       }
@@ -15699,41 +15109,38 @@ private void buildPartialOneofs(io.temporal.omes.KitchenSink.Action result) {
       public Builder clone() {
         return super.clone();
       }
-
       @java.lang.Override
       public Builder setField(
-          com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
+          com.google.protobuf.Descriptors.FieldDescriptor field,
+          java.lang.Object value) {
         return super.setField(field, value);
       }
-
       @java.lang.Override
-      public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
+      public Builder clearField(
+          com.google.protobuf.Descriptors.FieldDescriptor field) {
         return super.clearField(field);
       }
-
       @java.lang.Override
-      public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
+      public Builder clearOneof(
+          com.google.protobuf.Descriptors.OneofDescriptor oneof) {
         return super.clearOneof(oneof);
       }
-
       @java.lang.Override
       public Builder setRepeatedField(
           com.google.protobuf.Descriptors.FieldDescriptor field,
-          int index,
-          java.lang.Object value) {
+          int index, java.lang.Object value) {
         return super.setRepeatedField(field, index, value);
       }
-
       @java.lang.Override
       public Builder addRepeatedField(
-          com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
+          com.google.protobuf.Descriptors.FieldDescriptor field,
+          java.lang.Object value) {
         return super.addRepeatedField(field, value);
       }
-
       @java.lang.Override
       public Builder mergeFrom(com.google.protobuf.Message other) {
         if (other instanceof io.temporal.omes.KitchenSink.Action) {
-          return mergeFrom((io.temporal.omes.KitchenSink.Action) other);
+          return mergeFrom((io.temporal.omes.KitchenSink.Action)other);
         } else {
           super.mergeFrom(other);
           return this;
@@ -15743,80 +15150,65 @@ public Builder mergeFrom(com.google.protobuf.Message other) {
       public Builder mergeFrom(io.temporal.omes.KitchenSink.Action other) {
         if (other == io.temporal.omes.KitchenSink.Action.getDefaultInstance()) return this;
         switch (other.getVariantCase()) {
-          case TIMER:
-            {
-              mergeTimer(other.getTimer());
-              break;
-            }
-          case EXEC_ACTIVITY:
-            {
-              mergeExecActivity(other.getExecActivity());
-              break;
-            }
-          case EXEC_CHILD_WORKFLOW:
-            {
-              mergeExecChildWorkflow(other.getExecChildWorkflow());
-              break;
-            }
-          case AWAIT_WORKFLOW_STATE:
-            {
-              mergeAwaitWorkflowState(other.getAwaitWorkflowState());
-              break;
-            }
-          case SEND_SIGNAL:
-            {
-              mergeSendSignal(other.getSendSignal());
-              break;
-            }
-          case CANCEL_WORKFLOW:
-            {
-              mergeCancelWorkflow(other.getCancelWorkflow());
-              break;
-            }
-          case SET_PATCH_MARKER:
-            {
-              mergeSetPatchMarker(other.getSetPatchMarker());
-              break;
-            }
-          case UPSERT_SEARCH_ATTRIBUTES:
-            {
-              mergeUpsertSearchAttributes(other.getUpsertSearchAttributes());
-              break;
-            }
-          case UPSERT_MEMO:
-            {
-              mergeUpsertMemo(other.getUpsertMemo());
-              break;
-            }
-          case SET_WORKFLOW_STATE:
-            {
-              mergeSetWorkflowState(other.getSetWorkflowState());
-              break;
-            }
-          case RETURN_RESULT:
-            {
-              mergeReturnResult(other.getReturnResult());
-              break;
-            }
-          case RETURN_ERROR:
-            {
-              mergeReturnError(other.getReturnError());
-              break;
-            }
-          case CONTINUE_AS_NEW:
-            {
-              mergeContinueAsNew(other.getContinueAsNew());
-              break;
-            }
-          case NESTED_ACTION_SET:
-            {
-              mergeNestedActionSet(other.getNestedActionSet());
-              break;
-            }
-          case VARIANT_NOT_SET:
-            {
-              break;
-            }
+          case TIMER: {
+            mergeTimer(other.getTimer());
+            break;
+          }
+          case EXEC_ACTIVITY: {
+            mergeExecActivity(other.getExecActivity());
+            break;
+          }
+          case EXEC_CHILD_WORKFLOW: {
+            mergeExecChildWorkflow(other.getExecChildWorkflow());
+            break;
+          }
+          case AWAIT_WORKFLOW_STATE: {
+            mergeAwaitWorkflowState(other.getAwaitWorkflowState());
+            break;
+          }
+          case SEND_SIGNAL: {
+            mergeSendSignal(other.getSendSignal());
+            break;
+          }
+          case CANCEL_WORKFLOW: {
+            mergeCancelWorkflow(other.getCancelWorkflow());
+            break;
+          }
+          case SET_PATCH_MARKER: {
+            mergeSetPatchMarker(other.getSetPatchMarker());
+            break;
+          }
+          case UPSERT_SEARCH_ATTRIBUTES: {
+            mergeUpsertSearchAttributes(other.getUpsertSearchAttributes());
+            break;
+          }
+          case UPSERT_MEMO: {
+            mergeUpsertMemo(other.getUpsertMemo());
+            break;
+          }
+          case SET_WORKFLOW_STATE: {
+            mergeSetWorkflowState(other.getSetWorkflowState());
+            break;
+          }
+          case RETURN_RESULT: {
+            mergeReturnResult(other.getReturnResult());
+            break;
+          }
+          case RETURN_ERROR: {
+            mergeReturnError(other.getReturnError());
+            break;
+          }
+          case CONTINUE_AS_NEW: {
+            mergeContinueAsNew(other.getContinueAsNew());
+            break;
+          }
+          case NESTED_ACTION_SET: {
+            mergeNestedActionSet(other.getNestedActionSet());
+            break;
+          }
+          case VARIANT_NOT_SET: {
+            break;
+          }
         }
         this.mergeUnknownFields(other.getUnknownFields());
         onChanged();
@@ -15844,104 +15236,110 @@ public Builder mergeFrom(
               case 0:
                 done = true;
                 break;
-              case 10:
-                {
-                  input.readMessage(getTimerFieldBuilder().getBuilder(), extensionRegistry);
-                  variantCase_ = 1;
-                  break;
-                } // case 10
-              case 18:
-                {
-                  input.readMessage(getExecActivityFieldBuilder().getBuilder(), extensionRegistry);
-                  variantCase_ = 2;
-                  break;
-                } // case 18
-              case 26:
-                {
-                  input.readMessage(
-                      getExecChildWorkflowFieldBuilder().getBuilder(), extensionRegistry);
-                  variantCase_ = 3;
-                  break;
-                } // case 26
-              case 34:
-                {
-                  input.readMessage(
-                      getAwaitWorkflowStateFieldBuilder().getBuilder(), extensionRegistry);
-                  variantCase_ = 4;
-                  break;
-                } // case 34
-              case 42:
-                {
-                  input.readMessage(getSendSignalFieldBuilder().getBuilder(), extensionRegistry);
-                  variantCase_ = 5;
-                  break;
-                } // case 42
-              case 50:
-                {
-                  input.readMessage(
-                      getCancelWorkflowFieldBuilder().getBuilder(), extensionRegistry);
-                  variantCase_ = 6;
-                  break;
-                } // case 50
-              case 58:
-                {
-                  input.readMessage(
-                      getSetPatchMarkerFieldBuilder().getBuilder(), extensionRegistry);
-                  variantCase_ = 7;
-                  break;
-                } // case 58
-              case 66:
-                {
-                  input.readMessage(
-                      getUpsertSearchAttributesFieldBuilder().getBuilder(), extensionRegistry);
-                  variantCase_ = 8;
-                  break;
-                } // case 66
-              case 74:
-                {
-                  input.readMessage(getUpsertMemoFieldBuilder().getBuilder(), extensionRegistry);
-                  variantCase_ = 9;
-                  break;
-                } // case 74
-              case 82:
-                {
-                  input.readMessage(
-                      getSetWorkflowStateFieldBuilder().getBuilder(), extensionRegistry);
-                  variantCase_ = 10;
-                  break;
-                } // case 82
-              case 90:
-                {
-                  input.readMessage(getReturnResultFieldBuilder().getBuilder(), extensionRegistry);
-                  variantCase_ = 11;
-                  break;
-                } // case 90
-              case 98:
-                {
-                  input.readMessage(getReturnErrorFieldBuilder().getBuilder(), extensionRegistry);
-                  variantCase_ = 12;
-                  break;
-                } // case 98
-              case 106:
-                {
-                  input.readMessage(getContinueAsNewFieldBuilder().getBuilder(), extensionRegistry);
-                  variantCase_ = 13;
-                  break;
-                } // case 106
-              case 114:
-                {
-                  input.readMessage(
-                      getNestedActionSetFieldBuilder().getBuilder(), extensionRegistry);
-                  variantCase_ = 14;
-                  break;
-                } // case 114
-              default:
-                {
-                  if (!super.parseUnknownField(input, extensionRegistry, tag)) {
-                    done = true; // was an endgroup tag
-                  }
-                  break;
-                } // default:
+              case 10: {
+                input.readMessage(
+                    getTimerFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                variantCase_ = 1;
+                break;
+              } // case 10
+              case 18: {
+                input.readMessage(
+                    getExecActivityFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                variantCase_ = 2;
+                break;
+              } // case 18
+              case 26: {
+                input.readMessage(
+                    getExecChildWorkflowFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                variantCase_ = 3;
+                break;
+              } // case 26
+              case 34: {
+                input.readMessage(
+                    getAwaitWorkflowStateFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                variantCase_ = 4;
+                break;
+              } // case 34
+              case 42: {
+                input.readMessage(
+                    getSendSignalFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                variantCase_ = 5;
+                break;
+              } // case 42
+              case 50: {
+                input.readMessage(
+                    getCancelWorkflowFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                variantCase_ = 6;
+                break;
+              } // case 50
+              case 58: {
+                input.readMessage(
+                    getSetPatchMarkerFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                variantCase_ = 7;
+                break;
+              } // case 58
+              case 66: {
+                input.readMessage(
+                    getUpsertSearchAttributesFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                variantCase_ = 8;
+                break;
+              } // case 66
+              case 74: {
+                input.readMessage(
+                    getUpsertMemoFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                variantCase_ = 9;
+                break;
+              } // case 74
+              case 82: {
+                input.readMessage(
+                    getSetWorkflowStateFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                variantCase_ = 10;
+                break;
+              } // case 82
+              case 90: {
+                input.readMessage(
+                    getReturnResultFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                variantCase_ = 11;
+                break;
+              } // case 90
+              case 98: {
+                input.readMessage(
+                    getReturnErrorFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                variantCase_ = 12;
+                break;
+              } // case 98
+              case 106: {
+                input.readMessage(
+                    getContinueAsNewFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                variantCase_ = 13;
+                break;
+              } // case 106
+              case 114: {
+                input.readMessage(
+                    getNestedActionSetFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                variantCase_ = 14;
+                break;
+              } // case 114
+              default: {
+                if (!super.parseUnknownField(input, extensionRegistry, tag)) {
+                  done = true; // was an endgroup tag
+                }
+                break;
+              } // default:
             } // switch (tag)
           } // while (!done)
         } catch (com.google.protobuf.InvalidProtocolBufferException e) {
@@ -15951,12 +15349,12 @@ public Builder mergeFrom(
         } // finally
         return this;
       }
-
       private int variantCase_ = 0;
       private java.lang.Object variant_;
-
-      public VariantCase getVariantCase() {
-        return VariantCase.forNumber(variantCase_);
+      public VariantCase
+          getVariantCase() {
+        return VariantCase.forNumber(
+            variantCase_);
       }
 
       public Builder clearVariant() {
@@ -15969,13 +15367,9 @@ public Builder clearVariant() {
       private int bitField0_;
 
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.TimerAction,
-              io.temporal.omes.KitchenSink.TimerAction.Builder,
-              io.temporal.omes.KitchenSink.TimerActionOrBuilder>
-          timerBuilder_;
+          io.temporal.omes.KitchenSink.TimerAction, io.temporal.omes.KitchenSink.TimerAction.Builder, io.temporal.omes.KitchenSink.TimerActionOrBuilder> timerBuilder_;
       /**
        * .temporal.omes.kitchen_sink.TimerAction timer = 1;
-       *
        * @return Whether the timer field is set.
        */
       @java.lang.Override
@@ -15984,7 +15378,6 @@ public boolean hasTimer() {
       }
       /**
        * .temporal.omes.kitchen_sink.TimerAction timer = 1;
-       *
        * @return The timer.
        */
       @java.lang.Override
@@ -16001,7 +15394,9 @@ public io.temporal.omes.KitchenSink.TimerAction getTimer() {
           return io.temporal.omes.KitchenSink.TimerAction.getDefaultInstance();
         }
       }
-      /** .temporal.omes.kitchen_sink.TimerAction timer = 1; */
+      /**
+       * .temporal.omes.kitchen_sink.TimerAction timer = 1;
+       */
       public Builder setTimer(io.temporal.omes.KitchenSink.TimerAction value) {
         if (timerBuilder_ == null) {
           if (value == null) {
@@ -16015,8 +15410,11 @@ public Builder setTimer(io.temporal.omes.KitchenSink.TimerAction value) {
         variantCase_ = 1;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.TimerAction timer = 1; */
-      public Builder setTimer(io.temporal.omes.KitchenSink.TimerAction.Builder builderForValue) {
+      /**
+       * .temporal.omes.kitchen_sink.TimerAction timer = 1;
+       */
+      public Builder setTimer(
+          io.temporal.omes.KitchenSink.TimerAction.Builder builderForValue) {
         if (timerBuilder_ == null) {
           variant_ = builderForValue.build();
           onChanged();
@@ -16026,16 +15424,15 @@ public Builder setTimer(io.temporal.omes.KitchenSink.TimerAction.Builder builder
         variantCase_ = 1;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.TimerAction timer = 1; */
+      /**
+       * .temporal.omes.kitchen_sink.TimerAction timer = 1;
+       */
       public Builder mergeTimer(io.temporal.omes.KitchenSink.TimerAction value) {
         if (timerBuilder_ == null) {
-          if (variantCase_ == 1
-              && variant_ != io.temporal.omes.KitchenSink.TimerAction.getDefaultInstance()) {
-            variant_ =
-                io.temporal.omes.KitchenSink.TimerAction.newBuilder(
-                        (io.temporal.omes.KitchenSink.TimerAction) variant_)
-                    .mergeFrom(value)
-                    .buildPartial();
+          if (variantCase_ == 1 &&
+              variant_ != io.temporal.omes.KitchenSink.TimerAction.getDefaultInstance()) {
+            variant_ = io.temporal.omes.KitchenSink.TimerAction.newBuilder((io.temporal.omes.KitchenSink.TimerAction) variant_)
+                .mergeFrom(value).buildPartial();
           } else {
             variant_ = value;
           }
@@ -16050,7 +15447,9 @@ public Builder mergeTimer(io.temporal.omes.KitchenSink.TimerAction value) {
         variantCase_ = 1;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.TimerAction timer = 1; */
+      /**
+       * .temporal.omes.kitchen_sink.TimerAction timer = 1;
+       */
       public Builder clearTimer() {
         if (timerBuilder_ == null) {
           if (variantCase_ == 1) {
@@ -16067,11 +15466,15 @@ public Builder clearTimer() {
         }
         return this;
       }
-      /** .temporal.omes.kitchen_sink.TimerAction timer = 1; */
+      /**
+       * .temporal.omes.kitchen_sink.TimerAction timer = 1;
+       */
       public io.temporal.omes.KitchenSink.TimerAction.Builder getTimerBuilder() {
         return getTimerFieldBuilder().getBuilder();
       }
-      /** .temporal.omes.kitchen_sink.TimerAction timer = 1; */
+      /**
+       * .temporal.omes.kitchen_sink.TimerAction timer = 1;
+       */
       @java.lang.Override
       public io.temporal.omes.KitchenSink.TimerActionOrBuilder getTimerOrBuilder() {
         if ((variantCase_ == 1) && (timerBuilder_ != null)) {
@@ -16083,21 +15486,18 @@ public io.temporal.omes.KitchenSink.TimerActionOrBuilder getTimerOrBuilder() {
           return io.temporal.omes.KitchenSink.TimerAction.getDefaultInstance();
         }
       }
-      /** .temporal.omes.kitchen_sink.TimerAction timer = 1; */
+      /**
+       * .temporal.omes.kitchen_sink.TimerAction timer = 1;
+       */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.TimerAction,
-              io.temporal.omes.KitchenSink.TimerAction.Builder,
-              io.temporal.omes.KitchenSink.TimerActionOrBuilder>
+          io.temporal.omes.KitchenSink.TimerAction, io.temporal.omes.KitchenSink.TimerAction.Builder, io.temporal.omes.KitchenSink.TimerActionOrBuilder> 
           getTimerFieldBuilder() {
         if (timerBuilder_ == null) {
           if (!(variantCase_ == 1)) {
             variant_ = io.temporal.omes.KitchenSink.TimerAction.getDefaultInstance();
           }
-          timerBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.omes.KitchenSink.TimerAction,
-                  io.temporal.omes.KitchenSink.TimerAction.Builder,
-                  io.temporal.omes.KitchenSink.TimerActionOrBuilder>(
+          timerBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.omes.KitchenSink.TimerAction, io.temporal.omes.KitchenSink.TimerAction.Builder, io.temporal.omes.KitchenSink.TimerActionOrBuilder>(
                   (io.temporal.omes.KitchenSink.TimerAction) variant_,
                   getParentForChildren(),
                   isClean());
@@ -16109,13 +15509,9 @@ public io.temporal.omes.KitchenSink.TimerActionOrBuilder getTimerOrBuilder() {
       }
 
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.ExecuteActivityAction,
-              io.temporal.omes.KitchenSink.ExecuteActivityAction.Builder,
-              io.temporal.omes.KitchenSink.ExecuteActivityActionOrBuilder>
-          execActivityBuilder_;
+          io.temporal.omes.KitchenSink.ExecuteActivityAction, io.temporal.omes.KitchenSink.ExecuteActivityAction.Builder, io.temporal.omes.KitchenSink.ExecuteActivityActionOrBuilder> execActivityBuilder_;
       /**
        * .temporal.omes.kitchen_sink.ExecuteActivityAction exec_activity = 2;
-       *
        * @return Whether the execActivity field is set.
        */
       @java.lang.Override
@@ -16124,7 +15520,6 @@ public boolean hasExecActivity() {
       }
       /**
        * .temporal.omes.kitchen_sink.ExecuteActivityAction exec_activity = 2;
-       *
        * @return The execActivity.
        */
       @java.lang.Override
@@ -16141,7 +15536,9 @@ public io.temporal.omes.KitchenSink.ExecuteActivityAction getExecActivity() {
           return io.temporal.omes.KitchenSink.ExecuteActivityAction.getDefaultInstance();
         }
       }
-      /** .temporal.omes.kitchen_sink.ExecuteActivityAction exec_activity = 2; */
+      /**
+       * .temporal.omes.kitchen_sink.ExecuteActivityAction exec_activity = 2;
+       */
       public Builder setExecActivity(io.temporal.omes.KitchenSink.ExecuteActivityAction value) {
         if (execActivityBuilder_ == null) {
           if (value == null) {
@@ -16155,7 +15552,9 @@ public Builder setExecActivity(io.temporal.omes.KitchenSink.ExecuteActivityActio
         variantCase_ = 2;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.ExecuteActivityAction exec_activity = 2; */
+      /**
+       * .temporal.omes.kitchen_sink.ExecuteActivityAction exec_activity = 2;
+       */
       public Builder setExecActivity(
           io.temporal.omes.KitchenSink.ExecuteActivityAction.Builder builderForValue) {
         if (execActivityBuilder_ == null) {
@@ -16167,17 +15566,15 @@ public Builder setExecActivity(
         variantCase_ = 2;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.ExecuteActivityAction exec_activity = 2; */
+      /**
+       * .temporal.omes.kitchen_sink.ExecuteActivityAction exec_activity = 2;
+       */
       public Builder mergeExecActivity(io.temporal.omes.KitchenSink.ExecuteActivityAction value) {
         if (execActivityBuilder_ == null) {
-          if (variantCase_ == 2
-              && variant_
-                  != io.temporal.omes.KitchenSink.ExecuteActivityAction.getDefaultInstance()) {
-            variant_ =
-                io.temporal.omes.KitchenSink.ExecuteActivityAction.newBuilder(
-                        (io.temporal.omes.KitchenSink.ExecuteActivityAction) variant_)
-                    .mergeFrom(value)
-                    .buildPartial();
+          if (variantCase_ == 2 &&
+              variant_ != io.temporal.omes.KitchenSink.ExecuteActivityAction.getDefaultInstance()) {
+            variant_ = io.temporal.omes.KitchenSink.ExecuteActivityAction.newBuilder((io.temporal.omes.KitchenSink.ExecuteActivityAction) variant_)
+                .mergeFrom(value).buildPartial();
           } else {
             variant_ = value;
           }
@@ -16192,7 +15589,9 @@ public Builder mergeExecActivity(io.temporal.omes.KitchenSink.ExecuteActivityAct
         variantCase_ = 2;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.ExecuteActivityAction exec_activity = 2; */
+      /**
+       * .temporal.omes.kitchen_sink.ExecuteActivityAction exec_activity = 2;
+       */
       public Builder clearExecActivity() {
         if (execActivityBuilder_ == null) {
           if (variantCase_ == 2) {
@@ -16209,14 +15608,17 @@ public Builder clearExecActivity() {
         }
         return this;
       }
-      /** .temporal.omes.kitchen_sink.ExecuteActivityAction exec_activity = 2; */
+      /**
+       * .temporal.omes.kitchen_sink.ExecuteActivityAction exec_activity = 2;
+       */
       public io.temporal.omes.KitchenSink.ExecuteActivityAction.Builder getExecActivityBuilder() {
         return getExecActivityFieldBuilder().getBuilder();
       }
-      /** .temporal.omes.kitchen_sink.ExecuteActivityAction exec_activity = 2; */
+      /**
+       * .temporal.omes.kitchen_sink.ExecuteActivityAction exec_activity = 2;
+       */
       @java.lang.Override
-      public io.temporal.omes.KitchenSink.ExecuteActivityActionOrBuilder
-          getExecActivityOrBuilder() {
+      public io.temporal.omes.KitchenSink.ExecuteActivityActionOrBuilder getExecActivityOrBuilder() {
         if ((variantCase_ == 2) && (execActivityBuilder_ != null)) {
           return execActivityBuilder_.getMessageOrBuilder();
         } else {
@@ -16226,21 +15628,18 @@ public io.temporal.omes.KitchenSink.ExecuteActivityAction.Builder getExecActivit
           return io.temporal.omes.KitchenSink.ExecuteActivityAction.getDefaultInstance();
         }
       }
-      /** .temporal.omes.kitchen_sink.ExecuteActivityAction exec_activity = 2; */
+      /**
+       * .temporal.omes.kitchen_sink.ExecuteActivityAction exec_activity = 2;
+       */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.ExecuteActivityAction,
-              io.temporal.omes.KitchenSink.ExecuteActivityAction.Builder,
-              io.temporal.omes.KitchenSink.ExecuteActivityActionOrBuilder>
+          io.temporal.omes.KitchenSink.ExecuteActivityAction, io.temporal.omes.KitchenSink.ExecuteActivityAction.Builder, io.temporal.omes.KitchenSink.ExecuteActivityActionOrBuilder> 
           getExecActivityFieldBuilder() {
         if (execActivityBuilder_ == null) {
           if (!(variantCase_ == 2)) {
             variant_ = io.temporal.omes.KitchenSink.ExecuteActivityAction.getDefaultInstance();
           }
-          execActivityBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.omes.KitchenSink.ExecuteActivityAction,
-                  io.temporal.omes.KitchenSink.ExecuteActivityAction.Builder,
-                  io.temporal.omes.KitchenSink.ExecuteActivityActionOrBuilder>(
+          execActivityBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.omes.KitchenSink.ExecuteActivityAction, io.temporal.omes.KitchenSink.ExecuteActivityAction.Builder, io.temporal.omes.KitchenSink.ExecuteActivityActionOrBuilder>(
                   (io.temporal.omes.KitchenSink.ExecuteActivityAction) variant_,
                   getParentForChildren(),
                   isClean());
@@ -16252,14 +15651,9 @@ public io.temporal.omes.KitchenSink.ExecuteActivityAction.Builder getExecActivit
       }
 
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction,
-              io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.Builder,
-              io.temporal.omes.KitchenSink.ExecuteChildWorkflowActionOrBuilder>
-          execChildWorkflowBuilder_;
+          io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction, io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.Builder, io.temporal.omes.KitchenSink.ExecuteChildWorkflowActionOrBuilder> execChildWorkflowBuilder_;
       /**
-       * .temporal.omes.kitchen_sink.ExecuteChildWorkflowAction exec_child_workflow = 3;
-       * 
-       *
+       * .temporal.omes.kitchen_sink.ExecuteChildWorkflowAction exec_child_workflow = 3;
        * @return Whether the execChildWorkflow field is set.
        */
       @java.lang.Override
@@ -16267,9 +15661,7 @@ public boolean hasExecChildWorkflow() {
         return variantCase_ == 3;
       }
       /**
-       * .temporal.omes.kitchen_sink.ExecuteChildWorkflowAction exec_child_workflow = 3;
-       * 
-       *
+       * .temporal.omes.kitchen_sink.ExecuteChildWorkflowAction exec_child_workflow = 3;
        * @return The execChildWorkflow.
        */
       @java.lang.Override
@@ -16287,11 +15679,9 @@ public io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction getExecChildWorkf
         }
       }
       /**
-       * .temporal.omes.kitchen_sink.ExecuteChildWorkflowAction exec_child_workflow = 3;
-       * 
+       * .temporal.omes.kitchen_sink.ExecuteChildWorkflowAction exec_child_workflow = 3;
        */
-      public Builder setExecChildWorkflow(
-          io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction value) {
+      public Builder setExecChildWorkflow(io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction value) {
         if (execChildWorkflowBuilder_ == null) {
           if (value == null) {
             throw new NullPointerException();
@@ -16305,8 +15695,7 @@ public Builder setExecChildWorkflow(
         return this;
       }
       /**
-       * .temporal.omes.kitchen_sink.ExecuteChildWorkflowAction exec_child_workflow = 3;
-       * 
+       * .temporal.omes.kitchen_sink.ExecuteChildWorkflowAction exec_child_workflow = 3;
        */
       public Builder setExecChildWorkflow(
           io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.Builder builderForValue) {
@@ -16320,20 +15709,14 @@ public Builder setExecChildWorkflow(
         return this;
       }
       /**
-       * .temporal.omes.kitchen_sink.ExecuteChildWorkflowAction exec_child_workflow = 3;
-       * 
+       * .temporal.omes.kitchen_sink.ExecuteChildWorkflowAction exec_child_workflow = 3;
        */
-      public Builder mergeExecChildWorkflow(
-          io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction value) {
+      public Builder mergeExecChildWorkflow(io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction value) {
         if (execChildWorkflowBuilder_ == null) {
-          if (variantCase_ == 3
-              && variant_
-                  != io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.getDefaultInstance()) {
-            variant_ =
-                io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.newBuilder(
-                        (io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction) variant_)
-                    .mergeFrom(value)
-                    .buildPartial();
+          if (variantCase_ == 3 &&
+              variant_ != io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.getDefaultInstance()) {
+            variant_ = io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.newBuilder((io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction) variant_)
+                .mergeFrom(value).buildPartial();
           } else {
             variant_ = value;
           }
@@ -16349,8 +15732,7 @@ public Builder mergeExecChildWorkflow(
         return this;
       }
       /**
-       * .temporal.omes.kitchen_sink.ExecuteChildWorkflowAction exec_child_workflow = 3;
-       * 
+       * .temporal.omes.kitchen_sink.ExecuteChildWorkflowAction exec_child_workflow = 3;
        */
       public Builder clearExecChildWorkflow() {
         if (execChildWorkflowBuilder_ == null) {
@@ -16369,20 +15751,16 @@ public Builder clearExecChildWorkflow() {
         return this;
       }
       /**
-       * .temporal.omes.kitchen_sink.ExecuteChildWorkflowAction exec_child_workflow = 3;
-       * 
+       * .temporal.omes.kitchen_sink.ExecuteChildWorkflowAction exec_child_workflow = 3;
        */
-      public io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.Builder
-          getExecChildWorkflowBuilder() {
+      public io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.Builder getExecChildWorkflowBuilder() {
         return getExecChildWorkflowFieldBuilder().getBuilder();
       }
       /**
-       * .temporal.omes.kitchen_sink.ExecuteChildWorkflowAction exec_child_workflow = 3;
-       * 
+       * .temporal.omes.kitchen_sink.ExecuteChildWorkflowAction exec_child_workflow = 3;
        */
       @java.lang.Override
-      public io.temporal.omes.KitchenSink.ExecuteChildWorkflowActionOrBuilder
-          getExecChildWorkflowOrBuilder() {
+      public io.temporal.omes.KitchenSink.ExecuteChildWorkflowActionOrBuilder getExecChildWorkflowOrBuilder() {
         if ((variantCase_ == 3) && (execChildWorkflowBuilder_ != null)) {
           return execChildWorkflowBuilder_.getMessageOrBuilder();
         } else {
@@ -16393,23 +15771,17 @@ public Builder clearExecChildWorkflow() {
         }
       }
       /**
-       * .temporal.omes.kitchen_sink.ExecuteChildWorkflowAction exec_child_workflow = 3;
-       * 
+       * .temporal.omes.kitchen_sink.ExecuteChildWorkflowAction exec_child_workflow = 3;
        */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction,
-              io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.Builder,
-              io.temporal.omes.KitchenSink.ExecuteChildWorkflowActionOrBuilder>
+          io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction, io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.Builder, io.temporal.omes.KitchenSink.ExecuteChildWorkflowActionOrBuilder> 
           getExecChildWorkflowFieldBuilder() {
         if (execChildWorkflowBuilder_ == null) {
           if (!(variantCase_ == 3)) {
             variant_ = io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.getDefaultInstance();
           }
-          execChildWorkflowBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction,
-                  io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.Builder,
-                  io.temporal.omes.KitchenSink.ExecuteChildWorkflowActionOrBuilder>(
+          execChildWorkflowBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction, io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.Builder, io.temporal.omes.KitchenSink.ExecuteChildWorkflowActionOrBuilder>(
                   (io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction) variant_,
                   getParentForChildren(),
                   isClean());
@@ -16421,13 +15793,9 @@ public Builder clearExecChildWorkflow() {
       }
 
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.AwaitWorkflowState,
-              io.temporal.omes.KitchenSink.AwaitWorkflowState.Builder,
-              io.temporal.omes.KitchenSink.AwaitWorkflowStateOrBuilder>
-          awaitWorkflowStateBuilder_;
+          io.temporal.omes.KitchenSink.AwaitWorkflowState, io.temporal.omes.KitchenSink.AwaitWorkflowState.Builder, io.temporal.omes.KitchenSink.AwaitWorkflowStateOrBuilder> awaitWorkflowStateBuilder_;
       /**
        * .temporal.omes.kitchen_sink.AwaitWorkflowState await_workflow_state = 4;
-       *
        * @return Whether the awaitWorkflowState field is set.
        */
       @java.lang.Override
@@ -16436,7 +15804,6 @@ public boolean hasAwaitWorkflowState() {
       }
       /**
        * .temporal.omes.kitchen_sink.AwaitWorkflowState await_workflow_state = 4;
-       *
        * @return The awaitWorkflowState.
        */
       @java.lang.Override
@@ -16453,7 +15820,9 @@ public io.temporal.omes.KitchenSink.AwaitWorkflowState getAwaitWorkflowState() {
           return io.temporal.omes.KitchenSink.AwaitWorkflowState.getDefaultInstance();
         }
       }
-      /** .temporal.omes.kitchen_sink.AwaitWorkflowState await_workflow_state = 4; */
+      /**
+       * .temporal.omes.kitchen_sink.AwaitWorkflowState await_workflow_state = 4;
+       */
       public Builder setAwaitWorkflowState(io.temporal.omes.KitchenSink.AwaitWorkflowState value) {
         if (awaitWorkflowStateBuilder_ == null) {
           if (value == null) {
@@ -16467,7 +15836,9 @@ public Builder setAwaitWorkflowState(io.temporal.omes.KitchenSink.AwaitWorkflowS
         variantCase_ = 4;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.AwaitWorkflowState await_workflow_state = 4; */
+      /**
+       * .temporal.omes.kitchen_sink.AwaitWorkflowState await_workflow_state = 4;
+       */
       public Builder setAwaitWorkflowState(
           io.temporal.omes.KitchenSink.AwaitWorkflowState.Builder builderForValue) {
         if (awaitWorkflowStateBuilder_ == null) {
@@ -16479,17 +15850,15 @@ public Builder setAwaitWorkflowState(
         variantCase_ = 4;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.AwaitWorkflowState await_workflow_state = 4; */
-      public Builder mergeAwaitWorkflowState(
-          io.temporal.omes.KitchenSink.AwaitWorkflowState value) {
+      /**
+       * .temporal.omes.kitchen_sink.AwaitWorkflowState await_workflow_state = 4;
+       */
+      public Builder mergeAwaitWorkflowState(io.temporal.omes.KitchenSink.AwaitWorkflowState value) {
         if (awaitWorkflowStateBuilder_ == null) {
-          if (variantCase_ == 4
-              && variant_ != io.temporal.omes.KitchenSink.AwaitWorkflowState.getDefaultInstance()) {
-            variant_ =
-                io.temporal.omes.KitchenSink.AwaitWorkflowState.newBuilder(
-                        (io.temporal.omes.KitchenSink.AwaitWorkflowState) variant_)
-                    .mergeFrom(value)
-                    .buildPartial();
+          if (variantCase_ == 4 &&
+              variant_ != io.temporal.omes.KitchenSink.AwaitWorkflowState.getDefaultInstance()) {
+            variant_ = io.temporal.omes.KitchenSink.AwaitWorkflowState.newBuilder((io.temporal.omes.KitchenSink.AwaitWorkflowState) variant_)
+                .mergeFrom(value).buildPartial();
           } else {
             variant_ = value;
           }
@@ -16504,7 +15873,9 @@ public Builder mergeAwaitWorkflowState(
         variantCase_ = 4;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.AwaitWorkflowState await_workflow_state = 4; */
+      /**
+       * .temporal.omes.kitchen_sink.AwaitWorkflowState await_workflow_state = 4;
+       */
       public Builder clearAwaitWorkflowState() {
         if (awaitWorkflowStateBuilder_ == null) {
           if (variantCase_ == 4) {
@@ -16521,15 +15892,17 @@ public Builder clearAwaitWorkflowState() {
         }
         return this;
       }
-      /** .temporal.omes.kitchen_sink.AwaitWorkflowState await_workflow_state = 4; */
-      public io.temporal.omes.KitchenSink.AwaitWorkflowState.Builder
-          getAwaitWorkflowStateBuilder() {
+      /**
+       * .temporal.omes.kitchen_sink.AwaitWorkflowState await_workflow_state = 4;
+       */
+      public io.temporal.omes.KitchenSink.AwaitWorkflowState.Builder getAwaitWorkflowStateBuilder() {
         return getAwaitWorkflowStateFieldBuilder().getBuilder();
       }
-      /** .temporal.omes.kitchen_sink.AwaitWorkflowState await_workflow_state = 4; */
+      /**
+       * .temporal.omes.kitchen_sink.AwaitWorkflowState await_workflow_state = 4;
+       */
       @java.lang.Override
-      public io.temporal.omes.KitchenSink.AwaitWorkflowStateOrBuilder
-          getAwaitWorkflowStateOrBuilder() {
+      public io.temporal.omes.KitchenSink.AwaitWorkflowStateOrBuilder getAwaitWorkflowStateOrBuilder() {
         if ((variantCase_ == 4) && (awaitWorkflowStateBuilder_ != null)) {
           return awaitWorkflowStateBuilder_.getMessageOrBuilder();
         } else {
@@ -16539,21 +15912,18 @@ public Builder clearAwaitWorkflowState() {
           return io.temporal.omes.KitchenSink.AwaitWorkflowState.getDefaultInstance();
         }
       }
-      /** .temporal.omes.kitchen_sink.AwaitWorkflowState await_workflow_state = 4; */
+      /**
+       * .temporal.omes.kitchen_sink.AwaitWorkflowState await_workflow_state = 4;
+       */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.AwaitWorkflowState,
-              io.temporal.omes.KitchenSink.AwaitWorkflowState.Builder,
-              io.temporal.omes.KitchenSink.AwaitWorkflowStateOrBuilder>
+          io.temporal.omes.KitchenSink.AwaitWorkflowState, io.temporal.omes.KitchenSink.AwaitWorkflowState.Builder, io.temporal.omes.KitchenSink.AwaitWorkflowStateOrBuilder> 
           getAwaitWorkflowStateFieldBuilder() {
         if (awaitWorkflowStateBuilder_ == null) {
           if (!(variantCase_ == 4)) {
             variant_ = io.temporal.omes.KitchenSink.AwaitWorkflowState.getDefaultInstance();
           }
-          awaitWorkflowStateBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.omes.KitchenSink.AwaitWorkflowState,
-                  io.temporal.omes.KitchenSink.AwaitWorkflowState.Builder,
-                  io.temporal.omes.KitchenSink.AwaitWorkflowStateOrBuilder>(
+          awaitWorkflowStateBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.omes.KitchenSink.AwaitWorkflowState, io.temporal.omes.KitchenSink.AwaitWorkflowState.Builder, io.temporal.omes.KitchenSink.AwaitWorkflowStateOrBuilder>(
                   (io.temporal.omes.KitchenSink.AwaitWorkflowState) variant_,
                   getParentForChildren(),
                   isClean());
@@ -16565,13 +15935,9 @@ public Builder clearAwaitWorkflowState() {
       }
 
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.SendSignalAction,
-              io.temporal.omes.KitchenSink.SendSignalAction.Builder,
-              io.temporal.omes.KitchenSink.SendSignalActionOrBuilder>
-          sendSignalBuilder_;
+          io.temporal.omes.KitchenSink.SendSignalAction, io.temporal.omes.KitchenSink.SendSignalAction.Builder, io.temporal.omes.KitchenSink.SendSignalActionOrBuilder> sendSignalBuilder_;
       /**
        * .temporal.omes.kitchen_sink.SendSignalAction send_signal = 5;
-       *
        * @return Whether the sendSignal field is set.
        */
       @java.lang.Override
@@ -16580,7 +15946,6 @@ public boolean hasSendSignal() {
       }
       /**
        * .temporal.omes.kitchen_sink.SendSignalAction send_signal = 5;
-       *
        * @return The sendSignal.
        */
       @java.lang.Override
@@ -16597,7 +15962,9 @@ public io.temporal.omes.KitchenSink.SendSignalAction getSendSignal() {
           return io.temporal.omes.KitchenSink.SendSignalAction.getDefaultInstance();
         }
       }
-      /** .temporal.omes.kitchen_sink.SendSignalAction send_signal = 5; */
+      /**
+       * .temporal.omes.kitchen_sink.SendSignalAction send_signal = 5;
+       */
       public Builder setSendSignal(io.temporal.omes.KitchenSink.SendSignalAction value) {
         if (sendSignalBuilder_ == null) {
           if (value == null) {
@@ -16611,7 +15978,9 @@ public Builder setSendSignal(io.temporal.omes.KitchenSink.SendSignalAction value
         variantCase_ = 5;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.SendSignalAction send_signal = 5; */
+      /**
+       * .temporal.omes.kitchen_sink.SendSignalAction send_signal = 5;
+       */
       public Builder setSendSignal(
           io.temporal.omes.KitchenSink.SendSignalAction.Builder builderForValue) {
         if (sendSignalBuilder_ == null) {
@@ -16623,16 +15992,15 @@ public Builder setSendSignal(
         variantCase_ = 5;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.SendSignalAction send_signal = 5; */
+      /**
+       * .temporal.omes.kitchen_sink.SendSignalAction send_signal = 5;
+       */
       public Builder mergeSendSignal(io.temporal.omes.KitchenSink.SendSignalAction value) {
         if (sendSignalBuilder_ == null) {
-          if (variantCase_ == 5
-              && variant_ != io.temporal.omes.KitchenSink.SendSignalAction.getDefaultInstance()) {
-            variant_ =
-                io.temporal.omes.KitchenSink.SendSignalAction.newBuilder(
-                        (io.temporal.omes.KitchenSink.SendSignalAction) variant_)
-                    .mergeFrom(value)
-                    .buildPartial();
+          if (variantCase_ == 5 &&
+              variant_ != io.temporal.omes.KitchenSink.SendSignalAction.getDefaultInstance()) {
+            variant_ = io.temporal.omes.KitchenSink.SendSignalAction.newBuilder((io.temporal.omes.KitchenSink.SendSignalAction) variant_)
+                .mergeFrom(value).buildPartial();
           } else {
             variant_ = value;
           }
@@ -16647,7 +16015,9 @@ public Builder mergeSendSignal(io.temporal.omes.KitchenSink.SendSignalAction val
         variantCase_ = 5;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.SendSignalAction send_signal = 5; */
+      /**
+       * .temporal.omes.kitchen_sink.SendSignalAction send_signal = 5;
+       */
       public Builder clearSendSignal() {
         if (sendSignalBuilder_ == null) {
           if (variantCase_ == 5) {
@@ -16664,11 +16034,15 @@ public Builder clearSendSignal() {
         }
         return this;
       }
-      /** .temporal.omes.kitchen_sink.SendSignalAction send_signal = 5; */
+      /**
+       * .temporal.omes.kitchen_sink.SendSignalAction send_signal = 5;
+       */
       public io.temporal.omes.KitchenSink.SendSignalAction.Builder getSendSignalBuilder() {
         return getSendSignalFieldBuilder().getBuilder();
       }
-      /** .temporal.omes.kitchen_sink.SendSignalAction send_signal = 5; */
+      /**
+       * .temporal.omes.kitchen_sink.SendSignalAction send_signal = 5;
+       */
       @java.lang.Override
       public io.temporal.omes.KitchenSink.SendSignalActionOrBuilder getSendSignalOrBuilder() {
         if ((variantCase_ == 5) && (sendSignalBuilder_ != null)) {
@@ -16680,21 +16054,18 @@ public io.temporal.omes.KitchenSink.SendSignalActionOrBuilder getSendSignalOrBui
           return io.temporal.omes.KitchenSink.SendSignalAction.getDefaultInstance();
         }
       }
-      /** .temporal.omes.kitchen_sink.SendSignalAction send_signal = 5; */
+      /**
+       * .temporal.omes.kitchen_sink.SendSignalAction send_signal = 5;
+       */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.SendSignalAction,
-              io.temporal.omes.KitchenSink.SendSignalAction.Builder,
-              io.temporal.omes.KitchenSink.SendSignalActionOrBuilder>
+          io.temporal.omes.KitchenSink.SendSignalAction, io.temporal.omes.KitchenSink.SendSignalAction.Builder, io.temporal.omes.KitchenSink.SendSignalActionOrBuilder> 
           getSendSignalFieldBuilder() {
         if (sendSignalBuilder_ == null) {
           if (!(variantCase_ == 5)) {
             variant_ = io.temporal.omes.KitchenSink.SendSignalAction.getDefaultInstance();
           }
-          sendSignalBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.omes.KitchenSink.SendSignalAction,
-                  io.temporal.omes.KitchenSink.SendSignalAction.Builder,
-                  io.temporal.omes.KitchenSink.SendSignalActionOrBuilder>(
+          sendSignalBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.omes.KitchenSink.SendSignalAction, io.temporal.omes.KitchenSink.SendSignalAction.Builder, io.temporal.omes.KitchenSink.SendSignalActionOrBuilder>(
                   (io.temporal.omes.KitchenSink.SendSignalAction) variant_,
                   getParentForChildren(),
                   isClean());
@@ -16706,13 +16077,9 @@ public io.temporal.omes.KitchenSink.SendSignalActionOrBuilder getSendSignalOrBui
       }
 
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.CancelWorkflowAction,
-              io.temporal.omes.KitchenSink.CancelWorkflowAction.Builder,
-              io.temporal.omes.KitchenSink.CancelWorkflowActionOrBuilder>
-          cancelWorkflowBuilder_;
+          io.temporal.omes.KitchenSink.CancelWorkflowAction, io.temporal.omes.KitchenSink.CancelWorkflowAction.Builder, io.temporal.omes.KitchenSink.CancelWorkflowActionOrBuilder> cancelWorkflowBuilder_;
       /**
        * .temporal.omes.kitchen_sink.CancelWorkflowAction cancel_workflow = 6;
-       *
        * @return Whether the cancelWorkflow field is set.
        */
       @java.lang.Override
@@ -16721,7 +16088,6 @@ public boolean hasCancelWorkflow() {
       }
       /**
        * .temporal.omes.kitchen_sink.CancelWorkflowAction cancel_workflow = 6;
-       *
        * @return The cancelWorkflow.
        */
       @java.lang.Override
@@ -16738,7 +16104,9 @@ public io.temporal.omes.KitchenSink.CancelWorkflowAction getCancelWorkflow() {
           return io.temporal.omes.KitchenSink.CancelWorkflowAction.getDefaultInstance();
         }
       }
-      /** .temporal.omes.kitchen_sink.CancelWorkflowAction cancel_workflow = 6; */
+      /**
+       * .temporal.omes.kitchen_sink.CancelWorkflowAction cancel_workflow = 6;
+       */
       public Builder setCancelWorkflow(io.temporal.omes.KitchenSink.CancelWorkflowAction value) {
         if (cancelWorkflowBuilder_ == null) {
           if (value == null) {
@@ -16752,7 +16120,9 @@ public Builder setCancelWorkflow(io.temporal.omes.KitchenSink.CancelWorkflowActi
         variantCase_ = 6;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.CancelWorkflowAction cancel_workflow = 6; */
+      /**
+       * .temporal.omes.kitchen_sink.CancelWorkflowAction cancel_workflow = 6;
+       */
       public Builder setCancelWorkflow(
           io.temporal.omes.KitchenSink.CancelWorkflowAction.Builder builderForValue) {
         if (cancelWorkflowBuilder_ == null) {
@@ -16764,17 +16134,15 @@ public Builder setCancelWorkflow(
         variantCase_ = 6;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.CancelWorkflowAction cancel_workflow = 6; */
+      /**
+       * .temporal.omes.kitchen_sink.CancelWorkflowAction cancel_workflow = 6;
+       */
       public Builder mergeCancelWorkflow(io.temporal.omes.KitchenSink.CancelWorkflowAction value) {
         if (cancelWorkflowBuilder_ == null) {
-          if (variantCase_ == 6
-              && variant_
-                  != io.temporal.omes.KitchenSink.CancelWorkflowAction.getDefaultInstance()) {
-            variant_ =
-                io.temporal.omes.KitchenSink.CancelWorkflowAction.newBuilder(
-                        (io.temporal.omes.KitchenSink.CancelWorkflowAction) variant_)
-                    .mergeFrom(value)
-                    .buildPartial();
+          if (variantCase_ == 6 &&
+              variant_ != io.temporal.omes.KitchenSink.CancelWorkflowAction.getDefaultInstance()) {
+            variant_ = io.temporal.omes.KitchenSink.CancelWorkflowAction.newBuilder((io.temporal.omes.KitchenSink.CancelWorkflowAction) variant_)
+                .mergeFrom(value).buildPartial();
           } else {
             variant_ = value;
           }
@@ -16789,7 +16157,9 @@ public Builder mergeCancelWorkflow(io.temporal.omes.KitchenSink.CancelWorkflowAc
         variantCase_ = 6;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.CancelWorkflowAction cancel_workflow = 6; */
+      /**
+       * .temporal.omes.kitchen_sink.CancelWorkflowAction cancel_workflow = 6;
+       */
       public Builder clearCancelWorkflow() {
         if (cancelWorkflowBuilder_ == null) {
           if (variantCase_ == 6) {
@@ -16806,14 +16176,17 @@ public Builder clearCancelWorkflow() {
         }
         return this;
       }
-      /** .temporal.omes.kitchen_sink.CancelWorkflowAction cancel_workflow = 6; */
+      /**
+       * .temporal.omes.kitchen_sink.CancelWorkflowAction cancel_workflow = 6;
+       */
       public io.temporal.omes.KitchenSink.CancelWorkflowAction.Builder getCancelWorkflowBuilder() {
         return getCancelWorkflowFieldBuilder().getBuilder();
       }
-      /** .temporal.omes.kitchen_sink.CancelWorkflowAction cancel_workflow = 6; */
+      /**
+       * .temporal.omes.kitchen_sink.CancelWorkflowAction cancel_workflow = 6;
+       */
       @java.lang.Override
-      public io.temporal.omes.KitchenSink.CancelWorkflowActionOrBuilder
-          getCancelWorkflowOrBuilder() {
+      public io.temporal.omes.KitchenSink.CancelWorkflowActionOrBuilder getCancelWorkflowOrBuilder() {
         if ((variantCase_ == 6) && (cancelWorkflowBuilder_ != null)) {
           return cancelWorkflowBuilder_.getMessageOrBuilder();
         } else {
@@ -16823,21 +16196,18 @@ public io.temporal.omes.KitchenSink.CancelWorkflowAction.Builder getCancelWorkfl
           return io.temporal.omes.KitchenSink.CancelWorkflowAction.getDefaultInstance();
         }
       }
-      /** .temporal.omes.kitchen_sink.CancelWorkflowAction cancel_workflow = 6; */
+      /**
+       * .temporal.omes.kitchen_sink.CancelWorkflowAction cancel_workflow = 6;
+       */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.CancelWorkflowAction,
-              io.temporal.omes.KitchenSink.CancelWorkflowAction.Builder,
-              io.temporal.omes.KitchenSink.CancelWorkflowActionOrBuilder>
+          io.temporal.omes.KitchenSink.CancelWorkflowAction, io.temporal.omes.KitchenSink.CancelWorkflowAction.Builder, io.temporal.omes.KitchenSink.CancelWorkflowActionOrBuilder> 
           getCancelWorkflowFieldBuilder() {
         if (cancelWorkflowBuilder_ == null) {
           if (!(variantCase_ == 6)) {
             variant_ = io.temporal.omes.KitchenSink.CancelWorkflowAction.getDefaultInstance();
           }
-          cancelWorkflowBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.omes.KitchenSink.CancelWorkflowAction,
-                  io.temporal.omes.KitchenSink.CancelWorkflowAction.Builder,
-                  io.temporal.omes.KitchenSink.CancelWorkflowActionOrBuilder>(
+          cancelWorkflowBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.omes.KitchenSink.CancelWorkflowAction, io.temporal.omes.KitchenSink.CancelWorkflowAction.Builder, io.temporal.omes.KitchenSink.CancelWorkflowActionOrBuilder>(
                   (io.temporal.omes.KitchenSink.CancelWorkflowAction) variant_,
                   getParentForChildren(),
                   isClean());
@@ -16849,13 +16219,9 @@ public io.temporal.omes.KitchenSink.CancelWorkflowAction.Builder getCancelWorkfl
       }
 
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.SetPatchMarkerAction,
-              io.temporal.omes.KitchenSink.SetPatchMarkerAction.Builder,
-              io.temporal.omes.KitchenSink.SetPatchMarkerActionOrBuilder>
-          setPatchMarkerBuilder_;
+          io.temporal.omes.KitchenSink.SetPatchMarkerAction, io.temporal.omes.KitchenSink.SetPatchMarkerAction.Builder, io.temporal.omes.KitchenSink.SetPatchMarkerActionOrBuilder> setPatchMarkerBuilder_;
       /**
        * .temporal.omes.kitchen_sink.SetPatchMarkerAction set_patch_marker = 7;
-       *
        * @return Whether the setPatchMarker field is set.
        */
       @java.lang.Override
@@ -16864,7 +16230,6 @@ public boolean hasSetPatchMarker() {
       }
       /**
        * .temporal.omes.kitchen_sink.SetPatchMarkerAction set_patch_marker = 7;
-       *
        * @return The setPatchMarker.
        */
       @java.lang.Override
@@ -16881,7 +16246,9 @@ public io.temporal.omes.KitchenSink.SetPatchMarkerAction getSetPatchMarker() {
           return io.temporal.omes.KitchenSink.SetPatchMarkerAction.getDefaultInstance();
         }
       }
-      /** .temporal.omes.kitchen_sink.SetPatchMarkerAction set_patch_marker = 7; */
+      /**
+       * .temporal.omes.kitchen_sink.SetPatchMarkerAction set_patch_marker = 7;
+       */
       public Builder setSetPatchMarker(io.temporal.omes.KitchenSink.SetPatchMarkerAction value) {
         if (setPatchMarkerBuilder_ == null) {
           if (value == null) {
@@ -16895,7 +16262,9 @@ public Builder setSetPatchMarker(io.temporal.omes.KitchenSink.SetPatchMarkerActi
         variantCase_ = 7;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.SetPatchMarkerAction set_patch_marker = 7; */
+      /**
+       * .temporal.omes.kitchen_sink.SetPatchMarkerAction set_patch_marker = 7;
+       */
       public Builder setSetPatchMarker(
           io.temporal.omes.KitchenSink.SetPatchMarkerAction.Builder builderForValue) {
         if (setPatchMarkerBuilder_ == null) {
@@ -16907,17 +16276,15 @@ public Builder setSetPatchMarker(
         variantCase_ = 7;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.SetPatchMarkerAction set_patch_marker = 7; */
+      /**
+       * .temporal.omes.kitchen_sink.SetPatchMarkerAction set_patch_marker = 7;
+       */
       public Builder mergeSetPatchMarker(io.temporal.omes.KitchenSink.SetPatchMarkerAction value) {
         if (setPatchMarkerBuilder_ == null) {
-          if (variantCase_ == 7
-              && variant_
-                  != io.temporal.omes.KitchenSink.SetPatchMarkerAction.getDefaultInstance()) {
-            variant_ =
-                io.temporal.omes.KitchenSink.SetPatchMarkerAction.newBuilder(
-                        (io.temporal.omes.KitchenSink.SetPatchMarkerAction) variant_)
-                    .mergeFrom(value)
-                    .buildPartial();
+          if (variantCase_ == 7 &&
+              variant_ != io.temporal.omes.KitchenSink.SetPatchMarkerAction.getDefaultInstance()) {
+            variant_ = io.temporal.omes.KitchenSink.SetPatchMarkerAction.newBuilder((io.temporal.omes.KitchenSink.SetPatchMarkerAction) variant_)
+                .mergeFrom(value).buildPartial();
           } else {
             variant_ = value;
           }
@@ -16932,7 +16299,9 @@ public Builder mergeSetPatchMarker(io.temporal.omes.KitchenSink.SetPatchMarkerAc
         variantCase_ = 7;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.SetPatchMarkerAction set_patch_marker = 7; */
+      /**
+       * .temporal.omes.kitchen_sink.SetPatchMarkerAction set_patch_marker = 7;
+       */
       public Builder clearSetPatchMarker() {
         if (setPatchMarkerBuilder_ == null) {
           if (variantCase_ == 7) {
@@ -16949,14 +16318,17 @@ public Builder clearSetPatchMarker() {
         }
         return this;
       }
-      /** .temporal.omes.kitchen_sink.SetPatchMarkerAction set_patch_marker = 7; */
+      /**
+       * .temporal.omes.kitchen_sink.SetPatchMarkerAction set_patch_marker = 7;
+       */
       public io.temporal.omes.KitchenSink.SetPatchMarkerAction.Builder getSetPatchMarkerBuilder() {
         return getSetPatchMarkerFieldBuilder().getBuilder();
       }
-      /** .temporal.omes.kitchen_sink.SetPatchMarkerAction set_patch_marker = 7; */
+      /**
+       * .temporal.omes.kitchen_sink.SetPatchMarkerAction set_patch_marker = 7;
+       */
       @java.lang.Override
-      public io.temporal.omes.KitchenSink.SetPatchMarkerActionOrBuilder
-          getSetPatchMarkerOrBuilder() {
+      public io.temporal.omes.KitchenSink.SetPatchMarkerActionOrBuilder getSetPatchMarkerOrBuilder() {
         if ((variantCase_ == 7) && (setPatchMarkerBuilder_ != null)) {
           return setPatchMarkerBuilder_.getMessageOrBuilder();
         } else {
@@ -16966,21 +16338,18 @@ public io.temporal.omes.KitchenSink.SetPatchMarkerAction.Builder getSetPatchMark
           return io.temporal.omes.KitchenSink.SetPatchMarkerAction.getDefaultInstance();
         }
       }
-      /** .temporal.omes.kitchen_sink.SetPatchMarkerAction set_patch_marker = 7; */
+      /**
+       * .temporal.omes.kitchen_sink.SetPatchMarkerAction set_patch_marker = 7;
+       */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.SetPatchMarkerAction,
-              io.temporal.omes.KitchenSink.SetPatchMarkerAction.Builder,
-              io.temporal.omes.KitchenSink.SetPatchMarkerActionOrBuilder>
+          io.temporal.omes.KitchenSink.SetPatchMarkerAction, io.temporal.omes.KitchenSink.SetPatchMarkerAction.Builder, io.temporal.omes.KitchenSink.SetPatchMarkerActionOrBuilder> 
           getSetPatchMarkerFieldBuilder() {
         if (setPatchMarkerBuilder_ == null) {
           if (!(variantCase_ == 7)) {
             variant_ = io.temporal.omes.KitchenSink.SetPatchMarkerAction.getDefaultInstance();
           }
-          setPatchMarkerBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.omes.KitchenSink.SetPatchMarkerAction,
-                  io.temporal.omes.KitchenSink.SetPatchMarkerAction.Builder,
-                  io.temporal.omes.KitchenSink.SetPatchMarkerActionOrBuilder>(
+          setPatchMarkerBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.omes.KitchenSink.SetPatchMarkerAction, io.temporal.omes.KitchenSink.SetPatchMarkerAction.Builder, io.temporal.omes.KitchenSink.SetPatchMarkerActionOrBuilder>(
                   (io.temporal.omes.KitchenSink.SetPatchMarkerAction) variant_,
                   getParentForChildren(),
                   isClean());
@@ -16992,15 +16361,9 @@ public io.temporal.omes.KitchenSink.SetPatchMarkerAction.Builder getSetPatchMark
       }
 
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.UpsertSearchAttributesAction,
-              io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.Builder,
-              io.temporal.omes.KitchenSink.UpsertSearchAttributesActionOrBuilder>
-          upsertSearchAttributesBuilder_;
+          io.temporal.omes.KitchenSink.UpsertSearchAttributesAction, io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.Builder, io.temporal.omes.KitchenSink.UpsertSearchAttributesActionOrBuilder> upsertSearchAttributesBuilder_;
       /**
-       * 
-       * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
-       * 
-       *
+       * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
        * @return Whether the upsertSearchAttributes field is set.
        */
       @java.lang.Override
@@ -17008,10 +16371,7 @@ public boolean hasUpsertSearchAttributes() {
         return variantCase_ == 8;
       }
       /**
-       * 
-       * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
-       * 
-       *
+       * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
        * @return The upsertSearchAttributes.
        */
       @java.lang.Override
@@ -17029,12 +16389,9 @@ public io.temporal.omes.KitchenSink.UpsertSearchAttributesAction getUpsertSearch
         }
       }
       /**
-       * 
-       * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
-       * 
+       * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
        */
-      public Builder setUpsertSearchAttributes(
-          io.temporal.omes.KitchenSink.UpsertSearchAttributesAction value) {
+      public Builder setUpsertSearchAttributes(io.temporal.omes.KitchenSink.UpsertSearchAttributesAction value) {
         if (upsertSearchAttributesBuilder_ == null) {
           if (value == null) {
             throw new NullPointerException();
@@ -17048,9 +16405,7 @@ public Builder setUpsertSearchAttributes(
         return this;
       }
       /**
-       * 
-       * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
-       * 
+       * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
        */
       public Builder setUpsertSearchAttributes(
           io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.Builder builderForValue) {
@@ -17064,22 +16419,14 @@ public Builder setUpsertSearchAttributes(
         return this;
       }
       /**
-       * 
-       * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
-       * 
+       * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
        */
-      public Builder mergeUpsertSearchAttributes(
-          io.temporal.omes.KitchenSink.UpsertSearchAttributesAction value) {
+      public Builder mergeUpsertSearchAttributes(io.temporal.omes.KitchenSink.UpsertSearchAttributesAction value) {
         if (upsertSearchAttributesBuilder_ == null) {
-          if (variantCase_ == 8
-              && variant_
-                  != io.temporal.omes.KitchenSink.UpsertSearchAttributesAction
-                      .getDefaultInstance()) {
-            variant_ =
-                io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.newBuilder(
-                        (io.temporal.omes.KitchenSink.UpsertSearchAttributesAction) variant_)
-                    .mergeFrom(value)
-                    .buildPartial();
+          if (variantCase_ == 8 &&
+              variant_ != io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.getDefaultInstance()) {
+            variant_ = io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.newBuilder((io.temporal.omes.KitchenSink.UpsertSearchAttributesAction) variant_)
+                .mergeFrom(value).buildPartial();
           } else {
             variant_ = value;
           }
@@ -17095,9 +16442,7 @@ public Builder mergeUpsertSearchAttributes(
         return this;
       }
       /**
-       * 
-       * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
-       * 
+       * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
        */
       public Builder clearUpsertSearchAttributes() {
         if (upsertSearchAttributesBuilder_ == null) {
@@ -17116,22 +16461,16 @@ public Builder clearUpsertSearchAttributes() {
         return this;
       }
       /**
-       * 
-       * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
-       * 
+       * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
        */
-      public io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.Builder
-          getUpsertSearchAttributesBuilder() {
+      public io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.Builder getUpsertSearchAttributesBuilder() {
         return getUpsertSearchAttributesFieldBuilder().getBuilder();
       }
       /**
-       * 
-       * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
-       * 
+       * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
        */
       @java.lang.Override
-      public io.temporal.omes.KitchenSink.UpsertSearchAttributesActionOrBuilder
-          getUpsertSearchAttributesOrBuilder() {
+      public io.temporal.omes.KitchenSink.UpsertSearchAttributesActionOrBuilder getUpsertSearchAttributesOrBuilder() {
         if ((variantCase_ == 8) && (upsertSearchAttributesBuilder_ != null)) {
           return upsertSearchAttributesBuilder_.getMessageOrBuilder();
         } else {
@@ -17142,25 +16481,17 @@ public Builder clearUpsertSearchAttributes() {
         }
       }
       /**
-       * 
-       * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
-       * 
+       * .temporal.omes.kitchen_sink.UpsertSearchAttributesAction upsert_search_attributes = 8;
        */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.UpsertSearchAttributesAction,
-              io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.Builder,
-              io.temporal.omes.KitchenSink.UpsertSearchAttributesActionOrBuilder>
+          io.temporal.omes.KitchenSink.UpsertSearchAttributesAction, io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.Builder, io.temporal.omes.KitchenSink.UpsertSearchAttributesActionOrBuilder> 
           getUpsertSearchAttributesFieldBuilder() {
         if (upsertSearchAttributesBuilder_ == null) {
           if (!(variantCase_ == 8)) {
-            variant_ =
-                io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.getDefaultInstance();
-          }
-          upsertSearchAttributesBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.omes.KitchenSink.UpsertSearchAttributesAction,
-                  io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.Builder,
-                  io.temporal.omes.KitchenSink.UpsertSearchAttributesActionOrBuilder>(
+            variant_ = io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.getDefaultInstance();
+          }
+          upsertSearchAttributesBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.omes.KitchenSink.UpsertSearchAttributesAction, io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.Builder, io.temporal.omes.KitchenSink.UpsertSearchAttributesActionOrBuilder>(
                   (io.temporal.omes.KitchenSink.UpsertSearchAttributesAction) variant_,
                   getParentForChildren(),
                   isClean());
@@ -17172,13 +16503,9 @@ public Builder clearUpsertSearchAttributes() {
       }
 
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.UpsertMemoAction,
-              io.temporal.omes.KitchenSink.UpsertMemoAction.Builder,
-              io.temporal.omes.KitchenSink.UpsertMemoActionOrBuilder>
-          upsertMemoBuilder_;
+          io.temporal.omes.KitchenSink.UpsertMemoAction, io.temporal.omes.KitchenSink.UpsertMemoAction.Builder, io.temporal.omes.KitchenSink.UpsertMemoActionOrBuilder> upsertMemoBuilder_;
       /**
        * .temporal.omes.kitchen_sink.UpsertMemoAction upsert_memo = 9;
-       *
        * @return Whether the upsertMemo field is set.
        */
       @java.lang.Override
@@ -17187,7 +16514,6 @@ public boolean hasUpsertMemo() {
       }
       /**
        * .temporal.omes.kitchen_sink.UpsertMemoAction upsert_memo = 9;
-       *
        * @return The upsertMemo.
        */
       @java.lang.Override
@@ -17204,7 +16530,9 @@ public io.temporal.omes.KitchenSink.UpsertMemoAction getUpsertMemo() {
           return io.temporal.omes.KitchenSink.UpsertMemoAction.getDefaultInstance();
         }
       }
-      /** .temporal.omes.kitchen_sink.UpsertMemoAction upsert_memo = 9; */
+      /**
+       * .temporal.omes.kitchen_sink.UpsertMemoAction upsert_memo = 9;
+       */
       public Builder setUpsertMemo(io.temporal.omes.KitchenSink.UpsertMemoAction value) {
         if (upsertMemoBuilder_ == null) {
           if (value == null) {
@@ -17218,7 +16546,9 @@ public Builder setUpsertMemo(io.temporal.omes.KitchenSink.UpsertMemoAction value
         variantCase_ = 9;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.UpsertMemoAction upsert_memo = 9; */
+      /**
+       * .temporal.omes.kitchen_sink.UpsertMemoAction upsert_memo = 9;
+       */
       public Builder setUpsertMemo(
           io.temporal.omes.KitchenSink.UpsertMemoAction.Builder builderForValue) {
         if (upsertMemoBuilder_ == null) {
@@ -17230,16 +16560,15 @@ public Builder setUpsertMemo(
         variantCase_ = 9;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.UpsertMemoAction upsert_memo = 9; */
+      /**
+       * .temporal.omes.kitchen_sink.UpsertMemoAction upsert_memo = 9;
+       */
       public Builder mergeUpsertMemo(io.temporal.omes.KitchenSink.UpsertMemoAction value) {
         if (upsertMemoBuilder_ == null) {
-          if (variantCase_ == 9
-              && variant_ != io.temporal.omes.KitchenSink.UpsertMemoAction.getDefaultInstance()) {
-            variant_ =
-                io.temporal.omes.KitchenSink.UpsertMemoAction.newBuilder(
-                        (io.temporal.omes.KitchenSink.UpsertMemoAction) variant_)
-                    .mergeFrom(value)
-                    .buildPartial();
+          if (variantCase_ == 9 &&
+              variant_ != io.temporal.omes.KitchenSink.UpsertMemoAction.getDefaultInstance()) {
+            variant_ = io.temporal.omes.KitchenSink.UpsertMemoAction.newBuilder((io.temporal.omes.KitchenSink.UpsertMemoAction) variant_)
+                .mergeFrom(value).buildPartial();
           } else {
             variant_ = value;
           }
@@ -17254,7 +16583,9 @@ public Builder mergeUpsertMemo(io.temporal.omes.KitchenSink.UpsertMemoAction val
         variantCase_ = 9;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.UpsertMemoAction upsert_memo = 9; */
+      /**
+       * .temporal.omes.kitchen_sink.UpsertMemoAction upsert_memo = 9;
+       */
       public Builder clearUpsertMemo() {
         if (upsertMemoBuilder_ == null) {
           if (variantCase_ == 9) {
@@ -17271,11 +16602,15 @@ public Builder clearUpsertMemo() {
         }
         return this;
       }
-      /** .temporal.omes.kitchen_sink.UpsertMemoAction upsert_memo = 9; */
+      /**
+       * .temporal.omes.kitchen_sink.UpsertMemoAction upsert_memo = 9;
+       */
       public io.temporal.omes.KitchenSink.UpsertMemoAction.Builder getUpsertMemoBuilder() {
         return getUpsertMemoFieldBuilder().getBuilder();
       }
-      /** .temporal.omes.kitchen_sink.UpsertMemoAction upsert_memo = 9; */
+      /**
+       * .temporal.omes.kitchen_sink.UpsertMemoAction upsert_memo = 9;
+       */
       @java.lang.Override
       public io.temporal.omes.KitchenSink.UpsertMemoActionOrBuilder getUpsertMemoOrBuilder() {
         if ((variantCase_ == 9) && (upsertMemoBuilder_ != null)) {
@@ -17287,21 +16622,18 @@ public io.temporal.omes.KitchenSink.UpsertMemoActionOrBuilder getUpsertMemoOrBui
           return io.temporal.omes.KitchenSink.UpsertMemoAction.getDefaultInstance();
         }
       }
-      /** .temporal.omes.kitchen_sink.UpsertMemoAction upsert_memo = 9; */
+      /**
+       * .temporal.omes.kitchen_sink.UpsertMemoAction upsert_memo = 9;
+       */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.UpsertMemoAction,
-              io.temporal.omes.KitchenSink.UpsertMemoAction.Builder,
-              io.temporal.omes.KitchenSink.UpsertMemoActionOrBuilder>
+          io.temporal.omes.KitchenSink.UpsertMemoAction, io.temporal.omes.KitchenSink.UpsertMemoAction.Builder, io.temporal.omes.KitchenSink.UpsertMemoActionOrBuilder> 
           getUpsertMemoFieldBuilder() {
         if (upsertMemoBuilder_ == null) {
           if (!(variantCase_ == 9)) {
             variant_ = io.temporal.omes.KitchenSink.UpsertMemoAction.getDefaultInstance();
           }
-          upsertMemoBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.omes.KitchenSink.UpsertMemoAction,
-                  io.temporal.omes.KitchenSink.UpsertMemoAction.Builder,
-                  io.temporal.omes.KitchenSink.UpsertMemoActionOrBuilder>(
+          upsertMemoBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.omes.KitchenSink.UpsertMemoAction, io.temporal.omes.KitchenSink.UpsertMemoAction.Builder, io.temporal.omes.KitchenSink.UpsertMemoActionOrBuilder>(
                   (io.temporal.omes.KitchenSink.UpsertMemoAction) variant_,
                   getParentForChildren(),
                   isClean());
@@ -17313,13 +16645,9 @@ public io.temporal.omes.KitchenSink.UpsertMemoActionOrBuilder getUpsertMemoOrBui
       }
 
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.WorkflowState,
-              io.temporal.omes.KitchenSink.WorkflowState.Builder,
-              io.temporal.omes.KitchenSink.WorkflowStateOrBuilder>
-          setWorkflowStateBuilder_;
+          io.temporal.omes.KitchenSink.WorkflowState, io.temporal.omes.KitchenSink.WorkflowState.Builder, io.temporal.omes.KitchenSink.WorkflowStateOrBuilder> setWorkflowStateBuilder_;
       /**
        * .temporal.omes.kitchen_sink.WorkflowState set_workflow_state = 10;
-       *
        * @return Whether the setWorkflowState field is set.
        */
       @java.lang.Override
@@ -17328,7 +16656,6 @@ public boolean hasSetWorkflowState() {
       }
       /**
        * .temporal.omes.kitchen_sink.WorkflowState set_workflow_state = 10;
-       *
        * @return The setWorkflowState.
        */
       @java.lang.Override
@@ -17345,7 +16672,9 @@ public io.temporal.omes.KitchenSink.WorkflowState getSetWorkflowState() {
           return io.temporal.omes.KitchenSink.WorkflowState.getDefaultInstance();
         }
       }
-      /** .temporal.omes.kitchen_sink.WorkflowState set_workflow_state = 10; */
+      /**
+       * .temporal.omes.kitchen_sink.WorkflowState set_workflow_state = 10;
+       */
       public Builder setSetWorkflowState(io.temporal.omes.KitchenSink.WorkflowState value) {
         if (setWorkflowStateBuilder_ == null) {
           if (value == null) {
@@ -17359,7 +16688,9 @@ public Builder setSetWorkflowState(io.temporal.omes.KitchenSink.WorkflowState va
         variantCase_ = 10;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.WorkflowState set_workflow_state = 10; */
+      /**
+       * .temporal.omes.kitchen_sink.WorkflowState set_workflow_state = 10;
+       */
       public Builder setSetWorkflowState(
           io.temporal.omes.KitchenSink.WorkflowState.Builder builderForValue) {
         if (setWorkflowStateBuilder_ == null) {
@@ -17371,16 +16702,15 @@ public Builder setSetWorkflowState(
         variantCase_ = 10;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.WorkflowState set_workflow_state = 10; */
+      /**
+       * .temporal.omes.kitchen_sink.WorkflowState set_workflow_state = 10;
+       */
       public Builder mergeSetWorkflowState(io.temporal.omes.KitchenSink.WorkflowState value) {
         if (setWorkflowStateBuilder_ == null) {
-          if (variantCase_ == 10
-              && variant_ != io.temporal.omes.KitchenSink.WorkflowState.getDefaultInstance()) {
-            variant_ =
-                io.temporal.omes.KitchenSink.WorkflowState.newBuilder(
-                        (io.temporal.omes.KitchenSink.WorkflowState) variant_)
-                    .mergeFrom(value)
-                    .buildPartial();
+          if (variantCase_ == 10 &&
+              variant_ != io.temporal.omes.KitchenSink.WorkflowState.getDefaultInstance()) {
+            variant_ = io.temporal.omes.KitchenSink.WorkflowState.newBuilder((io.temporal.omes.KitchenSink.WorkflowState) variant_)
+                .mergeFrom(value).buildPartial();
           } else {
             variant_ = value;
           }
@@ -17395,7 +16725,9 @@ public Builder mergeSetWorkflowState(io.temporal.omes.KitchenSink.WorkflowState
         variantCase_ = 10;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.WorkflowState set_workflow_state = 10; */
+      /**
+       * .temporal.omes.kitchen_sink.WorkflowState set_workflow_state = 10;
+       */
       public Builder clearSetWorkflowState() {
         if (setWorkflowStateBuilder_ == null) {
           if (variantCase_ == 10) {
@@ -17412,11 +16744,15 @@ public Builder clearSetWorkflowState() {
         }
         return this;
       }
-      /** .temporal.omes.kitchen_sink.WorkflowState set_workflow_state = 10; */
+      /**
+       * .temporal.omes.kitchen_sink.WorkflowState set_workflow_state = 10;
+       */
       public io.temporal.omes.KitchenSink.WorkflowState.Builder getSetWorkflowStateBuilder() {
         return getSetWorkflowStateFieldBuilder().getBuilder();
       }
-      /** .temporal.omes.kitchen_sink.WorkflowState set_workflow_state = 10; */
+      /**
+       * .temporal.omes.kitchen_sink.WorkflowState set_workflow_state = 10;
+       */
       @java.lang.Override
       public io.temporal.omes.KitchenSink.WorkflowStateOrBuilder getSetWorkflowStateOrBuilder() {
         if ((variantCase_ == 10) && (setWorkflowStateBuilder_ != null)) {
@@ -17428,21 +16764,18 @@ public io.temporal.omes.KitchenSink.WorkflowStateOrBuilder getSetWorkflowStateOr
           return io.temporal.omes.KitchenSink.WorkflowState.getDefaultInstance();
         }
       }
-      /** .temporal.omes.kitchen_sink.WorkflowState set_workflow_state = 10; */
+      /**
+       * .temporal.omes.kitchen_sink.WorkflowState set_workflow_state = 10;
+       */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.WorkflowState,
-              io.temporal.omes.KitchenSink.WorkflowState.Builder,
-              io.temporal.omes.KitchenSink.WorkflowStateOrBuilder>
+          io.temporal.omes.KitchenSink.WorkflowState, io.temporal.omes.KitchenSink.WorkflowState.Builder, io.temporal.omes.KitchenSink.WorkflowStateOrBuilder> 
           getSetWorkflowStateFieldBuilder() {
         if (setWorkflowStateBuilder_ == null) {
           if (!(variantCase_ == 10)) {
             variant_ = io.temporal.omes.KitchenSink.WorkflowState.getDefaultInstance();
           }
-          setWorkflowStateBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.omes.KitchenSink.WorkflowState,
-                  io.temporal.omes.KitchenSink.WorkflowState.Builder,
-                  io.temporal.omes.KitchenSink.WorkflowStateOrBuilder>(
+          setWorkflowStateBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.omes.KitchenSink.WorkflowState, io.temporal.omes.KitchenSink.WorkflowState.Builder, io.temporal.omes.KitchenSink.WorkflowStateOrBuilder>(
                   (io.temporal.omes.KitchenSink.WorkflowState) variant_,
                   getParentForChildren(),
                   isClean());
@@ -17454,13 +16787,9 @@ public io.temporal.omes.KitchenSink.WorkflowStateOrBuilder getSetWorkflowStateOr
       }
 
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.ReturnResultAction,
-              io.temporal.omes.KitchenSink.ReturnResultAction.Builder,
-              io.temporal.omes.KitchenSink.ReturnResultActionOrBuilder>
-          returnResultBuilder_;
+          io.temporal.omes.KitchenSink.ReturnResultAction, io.temporal.omes.KitchenSink.ReturnResultAction.Builder, io.temporal.omes.KitchenSink.ReturnResultActionOrBuilder> returnResultBuilder_;
       /**
        * .temporal.omes.kitchen_sink.ReturnResultAction return_result = 11;
-       *
        * @return Whether the returnResult field is set.
        */
       @java.lang.Override
@@ -17469,7 +16798,6 @@ public boolean hasReturnResult() {
       }
       /**
        * .temporal.omes.kitchen_sink.ReturnResultAction return_result = 11;
-       *
        * @return The returnResult.
        */
       @java.lang.Override
@@ -17486,7 +16814,9 @@ public io.temporal.omes.KitchenSink.ReturnResultAction getReturnResult() {
           return io.temporal.omes.KitchenSink.ReturnResultAction.getDefaultInstance();
         }
       }
-      /** .temporal.omes.kitchen_sink.ReturnResultAction return_result = 11; */
+      /**
+       * .temporal.omes.kitchen_sink.ReturnResultAction return_result = 11;
+       */
       public Builder setReturnResult(io.temporal.omes.KitchenSink.ReturnResultAction value) {
         if (returnResultBuilder_ == null) {
           if (value == null) {
@@ -17500,7 +16830,9 @@ public Builder setReturnResult(io.temporal.omes.KitchenSink.ReturnResultAction v
         variantCase_ = 11;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.ReturnResultAction return_result = 11; */
+      /**
+       * .temporal.omes.kitchen_sink.ReturnResultAction return_result = 11;
+       */
       public Builder setReturnResult(
           io.temporal.omes.KitchenSink.ReturnResultAction.Builder builderForValue) {
         if (returnResultBuilder_ == null) {
@@ -17512,16 +16844,15 @@ public Builder setReturnResult(
         variantCase_ = 11;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.ReturnResultAction return_result = 11; */
+      /**
+       * .temporal.omes.kitchen_sink.ReturnResultAction return_result = 11;
+       */
       public Builder mergeReturnResult(io.temporal.omes.KitchenSink.ReturnResultAction value) {
         if (returnResultBuilder_ == null) {
-          if (variantCase_ == 11
-              && variant_ != io.temporal.omes.KitchenSink.ReturnResultAction.getDefaultInstance()) {
-            variant_ =
-                io.temporal.omes.KitchenSink.ReturnResultAction.newBuilder(
-                        (io.temporal.omes.KitchenSink.ReturnResultAction) variant_)
-                    .mergeFrom(value)
-                    .buildPartial();
+          if (variantCase_ == 11 &&
+              variant_ != io.temporal.omes.KitchenSink.ReturnResultAction.getDefaultInstance()) {
+            variant_ = io.temporal.omes.KitchenSink.ReturnResultAction.newBuilder((io.temporal.omes.KitchenSink.ReturnResultAction) variant_)
+                .mergeFrom(value).buildPartial();
           } else {
             variant_ = value;
           }
@@ -17536,7 +16867,9 @@ public Builder mergeReturnResult(io.temporal.omes.KitchenSink.ReturnResultAction
         variantCase_ = 11;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.ReturnResultAction return_result = 11; */
+      /**
+       * .temporal.omes.kitchen_sink.ReturnResultAction return_result = 11;
+       */
       public Builder clearReturnResult() {
         if (returnResultBuilder_ == null) {
           if (variantCase_ == 11) {
@@ -17553,11 +16886,15 @@ public Builder clearReturnResult() {
         }
         return this;
       }
-      /** .temporal.omes.kitchen_sink.ReturnResultAction return_result = 11; */
+      /**
+       * .temporal.omes.kitchen_sink.ReturnResultAction return_result = 11;
+       */
       public io.temporal.omes.KitchenSink.ReturnResultAction.Builder getReturnResultBuilder() {
         return getReturnResultFieldBuilder().getBuilder();
       }
-      /** .temporal.omes.kitchen_sink.ReturnResultAction return_result = 11; */
+      /**
+       * .temporal.omes.kitchen_sink.ReturnResultAction return_result = 11;
+       */
       @java.lang.Override
       public io.temporal.omes.KitchenSink.ReturnResultActionOrBuilder getReturnResultOrBuilder() {
         if ((variantCase_ == 11) && (returnResultBuilder_ != null)) {
@@ -17569,21 +16906,18 @@ public io.temporal.omes.KitchenSink.ReturnResultActionOrBuilder getReturnResultO
           return io.temporal.omes.KitchenSink.ReturnResultAction.getDefaultInstance();
         }
       }
-      /** .temporal.omes.kitchen_sink.ReturnResultAction return_result = 11; */
+      /**
+       * .temporal.omes.kitchen_sink.ReturnResultAction return_result = 11;
+       */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.ReturnResultAction,
-              io.temporal.omes.KitchenSink.ReturnResultAction.Builder,
-              io.temporal.omes.KitchenSink.ReturnResultActionOrBuilder>
+          io.temporal.omes.KitchenSink.ReturnResultAction, io.temporal.omes.KitchenSink.ReturnResultAction.Builder, io.temporal.omes.KitchenSink.ReturnResultActionOrBuilder> 
           getReturnResultFieldBuilder() {
         if (returnResultBuilder_ == null) {
           if (!(variantCase_ == 11)) {
             variant_ = io.temporal.omes.KitchenSink.ReturnResultAction.getDefaultInstance();
           }
-          returnResultBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.omes.KitchenSink.ReturnResultAction,
-                  io.temporal.omes.KitchenSink.ReturnResultAction.Builder,
-                  io.temporal.omes.KitchenSink.ReturnResultActionOrBuilder>(
+          returnResultBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.omes.KitchenSink.ReturnResultAction, io.temporal.omes.KitchenSink.ReturnResultAction.Builder, io.temporal.omes.KitchenSink.ReturnResultActionOrBuilder>(
                   (io.temporal.omes.KitchenSink.ReturnResultAction) variant_,
                   getParentForChildren(),
                   isClean());
@@ -17595,13 +16929,9 @@ public io.temporal.omes.KitchenSink.ReturnResultActionOrBuilder getReturnResultO
       }
 
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.ReturnErrorAction,
-              io.temporal.omes.KitchenSink.ReturnErrorAction.Builder,
-              io.temporal.omes.KitchenSink.ReturnErrorActionOrBuilder>
-          returnErrorBuilder_;
+          io.temporal.omes.KitchenSink.ReturnErrorAction, io.temporal.omes.KitchenSink.ReturnErrorAction.Builder, io.temporal.omes.KitchenSink.ReturnErrorActionOrBuilder> returnErrorBuilder_;
       /**
        * .temporal.omes.kitchen_sink.ReturnErrorAction return_error = 12;
-       *
        * @return Whether the returnError field is set.
        */
       @java.lang.Override
@@ -17610,7 +16940,6 @@ public boolean hasReturnError() {
       }
       /**
        * .temporal.omes.kitchen_sink.ReturnErrorAction return_error = 12;
-       *
        * @return The returnError.
        */
       @java.lang.Override
@@ -17627,7 +16956,9 @@ public io.temporal.omes.KitchenSink.ReturnErrorAction getReturnError() {
           return io.temporal.omes.KitchenSink.ReturnErrorAction.getDefaultInstance();
         }
       }
-      /** .temporal.omes.kitchen_sink.ReturnErrorAction return_error = 12; */
+      /**
+       * .temporal.omes.kitchen_sink.ReturnErrorAction return_error = 12;
+       */
       public Builder setReturnError(io.temporal.omes.KitchenSink.ReturnErrorAction value) {
         if (returnErrorBuilder_ == null) {
           if (value == null) {
@@ -17641,7 +16972,9 @@ public Builder setReturnError(io.temporal.omes.KitchenSink.ReturnErrorAction val
         variantCase_ = 12;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.ReturnErrorAction return_error = 12; */
+      /**
+       * .temporal.omes.kitchen_sink.ReturnErrorAction return_error = 12;
+       */
       public Builder setReturnError(
           io.temporal.omes.KitchenSink.ReturnErrorAction.Builder builderForValue) {
         if (returnErrorBuilder_ == null) {
@@ -17653,16 +16986,15 @@ public Builder setReturnError(
         variantCase_ = 12;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.ReturnErrorAction return_error = 12; */
+      /**
+       * .temporal.omes.kitchen_sink.ReturnErrorAction return_error = 12;
+       */
       public Builder mergeReturnError(io.temporal.omes.KitchenSink.ReturnErrorAction value) {
         if (returnErrorBuilder_ == null) {
-          if (variantCase_ == 12
-              && variant_ != io.temporal.omes.KitchenSink.ReturnErrorAction.getDefaultInstance()) {
-            variant_ =
-                io.temporal.omes.KitchenSink.ReturnErrorAction.newBuilder(
-                        (io.temporal.omes.KitchenSink.ReturnErrorAction) variant_)
-                    .mergeFrom(value)
-                    .buildPartial();
+          if (variantCase_ == 12 &&
+              variant_ != io.temporal.omes.KitchenSink.ReturnErrorAction.getDefaultInstance()) {
+            variant_ = io.temporal.omes.KitchenSink.ReturnErrorAction.newBuilder((io.temporal.omes.KitchenSink.ReturnErrorAction) variant_)
+                .mergeFrom(value).buildPartial();
           } else {
             variant_ = value;
           }
@@ -17677,7 +17009,9 @@ public Builder mergeReturnError(io.temporal.omes.KitchenSink.ReturnErrorAction v
         variantCase_ = 12;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.ReturnErrorAction return_error = 12; */
+      /**
+       * .temporal.omes.kitchen_sink.ReturnErrorAction return_error = 12;
+       */
       public Builder clearReturnError() {
         if (returnErrorBuilder_ == null) {
           if (variantCase_ == 12) {
@@ -17694,11 +17028,15 @@ public Builder clearReturnError() {
         }
         return this;
       }
-      /** .temporal.omes.kitchen_sink.ReturnErrorAction return_error = 12; */
+      /**
+       * .temporal.omes.kitchen_sink.ReturnErrorAction return_error = 12;
+       */
       public io.temporal.omes.KitchenSink.ReturnErrorAction.Builder getReturnErrorBuilder() {
         return getReturnErrorFieldBuilder().getBuilder();
       }
-      /** .temporal.omes.kitchen_sink.ReturnErrorAction return_error = 12; */
+      /**
+       * .temporal.omes.kitchen_sink.ReturnErrorAction return_error = 12;
+       */
       @java.lang.Override
       public io.temporal.omes.KitchenSink.ReturnErrorActionOrBuilder getReturnErrorOrBuilder() {
         if ((variantCase_ == 12) && (returnErrorBuilder_ != null)) {
@@ -17710,21 +17048,18 @@ public io.temporal.omes.KitchenSink.ReturnErrorActionOrBuilder getReturnErrorOrB
           return io.temporal.omes.KitchenSink.ReturnErrorAction.getDefaultInstance();
         }
       }
-      /** .temporal.omes.kitchen_sink.ReturnErrorAction return_error = 12; */
+      /**
+       * .temporal.omes.kitchen_sink.ReturnErrorAction return_error = 12;
+       */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.ReturnErrorAction,
-              io.temporal.omes.KitchenSink.ReturnErrorAction.Builder,
-              io.temporal.omes.KitchenSink.ReturnErrorActionOrBuilder>
+          io.temporal.omes.KitchenSink.ReturnErrorAction, io.temporal.omes.KitchenSink.ReturnErrorAction.Builder, io.temporal.omes.KitchenSink.ReturnErrorActionOrBuilder> 
           getReturnErrorFieldBuilder() {
         if (returnErrorBuilder_ == null) {
           if (!(variantCase_ == 12)) {
             variant_ = io.temporal.omes.KitchenSink.ReturnErrorAction.getDefaultInstance();
           }
-          returnErrorBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.omes.KitchenSink.ReturnErrorAction,
-                  io.temporal.omes.KitchenSink.ReturnErrorAction.Builder,
-                  io.temporal.omes.KitchenSink.ReturnErrorActionOrBuilder>(
+          returnErrorBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.omes.KitchenSink.ReturnErrorAction, io.temporal.omes.KitchenSink.ReturnErrorAction.Builder, io.temporal.omes.KitchenSink.ReturnErrorActionOrBuilder>(
                   (io.temporal.omes.KitchenSink.ReturnErrorAction) variant_,
                   getParentForChildren(),
                   isClean());
@@ -17736,13 +17071,9 @@ public io.temporal.omes.KitchenSink.ReturnErrorActionOrBuilder getReturnErrorOrB
       }
 
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.ContinueAsNewAction,
-              io.temporal.omes.KitchenSink.ContinueAsNewAction.Builder,
-              io.temporal.omes.KitchenSink.ContinueAsNewActionOrBuilder>
-          continueAsNewBuilder_;
+          io.temporal.omes.KitchenSink.ContinueAsNewAction, io.temporal.omes.KitchenSink.ContinueAsNewAction.Builder, io.temporal.omes.KitchenSink.ContinueAsNewActionOrBuilder> continueAsNewBuilder_;
       /**
        * .temporal.omes.kitchen_sink.ContinueAsNewAction continue_as_new = 13;
-       *
        * @return Whether the continueAsNew field is set.
        */
       @java.lang.Override
@@ -17751,7 +17082,6 @@ public boolean hasContinueAsNew() {
       }
       /**
        * .temporal.omes.kitchen_sink.ContinueAsNewAction continue_as_new = 13;
-       *
        * @return The continueAsNew.
        */
       @java.lang.Override
@@ -17768,7 +17098,9 @@ public io.temporal.omes.KitchenSink.ContinueAsNewAction getContinueAsNew() {
           return io.temporal.omes.KitchenSink.ContinueAsNewAction.getDefaultInstance();
         }
       }
-      /** .temporal.omes.kitchen_sink.ContinueAsNewAction continue_as_new = 13; */
+      /**
+       * .temporal.omes.kitchen_sink.ContinueAsNewAction continue_as_new = 13;
+       */
       public Builder setContinueAsNew(io.temporal.omes.KitchenSink.ContinueAsNewAction value) {
         if (continueAsNewBuilder_ == null) {
           if (value == null) {
@@ -17782,7 +17114,9 @@ public Builder setContinueAsNew(io.temporal.omes.KitchenSink.ContinueAsNewAction
         variantCase_ = 13;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.ContinueAsNewAction continue_as_new = 13; */
+      /**
+       * .temporal.omes.kitchen_sink.ContinueAsNewAction continue_as_new = 13;
+       */
       public Builder setContinueAsNew(
           io.temporal.omes.KitchenSink.ContinueAsNewAction.Builder builderForValue) {
         if (continueAsNewBuilder_ == null) {
@@ -17794,17 +17128,15 @@ public Builder setContinueAsNew(
         variantCase_ = 13;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.ContinueAsNewAction continue_as_new = 13; */
+      /**
+       * .temporal.omes.kitchen_sink.ContinueAsNewAction continue_as_new = 13;
+       */
       public Builder mergeContinueAsNew(io.temporal.omes.KitchenSink.ContinueAsNewAction value) {
         if (continueAsNewBuilder_ == null) {
-          if (variantCase_ == 13
-              && variant_
-                  != io.temporal.omes.KitchenSink.ContinueAsNewAction.getDefaultInstance()) {
-            variant_ =
-                io.temporal.omes.KitchenSink.ContinueAsNewAction.newBuilder(
-                        (io.temporal.omes.KitchenSink.ContinueAsNewAction) variant_)
-                    .mergeFrom(value)
-                    .buildPartial();
+          if (variantCase_ == 13 &&
+              variant_ != io.temporal.omes.KitchenSink.ContinueAsNewAction.getDefaultInstance()) {
+            variant_ = io.temporal.omes.KitchenSink.ContinueAsNewAction.newBuilder((io.temporal.omes.KitchenSink.ContinueAsNewAction) variant_)
+                .mergeFrom(value).buildPartial();
           } else {
             variant_ = value;
           }
@@ -17819,7 +17151,9 @@ public Builder mergeContinueAsNew(io.temporal.omes.KitchenSink.ContinueAsNewActi
         variantCase_ = 13;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.ContinueAsNewAction continue_as_new = 13; */
+      /**
+       * .temporal.omes.kitchen_sink.ContinueAsNewAction continue_as_new = 13;
+       */
       public Builder clearContinueAsNew() {
         if (continueAsNewBuilder_ == null) {
           if (variantCase_ == 13) {
@@ -17836,11 +17170,15 @@ public Builder clearContinueAsNew() {
         }
         return this;
       }
-      /** .temporal.omes.kitchen_sink.ContinueAsNewAction continue_as_new = 13; */
+      /**
+       * .temporal.omes.kitchen_sink.ContinueAsNewAction continue_as_new = 13;
+       */
       public io.temporal.omes.KitchenSink.ContinueAsNewAction.Builder getContinueAsNewBuilder() {
         return getContinueAsNewFieldBuilder().getBuilder();
       }
-      /** .temporal.omes.kitchen_sink.ContinueAsNewAction continue_as_new = 13; */
+      /**
+       * .temporal.omes.kitchen_sink.ContinueAsNewAction continue_as_new = 13;
+       */
       @java.lang.Override
       public io.temporal.omes.KitchenSink.ContinueAsNewActionOrBuilder getContinueAsNewOrBuilder() {
         if ((variantCase_ == 13) && (continueAsNewBuilder_ != null)) {
@@ -17852,21 +17190,18 @@ public io.temporal.omes.KitchenSink.ContinueAsNewActionOrBuilder getContinueAsNe
           return io.temporal.omes.KitchenSink.ContinueAsNewAction.getDefaultInstance();
         }
       }
-      /** .temporal.omes.kitchen_sink.ContinueAsNewAction continue_as_new = 13; */
+      /**
+       * .temporal.omes.kitchen_sink.ContinueAsNewAction continue_as_new = 13;
+       */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.ContinueAsNewAction,
-              io.temporal.omes.KitchenSink.ContinueAsNewAction.Builder,
-              io.temporal.omes.KitchenSink.ContinueAsNewActionOrBuilder>
+          io.temporal.omes.KitchenSink.ContinueAsNewAction, io.temporal.omes.KitchenSink.ContinueAsNewAction.Builder, io.temporal.omes.KitchenSink.ContinueAsNewActionOrBuilder> 
           getContinueAsNewFieldBuilder() {
         if (continueAsNewBuilder_ == null) {
           if (!(variantCase_ == 13)) {
             variant_ = io.temporal.omes.KitchenSink.ContinueAsNewAction.getDefaultInstance();
           }
-          continueAsNewBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.omes.KitchenSink.ContinueAsNewAction,
-                  io.temporal.omes.KitchenSink.ContinueAsNewAction.Builder,
-                  io.temporal.omes.KitchenSink.ContinueAsNewActionOrBuilder>(
+          continueAsNewBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.omes.KitchenSink.ContinueAsNewAction, io.temporal.omes.KitchenSink.ContinueAsNewAction.Builder, io.temporal.omes.KitchenSink.ContinueAsNewActionOrBuilder>(
                   (io.temporal.omes.KitchenSink.ContinueAsNewAction) variant_,
                   getParentForChildren(),
                   isClean());
@@ -17878,13 +17213,9 @@ public io.temporal.omes.KitchenSink.ContinueAsNewActionOrBuilder getContinueAsNe
       }
 
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.ActionSet,
-              io.temporal.omes.KitchenSink.ActionSet.Builder,
-              io.temporal.omes.KitchenSink.ActionSetOrBuilder>
-          nestedActionSetBuilder_;
+          io.temporal.omes.KitchenSink.ActionSet, io.temporal.omes.KitchenSink.ActionSet.Builder, io.temporal.omes.KitchenSink.ActionSetOrBuilder> nestedActionSetBuilder_;
       /**
        * .temporal.omes.kitchen_sink.ActionSet nested_action_set = 14;
-       *
        * @return Whether the nestedActionSet field is set.
        */
       @java.lang.Override
@@ -17893,7 +17224,6 @@ public boolean hasNestedActionSet() {
       }
       /**
        * .temporal.omes.kitchen_sink.ActionSet nested_action_set = 14;
-       *
        * @return The nestedActionSet.
        */
       @java.lang.Override
@@ -17910,7 +17240,9 @@ public io.temporal.omes.KitchenSink.ActionSet getNestedActionSet() {
           return io.temporal.omes.KitchenSink.ActionSet.getDefaultInstance();
         }
       }
-      /** .temporal.omes.kitchen_sink.ActionSet nested_action_set = 14; */
+      /**
+       * .temporal.omes.kitchen_sink.ActionSet nested_action_set = 14;
+       */
       public Builder setNestedActionSet(io.temporal.omes.KitchenSink.ActionSet value) {
         if (nestedActionSetBuilder_ == null) {
           if (value == null) {
@@ -17924,7 +17256,9 @@ public Builder setNestedActionSet(io.temporal.omes.KitchenSink.ActionSet value)
         variantCase_ = 14;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.ActionSet nested_action_set = 14; */
+      /**
+       * .temporal.omes.kitchen_sink.ActionSet nested_action_set = 14;
+       */
       public Builder setNestedActionSet(
           io.temporal.omes.KitchenSink.ActionSet.Builder builderForValue) {
         if (nestedActionSetBuilder_ == null) {
@@ -17936,16 +17270,15 @@ public Builder setNestedActionSet(
         variantCase_ = 14;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.ActionSet nested_action_set = 14; */
+      /**
+       * .temporal.omes.kitchen_sink.ActionSet nested_action_set = 14;
+       */
       public Builder mergeNestedActionSet(io.temporal.omes.KitchenSink.ActionSet value) {
         if (nestedActionSetBuilder_ == null) {
-          if (variantCase_ == 14
-              && variant_ != io.temporal.omes.KitchenSink.ActionSet.getDefaultInstance()) {
-            variant_ =
-                io.temporal.omes.KitchenSink.ActionSet.newBuilder(
-                        (io.temporal.omes.KitchenSink.ActionSet) variant_)
-                    .mergeFrom(value)
-                    .buildPartial();
+          if (variantCase_ == 14 &&
+              variant_ != io.temporal.omes.KitchenSink.ActionSet.getDefaultInstance()) {
+            variant_ = io.temporal.omes.KitchenSink.ActionSet.newBuilder((io.temporal.omes.KitchenSink.ActionSet) variant_)
+                .mergeFrom(value).buildPartial();
           } else {
             variant_ = value;
           }
@@ -17960,7 +17293,9 @@ public Builder mergeNestedActionSet(io.temporal.omes.KitchenSink.ActionSet value
         variantCase_ = 14;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.ActionSet nested_action_set = 14; */
+      /**
+       * .temporal.omes.kitchen_sink.ActionSet nested_action_set = 14;
+       */
       public Builder clearNestedActionSet() {
         if (nestedActionSetBuilder_ == null) {
           if (variantCase_ == 14) {
@@ -17977,11 +17312,15 @@ public Builder clearNestedActionSet() {
         }
         return this;
       }
-      /** .temporal.omes.kitchen_sink.ActionSet nested_action_set = 14; */
+      /**
+       * .temporal.omes.kitchen_sink.ActionSet nested_action_set = 14;
+       */
       public io.temporal.omes.KitchenSink.ActionSet.Builder getNestedActionSetBuilder() {
         return getNestedActionSetFieldBuilder().getBuilder();
       }
-      /** .temporal.omes.kitchen_sink.ActionSet nested_action_set = 14; */
+      /**
+       * .temporal.omes.kitchen_sink.ActionSet nested_action_set = 14;
+       */
       @java.lang.Override
       public io.temporal.omes.KitchenSink.ActionSetOrBuilder getNestedActionSetOrBuilder() {
         if ((variantCase_ == 14) && (nestedActionSetBuilder_ != null)) {
@@ -17993,21 +17332,18 @@ public io.temporal.omes.KitchenSink.ActionSetOrBuilder getNestedActionSetOrBuild
           return io.temporal.omes.KitchenSink.ActionSet.getDefaultInstance();
         }
       }
-      /** .temporal.omes.kitchen_sink.ActionSet nested_action_set = 14; */
+      /**
+       * .temporal.omes.kitchen_sink.ActionSet nested_action_set = 14;
+       */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.ActionSet,
-              io.temporal.omes.KitchenSink.ActionSet.Builder,
-              io.temporal.omes.KitchenSink.ActionSetOrBuilder>
+          io.temporal.omes.KitchenSink.ActionSet, io.temporal.omes.KitchenSink.ActionSet.Builder, io.temporal.omes.KitchenSink.ActionSetOrBuilder> 
           getNestedActionSetFieldBuilder() {
         if (nestedActionSetBuilder_ == null) {
           if (!(variantCase_ == 14)) {
             variant_ = io.temporal.omes.KitchenSink.ActionSet.getDefaultInstance();
           }
-          nestedActionSetBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.omes.KitchenSink.ActionSet,
-                  io.temporal.omes.KitchenSink.ActionSet.Builder,
-                  io.temporal.omes.KitchenSink.ActionSetOrBuilder>(
+          nestedActionSetBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.omes.KitchenSink.ActionSet, io.temporal.omes.KitchenSink.ActionSet.Builder, io.temporal.omes.KitchenSink.ActionSetOrBuilder>(
                   (io.temporal.omes.KitchenSink.ActionSet) variant_,
                   getParentForChildren(),
                   isClean());
@@ -18017,7 +17353,6 @@ public io.temporal.omes.KitchenSink.ActionSetOrBuilder getNestedActionSetOrBuild
         onChanged();
         return nestedActionSetBuilder_;
       }
-
       @java.lang.Override
       public final Builder setUnknownFields(
           final com.google.protobuf.UnknownFieldSet unknownFields) {
@@ -18030,12 +17365,12 @@ public final Builder mergeUnknownFields(
         return super.mergeUnknownFields(unknownFields);
       }
 
+
       // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.Action)
     }
 
     // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.Action)
     private static final io.temporal.omes.KitchenSink.Action DEFAULT_INSTANCE;
-
     static {
       DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.Action();
     }
@@ -18044,28 +17379,27 @@ public static io.temporal.omes.KitchenSink.Action getDefaultInstance() {
       return DEFAULT_INSTANCE;
     }
 
-    private static final com.google.protobuf.Parser PARSER =
-        new com.google.protobuf.AbstractParser() {
-          @java.lang.Override
-          public Action parsePartialFrom(
-              com.google.protobuf.CodedInputStream input,
-              com.google.protobuf.ExtensionRegistryLite extensionRegistry)
-              throws com.google.protobuf.InvalidProtocolBufferException {
-            Builder builder = newBuilder();
-            try {
-              builder.mergeFrom(input, extensionRegistry);
-            } catch (com.google.protobuf.InvalidProtocolBufferException e) {
-              throw e.setUnfinishedMessage(builder.buildPartial());
-            } catch (com.google.protobuf.UninitializedMessageException e) {
-              throw e.asInvalidProtocolBufferException()
-                  .setUnfinishedMessage(builder.buildPartial());
-            } catch (java.io.IOException e) {
-              throw new com.google.protobuf.InvalidProtocolBufferException(e)
-                  .setUnfinishedMessage(builder.buildPartial());
-            }
-            return builder.buildPartial();
-          }
-        };
+    private static final com.google.protobuf.Parser
+        PARSER = new com.google.protobuf.AbstractParser() {
+      @java.lang.Override
+      public Action parsePartialFrom(
+          com.google.protobuf.CodedInputStream input,
+          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+          throws com.google.protobuf.InvalidProtocolBufferException {
+        Builder builder = newBuilder();
+        try {
+          builder.mergeFrom(input, extensionRegistry);
+        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
+          throw e.setUnfinishedMessage(builder.buildPartial());
+        } catch (com.google.protobuf.UninitializedMessageException e) {
+          throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
+        } catch (java.io.IOException e) {
+          throw new com.google.protobuf.InvalidProtocolBufferException(e)
+              .setUnfinishedMessage(builder.buildPartial());
+        }
+        return builder.buildPartial();
+      }
+    };
 
     public static com.google.protobuf.Parser parser() {
       return PARSER;
@@ -18080,40 +17414,32 @@ public com.google.protobuf.Parser getParserForType() {
     public io.temporal.omes.KitchenSink.Action getDefaultInstanceForType() {
       return DEFAULT_INSTANCE;
     }
+
   }
 
-  public interface AwaitableChoiceOrBuilder
-      extends
+  public interface AwaitableChoiceOrBuilder extends
       // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.AwaitableChoice)
       com.google.protobuf.MessageOrBuilder {
 
     /**
-     *
-     *
      * 
      * Wait for the command to finish. This is the default.
      * 
* * .google.protobuf.Empty wait_finish = 1; - * * @return Whether the waitFinish field is set. */ boolean hasWaitFinish(); /** - * - * *
      * Wait for the command to finish. This is the default.
      * 
* * .google.protobuf.Empty wait_finish = 1; - * * @return The waitFinish. */ com.google.protobuf.Empty getWaitFinish(); /** - * - * *
      * Wait for the command to finish. This is the default.
      * 
@@ -18123,32 +17449,24 @@ public interface AwaitableChoiceOrBuilder com.google.protobuf.EmptyOrBuilder getWaitFinishOrBuilder(); /** - * - * *
      * Call the command API but immediately move on. IE: Don't await on it at all.
      * 
* * .google.protobuf.Empty abandon = 2; - * * @return Whether the abandon field is set. */ boolean hasAbandon(); /** - * - * *
      * Call the command API but immediately move on. IE: Don't await on it at all.
      * 
* * .google.protobuf.Empty abandon = 2; - * * @return The abandon. */ com.google.protobuf.Empty getAbandon(); /** - * - * *
      * Call the command API but immediately move on. IE: Don't await on it at all.
      * 
@@ -18158,34 +17476,26 @@ public interface AwaitableChoiceOrBuilder com.google.protobuf.EmptyOrBuilder getAbandonOrBuilder(); /** - * - * *
      * Cancel the command before it's begun - IE: Cancel it immediately after starting it with
      * no await, within the same workflow task.
      * 
* * .google.protobuf.Empty cancel_before_started = 3; - * * @return Whether the cancelBeforeStarted field is set. */ boolean hasCancelBeforeStarted(); /** - * - * *
      * Cancel the command before it's begun - IE: Cancel it immediately after starting it with
      * no await, within the same workflow task.
      * 
* * .google.protobuf.Empty cancel_before_started = 3; - * * @return The cancelBeforeStarted. */ com.google.protobuf.Empty getCancelBeforeStarted(); /** - * - * *
      * Cancel the command before it's begun - IE: Cancel it immediately after starting it with
      * no await, within the same workflow task.
@@ -18196,8 +17506,6 @@ public interface AwaitableChoiceOrBuilder
     com.google.protobuf.EmptyOrBuilder getCancelBeforeStartedOrBuilder();
 
     /**
-     *
-     *
      * 
      * Cancel the command after it's been started. Not all SDKs will know when a command is started
      * and in those cases they should issue the cancellation in the next workflow task after
@@ -18205,13 +17513,10 @@ public interface AwaitableChoiceOrBuilder
      * 
* * .google.protobuf.Empty cancel_after_started = 4; - * * @return Whether the cancelAfterStarted field is set. */ boolean hasCancelAfterStarted(); /** - * - * *
      * Cancel the command after it's been started. Not all SDKs will know when a command is started
      * and in those cases they should issue the cancellation in the next workflow task after
@@ -18219,13 +17524,10 @@ public interface AwaitableChoiceOrBuilder
      * 
* * .google.protobuf.Empty cancel_after_started = 4; - * * @return The cancelAfterStarted. */ com.google.protobuf.Empty getCancelAfterStarted(); /** - * - * *
      * Cancel the command after it's been started. Not all SDKs will know when a command is started
      * and in those cases they should issue the cancellation in the next workflow task after
@@ -18237,32 +17539,24 @@ public interface AwaitableChoiceOrBuilder
     com.google.protobuf.EmptyOrBuilder getCancelAfterStartedOrBuilder();
 
     /**
-     *
-     *
      * 
      * Cancel the command after it's already completed.
      * 
* * .google.protobuf.Empty cancel_after_completed = 5; - * * @return Whether the cancelAfterCompleted field is set. */ boolean hasCancelAfterCompleted(); /** - * - * *
      * Cancel the command after it's already completed.
      * 
* * .google.protobuf.Empty cancel_after_completed = 5; - * * @return The cancelAfterCompleted. */ com.google.protobuf.Empty getCancelAfterCompleted(); /** - * - * *
      * Cancel the command after it's already completed.
      * 
@@ -18274,8 +17568,6 @@ public interface AwaitableChoiceOrBuilder io.temporal.omes.KitchenSink.AwaitableChoice.ConditionCase getConditionCase(); } /** - * - * *
    * All await commands will have this available as a field. If it is set, the command
    * should be either awaited upon, cancelled, or abandoned at the specified juncture (if possible,
@@ -18285,47 +17577,43 @@ public interface AwaitableChoiceOrBuilder
    *
    * Protobuf type {@code temporal.omes.kitchen_sink.AwaitableChoice}
    */
-  public static final class AwaitableChoice extends com.google.protobuf.GeneratedMessageV3
-      implements
+  public static final class AwaitableChoice extends
+      com.google.protobuf.GeneratedMessageV3 implements
       // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.AwaitableChoice)
       AwaitableChoiceOrBuilder {
-    private static final long serialVersionUID = 0L;
+  private static final long serialVersionUID = 0L;
     // Use AwaitableChoice.newBuilder() to construct.
     private AwaitableChoice(com.google.protobuf.GeneratedMessageV3.Builder builder) {
       super(builder);
     }
-
-    private AwaitableChoice() {}
+    private AwaitableChoice() {
+    }
 
     @java.lang.Override
     @SuppressWarnings({"unused"})
-    protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
+    protected java.lang.Object newInstance(
+        UnusedPrivateParameter unused) {
       return new AwaitableChoice();
     }
 
-    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
-      return io.temporal.omes.KitchenSink
-          .internal_static_temporal_omes_kitchen_sink_AwaitableChoice_descriptor;
+    public static final com.google.protobuf.Descriptors.Descriptor
+        getDescriptor() {
+      return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_AwaitableChoice_descriptor;
     }
 
     @java.lang.Override
     protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
         internalGetFieldAccessorTable() {
-      return io.temporal.omes.KitchenSink
-          .internal_static_temporal_omes_kitchen_sink_AwaitableChoice_fieldAccessorTable
+      return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_AwaitableChoice_fieldAccessorTable
           .ensureFieldAccessorsInitialized(
-              io.temporal.omes.KitchenSink.AwaitableChoice.class,
-              io.temporal.omes.KitchenSink.AwaitableChoice.Builder.class);
+              io.temporal.omes.KitchenSink.AwaitableChoice.class, io.temporal.omes.KitchenSink.AwaitableChoice.Builder.class);
     }
 
     private int conditionCase_ = 0;
-
     @SuppressWarnings("serial")
     private java.lang.Object condition_;
-
     public enum ConditionCase
-        implements
-            com.google.protobuf.Internal.EnumLite,
+        implements com.google.protobuf.Internal.EnumLite,
             com.google.protobuf.AbstractMessage.InternalOneOfEnum {
       WAIT_FINISH(1),
       ABANDON(2),
@@ -18334,7 +17622,6 @@ public enum ConditionCase
       CANCEL_AFTER_COMPLETED(5),
       CONDITION_NOT_SET(0);
       private final int value;
-
       private ConditionCase(int value) {
         this.value = value;
       }
@@ -18350,42 +17637,33 @@ public static ConditionCase valueOf(int value) {
 
       public static ConditionCase forNumber(int value) {
         switch (value) {
-          case 1:
-            return WAIT_FINISH;
-          case 2:
-            return ABANDON;
-          case 3:
-            return CANCEL_BEFORE_STARTED;
-          case 4:
-            return CANCEL_AFTER_STARTED;
-          case 5:
-            return CANCEL_AFTER_COMPLETED;
-          case 0:
-            return CONDITION_NOT_SET;
-          default:
-            return null;
+          case 1: return WAIT_FINISH;
+          case 2: return ABANDON;
+          case 3: return CANCEL_BEFORE_STARTED;
+          case 4: return CANCEL_AFTER_STARTED;
+          case 5: return CANCEL_AFTER_COMPLETED;
+          case 0: return CONDITION_NOT_SET;
+          default: return null;
         }
       }
-
       public int getNumber() {
         return this.value;
       }
     };
 
-    public ConditionCase getConditionCase() {
-      return ConditionCase.forNumber(conditionCase_);
+    public ConditionCase
+    getConditionCase() {
+      return ConditionCase.forNumber(
+          conditionCase_);
     }
 
     public static final int WAIT_FINISH_FIELD_NUMBER = 1;
     /**
-     *
-     *
      * 
      * Wait for the command to finish. This is the default.
      * 
* * .google.protobuf.Empty wait_finish = 1; - * * @return Whether the waitFinish field is set. */ @java.lang.Override @@ -18393,26 +17671,21 @@ public boolean hasWaitFinish() { return conditionCase_ == 1; } /** - * - * *
      * Wait for the command to finish. This is the default.
      * 
* * .google.protobuf.Empty wait_finish = 1; - * * @return The waitFinish. */ @java.lang.Override public com.google.protobuf.Empty getWaitFinish() { if (conditionCase_ == 1) { - return (com.google.protobuf.Empty) condition_; + return (com.google.protobuf.Empty) condition_; } return com.google.protobuf.Empty.getDefaultInstance(); } /** - * - * *
      * Wait for the command to finish. This is the default.
      * 
@@ -18422,21 +17695,18 @@ public com.google.protobuf.Empty getWaitFinish() { @java.lang.Override public com.google.protobuf.EmptyOrBuilder getWaitFinishOrBuilder() { if (conditionCase_ == 1) { - return (com.google.protobuf.Empty) condition_; + return (com.google.protobuf.Empty) condition_; } return com.google.protobuf.Empty.getDefaultInstance(); } public static final int ABANDON_FIELD_NUMBER = 2; /** - * - * *
      * Call the command API but immediately move on. IE: Don't await on it at all.
      * 
* * .google.protobuf.Empty abandon = 2; - * * @return Whether the abandon field is set. */ @java.lang.Override @@ -18444,26 +17714,21 @@ public boolean hasAbandon() { return conditionCase_ == 2; } /** - * - * *
      * Call the command API but immediately move on. IE: Don't await on it at all.
      * 
* * .google.protobuf.Empty abandon = 2; - * * @return The abandon. */ @java.lang.Override public com.google.protobuf.Empty getAbandon() { if (conditionCase_ == 2) { - return (com.google.protobuf.Empty) condition_; + return (com.google.protobuf.Empty) condition_; } return com.google.protobuf.Empty.getDefaultInstance(); } /** - * - * *
      * Call the command API but immediately move on. IE: Don't await on it at all.
      * 
@@ -18473,22 +17738,19 @@ public com.google.protobuf.Empty getAbandon() { @java.lang.Override public com.google.protobuf.EmptyOrBuilder getAbandonOrBuilder() { if (conditionCase_ == 2) { - return (com.google.protobuf.Empty) condition_; + return (com.google.protobuf.Empty) condition_; } return com.google.protobuf.Empty.getDefaultInstance(); } public static final int CANCEL_BEFORE_STARTED_FIELD_NUMBER = 3; /** - * - * *
      * Cancel the command before it's begun - IE: Cancel it immediately after starting it with
      * no await, within the same workflow task.
      * 
* * .google.protobuf.Empty cancel_before_started = 3; - * * @return Whether the cancelBeforeStarted field is set. */ @java.lang.Override @@ -18496,27 +17758,22 @@ public boolean hasCancelBeforeStarted() { return conditionCase_ == 3; } /** - * - * *
      * Cancel the command before it's begun - IE: Cancel it immediately after starting it with
      * no await, within the same workflow task.
      * 
* * .google.protobuf.Empty cancel_before_started = 3; - * * @return The cancelBeforeStarted. */ @java.lang.Override public com.google.protobuf.Empty getCancelBeforeStarted() { if (conditionCase_ == 3) { - return (com.google.protobuf.Empty) condition_; + return (com.google.protobuf.Empty) condition_; } return com.google.protobuf.Empty.getDefaultInstance(); } /** - * - * *
      * Cancel the command before it's begun - IE: Cancel it immediately after starting it with
      * no await, within the same workflow task.
@@ -18527,15 +17784,13 @@ public com.google.protobuf.Empty getCancelBeforeStarted() {
     @java.lang.Override
     public com.google.protobuf.EmptyOrBuilder getCancelBeforeStartedOrBuilder() {
       if (conditionCase_ == 3) {
-        return (com.google.protobuf.Empty) condition_;
+         return (com.google.protobuf.Empty) condition_;
       }
       return com.google.protobuf.Empty.getDefaultInstance();
     }
 
     public static final int CANCEL_AFTER_STARTED_FIELD_NUMBER = 4;
     /**
-     *
-     *
      * 
      * Cancel the command after it's been started. Not all SDKs will know when a command is started
      * and in those cases they should issue the cancellation in the next workflow task after
@@ -18543,7 +17798,6 @@ public com.google.protobuf.EmptyOrBuilder getCancelBeforeStartedOrBuilder() {
      * 
* * .google.protobuf.Empty cancel_after_started = 4; - * * @return Whether the cancelAfterStarted field is set. */ @java.lang.Override @@ -18551,8 +17805,6 @@ public boolean hasCancelAfterStarted() { return conditionCase_ == 4; } /** - * - * *
      * Cancel the command after it's been started. Not all SDKs will know when a command is started
      * and in those cases they should issue the cancellation in the next workflow task after
@@ -18560,19 +17812,16 @@ public boolean hasCancelAfterStarted() {
      * 
* * .google.protobuf.Empty cancel_after_started = 4; - * * @return The cancelAfterStarted. */ @java.lang.Override public com.google.protobuf.Empty getCancelAfterStarted() { if (conditionCase_ == 4) { - return (com.google.protobuf.Empty) condition_; + return (com.google.protobuf.Empty) condition_; } return com.google.protobuf.Empty.getDefaultInstance(); } /** - * - * *
      * Cancel the command after it's been started. Not all SDKs will know when a command is started
      * and in those cases they should issue the cancellation in the next workflow task after
@@ -18584,21 +17833,18 @@ public com.google.protobuf.Empty getCancelAfterStarted() {
     @java.lang.Override
     public com.google.protobuf.EmptyOrBuilder getCancelAfterStartedOrBuilder() {
       if (conditionCase_ == 4) {
-        return (com.google.protobuf.Empty) condition_;
+         return (com.google.protobuf.Empty) condition_;
       }
       return com.google.protobuf.Empty.getDefaultInstance();
     }
 
     public static final int CANCEL_AFTER_COMPLETED_FIELD_NUMBER = 5;
     /**
-     *
-     *
      * 
      * Cancel the command after it's already completed.
      * 
* * .google.protobuf.Empty cancel_after_completed = 5; - * * @return Whether the cancelAfterCompleted field is set. */ @java.lang.Override @@ -18606,26 +17852,21 @@ public boolean hasCancelAfterCompleted() { return conditionCase_ == 5; } /** - * - * *
      * Cancel the command after it's already completed.
      * 
* * .google.protobuf.Empty cancel_after_completed = 5; - * * @return The cancelAfterCompleted. */ @java.lang.Override public com.google.protobuf.Empty getCancelAfterCompleted() { if (conditionCase_ == 5) { - return (com.google.protobuf.Empty) condition_; + return (com.google.protobuf.Empty) condition_; } return com.google.protobuf.Empty.getDefaultInstance(); } /** - * - * *
      * Cancel the command after it's already completed.
      * 
@@ -18635,13 +17876,12 @@ public com.google.protobuf.Empty getCancelAfterCompleted() { @java.lang.Override public com.google.protobuf.EmptyOrBuilder getCancelAfterCompletedOrBuilder() { if (conditionCase_ == 5) { - return (com.google.protobuf.Empty) condition_; + return (com.google.protobuf.Empty) condition_; } return com.google.protobuf.Empty.getDefaultInstance(); } private byte memoizedIsInitialized = -1; - @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; @@ -18653,7 +17893,8 @@ public final boolean isInitialized() { } @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { if (conditionCase_ == 1) { output.writeMessage(1, (com.google.protobuf.Empty) condition_); } @@ -18679,29 +17920,24 @@ public int getSerializedSize() { size = 0; if (conditionCase_ == 1) { - size += - com.google.protobuf.CodedOutputStream.computeMessageSize( - 1, (com.google.protobuf.Empty) condition_); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, (com.google.protobuf.Empty) condition_); } if (conditionCase_ == 2) { - size += - com.google.protobuf.CodedOutputStream.computeMessageSize( - 2, (com.google.protobuf.Empty) condition_); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(2, (com.google.protobuf.Empty) condition_); } if (conditionCase_ == 3) { - size += - com.google.protobuf.CodedOutputStream.computeMessageSize( - 3, (com.google.protobuf.Empty) condition_); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(3, (com.google.protobuf.Empty) condition_); } if (conditionCase_ == 4) { - size += - com.google.protobuf.CodedOutputStream.computeMessageSize( - 4, (com.google.protobuf.Empty) condition_); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(4, (com.google.protobuf.Empty) condition_); } if (conditionCase_ == 5) { - size += - com.google.protobuf.CodedOutputStream.computeMessageSize( - 5, (com.google.protobuf.Empty) condition_); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(5, (com.google.protobuf.Empty) condition_); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; @@ -18711,30 +17947,34 @@ public int getSerializedSize() { @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { - return true; + return true; } if (!(obj instanceof io.temporal.omes.KitchenSink.AwaitableChoice)) { return super.equals(obj); } - io.temporal.omes.KitchenSink.AwaitableChoice other = - (io.temporal.omes.KitchenSink.AwaitableChoice) obj; + io.temporal.omes.KitchenSink.AwaitableChoice other = (io.temporal.omes.KitchenSink.AwaitableChoice) obj; if (!getConditionCase().equals(other.getConditionCase())) return false; switch (conditionCase_) { case 1: - if (!getWaitFinish().equals(other.getWaitFinish())) return false; + if (!getWaitFinish() + .equals(other.getWaitFinish())) return false; break; case 2: - if (!getAbandon().equals(other.getAbandon())) return false; + if (!getAbandon() + .equals(other.getAbandon())) return false; break; case 3: - if (!getCancelBeforeStarted().equals(other.getCancelBeforeStarted())) return false; + if (!getCancelBeforeStarted() + .equals(other.getCancelBeforeStarted())) return false; break; case 4: - if (!getCancelAfterStarted().equals(other.getCancelAfterStarted())) return false; + if (!getCancelAfterStarted() + .equals(other.getCancelAfterStarted())) return false; break; case 5: - if (!getCancelAfterCompleted().equals(other.getCancelAfterCompleted())) return false; + if (!getCancelAfterCompleted() + .equals(other.getCancelAfterCompleted())) return false; break; case 0: default: @@ -18779,94 +18019,90 @@ public int hashCode() { return hash; } - public static io.temporal.omes.KitchenSink.AwaitableChoice parseFrom(java.nio.ByteBuffer data) + public static io.temporal.omes.KitchenSink.AwaitableChoice parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.AwaitableChoice parseFrom( - java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.AwaitableChoice parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.AwaitableChoice parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.AwaitableChoice parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.AwaitableChoice parseFrom( - byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.AwaitableChoice parseFrom(java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.AwaitableChoice parseFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.AwaitableChoice parseDelimitedFrom( - java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + public static io.temporal.omes.KitchenSink.AwaitableChoice parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); } public static io.temporal.omes.KitchenSink.AwaitableChoice parseDelimitedFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.AwaitableChoice parseFrom( - com.google.protobuf.CodedInputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.AwaitableChoice parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override - public Builder newBuilderForType() { - return newBuilder(); - } - + public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(io.temporal.omes.KitchenSink.AwaitableChoice prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } - @java.lang.Override public Builder toBuilder() { - return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override @@ -18876,8 +18112,6 @@ protected Builder newBuilderForType( return builder; } /** - * - * *
      * All await commands will have this available as a field. If it is set, the command
      * should be either awaited upon, cancelled, or abandoned at the specified juncture (if possible,
@@ -18887,33 +18121,33 @@ protected Builder newBuilderForType(
      *
      * Protobuf type {@code temporal.omes.kitchen_sink.AwaitableChoice}
      */
-    public static final class Builder
-        extends com.google.protobuf.GeneratedMessageV3.Builder
-        implements
+    public static final class Builder extends
+        com.google.protobuf.GeneratedMessageV3.Builder implements
         // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.AwaitableChoice)
         io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder {
-      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_AwaitableChoice_descriptor;
+      public static final com.google.protobuf.Descriptors.Descriptor
+          getDescriptor() {
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_AwaitableChoice_descriptor;
       }
 
       @java.lang.Override
       protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
           internalGetFieldAccessorTable() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_AwaitableChoice_fieldAccessorTable
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_AwaitableChoice_fieldAccessorTable
             .ensureFieldAccessorsInitialized(
-                io.temporal.omes.KitchenSink.AwaitableChoice.class,
-                io.temporal.omes.KitchenSink.AwaitableChoice.Builder.class);
+                io.temporal.omes.KitchenSink.AwaitableChoice.class, io.temporal.omes.KitchenSink.AwaitableChoice.Builder.class);
       }
 
       // Construct using io.temporal.omes.KitchenSink.AwaitableChoice.newBuilder()
-      private Builder() {}
+      private Builder() {
 
-      private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
-        super(parent);
       }
 
+      private Builder(
+          com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
+        super(parent);
+
+      }
       @java.lang.Override
       public Builder clear() {
         super.clear();
@@ -18939,9 +18173,9 @@ public Builder clear() {
       }
 
       @java.lang.Override
-      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_AwaitableChoice_descriptor;
+      public com.google.protobuf.Descriptors.Descriptor
+          getDescriptorForType() {
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_AwaitableChoice_descriptor;
       }
 
       @java.lang.Override
@@ -18960,11 +18194,8 @@ public io.temporal.omes.KitchenSink.AwaitableChoice build() {
 
       @java.lang.Override
       public io.temporal.omes.KitchenSink.AwaitableChoice buildPartial() {
-        io.temporal.omes.KitchenSink.AwaitableChoice result =
-            new io.temporal.omes.KitchenSink.AwaitableChoice(this);
-        if (bitField0_ != 0) {
-          buildPartial0(result);
-        }
+        io.temporal.omes.KitchenSink.AwaitableChoice result = new io.temporal.omes.KitchenSink.AwaitableChoice(this);
+        if (bitField0_ != 0) { buildPartial0(result); }
         buildPartialOneofs(result);
         onBuilt();
         return result;
@@ -18977,19 +18208,24 @@ private void buildPartial0(io.temporal.omes.KitchenSink.AwaitableChoice result)
       private void buildPartialOneofs(io.temporal.omes.KitchenSink.AwaitableChoice result) {
         result.conditionCase_ = conditionCase_;
         result.condition_ = this.condition_;
-        if (conditionCase_ == 1 && waitFinishBuilder_ != null) {
+        if (conditionCase_ == 1 &&
+            waitFinishBuilder_ != null) {
           result.condition_ = waitFinishBuilder_.build();
         }
-        if (conditionCase_ == 2 && abandonBuilder_ != null) {
+        if (conditionCase_ == 2 &&
+            abandonBuilder_ != null) {
           result.condition_ = abandonBuilder_.build();
         }
-        if (conditionCase_ == 3 && cancelBeforeStartedBuilder_ != null) {
+        if (conditionCase_ == 3 &&
+            cancelBeforeStartedBuilder_ != null) {
           result.condition_ = cancelBeforeStartedBuilder_.build();
         }
-        if (conditionCase_ == 4 && cancelAfterStartedBuilder_ != null) {
+        if (conditionCase_ == 4 &&
+            cancelAfterStartedBuilder_ != null) {
           result.condition_ = cancelAfterStartedBuilder_.build();
         }
-        if (conditionCase_ == 5 && cancelAfterCompletedBuilder_ != null) {
+        if (conditionCase_ == 5 &&
+            cancelAfterCompletedBuilder_ != null) {
           result.condition_ = cancelAfterCompletedBuilder_.build();
         }
       }
@@ -18998,41 +18234,38 @@ private void buildPartialOneofs(io.temporal.omes.KitchenSink.AwaitableChoice res
       public Builder clone() {
         return super.clone();
       }
-
       @java.lang.Override
       public Builder setField(
-          com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
+          com.google.protobuf.Descriptors.FieldDescriptor field,
+          java.lang.Object value) {
         return super.setField(field, value);
       }
-
       @java.lang.Override
-      public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
+      public Builder clearField(
+          com.google.protobuf.Descriptors.FieldDescriptor field) {
         return super.clearField(field);
       }
-
       @java.lang.Override
-      public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
+      public Builder clearOneof(
+          com.google.protobuf.Descriptors.OneofDescriptor oneof) {
         return super.clearOneof(oneof);
       }
-
       @java.lang.Override
       public Builder setRepeatedField(
           com.google.protobuf.Descriptors.FieldDescriptor field,
-          int index,
-          java.lang.Object value) {
+          int index, java.lang.Object value) {
         return super.setRepeatedField(field, index, value);
       }
-
       @java.lang.Override
       public Builder addRepeatedField(
-          com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
+          com.google.protobuf.Descriptors.FieldDescriptor field,
+          java.lang.Object value) {
         return super.addRepeatedField(field, value);
       }
-
       @java.lang.Override
       public Builder mergeFrom(com.google.protobuf.Message other) {
         if (other instanceof io.temporal.omes.KitchenSink.AwaitableChoice) {
-          return mergeFrom((io.temporal.omes.KitchenSink.AwaitableChoice) other);
+          return mergeFrom((io.temporal.omes.KitchenSink.AwaitableChoice)other);
         } else {
           super.mergeFrom(other);
           return this;
@@ -19042,35 +18275,29 @@ public Builder mergeFrom(com.google.protobuf.Message other) {
       public Builder mergeFrom(io.temporal.omes.KitchenSink.AwaitableChoice other) {
         if (other == io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance()) return this;
         switch (other.getConditionCase()) {
-          case WAIT_FINISH:
-            {
-              mergeWaitFinish(other.getWaitFinish());
-              break;
-            }
-          case ABANDON:
-            {
-              mergeAbandon(other.getAbandon());
-              break;
-            }
-          case CANCEL_BEFORE_STARTED:
-            {
-              mergeCancelBeforeStarted(other.getCancelBeforeStarted());
-              break;
-            }
-          case CANCEL_AFTER_STARTED:
-            {
-              mergeCancelAfterStarted(other.getCancelAfterStarted());
-              break;
-            }
-          case CANCEL_AFTER_COMPLETED:
-            {
-              mergeCancelAfterCompleted(other.getCancelAfterCompleted());
-              break;
-            }
-          case CONDITION_NOT_SET:
-            {
-              break;
-            }
+          case WAIT_FINISH: {
+            mergeWaitFinish(other.getWaitFinish());
+            break;
+          }
+          case ABANDON: {
+            mergeAbandon(other.getAbandon());
+            break;
+          }
+          case CANCEL_BEFORE_STARTED: {
+            mergeCancelBeforeStarted(other.getCancelBeforeStarted());
+            break;
+          }
+          case CANCEL_AFTER_STARTED: {
+            mergeCancelAfterStarted(other.getCancelAfterStarted());
+            break;
+          }
+          case CANCEL_AFTER_COMPLETED: {
+            mergeCancelAfterCompleted(other.getCancelAfterCompleted());
+            break;
+          }
+          case CONDITION_NOT_SET: {
+            break;
+          }
         }
         this.mergeUnknownFields(other.getUnknownFields());
         onChanged();
@@ -19098,46 +18325,47 @@ public Builder mergeFrom(
               case 0:
                 done = true;
                 break;
-              case 10:
-                {
-                  input.readMessage(getWaitFinishFieldBuilder().getBuilder(), extensionRegistry);
-                  conditionCase_ = 1;
-                  break;
-                } // case 10
-              case 18:
-                {
-                  input.readMessage(getAbandonFieldBuilder().getBuilder(), extensionRegistry);
-                  conditionCase_ = 2;
-                  break;
-                } // case 18
-              case 26:
-                {
-                  input.readMessage(
-                      getCancelBeforeStartedFieldBuilder().getBuilder(), extensionRegistry);
-                  conditionCase_ = 3;
-                  break;
-                } // case 26
-              case 34:
-                {
-                  input.readMessage(
-                      getCancelAfterStartedFieldBuilder().getBuilder(), extensionRegistry);
-                  conditionCase_ = 4;
-                  break;
-                } // case 34
-              case 42:
-                {
-                  input.readMessage(
-                      getCancelAfterCompletedFieldBuilder().getBuilder(), extensionRegistry);
-                  conditionCase_ = 5;
-                  break;
-                } // case 42
-              default:
-                {
-                  if (!super.parseUnknownField(input, extensionRegistry, tag)) {
-                    done = true; // was an endgroup tag
-                  }
-                  break;
-                } // default:
+              case 10: {
+                input.readMessage(
+                    getWaitFinishFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                conditionCase_ = 1;
+                break;
+              } // case 10
+              case 18: {
+                input.readMessage(
+                    getAbandonFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                conditionCase_ = 2;
+                break;
+              } // case 18
+              case 26: {
+                input.readMessage(
+                    getCancelBeforeStartedFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                conditionCase_ = 3;
+                break;
+              } // case 26
+              case 34: {
+                input.readMessage(
+                    getCancelAfterStartedFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                conditionCase_ = 4;
+                break;
+              } // case 34
+              case 42: {
+                input.readMessage(
+                    getCancelAfterCompletedFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                conditionCase_ = 5;
+                break;
+              } // case 42
+              default: {
+                if (!super.parseUnknownField(input, extensionRegistry, tag)) {
+                  done = true; // was an endgroup tag
+                }
+                break;
+              } // default:
             } // switch (tag)
           } // while (!done)
         } catch (com.google.protobuf.InvalidProtocolBufferException e) {
@@ -19147,12 +18375,12 @@ public Builder mergeFrom(
         } // finally
         return this;
       }
-
       private int conditionCase_ = 0;
       private java.lang.Object condition_;
-
-      public ConditionCase getConditionCase() {
-        return ConditionCase.forNumber(conditionCase_);
+      public ConditionCase
+          getConditionCase() {
+        return ConditionCase.forNumber(
+            conditionCase_);
       }
 
       public Builder clearCondition() {
@@ -19165,19 +18393,13 @@ public Builder clearCondition() {
       private int bitField0_;
 
       private com.google.protobuf.SingleFieldBuilderV3<
-              com.google.protobuf.Empty,
-              com.google.protobuf.Empty.Builder,
-              com.google.protobuf.EmptyOrBuilder>
-          waitFinishBuilder_;
+          com.google.protobuf.Empty, com.google.protobuf.Empty.Builder, com.google.protobuf.EmptyOrBuilder> waitFinishBuilder_;
       /**
-       *
-       *
        * 
        * Wait for the command to finish. This is the default.
        * 
* * .google.protobuf.Empty wait_finish = 1; - * * @return Whether the waitFinish field is set. */ @java.lang.Override @@ -19185,14 +18407,11 @@ public boolean hasWaitFinish() { return conditionCase_ == 1; } /** - * - * *
        * Wait for the command to finish. This is the default.
        * 
* * .google.protobuf.Empty wait_finish = 1; - * * @return The waitFinish. */ @java.lang.Override @@ -19210,8 +18429,6 @@ public com.google.protobuf.Empty getWaitFinish() { } } /** - * - * *
        * Wait for the command to finish. This is the default.
        * 
@@ -19232,15 +18449,14 @@ public Builder setWaitFinish(com.google.protobuf.Empty value) { return this; } /** - * - * *
        * Wait for the command to finish. This is the default.
        * 
* * .google.protobuf.Empty wait_finish = 1; */ - public Builder setWaitFinish(com.google.protobuf.Empty.Builder builderForValue) { + public Builder setWaitFinish( + com.google.protobuf.Empty.Builder builderForValue) { if (waitFinishBuilder_ == null) { condition_ = builderForValue.build(); onChanged(); @@ -19251,8 +18467,6 @@ public Builder setWaitFinish(com.google.protobuf.Empty.Builder builderForValue) return this; } /** - * - * *
        * Wait for the command to finish. This is the default.
        * 
@@ -19261,11 +18475,10 @@ public Builder setWaitFinish(com.google.protobuf.Empty.Builder builderForValue) */ public Builder mergeWaitFinish(com.google.protobuf.Empty value) { if (waitFinishBuilder_ == null) { - if (conditionCase_ == 1 && condition_ != com.google.protobuf.Empty.getDefaultInstance()) { - condition_ = - com.google.protobuf.Empty.newBuilder((com.google.protobuf.Empty) condition_) - .mergeFrom(value) - .buildPartial(); + if (conditionCase_ == 1 && + condition_ != com.google.protobuf.Empty.getDefaultInstance()) { + condition_ = com.google.protobuf.Empty.newBuilder((com.google.protobuf.Empty) condition_) + .mergeFrom(value).buildPartial(); } else { condition_ = value; } @@ -19281,8 +18494,6 @@ public Builder mergeWaitFinish(com.google.protobuf.Empty value) { return this; } /** - * - * *
        * Wait for the command to finish. This is the default.
        * 
@@ -19306,8 +18517,6 @@ public Builder clearWaitFinish() { return this; } /** - * - * *
        * Wait for the command to finish. This is the default.
        * 
@@ -19318,8 +18527,6 @@ public com.google.protobuf.Empty.Builder getWaitFinishBuilder() { return getWaitFinishFieldBuilder().getBuilder(); } /** - * - * *
        * Wait for the command to finish. This is the default.
        * 
@@ -19338,8 +18545,6 @@ public com.google.protobuf.EmptyOrBuilder getWaitFinishOrBuilder() { } } /** - * - * *
        * Wait for the command to finish. This is the default.
        * 
@@ -19347,20 +18552,17 @@ public com.google.protobuf.EmptyOrBuilder getWaitFinishOrBuilder() { * .google.protobuf.Empty wait_finish = 1; */ private com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Empty, - com.google.protobuf.Empty.Builder, - com.google.protobuf.EmptyOrBuilder> + com.google.protobuf.Empty, com.google.protobuf.Empty.Builder, com.google.protobuf.EmptyOrBuilder> getWaitFinishFieldBuilder() { if (waitFinishBuilder_ == null) { if (!(conditionCase_ == 1)) { condition_ = com.google.protobuf.Empty.getDefaultInstance(); } - waitFinishBuilder_ = - new com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Empty, - com.google.protobuf.Empty.Builder, - com.google.protobuf.EmptyOrBuilder>( - (com.google.protobuf.Empty) condition_, getParentForChildren(), isClean()); + waitFinishBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Empty, com.google.protobuf.Empty.Builder, com.google.protobuf.EmptyOrBuilder>( + (com.google.protobuf.Empty) condition_, + getParentForChildren(), + isClean()); condition_ = null; } conditionCase_ = 1; @@ -19369,19 +18571,13 @@ public com.google.protobuf.EmptyOrBuilder getWaitFinishOrBuilder() { } private com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Empty, - com.google.protobuf.Empty.Builder, - com.google.protobuf.EmptyOrBuilder> - abandonBuilder_; + com.google.protobuf.Empty, com.google.protobuf.Empty.Builder, com.google.protobuf.EmptyOrBuilder> abandonBuilder_; /** - * - * *
        * Call the command API but immediately move on. IE: Don't await on it at all.
        * 
* * .google.protobuf.Empty abandon = 2; - * * @return Whether the abandon field is set. */ @java.lang.Override @@ -19389,14 +18585,11 @@ public boolean hasAbandon() { return conditionCase_ == 2; } /** - * - * *
        * Call the command API but immediately move on. IE: Don't await on it at all.
        * 
* * .google.protobuf.Empty abandon = 2; - * * @return The abandon. */ @java.lang.Override @@ -19414,8 +18607,6 @@ public com.google.protobuf.Empty getAbandon() { } } /** - * - * *
        * Call the command API but immediately move on. IE: Don't await on it at all.
        * 
@@ -19436,15 +18627,14 @@ public Builder setAbandon(com.google.protobuf.Empty value) { return this; } /** - * - * *
        * Call the command API but immediately move on. IE: Don't await on it at all.
        * 
* * .google.protobuf.Empty abandon = 2; */ - public Builder setAbandon(com.google.protobuf.Empty.Builder builderForValue) { + public Builder setAbandon( + com.google.protobuf.Empty.Builder builderForValue) { if (abandonBuilder_ == null) { condition_ = builderForValue.build(); onChanged(); @@ -19455,8 +18645,6 @@ public Builder setAbandon(com.google.protobuf.Empty.Builder builderForValue) { return this; } /** - * - * *
        * Call the command API but immediately move on. IE: Don't await on it at all.
        * 
@@ -19465,11 +18653,10 @@ public Builder setAbandon(com.google.protobuf.Empty.Builder builderForValue) { */ public Builder mergeAbandon(com.google.protobuf.Empty value) { if (abandonBuilder_ == null) { - if (conditionCase_ == 2 && condition_ != com.google.protobuf.Empty.getDefaultInstance()) { - condition_ = - com.google.protobuf.Empty.newBuilder((com.google.protobuf.Empty) condition_) - .mergeFrom(value) - .buildPartial(); + if (conditionCase_ == 2 && + condition_ != com.google.protobuf.Empty.getDefaultInstance()) { + condition_ = com.google.protobuf.Empty.newBuilder((com.google.protobuf.Empty) condition_) + .mergeFrom(value).buildPartial(); } else { condition_ = value; } @@ -19485,8 +18672,6 @@ public Builder mergeAbandon(com.google.protobuf.Empty value) { return this; } /** - * - * *
        * Call the command API but immediately move on. IE: Don't await on it at all.
        * 
@@ -19510,8 +18695,6 @@ public Builder clearAbandon() { return this; } /** - * - * *
        * Call the command API but immediately move on. IE: Don't await on it at all.
        * 
@@ -19522,8 +18705,6 @@ public com.google.protobuf.Empty.Builder getAbandonBuilder() { return getAbandonFieldBuilder().getBuilder(); } /** - * - * *
        * Call the command API but immediately move on. IE: Don't await on it at all.
        * 
@@ -19542,8 +18723,6 @@ public com.google.protobuf.EmptyOrBuilder getAbandonOrBuilder() { } } /** - * - * *
        * Call the command API but immediately move on. IE: Don't await on it at all.
        * 
@@ -19551,20 +18730,17 @@ public com.google.protobuf.EmptyOrBuilder getAbandonOrBuilder() { * .google.protobuf.Empty abandon = 2; */ private com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Empty, - com.google.protobuf.Empty.Builder, - com.google.protobuf.EmptyOrBuilder> + com.google.protobuf.Empty, com.google.protobuf.Empty.Builder, com.google.protobuf.EmptyOrBuilder> getAbandonFieldBuilder() { if (abandonBuilder_ == null) { if (!(conditionCase_ == 2)) { condition_ = com.google.protobuf.Empty.getDefaultInstance(); } - abandonBuilder_ = - new com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Empty, - com.google.protobuf.Empty.Builder, - com.google.protobuf.EmptyOrBuilder>( - (com.google.protobuf.Empty) condition_, getParentForChildren(), isClean()); + abandonBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Empty, com.google.protobuf.Empty.Builder, com.google.protobuf.EmptyOrBuilder>( + (com.google.protobuf.Empty) condition_, + getParentForChildren(), + isClean()); condition_ = null; } conditionCase_ = 2; @@ -19573,20 +18749,14 @@ public com.google.protobuf.EmptyOrBuilder getAbandonOrBuilder() { } private com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Empty, - com.google.protobuf.Empty.Builder, - com.google.protobuf.EmptyOrBuilder> - cancelBeforeStartedBuilder_; + com.google.protobuf.Empty, com.google.protobuf.Empty.Builder, com.google.protobuf.EmptyOrBuilder> cancelBeforeStartedBuilder_; /** - * - * *
        * Cancel the command before it's begun - IE: Cancel it immediately after starting it with
        * no await, within the same workflow task.
        * 
* * .google.protobuf.Empty cancel_before_started = 3; - * * @return Whether the cancelBeforeStarted field is set. */ @java.lang.Override @@ -19594,15 +18764,12 @@ public boolean hasCancelBeforeStarted() { return conditionCase_ == 3; } /** - * - * *
        * Cancel the command before it's begun - IE: Cancel it immediately after starting it with
        * no await, within the same workflow task.
        * 
* * .google.protobuf.Empty cancel_before_started = 3; - * * @return The cancelBeforeStarted. */ @java.lang.Override @@ -19620,8 +18787,6 @@ public com.google.protobuf.Empty getCancelBeforeStarted() { } } /** - * - * *
        * Cancel the command before it's begun - IE: Cancel it immediately after starting it with
        * no await, within the same workflow task.
@@ -19643,8 +18808,6 @@ public Builder setCancelBeforeStarted(com.google.protobuf.Empty value) {
         return this;
       }
       /**
-       *
-       *
        * 
        * Cancel the command before it's begun - IE: Cancel it immediately after starting it with
        * no await, within the same workflow task.
@@ -19652,7 +18815,8 @@ public Builder setCancelBeforeStarted(com.google.protobuf.Empty value) {
        *
        * .google.protobuf.Empty cancel_before_started = 3;
        */
-      public Builder setCancelBeforeStarted(com.google.protobuf.Empty.Builder builderForValue) {
+      public Builder setCancelBeforeStarted(
+          com.google.protobuf.Empty.Builder builderForValue) {
         if (cancelBeforeStartedBuilder_ == null) {
           condition_ = builderForValue.build();
           onChanged();
@@ -19663,8 +18827,6 @@ public Builder setCancelBeforeStarted(com.google.protobuf.Empty.Builder builderF
         return this;
       }
       /**
-       *
-       *
        * 
        * Cancel the command before it's begun - IE: Cancel it immediately after starting it with
        * no await, within the same workflow task.
@@ -19674,11 +18836,10 @@ public Builder setCancelBeforeStarted(com.google.protobuf.Empty.Builder builderF
        */
       public Builder mergeCancelBeforeStarted(com.google.protobuf.Empty value) {
         if (cancelBeforeStartedBuilder_ == null) {
-          if (conditionCase_ == 3 && condition_ != com.google.protobuf.Empty.getDefaultInstance()) {
-            condition_ =
-                com.google.protobuf.Empty.newBuilder((com.google.protobuf.Empty) condition_)
-                    .mergeFrom(value)
-                    .buildPartial();
+          if (conditionCase_ == 3 &&
+              condition_ != com.google.protobuf.Empty.getDefaultInstance()) {
+            condition_ = com.google.protobuf.Empty.newBuilder((com.google.protobuf.Empty) condition_)
+                .mergeFrom(value).buildPartial();
           } else {
             condition_ = value;
           }
@@ -19694,8 +18855,6 @@ public Builder mergeCancelBeforeStarted(com.google.protobuf.Empty value) {
         return this;
       }
       /**
-       *
-       *
        * 
        * Cancel the command before it's begun - IE: Cancel it immediately after starting it with
        * no await, within the same workflow task.
@@ -19720,8 +18879,6 @@ public Builder clearCancelBeforeStarted() {
         return this;
       }
       /**
-       *
-       *
        * 
        * Cancel the command before it's begun - IE: Cancel it immediately after starting it with
        * no await, within the same workflow task.
@@ -19733,8 +18890,6 @@ public com.google.protobuf.Empty.Builder getCancelBeforeStartedBuilder() {
         return getCancelBeforeStartedFieldBuilder().getBuilder();
       }
       /**
-       *
-       *
        * 
        * Cancel the command before it's begun - IE: Cancel it immediately after starting it with
        * no await, within the same workflow task.
@@ -19754,8 +18909,6 @@ public com.google.protobuf.EmptyOrBuilder getCancelBeforeStartedOrBuilder() {
         }
       }
       /**
-       *
-       *
        * 
        * Cancel the command before it's begun - IE: Cancel it immediately after starting it with
        * no await, within the same workflow task.
@@ -19764,20 +18917,17 @@ public com.google.protobuf.EmptyOrBuilder getCancelBeforeStartedOrBuilder() {
        * .google.protobuf.Empty cancel_before_started = 3;
        */
       private com.google.protobuf.SingleFieldBuilderV3<
-              com.google.protobuf.Empty,
-              com.google.protobuf.Empty.Builder,
-              com.google.protobuf.EmptyOrBuilder>
+          com.google.protobuf.Empty, com.google.protobuf.Empty.Builder, com.google.protobuf.EmptyOrBuilder> 
           getCancelBeforeStartedFieldBuilder() {
         if (cancelBeforeStartedBuilder_ == null) {
           if (!(conditionCase_ == 3)) {
             condition_ = com.google.protobuf.Empty.getDefaultInstance();
           }
-          cancelBeforeStartedBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  com.google.protobuf.Empty,
-                  com.google.protobuf.Empty.Builder,
-                  com.google.protobuf.EmptyOrBuilder>(
-                  (com.google.protobuf.Empty) condition_, getParentForChildren(), isClean());
+          cancelBeforeStartedBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              com.google.protobuf.Empty, com.google.protobuf.Empty.Builder, com.google.protobuf.EmptyOrBuilder>(
+                  (com.google.protobuf.Empty) condition_,
+                  getParentForChildren(),
+                  isClean());
           condition_ = null;
         }
         conditionCase_ = 3;
@@ -19786,13 +18936,8 @@ public com.google.protobuf.EmptyOrBuilder getCancelBeforeStartedOrBuilder() {
       }
 
       private com.google.protobuf.SingleFieldBuilderV3<
-              com.google.protobuf.Empty,
-              com.google.protobuf.Empty.Builder,
-              com.google.protobuf.EmptyOrBuilder>
-          cancelAfterStartedBuilder_;
+          com.google.protobuf.Empty, com.google.protobuf.Empty.Builder, com.google.protobuf.EmptyOrBuilder> cancelAfterStartedBuilder_;
       /**
-       *
-       *
        * 
        * Cancel the command after it's been started. Not all SDKs will know when a command is started
        * and in those cases they should issue the cancellation in the next workflow task after
@@ -19800,7 +18945,6 @@ public com.google.protobuf.EmptyOrBuilder getCancelBeforeStartedOrBuilder() {
        * 
* * .google.protobuf.Empty cancel_after_started = 4; - * * @return Whether the cancelAfterStarted field is set. */ @java.lang.Override @@ -19808,8 +18952,6 @@ public boolean hasCancelAfterStarted() { return conditionCase_ == 4; } /** - * - * *
        * Cancel the command after it's been started. Not all SDKs will know when a command is started
        * and in those cases they should issue the cancellation in the next workflow task after
@@ -19817,7 +18959,6 @@ public boolean hasCancelAfterStarted() {
        * 
* * .google.protobuf.Empty cancel_after_started = 4; - * * @return The cancelAfterStarted. */ @java.lang.Override @@ -19835,8 +18976,6 @@ public com.google.protobuf.Empty getCancelAfterStarted() { } } /** - * - * *
        * Cancel the command after it's been started. Not all SDKs will know when a command is started
        * and in those cases they should issue the cancellation in the next workflow task after
@@ -19859,8 +18998,6 @@ public Builder setCancelAfterStarted(com.google.protobuf.Empty value) {
         return this;
       }
       /**
-       *
-       *
        * 
        * Cancel the command after it's been started. Not all SDKs will know when a command is started
        * and in those cases they should issue the cancellation in the next workflow task after
@@ -19869,7 +19006,8 @@ public Builder setCancelAfterStarted(com.google.protobuf.Empty value) {
        *
        * .google.protobuf.Empty cancel_after_started = 4;
        */
-      public Builder setCancelAfterStarted(com.google.protobuf.Empty.Builder builderForValue) {
+      public Builder setCancelAfterStarted(
+          com.google.protobuf.Empty.Builder builderForValue) {
         if (cancelAfterStartedBuilder_ == null) {
           condition_ = builderForValue.build();
           onChanged();
@@ -19880,8 +19018,6 @@ public Builder setCancelAfterStarted(com.google.protobuf.Empty.Builder builderFo
         return this;
       }
       /**
-       *
-       *
        * 
        * Cancel the command after it's been started. Not all SDKs will know when a command is started
        * and in those cases they should issue the cancellation in the next workflow task after
@@ -19892,11 +19028,10 @@ public Builder setCancelAfterStarted(com.google.protobuf.Empty.Builder builderFo
        */
       public Builder mergeCancelAfterStarted(com.google.protobuf.Empty value) {
         if (cancelAfterStartedBuilder_ == null) {
-          if (conditionCase_ == 4 && condition_ != com.google.protobuf.Empty.getDefaultInstance()) {
-            condition_ =
-                com.google.protobuf.Empty.newBuilder((com.google.protobuf.Empty) condition_)
-                    .mergeFrom(value)
-                    .buildPartial();
+          if (conditionCase_ == 4 &&
+              condition_ != com.google.protobuf.Empty.getDefaultInstance()) {
+            condition_ = com.google.protobuf.Empty.newBuilder((com.google.protobuf.Empty) condition_)
+                .mergeFrom(value).buildPartial();
           } else {
             condition_ = value;
           }
@@ -19912,8 +19047,6 @@ public Builder mergeCancelAfterStarted(com.google.protobuf.Empty value) {
         return this;
       }
       /**
-       *
-       *
        * 
        * Cancel the command after it's been started. Not all SDKs will know when a command is started
        * and in those cases they should issue the cancellation in the next workflow task after
@@ -19939,8 +19072,6 @@ public Builder clearCancelAfterStarted() {
         return this;
       }
       /**
-       *
-       *
        * 
        * Cancel the command after it's been started. Not all SDKs will know when a command is started
        * and in those cases they should issue the cancellation in the next workflow task after
@@ -19953,8 +19084,6 @@ public com.google.protobuf.Empty.Builder getCancelAfterStartedBuilder() {
         return getCancelAfterStartedFieldBuilder().getBuilder();
       }
       /**
-       *
-       *
        * 
        * Cancel the command after it's been started. Not all SDKs will know when a command is started
        * and in those cases they should issue the cancellation in the next workflow task after
@@ -19975,8 +19104,6 @@ public com.google.protobuf.EmptyOrBuilder getCancelAfterStartedOrBuilder() {
         }
       }
       /**
-       *
-       *
        * 
        * Cancel the command after it's been started. Not all SDKs will know when a command is started
        * and in those cases they should issue the cancellation in the next workflow task after
@@ -19986,20 +19113,17 @@ public com.google.protobuf.EmptyOrBuilder getCancelAfterStartedOrBuilder() {
        * .google.protobuf.Empty cancel_after_started = 4;
        */
       private com.google.protobuf.SingleFieldBuilderV3<
-              com.google.protobuf.Empty,
-              com.google.protobuf.Empty.Builder,
-              com.google.protobuf.EmptyOrBuilder>
+          com.google.protobuf.Empty, com.google.protobuf.Empty.Builder, com.google.protobuf.EmptyOrBuilder> 
           getCancelAfterStartedFieldBuilder() {
         if (cancelAfterStartedBuilder_ == null) {
           if (!(conditionCase_ == 4)) {
             condition_ = com.google.protobuf.Empty.getDefaultInstance();
           }
-          cancelAfterStartedBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  com.google.protobuf.Empty,
-                  com.google.protobuf.Empty.Builder,
-                  com.google.protobuf.EmptyOrBuilder>(
-                  (com.google.protobuf.Empty) condition_, getParentForChildren(), isClean());
+          cancelAfterStartedBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              com.google.protobuf.Empty, com.google.protobuf.Empty.Builder, com.google.protobuf.EmptyOrBuilder>(
+                  (com.google.protobuf.Empty) condition_,
+                  getParentForChildren(),
+                  isClean());
           condition_ = null;
         }
         conditionCase_ = 4;
@@ -20008,19 +19132,13 @@ public com.google.protobuf.EmptyOrBuilder getCancelAfterStartedOrBuilder() {
       }
 
       private com.google.protobuf.SingleFieldBuilderV3<
-              com.google.protobuf.Empty,
-              com.google.protobuf.Empty.Builder,
-              com.google.protobuf.EmptyOrBuilder>
-          cancelAfterCompletedBuilder_;
+          com.google.protobuf.Empty, com.google.protobuf.Empty.Builder, com.google.protobuf.EmptyOrBuilder> cancelAfterCompletedBuilder_;
       /**
-       *
-       *
        * 
        * Cancel the command after it's already completed.
        * 
* * .google.protobuf.Empty cancel_after_completed = 5; - * * @return Whether the cancelAfterCompleted field is set. */ @java.lang.Override @@ -20028,14 +19146,11 @@ public boolean hasCancelAfterCompleted() { return conditionCase_ == 5; } /** - * - * *
        * Cancel the command after it's already completed.
        * 
* * .google.protobuf.Empty cancel_after_completed = 5; - * * @return The cancelAfterCompleted. */ @java.lang.Override @@ -20053,8 +19168,6 @@ public com.google.protobuf.Empty getCancelAfterCompleted() { } } /** - * - * *
        * Cancel the command after it's already completed.
        * 
@@ -20075,15 +19188,14 @@ public Builder setCancelAfterCompleted(com.google.protobuf.Empty value) { return this; } /** - * - * *
        * Cancel the command after it's already completed.
        * 
* * .google.protobuf.Empty cancel_after_completed = 5; */ - public Builder setCancelAfterCompleted(com.google.protobuf.Empty.Builder builderForValue) { + public Builder setCancelAfterCompleted( + com.google.protobuf.Empty.Builder builderForValue) { if (cancelAfterCompletedBuilder_ == null) { condition_ = builderForValue.build(); onChanged(); @@ -20094,8 +19206,6 @@ public Builder setCancelAfterCompleted(com.google.protobuf.Empty.Builder builder return this; } /** - * - * *
        * Cancel the command after it's already completed.
        * 
@@ -20104,11 +19214,10 @@ public Builder setCancelAfterCompleted(com.google.protobuf.Empty.Builder builder */ public Builder mergeCancelAfterCompleted(com.google.protobuf.Empty value) { if (cancelAfterCompletedBuilder_ == null) { - if (conditionCase_ == 5 && condition_ != com.google.protobuf.Empty.getDefaultInstance()) { - condition_ = - com.google.protobuf.Empty.newBuilder((com.google.protobuf.Empty) condition_) - .mergeFrom(value) - .buildPartial(); + if (conditionCase_ == 5 && + condition_ != com.google.protobuf.Empty.getDefaultInstance()) { + condition_ = com.google.protobuf.Empty.newBuilder((com.google.protobuf.Empty) condition_) + .mergeFrom(value).buildPartial(); } else { condition_ = value; } @@ -20124,8 +19233,6 @@ public Builder mergeCancelAfterCompleted(com.google.protobuf.Empty value) { return this; } /** - * - * *
        * Cancel the command after it's already completed.
        * 
@@ -20149,8 +19256,6 @@ public Builder clearCancelAfterCompleted() { return this; } /** - * - * *
        * Cancel the command after it's already completed.
        * 
@@ -20161,8 +19266,6 @@ public com.google.protobuf.Empty.Builder getCancelAfterCompletedBuilder() { return getCancelAfterCompletedFieldBuilder().getBuilder(); } /** - * - * *
        * Cancel the command after it's already completed.
        * 
@@ -20181,8 +19284,6 @@ public com.google.protobuf.EmptyOrBuilder getCancelAfterCompletedOrBuilder() { } } /** - * - * *
        * Cancel the command after it's already completed.
        * 
@@ -20190,27 +19291,23 @@ public com.google.protobuf.EmptyOrBuilder getCancelAfterCompletedOrBuilder() { * .google.protobuf.Empty cancel_after_completed = 5; */ private com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Empty, - com.google.protobuf.Empty.Builder, - com.google.protobuf.EmptyOrBuilder> + com.google.protobuf.Empty, com.google.protobuf.Empty.Builder, com.google.protobuf.EmptyOrBuilder> getCancelAfterCompletedFieldBuilder() { if (cancelAfterCompletedBuilder_ == null) { if (!(conditionCase_ == 5)) { condition_ = com.google.protobuf.Empty.getDefaultInstance(); } - cancelAfterCompletedBuilder_ = - new com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Empty, - com.google.protobuf.Empty.Builder, - com.google.protobuf.EmptyOrBuilder>( - (com.google.protobuf.Empty) condition_, getParentForChildren(), isClean()); + cancelAfterCompletedBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Empty, com.google.protobuf.Empty.Builder, com.google.protobuf.EmptyOrBuilder>( + (com.google.protobuf.Empty) condition_, + getParentForChildren(), + isClean()); condition_ = null; } conditionCase_ = 5; onChanged(); return cancelAfterCompletedBuilder_; } - @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -20223,12 +19320,12 @@ public final Builder mergeUnknownFields( return super.mergeUnknownFields(unknownFields); } + // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.AwaitableChoice) } // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.AwaitableChoice) private static final io.temporal.omes.KitchenSink.AwaitableChoice DEFAULT_INSTANCE; - static { DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.AwaitableChoice(); } @@ -20237,28 +19334,27 @@ public static io.temporal.omes.KitchenSink.AwaitableChoice getDefaultInstance() return DEFAULT_INSTANCE; } - private static final com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser() { - @java.lang.Override - public AwaitableChoice parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException() - .setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public AwaitableChoice parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; public static com.google.protobuf.Parser parser() { return PARSER; @@ -20273,67 +19369,67 @@ public com.google.protobuf.Parser getParserForType() { public io.temporal.omes.KitchenSink.AwaitableChoice getDefaultInstanceForType() { return DEFAULT_INSTANCE; } + } - public interface TimerActionOrBuilder - extends + public interface TimerActionOrBuilder extends // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.TimerAction) com.google.protobuf.MessageOrBuilder { /** * uint64 milliseconds = 1; - * * @return The milliseconds. */ long getMilliseconds(); /** * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 2; - * * @return Whether the awaitableChoice field is set. */ boolean hasAwaitableChoice(); /** * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 2; - * * @return The awaitableChoice. */ io.temporal.omes.KitchenSink.AwaitableChoice getAwaitableChoice(); - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 2; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 2; + */ io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder getAwaitableChoiceOrBuilder(); } - /** Protobuf type {@code temporal.omes.kitchen_sink.TimerAction} */ - public static final class TimerAction extends com.google.protobuf.GeneratedMessageV3 - implements + /** + * Protobuf type {@code temporal.omes.kitchen_sink.TimerAction} + */ + public static final class TimerAction extends + com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.TimerAction) TimerActionOrBuilder { - private static final long serialVersionUID = 0L; + private static final long serialVersionUID = 0L; // Use TimerAction.newBuilder() to construct. private TimerAction(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } - - private TimerAction() {} + private TimerAction() { + } @java.lang.Override @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { return new TimerAction(); } - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_TimerAction_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_TimerAction_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_TimerAction_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_TimerAction_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.TimerAction.class, - io.temporal.omes.KitchenSink.TimerAction.Builder.class); + io.temporal.omes.KitchenSink.TimerAction.class, io.temporal.omes.KitchenSink.TimerAction.Builder.class); } private int bitField0_; @@ -20341,7 +19437,6 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { private long milliseconds_ = 0L; /** * uint64 milliseconds = 1; - * * @return The milliseconds. */ @java.lang.Override @@ -20353,7 +19448,6 @@ public long getMilliseconds() { private io.temporal.omes.KitchenSink.AwaitableChoice awaitableChoice_; /** * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 2; - * * @return Whether the awaitableChoice field is set. */ @java.lang.Override @@ -20362,25 +19456,21 @@ public boolean hasAwaitableChoice() { } /** * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 2; - * * @return The awaitableChoice. */ @java.lang.Override public io.temporal.omes.KitchenSink.AwaitableChoice getAwaitableChoice() { - return awaitableChoice_ == null - ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() - : awaitableChoice_; + return awaitableChoice_ == null ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() : awaitableChoice_; } - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 2; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 2; + */ @java.lang.Override public io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder getAwaitableChoiceOrBuilder() { - return awaitableChoice_ == null - ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() - : awaitableChoice_; + return awaitableChoice_ == null ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() : awaitableChoice_; } private byte memoizedIsInitialized = -1; - @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; @@ -20392,7 +19482,8 @@ public final boolean isInitialized() { } @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { if (milliseconds_ != 0L) { output.writeUInt64(1, milliseconds_); } @@ -20409,10 +19500,12 @@ public int getSerializedSize() { size = 0; if (milliseconds_ != 0L) { - size += com.google.protobuf.CodedOutputStream.computeUInt64Size(1, milliseconds_); + size += com.google.protobuf.CodedOutputStream + .computeUInt64Size(1, milliseconds_); } if (((bitField0_ & 0x00000001) != 0)) { - size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getAwaitableChoice()); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(2, getAwaitableChoice()); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; @@ -20422,18 +19515,19 @@ public int getSerializedSize() { @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { - return true; + return true; } if (!(obj instanceof io.temporal.omes.KitchenSink.TimerAction)) { return super.equals(obj); } - io.temporal.omes.KitchenSink.TimerAction other = - (io.temporal.omes.KitchenSink.TimerAction) obj; + io.temporal.omes.KitchenSink.TimerAction other = (io.temporal.omes.KitchenSink.TimerAction) obj; - if (getMilliseconds() != other.getMilliseconds()) return false; + if (getMilliseconds() + != other.getMilliseconds()) return false; if (hasAwaitableChoice() != other.hasAwaitableChoice()) return false; if (hasAwaitableChoice()) { - if (!getAwaitableChoice().equals(other.getAwaitableChoice())) return false; + if (!getAwaitableChoice() + .equals(other.getAwaitableChoice())) return false; } if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; @@ -20447,7 +19541,8 @@ public int hashCode() { int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + MILLISECONDS_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashLong(getMilliseconds()); + hash = (53 * hash) + com.google.protobuf.Internal.hashLong( + getMilliseconds()); if (hasAwaitableChoice()) { hash = (37 * hash) + AWAITABLE_CHOICE_FIELD_NUMBER; hash = (53 * hash) + getAwaitableChoice().hashCode(); @@ -20457,94 +19552,90 @@ public int hashCode() { return hash; } - public static io.temporal.omes.KitchenSink.TimerAction parseFrom(java.nio.ByteBuffer data) + public static io.temporal.omes.KitchenSink.TimerAction parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.TimerAction parseFrom( - java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.TimerAction parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.TimerAction parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.TimerAction parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.TimerAction parseFrom( - byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.TimerAction parseFrom(java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.TimerAction parseFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.TimerAction parseDelimitedFrom( - java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + public static io.temporal.omes.KitchenSink.TimerAction parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); } public static io.temporal.omes.KitchenSink.TimerAction parseDelimitedFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.TimerAction parseFrom( - com.google.protobuf.CodedInputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.TimerAction parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override - public Builder newBuilderForType() { - return newBuilder(); - } - + public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(io.temporal.omes.KitchenSink.TimerAction prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } - @java.lang.Override public Builder toBuilder() { - return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override @@ -20553,25 +19644,24 @@ protected Builder newBuilderForType( Builder builder = new Builder(parent); return builder; } - /** Protobuf type {@code temporal.omes.kitchen_sink.TimerAction} */ - public static final class Builder - extends com.google.protobuf.GeneratedMessageV3.Builder - implements + /** + * Protobuf type {@code temporal.omes.kitchen_sink.TimerAction} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.TimerAction) io.temporal.omes.KitchenSink.TimerActionOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_TimerAction_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_TimerAction_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_TimerAction_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_TimerAction_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.TimerAction.class, - io.temporal.omes.KitchenSink.TimerAction.Builder.class); + io.temporal.omes.KitchenSink.TimerAction.class, io.temporal.omes.KitchenSink.TimerAction.Builder.class); } // Construct using io.temporal.omes.KitchenSink.TimerAction.newBuilder() @@ -20579,17 +19669,17 @@ private Builder() { maybeForceBuilderInitialization(); } - private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { getAwaitableChoiceFieldBuilder(); } } - @java.lang.Override public Builder clear() { super.clear(); @@ -20604,9 +19694,9 @@ public Builder clear() { } @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_TimerAction_descriptor; + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_TimerAction_descriptor; } @java.lang.Override @@ -20625,11 +19715,8 @@ public io.temporal.omes.KitchenSink.TimerAction build() { @java.lang.Override public io.temporal.omes.KitchenSink.TimerAction buildPartial() { - io.temporal.omes.KitchenSink.TimerAction result = - new io.temporal.omes.KitchenSink.TimerAction(this); - if (bitField0_ != 0) { - buildPartial0(result); - } + io.temporal.omes.KitchenSink.TimerAction result = new io.temporal.omes.KitchenSink.TimerAction(this); + if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } @@ -20641,8 +19728,9 @@ private void buildPartial0(io.temporal.omes.KitchenSink.TimerAction result) { } int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000002) != 0)) { - result.awaitableChoice_ = - awaitableChoiceBuilder_ == null ? awaitableChoice_ : awaitableChoiceBuilder_.build(); + result.awaitableChoice_ = awaitableChoiceBuilder_ == null + ? awaitableChoice_ + : awaitableChoiceBuilder_.build(); to_bitField0_ |= 0x00000001; } result.bitField0_ |= to_bitField0_; @@ -20652,41 +19740,38 @@ private void buildPartial0(io.temporal.omes.KitchenSink.TimerAction result) { public Builder clone() { return super.clone(); } - @java.lang.Override public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.setField(field, value); } - @java.lang.Override - public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } - @java.lang.Override - public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } - @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, - int index, - java.lang.Object value) { + int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } - @java.lang.Override public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.addRepeatedField(field, value); } - @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.temporal.omes.KitchenSink.TimerAction) { - return mergeFrom((io.temporal.omes.KitchenSink.TimerAction) other); + return mergeFrom((io.temporal.omes.KitchenSink.TimerAction)other); } else { super.mergeFrom(other); return this; @@ -20727,26 +19812,24 @@ public Builder mergeFrom( case 0: done = true; break; - case 8: - { - milliseconds_ = input.readUInt64(); - bitField0_ |= 0x00000001; - break; - } // case 8 - case 18: - { - input.readMessage( - getAwaitableChoiceFieldBuilder().getBuilder(), extensionRegistry); - bitField0_ |= 0x00000002; - break; - } // case 18 - default: - { - if (!super.parseUnknownField(input, extensionRegistry, tag)) { - done = true; // was an endgroup tag - } - break; - } // default: + case 8: { + milliseconds_ = input.readUInt64(); + bitField0_ |= 0x00000001; + break; + } // case 8 + case 18: { + input.readMessage( + getAwaitableChoiceFieldBuilder().getBuilder(), + extensionRegistry); + bitField0_ |= 0x00000002; + break; + } // case 18 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -20756,13 +19839,11 @@ public Builder mergeFrom( } // finally return this; } - private int bitField0_; - private long milliseconds_; + private long milliseconds_ ; /** * uint64 milliseconds = 1; - * * @return The milliseconds. */ @java.lang.Override @@ -20771,7 +19852,6 @@ public long getMilliseconds() { } /** * uint64 milliseconds = 1; - * * @param value The milliseconds to set. * @return This builder for chaining. */ @@ -20784,7 +19864,6 @@ public Builder setMilliseconds(long value) { } /** * uint64 milliseconds = 1; - * * @return This builder for chaining. */ public Builder clearMilliseconds() { @@ -20796,13 +19875,9 @@ public Builder clearMilliseconds() { private io.temporal.omes.KitchenSink.AwaitableChoice awaitableChoice_; private com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.AwaitableChoice, - io.temporal.omes.KitchenSink.AwaitableChoice.Builder, - io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder> - awaitableChoiceBuilder_; + io.temporal.omes.KitchenSink.AwaitableChoice, io.temporal.omes.KitchenSink.AwaitableChoice.Builder, io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder> awaitableChoiceBuilder_; /** * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 2; - * * @return Whether the awaitableChoice field is set. */ public boolean hasAwaitableChoice() { @@ -20810,19 +19885,18 @@ public boolean hasAwaitableChoice() { } /** * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 2; - * * @return The awaitableChoice. */ public io.temporal.omes.KitchenSink.AwaitableChoice getAwaitableChoice() { if (awaitableChoiceBuilder_ == null) { - return awaitableChoice_ == null - ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() - : awaitableChoice_; + return awaitableChoice_ == null ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() : awaitableChoice_; } else { return awaitableChoiceBuilder_.getMessage(); } } - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 2; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 2; + */ public Builder setAwaitableChoice(io.temporal.omes.KitchenSink.AwaitableChoice value) { if (awaitableChoiceBuilder_ == null) { if (value == null) { @@ -20836,7 +19910,9 @@ public Builder setAwaitableChoice(io.temporal.omes.KitchenSink.AwaitableChoice v onChanged(); return this; } - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 2; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 2; + */ public Builder setAwaitableChoice( io.temporal.omes.KitchenSink.AwaitableChoice.Builder builderForValue) { if (awaitableChoiceBuilder_ == null) { @@ -20848,13 +19924,14 @@ public Builder setAwaitableChoice( onChanged(); return this; } - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 2; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 2; + */ public Builder mergeAwaitableChoice(io.temporal.omes.KitchenSink.AwaitableChoice value) { if (awaitableChoiceBuilder_ == null) { - if (((bitField0_ & 0x00000002) != 0) - && awaitableChoice_ != null - && awaitableChoice_ - != io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance()) { + if (((bitField0_ & 0x00000002) != 0) && + awaitableChoice_ != null && + awaitableChoice_ != io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance()) { getAwaitableChoiceBuilder().mergeFrom(value); } else { awaitableChoice_ = value; @@ -20868,7 +19945,9 @@ public Builder mergeAwaitableChoice(io.temporal.omes.KitchenSink.AwaitableChoice } return this; } - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 2; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 2; + */ public Builder clearAwaitableChoice() { bitField0_ = (bitField0_ & ~0x00000002); awaitableChoice_ = null; @@ -20879,40 +19958,41 @@ public Builder clearAwaitableChoice() { onChanged(); return this; } - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 2; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 2; + */ public io.temporal.omes.KitchenSink.AwaitableChoice.Builder getAwaitableChoiceBuilder() { bitField0_ |= 0x00000002; onChanged(); return getAwaitableChoiceFieldBuilder().getBuilder(); } - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 2; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 2; + */ public io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder getAwaitableChoiceOrBuilder() { if (awaitableChoiceBuilder_ != null) { return awaitableChoiceBuilder_.getMessageOrBuilder(); } else { - return awaitableChoice_ == null - ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() - : awaitableChoice_; + return awaitableChoice_ == null ? + io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() : awaitableChoice_; } } - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 2; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 2; + */ private com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.AwaitableChoice, - io.temporal.omes.KitchenSink.AwaitableChoice.Builder, - io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder> + io.temporal.omes.KitchenSink.AwaitableChoice, io.temporal.omes.KitchenSink.AwaitableChoice.Builder, io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder> getAwaitableChoiceFieldBuilder() { if (awaitableChoiceBuilder_ == null) { - awaitableChoiceBuilder_ = - new com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.AwaitableChoice, - io.temporal.omes.KitchenSink.AwaitableChoice.Builder, - io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder>( - getAwaitableChoice(), getParentForChildren(), isClean()); + awaitableChoiceBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + io.temporal.omes.KitchenSink.AwaitableChoice, io.temporal.omes.KitchenSink.AwaitableChoice.Builder, io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder>( + getAwaitableChoice(), + getParentForChildren(), + isClean()); awaitableChoice_ = null; } return awaitableChoiceBuilder_; } - @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -20925,12 +20005,12 @@ public final Builder mergeUnknownFields( return super.mergeUnknownFields(unknownFields); } + // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.TimerAction) } // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.TimerAction) private static final io.temporal.omes.KitchenSink.TimerAction DEFAULT_INSTANCE; - static { DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.TimerAction(); } @@ -20939,28 +20019,27 @@ public static io.temporal.omes.KitchenSink.TimerAction getDefaultInstance() { return DEFAULT_INSTANCE; } - private static final com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser() { - @java.lang.Override - public TimerAction parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException() - .setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public TimerAction parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; public static com.google.protobuf.Parser parser() { return PARSER; @@ -20975,60 +20054,49 @@ public com.google.protobuf.Parser getParserForType() { public io.temporal.omes.KitchenSink.TimerAction getDefaultInstanceForType() { return DEFAULT_INSTANCE; } + } - public interface ExecuteActivityActionOrBuilder - extends + public interface ExecuteActivityActionOrBuilder extends // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.ExecuteActivityAction) com.google.protobuf.MessageOrBuilder { /** * .temporal.omes.kitchen_sink.ExecuteActivityAction.GenericActivity generic = 1; - * * @return Whether the generic field is set. */ boolean hasGeneric(); /** * .temporal.omes.kitchen_sink.ExecuteActivityAction.GenericActivity generic = 1; - * * @return The generic. */ io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity getGeneric(); /** * .temporal.omes.kitchen_sink.ExecuteActivityAction.GenericActivity generic = 1; */ - io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivityOrBuilder - getGenericOrBuilder(); + io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivityOrBuilder getGenericOrBuilder(); /** - * - * *
      * There must be an activity named `delay` which accepts some kind of duration and waits
      * for that long
      * 
* * .google.protobuf.Duration delay = 2; - * * @return Whether the delay field is set. */ boolean hasDelay(); /** - * - * *
      * There must be an activity named `delay` which accepts some kind of duration and waits
      * for that long
      * 
* * .google.protobuf.Duration delay = 2; - * * @return The delay. */ com.google.protobuf.Duration getDelay(); /** - * - * *
      * There must be an activity named `delay` which accepts some kind of duration and waits
      * for that long
@@ -21039,32 +20107,24 @@ public interface ExecuteActivityActionOrBuilder
     com.google.protobuf.DurationOrBuilder getDelayOrBuilder();
 
     /**
-     *
-     *
      * 
      * There must be an activity named `noop` which does nothing
      * 
* * .google.protobuf.Empty noop = 3; - * * @return Whether the noop field is set. */ boolean hasNoop(); /** - * - * *
      * There must be an activity named `noop` which does nothing
      * 
* * .google.protobuf.Empty noop = 3; - * * @return The noop. */ com.google.protobuf.Empty getNoop(); /** - * - * *
      * There must be an activity named `noop` which does nothing
      * 
@@ -21074,51 +20134,60 @@ public interface ExecuteActivityActionOrBuilder com.google.protobuf.EmptyOrBuilder getNoopOrBuilder(); /** - * - * *
      * The name of the task queue to place this activity request in
      * 
* * string task_queue = 4; - * * @return The taskQueue. */ java.lang.String getTaskQueue(); /** - * - * *
      * The name of the task queue to place this activity request in
      * 
* * string task_queue = 4; - * * @return The bytes for taskQueue. */ - com.google.protobuf.ByteString getTaskQueueBytes(); + com.google.protobuf.ByteString + getTaskQueueBytes(); - /** map<string, .temporal.api.common.v1.Payload> headers = 5; */ + /** + * map<string, .temporal.api.common.v1.Payload> headers = 5; + */ int getHeadersCount(); - /** map<string, .temporal.api.common.v1.Payload> headers = 5; */ - boolean containsHeaders(java.lang.String key); - /** Use {@link #getHeadersMap()} instead. */ + /** + * map<string, .temporal.api.common.v1.Payload> headers = 5; + */ + boolean containsHeaders( + java.lang.String key); + /** + * Use {@link #getHeadersMap()} instead. + */ @java.lang.Deprecated - java.util.Map getHeaders(); - /** map<string, .temporal.api.common.v1.Payload> headers = 5; */ - java.util.Map getHeadersMap(); - /** map<string, .temporal.api.common.v1.Payload> headers = 5; */ + java.util.Map + getHeaders(); + /** + * map<string, .temporal.api.common.v1.Payload> headers = 5; + */ + java.util.Map + getHeadersMap(); + /** + * map<string, .temporal.api.common.v1.Payload> headers = 5; + */ /* nullable */ - io.temporal.api.common.v1.Payload getHeadersOrDefault( +io.temporal.api.common.v1.Payload getHeadersOrDefault( java.lang.String key, /* nullable */ - io.temporal.api.common.v1.Payload defaultValue); - /** map<string, .temporal.api.common.v1.Payload> headers = 5; */ - io.temporal.api.common.v1.Payload getHeadersOrThrow(java.lang.String key); +io.temporal.api.common.v1.Payload defaultValue); + /** + * map<string, .temporal.api.common.v1.Payload> headers = 5; + */ + io.temporal.api.common.v1.Payload getHeadersOrThrow( + java.lang.String key); /** - * - * *
      * Indicates how long the caller is willing to wait for an activity completion. Limits how long
      * retries will be attempted. Either this or start_to_close_timeout_seconds must be specified.
@@ -21126,13 +20195,10 @@ io.temporal.api.common.v1.Payload getHeadersOrDefault(
      * 
* * .google.protobuf.Duration schedule_to_close_timeout = 6; - * * @return Whether the scheduleToCloseTimeout field is set. */ boolean hasScheduleToCloseTimeout(); /** - * - * *
      * Indicates how long the caller is willing to wait for an activity completion. Limits how long
      * retries will be attempted. Either this or start_to_close_timeout_seconds must be specified.
@@ -21140,13 +20206,10 @@ io.temporal.api.common.v1.Payload getHeadersOrDefault(
      * 
* * .google.protobuf.Duration schedule_to_close_timeout = 6; - * * @return The scheduleToCloseTimeout. */ com.google.protobuf.Duration getScheduleToCloseTimeout(); /** - * - * *
      * Indicates how long the caller is willing to wait for an activity completion. Limits how long
      * retries will be attempted. Either this or start_to_close_timeout_seconds must be specified.
@@ -21158,8 +20221,6 @@ io.temporal.api.common.v1.Payload getHeadersOrDefault(
     com.google.protobuf.DurationOrBuilder getScheduleToCloseTimeoutOrBuilder();
 
     /**
-     *
-     *
      * 
      * Limits time an activity task can stay in a task queue before a worker picks it up. This
      * timeout is always non retryable as all a retry would achieve is to put it back into the same
@@ -21167,13 +20228,10 @@ io.temporal.api.common.v1.Payload getHeadersOrDefault(
      * 
* * .google.protobuf.Duration schedule_to_start_timeout = 7; - * * @return Whether the scheduleToStartTimeout field is set. */ boolean hasScheduleToStartTimeout(); /** - * - * *
      * Limits time an activity task can stay in a task queue before a worker picks it up. This
      * timeout is always non retryable as all a retry would achieve is to put it back into the same
@@ -21181,13 +20239,10 @@ io.temporal.api.common.v1.Payload getHeadersOrDefault(
      * 
* * .google.protobuf.Duration schedule_to_start_timeout = 7; - * * @return The scheduleToStartTimeout. */ com.google.protobuf.Duration getScheduleToStartTimeout(); /** - * - * *
      * Limits time an activity task can stay in a task queue before a worker picks it up. This
      * timeout is always non retryable as all a retry would achieve is to put it back into the same
@@ -21199,34 +20254,26 @@ io.temporal.api.common.v1.Payload getHeadersOrDefault(
     com.google.protobuf.DurationOrBuilder getScheduleToStartTimeoutOrBuilder();
 
     /**
-     *
-     *
      * 
      * Maximum time an activity is allowed to execute after a pick up by a worker. This timeout is
      * always retryable. Either this or schedule_to_close_timeout must be specified.
      * 
* * .google.protobuf.Duration start_to_close_timeout = 8; - * * @return Whether the startToCloseTimeout field is set. */ boolean hasStartToCloseTimeout(); /** - * - * *
      * Maximum time an activity is allowed to execute after a pick up by a worker. This timeout is
      * always retryable. Either this or schedule_to_close_timeout must be specified.
      * 
* * .google.protobuf.Duration start_to_close_timeout = 8; - * * @return The startToCloseTimeout. */ com.google.protobuf.Duration getStartToCloseTimeout(); /** - * - * *
      * Maximum time an activity is allowed to execute after a pick up by a worker. This timeout is
      * always retryable. Either this or schedule_to_close_timeout must be specified.
@@ -21237,32 +20284,24 @@ io.temporal.api.common.v1.Payload getHeadersOrDefault(
     com.google.protobuf.DurationOrBuilder getStartToCloseTimeoutOrBuilder();
 
     /**
-     *
-     *
      * 
      * Maximum time allowed between successful worker heartbeats.
      * 
* * .google.protobuf.Duration heartbeat_timeout = 9; - * * @return Whether the heartbeatTimeout field is set. */ boolean hasHeartbeatTimeout(); /** - * - * *
      * Maximum time allowed between successful worker heartbeats.
      * 
* * .google.protobuf.Duration heartbeat_timeout = 9; - * * @return The heartbeatTimeout. */ com.google.protobuf.Duration getHeartbeatTimeout(); /** - * - * *
      * Maximum time allowed between successful worker heartbeats.
      * 
@@ -21272,8 +20311,6 @@ io.temporal.api.common.v1.Payload getHeadersOrDefault( com.google.protobuf.DurationOrBuilder getHeartbeatTimeoutOrBuilder(); /** - * - * *
      * Activities are provided by a default retry policy controlled through the service dynamic
      * configuration. Retries are happening up to schedule_to_close_timeout. To disable retries set
@@ -21281,13 +20318,10 @@ io.temporal.api.common.v1.Payload getHeadersOrDefault(
      * 
* * .temporal.api.common.v1.RetryPolicy retry_policy = 10; - * * @return Whether the retryPolicy field is set. */ boolean hasRetryPolicy(); /** - * - * *
      * Activities are provided by a default retry policy controlled through the service dynamic
      * configuration. Retries are happening up to schedule_to_close_timeout. To disable retries set
@@ -21295,13 +20329,10 @@ io.temporal.api.common.v1.Payload getHeadersOrDefault(
      * 
* * .temporal.api.common.v1.RetryPolicy retry_policy = 10; - * * @return The retryPolicy. */ io.temporal.api.common.v1.RetryPolicy getRetryPolicy(); /** - * - * *
      * Activities are provided by a default retry policy controlled through the service dynamic
      * configuration. Retries are happening up to schedule_to_close_timeout. To disable retries set
@@ -21314,77 +20345,79 @@ io.temporal.api.common.v1.Payload getHeadersOrDefault(
 
     /**
      * .google.protobuf.Empty is_local = 11;
-     *
      * @return Whether the isLocal field is set.
      */
     boolean hasIsLocal();
     /**
      * .google.protobuf.Empty is_local = 11;
-     *
      * @return The isLocal.
      */
     com.google.protobuf.Empty getIsLocal();
-    /** .google.protobuf.Empty is_local = 11; */
+    /**
+     * .google.protobuf.Empty is_local = 11;
+     */
     com.google.protobuf.EmptyOrBuilder getIsLocalOrBuilder();
 
     /**
      * .temporal.omes.kitchen_sink.RemoteActivityOptions remote = 12;
-     *
      * @return Whether the remote field is set.
      */
     boolean hasRemote();
     /**
      * .temporal.omes.kitchen_sink.RemoteActivityOptions remote = 12;
-     *
      * @return The remote.
      */
     io.temporal.omes.KitchenSink.RemoteActivityOptions getRemote();
-    /** .temporal.omes.kitchen_sink.RemoteActivityOptions remote = 12; */
+    /**
+     * .temporal.omes.kitchen_sink.RemoteActivityOptions remote = 12;
+     */
     io.temporal.omes.KitchenSink.RemoteActivityOptionsOrBuilder getRemoteOrBuilder();
 
     /**
      * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 13;
-     *
      * @return Whether the awaitableChoice field is set.
      */
     boolean hasAwaitableChoice();
     /**
      * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 13;
-     *
      * @return The awaitableChoice.
      */
     io.temporal.omes.KitchenSink.AwaitableChoice getAwaitableChoice();
-    /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 13; */
+    /**
+     * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 13;
+     */
     io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder getAwaitableChoiceOrBuilder();
 
     io.temporal.omes.KitchenSink.ExecuteActivityAction.ActivityTypeCase getActivityTypeCase();
 
     io.temporal.omes.KitchenSink.ExecuteActivityAction.LocalityCase getLocalityCase();
   }
-  /** Protobuf type {@code temporal.omes.kitchen_sink.ExecuteActivityAction} */
-  public static final class ExecuteActivityAction extends com.google.protobuf.GeneratedMessageV3
-      implements
+  /**
+   * Protobuf type {@code temporal.omes.kitchen_sink.ExecuteActivityAction}
+   */
+  public static final class ExecuteActivityAction extends
+      com.google.protobuf.GeneratedMessageV3 implements
       // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.ExecuteActivityAction)
       ExecuteActivityActionOrBuilder {
-    private static final long serialVersionUID = 0L;
+  private static final long serialVersionUID = 0L;
     // Use ExecuteActivityAction.newBuilder() to construct.
     private ExecuteActivityAction(com.google.protobuf.GeneratedMessageV3.Builder builder) {
       super(builder);
     }
-
     private ExecuteActivityAction() {
       taskQueue_ = "";
     }
 
     @java.lang.Override
     @SuppressWarnings({"unused"})
-    protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
+    protected java.lang.Object newInstance(
+        UnusedPrivateParameter unused) {
       return new ExecuteActivityAction();
     }
 
-    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
-      return io.temporal.omes.KitchenSink
-          .internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_descriptor;
+    public static final com.google.protobuf.Descriptors.Descriptor
+        getDescriptor() {
+      return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_descriptor;
     }
 
     @SuppressWarnings({"rawtypes"})
@@ -21395,61 +20428,70 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMapFieldRefl
         case 5:
           return internalGetHeaders();
         default:
-          throw new RuntimeException("Invalid map field number: " + number);
+          throw new RuntimeException(
+              "Invalid map field number: " + number);
       }
     }
-
     @java.lang.Override
     protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
         internalGetFieldAccessorTable() {
-      return io.temporal.omes.KitchenSink
-          .internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_fieldAccessorTable
+      return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_fieldAccessorTable
           .ensureFieldAccessorsInitialized(
-              io.temporal.omes.KitchenSink.ExecuteActivityAction.class,
-              io.temporal.omes.KitchenSink.ExecuteActivityAction.Builder.class);
+              io.temporal.omes.KitchenSink.ExecuteActivityAction.class, io.temporal.omes.KitchenSink.ExecuteActivityAction.Builder.class);
     }
 
-    public interface GenericActivityOrBuilder
-        extends
+    public interface GenericActivityOrBuilder extends
         // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.ExecuteActivityAction.GenericActivity)
         com.google.protobuf.MessageOrBuilder {
 
       /**
        * string type = 1;
-       *
        * @return The type.
        */
       java.lang.String getType();
       /**
        * string type = 1;
-       *
        * @return The bytes for type.
        */
-      com.google.protobuf.ByteString getTypeBytes();
+      com.google.protobuf.ByteString
+          getTypeBytes();
 
-      /** repeated .temporal.api.common.v1.Payload arguments = 2; */
-      java.util.List getArgumentsList();
-      /** repeated .temporal.api.common.v1.Payload arguments = 2; */
+      /**
+       * repeated .temporal.api.common.v1.Payload arguments = 2;
+       */
+      java.util.List 
+          getArgumentsList();
+      /**
+       * repeated .temporal.api.common.v1.Payload arguments = 2;
+       */
       io.temporal.api.common.v1.Payload getArguments(int index);
-      /** repeated .temporal.api.common.v1.Payload arguments = 2; */
+      /**
+       * repeated .temporal.api.common.v1.Payload arguments = 2;
+       */
       int getArgumentsCount();
-      /** repeated .temporal.api.common.v1.Payload arguments = 2; */
-      java.util.List
+      /**
+       * repeated .temporal.api.common.v1.Payload arguments = 2;
+       */
+      java.util.List 
           getArgumentsOrBuilderList();
-      /** repeated .temporal.api.common.v1.Payload arguments = 2; */
-      io.temporal.api.common.v1.PayloadOrBuilder getArgumentsOrBuilder(int index);
+      /**
+       * repeated .temporal.api.common.v1.Payload arguments = 2;
+       */
+      io.temporal.api.common.v1.PayloadOrBuilder getArgumentsOrBuilder(
+          int index);
     }
-    /** Protobuf type {@code temporal.omes.kitchen_sink.ExecuteActivityAction.GenericActivity} */
-    public static final class GenericActivity extends com.google.protobuf.GeneratedMessageV3
-        implements
+    /**
+     * Protobuf type {@code temporal.omes.kitchen_sink.ExecuteActivityAction.GenericActivity}
+     */
+    public static final class GenericActivity extends
+        com.google.protobuf.GeneratedMessageV3 implements
         // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.ExecuteActivityAction.GenericActivity)
         GenericActivityOrBuilder {
-      private static final long serialVersionUID = 0L;
+    private static final long serialVersionUID = 0L;
       // Use GenericActivity.newBuilder() to construct.
       private GenericActivity(com.google.protobuf.GeneratedMessageV3.Builder builder) {
         super(builder);
       }
-
       private GenericActivity() {
         type_ = "";
         arguments_ = java.util.Collections.emptyList();
@@ -21457,32 +20499,29 @@ private GenericActivity() {
 
       @java.lang.Override
       @SuppressWarnings({"unused"})
-      protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
+      protected java.lang.Object newInstance(
+          UnusedPrivateParameter unused) {
         return new GenericActivity();
       }
 
-      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_GenericActivity_descriptor;
+      public static final com.google.protobuf.Descriptors.Descriptor
+          getDescriptor() {
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_GenericActivity_descriptor;
       }
 
       @java.lang.Override
       protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
           internalGetFieldAccessorTable() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_GenericActivity_fieldAccessorTable
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_GenericActivity_fieldAccessorTable
             .ensureFieldAccessorsInitialized(
-                io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.class,
-                io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.Builder.class);
+                io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.class, io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.Builder.class);
       }
 
       public static final int TYPE_FIELD_NUMBER = 1;
-
       @SuppressWarnings("serial")
       private volatile java.lang.Object type_ = "";
       /**
        * string type = 1;
-       *
        * @return The type.
        */
       @java.lang.Override
@@ -21491,7 +20530,8 @@ public java.lang.String getType() {
         if (ref instanceof java.lang.String) {
           return (java.lang.String) ref;
         } else {
-          com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
+          com.google.protobuf.ByteString bs = 
+              (com.google.protobuf.ByteString) ref;
           java.lang.String s = bs.toStringUtf8();
           type_ = s;
           return s;
@@ -21499,15 +20539,16 @@ public java.lang.String getType() {
       }
       /**
        * string type = 1;
-       *
        * @return The bytes for type.
        */
       @java.lang.Override
-      public com.google.protobuf.ByteString getTypeBytes() {
+      public com.google.protobuf.ByteString
+          getTypeBytes() {
         java.lang.Object ref = type_;
         if (ref instanceof java.lang.String) {
-          com.google.protobuf.ByteString b =
-              com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
+          com.google.protobuf.ByteString b = 
+              com.google.protobuf.ByteString.copyFromUtf8(
+                  (java.lang.String) ref);
           type_ = b;
           return b;
         } else {
@@ -21516,38 +20557,47 @@ public com.google.protobuf.ByteString getTypeBytes() {
       }
 
       public static final int ARGUMENTS_FIELD_NUMBER = 2;
-
       @SuppressWarnings("serial")
       private java.util.List arguments_;
-      /** repeated .temporal.api.common.v1.Payload arguments = 2; */
+      /**
+       * repeated .temporal.api.common.v1.Payload arguments = 2;
+       */
       @java.lang.Override
       public java.util.List getArgumentsList() {
         return arguments_;
       }
-      /** repeated .temporal.api.common.v1.Payload arguments = 2; */
+      /**
+       * repeated .temporal.api.common.v1.Payload arguments = 2;
+       */
       @java.lang.Override
-      public java.util.List
+      public java.util.List 
           getArgumentsOrBuilderList() {
         return arguments_;
       }
-      /** repeated .temporal.api.common.v1.Payload arguments = 2; */
+      /**
+       * repeated .temporal.api.common.v1.Payload arguments = 2;
+       */
       @java.lang.Override
       public int getArgumentsCount() {
         return arguments_.size();
       }
-      /** repeated .temporal.api.common.v1.Payload arguments = 2; */
+      /**
+       * repeated .temporal.api.common.v1.Payload arguments = 2;
+       */
       @java.lang.Override
       public io.temporal.api.common.v1.Payload getArguments(int index) {
         return arguments_.get(index);
       }
-      /** repeated .temporal.api.common.v1.Payload arguments = 2; */
+      /**
+       * repeated .temporal.api.common.v1.Payload arguments = 2;
+       */
       @java.lang.Override
-      public io.temporal.api.common.v1.PayloadOrBuilder getArgumentsOrBuilder(int index) {
+      public io.temporal.api.common.v1.PayloadOrBuilder getArgumentsOrBuilder(
+          int index) {
         return arguments_.get(index);
       }
 
       private byte memoizedIsInitialized = -1;
-
       @java.lang.Override
       public final boolean isInitialized() {
         byte isInitialized = memoizedIsInitialized;
@@ -21559,7 +20609,8 @@ public final boolean isInitialized() {
       }
 
       @java.lang.Override
-      public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
+      public void writeTo(com.google.protobuf.CodedOutputStream output)
+                          throws java.io.IOException {
         if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(type_)) {
           com.google.protobuf.GeneratedMessageV3.writeString(output, 1, type_);
         }
@@ -21579,7 +20630,8 @@ public int getSerializedSize() {
           size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, type_);
         }
         for (int i = 0; i < arguments_.size(); i++) {
-          size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, arguments_.get(i));
+          size += com.google.protobuf.CodedOutputStream
+            .computeMessageSize(2, arguments_.get(i));
         }
         size += getUnknownFields().getSerializedSize();
         memoizedSize = size;
@@ -21589,16 +20641,17 @@ public int getSerializedSize() {
       @java.lang.Override
       public boolean equals(final java.lang.Object obj) {
         if (obj == this) {
-          return true;
+         return true;
         }
         if (!(obj instanceof io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity)) {
           return super.equals(obj);
         }
-        io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity other =
-            (io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity) obj;
+        io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity other = (io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity) obj;
 
-        if (!getType().equals(other.getType())) return false;
-        if (!getArgumentsList().equals(other.getArgumentsList())) return false;
+        if (!getType()
+            .equals(other.getType())) return false;
+        if (!getArgumentsList()
+            .equals(other.getArgumentsList())) return false;
         if (!getUnknownFields().equals(other.getUnknownFields())) return false;
         return true;
       }
@@ -21622,96 +20675,89 @@ public int hashCode() {
       }
 
       public static io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity parseFrom(
-          java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
+          java.nio.ByteBuffer data)
+          throws com.google.protobuf.InvalidProtocolBufferException {
         return PARSER.parseFrom(data);
       }
-
       public static io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity parseFrom(
-          java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+          java.nio.ByteBuffer data,
+          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
           throws com.google.protobuf.InvalidProtocolBufferException {
         return PARSER.parseFrom(data, extensionRegistry);
       }
-
       public static io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity parseFrom(
           com.google.protobuf.ByteString data)
           throws com.google.protobuf.InvalidProtocolBufferException {
         return PARSER.parseFrom(data);
       }
-
       public static io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity parseFrom(
           com.google.protobuf.ByteString data,
           com.google.protobuf.ExtensionRegistryLite extensionRegistry)
           throws com.google.protobuf.InvalidProtocolBufferException {
         return PARSER.parseFrom(data, extensionRegistry);
       }
-
-      public static io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity parseFrom(
-          byte[] data) throws com.google.protobuf.InvalidProtocolBufferException {
+      public static io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity parseFrom(byte[] data)
+          throws com.google.protobuf.InvalidProtocolBufferException {
         return PARSER.parseFrom(data);
       }
-
       public static io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity parseFrom(
-          byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+          byte[] data,
+          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
           throws com.google.protobuf.InvalidProtocolBufferException {
         return PARSER.parseFrom(data, extensionRegistry);
       }
-
-      public static io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity parseFrom(
-          java.io.InputStream input) throws java.io.IOException {
-        return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
+      public static io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity parseFrom(java.io.InputStream input)
+          throws java.io.IOException {
+        return com.google.protobuf.GeneratedMessageV3
+            .parseWithIOException(PARSER, input);
       }
-
       public static io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity parseFrom(
-          java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+          java.io.InputStream input,
+          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
           throws java.io.IOException {
-        return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
-            PARSER, input, extensionRegistry);
+        return com.google.protobuf.GeneratedMessageV3
+            .parseWithIOException(PARSER, input, extensionRegistry);
       }
 
-      public static io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity
-          parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException {
-        return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
+      public static io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity parseDelimitedFrom(java.io.InputStream input)
+          throws java.io.IOException {
+        return com.google.protobuf.GeneratedMessageV3
+            .parseDelimitedWithIOException(PARSER, input);
       }
 
-      public static io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity
-          parseDelimitedFrom(
-              java.io.InputStream input,
-              com.google.protobuf.ExtensionRegistryLite extensionRegistry)
-              throws java.io.IOException {
-        return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
-            PARSER, input, extensionRegistry);
+      public static io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity parseDelimitedFrom(
+          java.io.InputStream input,
+          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+          throws java.io.IOException {
+        return com.google.protobuf.GeneratedMessageV3
+            .parseDelimitedWithIOException(PARSER, input, extensionRegistry);
       }
-
       public static io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity parseFrom(
-          com.google.protobuf.CodedInputStream input) throws java.io.IOException {
-        return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
+          com.google.protobuf.CodedInputStream input)
+          throws java.io.IOException {
+        return com.google.protobuf.GeneratedMessageV3
+            .parseWithIOException(PARSER, input);
       }
-
       public static io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity parseFrom(
           com.google.protobuf.CodedInputStream input,
           com.google.protobuf.ExtensionRegistryLite extensionRegistry)
           throws java.io.IOException {
-        return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
-            PARSER, input, extensionRegistry);
+        return com.google.protobuf.GeneratedMessageV3
+            .parseWithIOException(PARSER, input, extensionRegistry);
       }
 
       @java.lang.Override
-      public Builder newBuilderForType() {
-        return newBuilder();
-      }
-
+      public Builder newBuilderForType() { return newBuilder(); }
       public static Builder newBuilder() {
         return DEFAULT_INSTANCE.toBuilder();
       }
-
-      public static Builder newBuilder(
-          io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity prototype) {
+      public static Builder newBuilder(io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity prototype) {
         return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
       }
-
       @java.lang.Override
       public Builder toBuilder() {
-        return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
+        return this == DEFAULT_INSTANCE
+            ? new Builder() : new Builder().mergeFrom(this);
       }
 
       @java.lang.Override
@@ -21720,35 +20766,36 @@ protected Builder newBuilderForType(
         Builder builder = new Builder(parent);
         return builder;
       }
-      /** Protobuf type {@code temporal.omes.kitchen_sink.ExecuteActivityAction.GenericActivity} */
-      public static final class Builder
-          extends com.google.protobuf.GeneratedMessageV3.Builder
-          implements
+      /**
+       * Protobuf type {@code temporal.omes.kitchen_sink.ExecuteActivityAction.GenericActivity}
+       */
+      public static final class Builder extends
+          com.google.protobuf.GeneratedMessageV3.Builder implements
           // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.ExecuteActivityAction.GenericActivity)
           io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivityOrBuilder {
-        public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
-          return io.temporal.omes.KitchenSink
-              .internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_GenericActivity_descriptor;
+        public static final com.google.protobuf.Descriptors.Descriptor
+            getDescriptor() {
+          return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_GenericActivity_descriptor;
         }
 
         @java.lang.Override
         protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
             internalGetFieldAccessorTable() {
-          return io.temporal.omes.KitchenSink
-              .internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_GenericActivity_fieldAccessorTable
+          return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_GenericActivity_fieldAccessorTable
               .ensureFieldAccessorsInitialized(
-                  io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.class,
-                  io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.Builder.class);
+                  io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.class, io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.Builder.class);
         }
 
-        // Construct using
-        // io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.newBuilder()
-        private Builder() {}
+        // Construct using io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.newBuilder()
+        private Builder() {
 
-        private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
-          super(parent);
         }
 
+        private Builder(
+            com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
+          super(parent);
+
+        }
         @java.lang.Override
         public Builder clear() {
           super.clear();
@@ -21765,22 +20812,19 @@ public Builder clear() {
         }
 
         @java.lang.Override
-        public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
-          return io.temporal.omes.KitchenSink
-              .internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_GenericActivity_descriptor;
+        public com.google.protobuf.Descriptors.Descriptor
+            getDescriptorForType() {
+          return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_GenericActivity_descriptor;
         }
 
         @java.lang.Override
-        public io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity
-            getDefaultInstanceForType() {
-          return io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity
-              .getDefaultInstance();
+        public io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity getDefaultInstanceForType() {
+          return io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.getDefaultInstance();
         }
 
         @java.lang.Override
         public io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity build() {
-          io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity result =
-              buildPartial();
+          io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity result = buildPartial();
           if (!result.isInitialized()) {
             throw newUninitializedMessageException(result);
           }
@@ -21789,18 +20833,14 @@ public io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity build(
 
         @java.lang.Override
         public io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity buildPartial() {
-          io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity result =
-              new io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity(this);
+          io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity result = new io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity(this);
           buildPartialRepeatedFields(result);
-          if (bitField0_ != 0) {
-            buildPartial0(result);
-          }
+          if (bitField0_ != 0) { buildPartial0(result); }
           onBuilt();
           return result;
         }
 
-        private void buildPartialRepeatedFields(
-            io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity result) {
+        private void buildPartialRepeatedFields(io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity result) {
           if (argumentsBuilder_ == null) {
             if (((bitField0_ & 0x00000002) != 0)) {
               arguments_ = java.util.Collections.unmodifiableList(arguments_);
@@ -21812,8 +20852,7 @@ private void buildPartialRepeatedFields(
           }
         }
 
-        private void buildPartial0(
-            io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity result) {
+        private void buildPartial0(io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity result) {
           int from_bitField0_ = bitField0_;
           if (((from_bitField0_ & 0x00000001) != 0)) {
             result.type_ = type_;
@@ -21824,53 +20863,46 @@ private void buildPartial0(
         public Builder clone() {
           return super.clone();
         }
-
         @java.lang.Override
         public Builder setField(
-            com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
+            com.google.protobuf.Descriptors.FieldDescriptor field,
+            java.lang.Object value) {
           return super.setField(field, value);
         }
-
         @java.lang.Override
-        public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
+        public Builder clearField(
+            com.google.protobuf.Descriptors.FieldDescriptor field) {
           return super.clearField(field);
         }
-
         @java.lang.Override
-        public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
+        public Builder clearOneof(
+            com.google.protobuf.Descriptors.OneofDescriptor oneof) {
           return super.clearOneof(oneof);
         }
-
         @java.lang.Override
         public Builder setRepeatedField(
             com.google.protobuf.Descriptors.FieldDescriptor field,
-            int index,
-            java.lang.Object value) {
+            int index, java.lang.Object value) {
           return super.setRepeatedField(field, index, value);
         }
-
         @java.lang.Override
         public Builder addRepeatedField(
-            com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
+            com.google.protobuf.Descriptors.FieldDescriptor field,
+            java.lang.Object value) {
           return super.addRepeatedField(field, value);
         }
-
         @java.lang.Override
         public Builder mergeFrom(com.google.protobuf.Message other) {
           if (other instanceof io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity) {
-            return mergeFrom(
-                (io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity) other);
+            return mergeFrom((io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity)other);
           } else {
             super.mergeFrom(other);
             return this;
           }
         }
 
-        public Builder mergeFrom(
-            io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity other) {
-          if (other
-              == io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity
-                  .getDefaultInstance()) return this;
+        public Builder mergeFrom(io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity other) {
+          if (other == io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.getDefaultInstance()) return this;
           if (!other.getType().isEmpty()) {
             type_ = other.type_;
             bitField0_ |= 0x00000001;
@@ -21894,10 +20926,9 @@ public Builder mergeFrom(
                 argumentsBuilder_ = null;
                 arguments_ = other.arguments_;
                 bitField0_ = (bitField0_ & ~0x00000002);
-                argumentsBuilder_ =
-                    com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders
-                        ? getArgumentsFieldBuilder()
-                        : null;
+                argumentsBuilder_ = 
+                  com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
+                     getArgumentsFieldBuilder() : null;
               } else {
                 argumentsBuilder_.addAllMessages(other.arguments_);
               }
@@ -21929,32 +20960,30 @@ public Builder mergeFrom(
                 case 0:
                   done = true;
                   break;
-                case 10:
-                  {
-                    type_ = input.readStringRequireUtf8();
-                    bitField0_ |= 0x00000001;
-                    break;
-                  } // case 10
-                case 18:
-                  {
-                    io.temporal.api.common.v1.Payload m =
-                        input.readMessage(
-                            io.temporal.api.common.v1.Payload.parser(), extensionRegistry);
-                    if (argumentsBuilder_ == null) {
-                      ensureArgumentsIsMutable();
-                      arguments_.add(m);
-                    } else {
-                      argumentsBuilder_.addMessage(m);
-                    }
-                    break;
-                  } // case 18
-                default:
-                  {
-                    if (!super.parseUnknownField(input, extensionRegistry, tag)) {
-                      done = true; // was an endgroup tag
-                    }
-                    break;
-                  } // default:
+                case 10: {
+                  type_ = input.readStringRequireUtf8();
+                  bitField0_ |= 0x00000001;
+                  break;
+                } // case 10
+                case 18: {
+                  io.temporal.api.common.v1.Payload m =
+                      input.readMessage(
+                          io.temporal.api.common.v1.Payload.parser(),
+                          extensionRegistry);
+                  if (argumentsBuilder_ == null) {
+                    ensureArgumentsIsMutable();
+                    arguments_.add(m);
+                  } else {
+                    argumentsBuilder_.addMessage(m);
+                  }
+                  break;
+                } // case 18
+                default: {
+                  if (!super.parseUnknownField(input, extensionRegistry, tag)) {
+                    done = true; // was an endgroup tag
+                  }
+                  break;
+                } // default:
               } // switch (tag)
             } // while (!done)
           } catch (com.google.protobuf.InvalidProtocolBufferException e) {
@@ -21964,19 +20993,18 @@ public Builder mergeFrom(
           } // finally
           return this;
         }
-
         private int bitField0_;
 
         private java.lang.Object type_ = "";
         /**
          * string type = 1;
-         *
          * @return The type.
          */
         public java.lang.String getType() {
           java.lang.Object ref = type_;
           if (!(ref instanceof java.lang.String)) {
-            com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
+            com.google.protobuf.ByteString bs =
+                (com.google.protobuf.ByteString) ref;
             java.lang.String s = bs.toStringUtf8();
             type_ = s;
             return s;
@@ -21986,14 +21014,15 @@ public java.lang.String getType() {
         }
         /**
          * string type = 1;
-         *
          * @return The bytes for type.
          */
-        public com.google.protobuf.ByteString getTypeBytes() {
+        public com.google.protobuf.ByteString
+            getTypeBytes() {
           java.lang.Object ref = type_;
           if (ref instanceof String) {
-            com.google.protobuf.ByteString b =
-                com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
+            com.google.protobuf.ByteString b = 
+                com.google.protobuf.ByteString.copyFromUtf8(
+                    (java.lang.String) ref);
             type_ = b;
             return b;
           } else {
@@ -22002,14 +21031,12 @@ public com.google.protobuf.ByteString getTypeBytes() {
         }
         /**
          * string type = 1;
-         *
          * @param value The type to set.
          * @return This builder for chaining.
          */
-        public Builder setType(java.lang.String value) {
-          if (value == null) {
-            throw new NullPointerException();
-          }
+        public Builder setType(
+            java.lang.String value) {
+          if (value == null) { throw new NullPointerException(); }
           type_ = value;
           bitField0_ |= 0x00000001;
           onChanged();
@@ -22017,7 +21044,6 @@ public Builder setType(java.lang.String value) {
         }
         /**
          * string type = 1;
-         *
          * @return This builder for chaining.
          */
         public Builder clearType() {
@@ -22028,14 +21054,12 @@ public Builder clearType() {
         }
         /**
          * string type = 1;
-         *
          * @param value The bytes for type to set.
          * @return This builder for chaining.
          */
-        public Builder setTypeBytes(com.google.protobuf.ByteString value) {
-          if (value == null) {
-            throw new NullPointerException();
-          }
+        public Builder setTypeBytes(
+            com.google.protobuf.ByteString value) {
+          if (value == null) { throw new NullPointerException(); }
           checkByteStringIsUtf8(value);
           type_ = value;
           bitField0_ |= 0x00000001;
@@ -22044,22 +21068,20 @@ public Builder setTypeBytes(com.google.protobuf.ByteString value) {
         }
 
         private java.util.List arguments_ =
-            java.util.Collections.emptyList();
-
+          java.util.Collections.emptyList();
         private void ensureArgumentsIsMutable() {
           if (!((bitField0_ & 0x00000002) != 0)) {
             arguments_ = new java.util.ArrayList(arguments_);
             bitField0_ |= 0x00000002;
-          }
+           }
         }
 
         private com.google.protobuf.RepeatedFieldBuilderV3<
-                io.temporal.api.common.v1.Payload,
-                io.temporal.api.common.v1.Payload.Builder,
-                io.temporal.api.common.v1.PayloadOrBuilder>
-            argumentsBuilder_;
+            io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder, io.temporal.api.common.v1.PayloadOrBuilder> argumentsBuilder_;
 
-        /** repeated .temporal.api.common.v1.Payload arguments = 2; */
+        /**
+         * repeated .temporal.api.common.v1.Payload arguments = 2;
+         */
         public java.util.List getArgumentsList() {
           if (argumentsBuilder_ == null) {
             return java.util.Collections.unmodifiableList(arguments_);
@@ -22067,7 +21089,9 @@ public java.util.List getArgumentsList() {
             return argumentsBuilder_.getMessageList();
           }
         }
-        /** repeated .temporal.api.common.v1.Payload arguments = 2; */
+        /**
+         * repeated .temporal.api.common.v1.Payload arguments = 2;
+         */
         public int getArgumentsCount() {
           if (argumentsBuilder_ == null) {
             return arguments_.size();
@@ -22075,7 +21099,9 @@ public int getArgumentsCount() {
             return argumentsBuilder_.getCount();
           }
         }
-        /** repeated .temporal.api.common.v1.Payload arguments = 2; */
+        /**
+         * repeated .temporal.api.common.v1.Payload arguments = 2;
+         */
         public io.temporal.api.common.v1.Payload getArguments(int index) {
           if (argumentsBuilder_ == null) {
             return arguments_.get(index);
@@ -22083,8 +21109,11 @@ public io.temporal.api.common.v1.Payload getArguments(int index) {
             return argumentsBuilder_.getMessage(index);
           }
         }
-        /** repeated .temporal.api.common.v1.Payload arguments = 2; */
-        public Builder setArguments(int index, io.temporal.api.common.v1.Payload value) {
+        /**
+         * repeated .temporal.api.common.v1.Payload arguments = 2;
+         */
+        public Builder setArguments(
+            int index, io.temporal.api.common.v1.Payload value) {
           if (argumentsBuilder_ == null) {
             if (value == null) {
               throw new NullPointerException();
@@ -22097,7 +21126,9 @@ public Builder setArguments(int index, io.temporal.api.common.v1.Payload value)
           }
           return this;
         }
-        /** repeated .temporal.api.common.v1.Payload arguments = 2; */
+        /**
+         * repeated .temporal.api.common.v1.Payload arguments = 2;
+         */
         public Builder setArguments(
             int index, io.temporal.api.common.v1.Payload.Builder builderForValue) {
           if (argumentsBuilder_ == null) {
@@ -22109,7 +21140,9 @@ public Builder setArguments(
           }
           return this;
         }
-        /** repeated .temporal.api.common.v1.Payload arguments = 2; */
+        /**
+         * repeated .temporal.api.common.v1.Payload arguments = 2;
+         */
         public Builder addArguments(io.temporal.api.common.v1.Payload value) {
           if (argumentsBuilder_ == null) {
             if (value == null) {
@@ -22123,8 +21156,11 @@ public Builder addArguments(io.temporal.api.common.v1.Payload value) {
           }
           return this;
         }
-        /** repeated .temporal.api.common.v1.Payload arguments = 2; */
-        public Builder addArguments(int index, io.temporal.api.common.v1.Payload value) {
+        /**
+         * repeated .temporal.api.common.v1.Payload arguments = 2;
+         */
+        public Builder addArguments(
+            int index, io.temporal.api.common.v1.Payload value) {
           if (argumentsBuilder_ == null) {
             if (value == null) {
               throw new NullPointerException();
@@ -22137,8 +21173,11 @@ public Builder addArguments(int index, io.temporal.api.common.v1.Payload value)
           }
           return this;
         }
-        /** repeated .temporal.api.common.v1.Payload arguments = 2; */
-        public Builder addArguments(io.temporal.api.common.v1.Payload.Builder builderForValue) {
+        /**
+         * repeated .temporal.api.common.v1.Payload arguments = 2;
+         */
+        public Builder addArguments(
+            io.temporal.api.common.v1.Payload.Builder builderForValue) {
           if (argumentsBuilder_ == null) {
             ensureArgumentsIsMutable();
             arguments_.add(builderForValue.build());
@@ -22148,7 +21187,9 @@ public Builder addArguments(io.temporal.api.common.v1.Payload.Builder builderFor
           }
           return this;
         }
-        /** repeated .temporal.api.common.v1.Payload arguments = 2; */
+        /**
+         * repeated .temporal.api.common.v1.Payload arguments = 2;
+         */
         public Builder addArguments(
             int index, io.temporal.api.common.v1.Payload.Builder builderForValue) {
           if (argumentsBuilder_ == null) {
@@ -22160,19 +21201,24 @@ public Builder addArguments(
           }
           return this;
         }
-        /** repeated .temporal.api.common.v1.Payload arguments = 2; */
+        /**
+         * repeated .temporal.api.common.v1.Payload arguments = 2;
+         */
         public Builder addAllArguments(
             java.lang.Iterable values) {
           if (argumentsBuilder_ == null) {
             ensureArgumentsIsMutable();
-            com.google.protobuf.AbstractMessageLite.Builder.addAll(values, arguments_);
+            com.google.protobuf.AbstractMessageLite.Builder.addAll(
+                values, arguments_);
             onChanged();
           } else {
             argumentsBuilder_.addAllMessages(values);
           }
           return this;
         }
-        /** repeated .temporal.api.common.v1.Payload arguments = 2; */
+        /**
+         * repeated .temporal.api.common.v1.Payload arguments = 2;
+         */
         public Builder clearArguments() {
           if (argumentsBuilder_ == null) {
             arguments_ = java.util.Collections.emptyList();
@@ -22183,7 +21229,9 @@ public Builder clearArguments() {
           }
           return this;
         }
-        /** repeated .temporal.api.common.v1.Payload arguments = 2; */
+        /**
+         * repeated .temporal.api.common.v1.Payload arguments = 2;
+         */
         public Builder removeArguments(int index) {
           if (argumentsBuilder_ == null) {
             ensureArgumentsIsMutable();
@@ -22194,53 +21242,62 @@ public Builder removeArguments(int index) {
           }
           return this;
         }
-        /** repeated .temporal.api.common.v1.Payload arguments = 2; */
-        public io.temporal.api.common.v1.Payload.Builder getArgumentsBuilder(int index) {
+        /**
+         * repeated .temporal.api.common.v1.Payload arguments = 2;
+         */
+        public io.temporal.api.common.v1.Payload.Builder getArgumentsBuilder(
+            int index) {
           return getArgumentsFieldBuilder().getBuilder(index);
         }
-        /** repeated .temporal.api.common.v1.Payload arguments = 2; */
-        public io.temporal.api.common.v1.PayloadOrBuilder getArgumentsOrBuilder(int index) {
+        /**
+         * repeated .temporal.api.common.v1.Payload arguments = 2;
+         */
+        public io.temporal.api.common.v1.PayloadOrBuilder getArgumentsOrBuilder(
+            int index) {
           if (argumentsBuilder_ == null) {
-            return arguments_.get(index);
-          } else {
+            return arguments_.get(index);  } else {
             return argumentsBuilder_.getMessageOrBuilder(index);
           }
         }
-        /** repeated .temporal.api.common.v1.Payload arguments = 2; */
-        public java.util.List
-            getArgumentsOrBuilderList() {
+        /**
+         * repeated .temporal.api.common.v1.Payload arguments = 2;
+         */
+        public java.util.List 
+             getArgumentsOrBuilderList() {
           if (argumentsBuilder_ != null) {
             return argumentsBuilder_.getMessageOrBuilderList();
           } else {
             return java.util.Collections.unmodifiableList(arguments_);
           }
         }
-        /** repeated .temporal.api.common.v1.Payload arguments = 2; */
+        /**
+         * repeated .temporal.api.common.v1.Payload arguments = 2;
+         */
         public io.temporal.api.common.v1.Payload.Builder addArgumentsBuilder() {
-          return getArgumentsFieldBuilder()
-              .addBuilder(io.temporal.api.common.v1.Payload.getDefaultInstance());
+          return getArgumentsFieldBuilder().addBuilder(
+              io.temporal.api.common.v1.Payload.getDefaultInstance());
         }
-        /** repeated .temporal.api.common.v1.Payload arguments = 2; */
-        public io.temporal.api.common.v1.Payload.Builder addArgumentsBuilder(int index) {
-          return getArgumentsFieldBuilder()
-              .addBuilder(index, io.temporal.api.common.v1.Payload.getDefaultInstance());
+        /**
+         * repeated .temporal.api.common.v1.Payload arguments = 2;
+         */
+        public io.temporal.api.common.v1.Payload.Builder addArgumentsBuilder(
+            int index) {
+          return getArgumentsFieldBuilder().addBuilder(
+              index, io.temporal.api.common.v1.Payload.getDefaultInstance());
         }
-        /** repeated .temporal.api.common.v1.Payload arguments = 2; */
-        public java.util.List getArgumentsBuilderList() {
+        /**
+         * repeated .temporal.api.common.v1.Payload arguments = 2;
+         */
+        public java.util.List 
+             getArgumentsBuilderList() {
           return getArgumentsFieldBuilder().getBuilderList();
         }
-
         private com.google.protobuf.RepeatedFieldBuilderV3<
-                io.temporal.api.common.v1.Payload,
-                io.temporal.api.common.v1.Payload.Builder,
-                io.temporal.api.common.v1.PayloadOrBuilder>
+            io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder, io.temporal.api.common.v1.PayloadOrBuilder> 
             getArgumentsFieldBuilder() {
           if (argumentsBuilder_ == null) {
-            argumentsBuilder_ =
-                new com.google.protobuf.RepeatedFieldBuilderV3<
-                    io.temporal.api.common.v1.Payload,
-                    io.temporal.api.common.v1.Payload.Builder,
-                    io.temporal.api.common.v1.PayloadOrBuilder>(
+            argumentsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
+                io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder, io.temporal.api.common.v1.PayloadOrBuilder>(
                     arguments_,
                     ((bitField0_ & 0x00000002) != 0),
                     getParentForChildren(),
@@ -22249,7 +21306,6 @@ public java.util.List getArgumentsBui
           }
           return argumentsBuilder_;
         }
-
         @java.lang.Override
         public final Builder setUnknownFields(
             final com.google.protobuf.UnknownFieldSet unknownFields) {
@@ -22262,44 +21318,41 @@ public final Builder mergeUnknownFields(
           return super.mergeUnknownFields(unknownFields);
         }
 
+
         // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.ExecuteActivityAction.GenericActivity)
       }
 
       // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.ExecuteActivityAction.GenericActivity)
-      private static final io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity
-          DEFAULT_INSTANCE;
-
+      private static final io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity DEFAULT_INSTANCE;
       static {
         DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity();
       }
 
-      public static io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity
-          getDefaultInstance() {
+      public static io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity getDefaultInstance() {
         return DEFAULT_INSTANCE;
       }
 
-      private static final com.google.protobuf.Parser PARSER =
-          new com.google.protobuf.AbstractParser() {
-            @java.lang.Override
-            public GenericActivity parsePartialFrom(
-                com.google.protobuf.CodedInputStream input,
-                com.google.protobuf.ExtensionRegistryLite extensionRegistry)
-                throws com.google.protobuf.InvalidProtocolBufferException {
-              Builder builder = newBuilder();
-              try {
-                builder.mergeFrom(input, extensionRegistry);
-              } catch (com.google.protobuf.InvalidProtocolBufferException e) {
-                throw e.setUnfinishedMessage(builder.buildPartial());
-              } catch (com.google.protobuf.UninitializedMessageException e) {
-                throw e.asInvalidProtocolBufferException()
-                    .setUnfinishedMessage(builder.buildPartial());
-              } catch (java.io.IOException e) {
-                throw new com.google.protobuf.InvalidProtocolBufferException(e)
-                    .setUnfinishedMessage(builder.buildPartial());
-              }
-              return builder.buildPartial();
-            }
-          };
+      private static final com.google.protobuf.Parser
+          PARSER = new com.google.protobuf.AbstractParser() {
+        @java.lang.Override
+        public GenericActivity parsePartialFrom(
+            com.google.protobuf.CodedInputStream input,
+            com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+            throws com.google.protobuf.InvalidProtocolBufferException {
+          Builder builder = newBuilder();
+          try {
+            builder.mergeFrom(input, extensionRegistry);
+          } catch (com.google.protobuf.InvalidProtocolBufferException e) {
+            throw e.setUnfinishedMessage(builder.buildPartial());
+          } catch (com.google.protobuf.UninitializedMessageException e) {
+            throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
+          } catch (java.io.IOException e) {
+            throw new com.google.protobuf.InvalidProtocolBufferException(e)
+                .setUnfinishedMessage(builder.buildPartial());
+          }
+          return builder.buildPartial();
+        }
+      };
 
       public static com.google.protobuf.Parser parser() {
         return PARSER;
@@ -22311,28 +21364,24 @@ public com.google.protobuf.Parser getParserForType() {
       }
 
       @java.lang.Override
-      public io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity
-          getDefaultInstanceForType() {
+      public io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity getDefaultInstanceForType() {
         return DEFAULT_INSTANCE;
       }
+
     }
 
     private int bitField0_;
     private int activityTypeCase_ = 0;
-
     @SuppressWarnings("serial")
     private java.lang.Object activityType_;
-
     public enum ActivityTypeCase
-        implements
-            com.google.protobuf.Internal.EnumLite,
+        implements com.google.protobuf.Internal.EnumLite,
             com.google.protobuf.AbstractMessage.InternalOneOfEnum {
       GENERIC(1),
       DELAY(2),
       NOOP(3),
       ACTIVITYTYPE_NOT_SET(0);
       private final int value;
-
       private ActivityTypeCase(int value) {
         this.value = value;
       }
@@ -22348,42 +21397,34 @@ public static ActivityTypeCase valueOf(int value) {
 
       public static ActivityTypeCase forNumber(int value) {
         switch (value) {
-          case 1:
-            return GENERIC;
-          case 2:
-            return DELAY;
-          case 3:
-            return NOOP;
-          case 0:
-            return ACTIVITYTYPE_NOT_SET;
-          default:
-            return null;
+          case 1: return GENERIC;
+          case 2: return DELAY;
+          case 3: return NOOP;
+          case 0: return ACTIVITYTYPE_NOT_SET;
+          default: return null;
         }
       }
-
       public int getNumber() {
         return this.value;
       }
     };
 
-    public ActivityTypeCase getActivityTypeCase() {
-      return ActivityTypeCase.forNumber(activityTypeCase_);
+    public ActivityTypeCase
+    getActivityTypeCase() {
+      return ActivityTypeCase.forNumber(
+          activityTypeCase_);
     }
 
     private int localityCase_ = 0;
-
     @SuppressWarnings("serial")
     private java.lang.Object locality_;
-
     public enum LocalityCase
-        implements
-            com.google.protobuf.Internal.EnumLite,
+        implements com.google.protobuf.Internal.EnumLite,
             com.google.protobuf.AbstractMessage.InternalOneOfEnum {
       IS_LOCAL(11),
       REMOTE(12),
       LOCALITY_NOT_SET(0);
       private final int value;
-
       private LocalityCase(int value) {
         this.value = value;
       }
@@ -22399,30 +21440,26 @@ public static LocalityCase valueOf(int value) {
 
       public static LocalityCase forNumber(int value) {
         switch (value) {
-          case 11:
-            return IS_LOCAL;
-          case 12:
-            return REMOTE;
-          case 0:
-            return LOCALITY_NOT_SET;
-          default:
-            return null;
+          case 11: return IS_LOCAL;
+          case 12: return REMOTE;
+          case 0: return LOCALITY_NOT_SET;
+          default: return null;
         }
       }
-
       public int getNumber() {
         return this.value;
       }
     };
 
-    public LocalityCase getLocalityCase() {
-      return LocalityCase.forNumber(localityCase_);
+    public LocalityCase
+    getLocalityCase() {
+      return LocalityCase.forNumber(
+          localityCase_);
     }
 
     public static final int GENERIC_FIELD_NUMBER = 1;
     /**
      * .temporal.omes.kitchen_sink.ExecuteActivityAction.GenericActivity generic = 1;
-     *
      * @return Whether the generic field is set.
      */
     @java.lang.Override
@@ -22431,41 +21468,34 @@ public boolean hasGeneric() {
     }
     /**
      * .temporal.omes.kitchen_sink.ExecuteActivityAction.GenericActivity generic = 1;
-     *
      * @return The generic.
      */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity getGeneric() {
       if (activityTypeCase_ == 1) {
-        return (io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity) activityType_;
+         return (io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity) activityType_;
       }
-      return io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity
-          .getDefaultInstance();
+      return io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.getDefaultInstance();
     }
     /**
      * .temporal.omes.kitchen_sink.ExecuteActivityAction.GenericActivity generic = 1;
      */
     @java.lang.Override
-    public io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivityOrBuilder
-        getGenericOrBuilder() {
+    public io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivityOrBuilder getGenericOrBuilder() {
       if (activityTypeCase_ == 1) {
-        return (io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity) activityType_;
+         return (io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity) activityType_;
       }
-      return io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity
-          .getDefaultInstance();
+      return io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.getDefaultInstance();
     }
 
     public static final int DELAY_FIELD_NUMBER = 2;
     /**
-     *
-     *
      * 
      * There must be an activity named `delay` which accepts some kind of duration and waits
      * for that long
      * 
* * .google.protobuf.Duration delay = 2; - * * @return Whether the delay field is set. */ @java.lang.Override @@ -22473,27 +21503,22 @@ public boolean hasDelay() { return activityTypeCase_ == 2; } /** - * - * *
      * There must be an activity named `delay` which accepts some kind of duration and waits
      * for that long
      * 
* * .google.protobuf.Duration delay = 2; - * * @return The delay. */ @java.lang.Override public com.google.protobuf.Duration getDelay() { if (activityTypeCase_ == 2) { - return (com.google.protobuf.Duration) activityType_; + return (com.google.protobuf.Duration) activityType_; } return com.google.protobuf.Duration.getDefaultInstance(); } /** - * - * *
      * There must be an activity named `delay` which accepts some kind of duration and waits
      * for that long
@@ -22504,21 +21529,18 @@ public com.google.protobuf.Duration getDelay() {
     @java.lang.Override
     public com.google.protobuf.DurationOrBuilder getDelayOrBuilder() {
       if (activityTypeCase_ == 2) {
-        return (com.google.protobuf.Duration) activityType_;
+         return (com.google.protobuf.Duration) activityType_;
       }
       return com.google.protobuf.Duration.getDefaultInstance();
     }
 
     public static final int NOOP_FIELD_NUMBER = 3;
     /**
-     *
-     *
      * 
      * There must be an activity named `noop` which does nothing
      * 
* * .google.protobuf.Empty noop = 3; - * * @return Whether the noop field is set. */ @java.lang.Override @@ -22526,26 +21548,21 @@ public boolean hasNoop() { return activityTypeCase_ == 3; } /** - * - * *
      * There must be an activity named `noop` which does nothing
      * 
* * .google.protobuf.Empty noop = 3; - * * @return The noop. */ @java.lang.Override public com.google.protobuf.Empty getNoop() { if (activityTypeCase_ == 3) { - return (com.google.protobuf.Empty) activityType_; + return (com.google.protobuf.Empty) activityType_; } return com.google.protobuf.Empty.getDefaultInstance(); } /** - * - * *
      * There must be an activity named `noop` which does nothing
      * 
@@ -22555,24 +21572,20 @@ public com.google.protobuf.Empty getNoop() { @java.lang.Override public com.google.protobuf.EmptyOrBuilder getNoopOrBuilder() { if (activityTypeCase_ == 3) { - return (com.google.protobuf.Empty) activityType_; + return (com.google.protobuf.Empty) activityType_; } return com.google.protobuf.Empty.getDefaultInstance(); } public static final int TASK_QUEUE_FIELD_NUMBER = 4; - @SuppressWarnings("serial") private volatile java.lang.Object taskQueue_ = ""; /** - * - * *
      * The name of the task queue to place this activity request in
      * 
* * string task_queue = 4; - * * @return The taskQueue. */ @java.lang.Override @@ -22581,29 +21594,29 @@ public java.lang.String getTaskQueue() { if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); taskQueue_ = s; return s; } } /** - * - * *
      * The name of the task queue to place this activity request in
      * 
* * string task_queue = 4; - * * @return The bytes for taskQueue. */ @java.lang.Override - public com.google.protobuf.ByteString getTaskQueueBytes() { + public com.google.protobuf.ByteString + getTaskQueueBytes() { java.lang.Object ref = taskQueue_; if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); taskQueue_ = b; return b; } else { @@ -22612,73 +21625,76 @@ public com.google.protobuf.ByteString getTaskQueueBytes() { } public static final int HEADERS_FIELD_NUMBER = 5; - private static final class HeadersDefaultEntryHolder { - static final com.google.protobuf.MapEntry - defaultEntry = + static final com.google.protobuf.MapEntry< + java.lang.String, io.temporal.api.common.v1.Payload> defaultEntry = com.google.protobuf.MapEntry - .newDefaultInstance( - io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_HeadersEntry_descriptor, - com.google.protobuf.WireFormat.FieldType.STRING, - "", - com.google.protobuf.WireFormat.FieldType.MESSAGE, - io.temporal.api.common.v1.Payload.getDefaultInstance()); + .newDefaultInstance( + io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_HeadersEntry_descriptor, + com.google.protobuf.WireFormat.FieldType.STRING, + "", + com.google.protobuf.WireFormat.FieldType.MESSAGE, + io.temporal.api.common.v1.Payload.getDefaultInstance()); } - @SuppressWarnings("serial") + private com.google.protobuf.MapField< + java.lang.String, io.temporal.api.common.v1.Payload> headers_; private com.google.protobuf.MapField - headers_; - - private com.google.protobuf.MapField - internalGetHeaders() { + internalGetHeaders() { if (headers_ == null) { - return com.google.protobuf.MapField.emptyMapField(HeadersDefaultEntryHolder.defaultEntry); + return com.google.protobuf.MapField.emptyMapField( + HeadersDefaultEntryHolder.defaultEntry); } return headers_; } - public int getHeadersCount() { return internalGetHeaders().getMap().size(); } - /** map<string, .temporal.api.common.v1.Payload> headers = 5; */ + /** + * map<string, .temporal.api.common.v1.Payload> headers = 5; + */ @java.lang.Override - public boolean containsHeaders(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } + public boolean containsHeaders( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } return internalGetHeaders().getMap().containsKey(key); } - /** Use {@link #getHeadersMap()} instead. */ + /** + * Use {@link #getHeadersMap()} instead. + */ @java.lang.Override @java.lang.Deprecated public java.util.Map getHeaders() { return getHeadersMap(); } - /** map<string, .temporal.api.common.v1.Payload> headers = 5; */ + /** + * map<string, .temporal.api.common.v1.Payload> headers = 5; + */ @java.lang.Override public java.util.Map getHeadersMap() { return internalGetHeaders().getMap(); } - /** map<string, .temporal.api.common.v1.Payload> headers = 5; */ + /** + * map<string, .temporal.api.common.v1.Payload> headers = 5; + */ @java.lang.Override - public /* nullable */ io.temporal.api.common.v1.Payload getHeadersOrDefault( + public /* nullable */ +io.temporal.api.common.v1.Payload getHeadersOrDefault( java.lang.String key, /* nullable */ - io.temporal.api.common.v1.Payload defaultValue) { - if (key == null) { - throw new NullPointerException("map key"); - } +io.temporal.api.common.v1.Payload defaultValue) { + if (key == null) { throw new NullPointerException("map key"); } java.util.Map map = internalGetHeaders().getMap(); return map.containsKey(key) ? map.get(key) : defaultValue; } - /** map<string, .temporal.api.common.v1.Payload> headers = 5; */ + /** + * map<string, .temporal.api.common.v1.Payload> headers = 5; + */ @java.lang.Override - public io.temporal.api.common.v1.Payload getHeadersOrThrow(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } + public io.temporal.api.common.v1.Payload getHeadersOrThrow( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } java.util.Map map = internalGetHeaders().getMap(); if (!map.containsKey(key)) { @@ -22690,8 +21706,6 @@ public io.temporal.api.common.v1.Payload getHeadersOrThrow(java.lang.String key) public static final int SCHEDULE_TO_CLOSE_TIMEOUT_FIELD_NUMBER = 6; private com.google.protobuf.Duration scheduleToCloseTimeout_; /** - * - * *
      * Indicates how long the caller is willing to wait for an activity completion. Limits how long
      * retries will be attempted. Either this or start_to_close_timeout_seconds must be specified.
@@ -22699,7 +21713,6 @@ public io.temporal.api.common.v1.Payload getHeadersOrThrow(java.lang.String key)
      * 
* * .google.protobuf.Duration schedule_to_close_timeout = 6; - * * @return Whether the scheduleToCloseTimeout field is set. */ @java.lang.Override @@ -22707,8 +21720,6 @@ public boolean hasScheduleToCloseTimeout() { return ((bitField0_ & 0x00000001) != 0); } /** - * - * *
      * Indicates how long the caller is willing to wait for an activity completion. Limits how long
      * retries will be attempted. Either this or start_to_close_timeout_seconds must be specified.
@@ -22716,18 +21727,13 @@ public boolean hasScheduleToCloseTimeout() {
      * 
* * .google.protobuf.Duration schedule_to_close_timeout = 6; - * * @return The scheduleToCloseTimeout. */ @java.lang.Override public com.google.protobuf.Duration getScheduleToCloseTimeout() { - return scheduleToCloseTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : scheduleToCloseTimeout_; + return scheduleToCloseTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : scheduleToCloseTimeout_; } /** - * - * *
      * Indicates how long the caller is willing to wait for an activity completion. Limits how long
      * retries will be attempted. Either this or start_to_close_timeout_seconds must be specified.
@@ -22738,16 +21744,12 @@ public com.google.protobuf.Duration getScheduleToCloseTimeout() {
      */
     @java.lang.Override
     public com.google.protobuf.DurationOrBuilder getScheduleToCloseTimeoutOrBuilder() {
-      return scheduleToCloseTimeout_ == null
-          ? com.google.protobuf.Duration.getDefaultInstance()
-          : scheduleToCloseTimeout_;
+      return scheduleToCloseTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : scheduleToCloseTimeout_;
     }
 
     public static final int SCHEDULE_TO_START_TIMEOUT_FIELD_NUMBER = 7;
     private com.google.protobuf.Duration scheduleToStartTimeout_;
     /**
-     *
-     *
      * 
      * Limits time an activity task can stay in a task queue before a worker picks it up. This
      * timeout is always non retryable as all a retry would achieve is to put it back into the same
@@ -22755,7 +21757,6 @@ public com.google.protobuf.DurationOrBuilder getScheduleToCloseTimeoutOrBuilder(
      * 
* * .google.protobuf.Duration schedule_to_start_timeout = 7; - * * @return Whether the scheduleToStartTimeout field is set. */ @java.lang.Override @@ -22763,8 +21764,6 @@ public boolean hasScheduleToStartTimeout() { return ((bitField0_ & 0x00000002) != 0); } /** - * - * *
      * Limits time an activity task can stay in a task queue before a worker picks it up. This
      * timeout is always non retryable as all a retry would achieve is to put it back into the same
@@ -22772,18 +21771,13 @@ public boolean hasScheduleToStartTimeout() {
      * 
* * .google.protobuf.Duration schedule_to_start_timeout = 7; - * * @return The scheduleToStartTimeout. */ @java.lang.Override public com.google.protobuf.Duration getScheduleToStartTimeout() { - return scheduleToStartTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : scheduleToStartTimeout_; + return scheduleToStartTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : scheduleToStartTimeout_; } /** - * - * *
      * Limits time an activity task can stay in a task queue before a worker picks it up. This
      * timeout is always non retryable as all a retry would achieve is to put it back into the same
@@ -22794,23 +21788,18 @@ public com.google.protobuf.Duration getScheduleToStartTimeout() {
      */
     @java.lang.Override
     public com.google.protobuf.DurationOrBuilder getScheduleToStartTimeoutOrBuilder() {
-      return scheduleToStartTimeout_ == null
-          ? com.google.protobuf.Duration.getDefaultInstance()
-          : scheduleToStartTimeout_;
+      return scheduleToStartTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : scheduleToStartTimeout_;
     }
 
     public static final int START_TO_CLOSE_TIMEOUT_FIELD_NUMBER = 8;
     private com.google.protobuf.Duration startToCloseTimeout_;
     /**
-     *
-     *
      * 
      * Maximum time an activity is allowed to execute after a pick up by a worker. This timeout is
      * always retryable. Either this or schedule_to_close_timeout must be specified.
      * 
* * .google.protobuf.Duration start_to_close_timeout = 8; - * * @return Whether the startToCloseTimeout field is set. */ @java.lang.Override @@ -22818,26 +21807,19 @@ public boolean hasStartToCloseTimeout() { return ((bitField0_ & 0x00000004) != 0); } /** - * - * *
      * Maximum time an activity is allowed to execute after a pick up by a worker. This timeout is
      * always retryable. Either this or schedule_to_close_timeout must be specified.
      * 
* * .google.protobuf.Duration start_to_close_timeout = 8; - * * @return The startToCloseTimeout. */ @java.lang.Override public com.google.protobuf.Duration getStartToCloseTimeout() { - return startToCloseTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : startToCloseTimeout_; + return startToCloseTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : startToCloseTimeout_; } /** - * - * *
      * Maximum time an activity is allowed to execute after a pick up by a worker. This timeout is
      * always retryable. Either this or schedule_to_close_timeout must be specified.
@@ -22847,22 +21829,17 @@ public com.google.protobuf.Duration getStartToCloseTimeout() {
      */
     @java.lang.Override
     public com.google.protobuf.DurationOrBuilder getStartToCloseTimeoutOrBuilder() {
-      return startToCloseTimeout_ == null
-          ? com.google.protobuf.Duration.getDefaultInstance()
-          : startToCloseTimeout_;
+      return startToCloseTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : startToCloseTimeout_;
     }
 
     public static final int HEARTBEAT_TIMEOUT_FIELD_NUMBER = 9;
     private com.google.protobuf.Duration heartbeatTimeout_;
     /**
-     *
-     *
      * 
      * Maximum time allowed between successful worker heartbeats.
      * 
* * .google.protobuf.Duration heartbeat_timeout = 9; - * * @return Whether the heartbeatTimeout field is set. */ @java.lang.Override @@ -22870,25 +21847,18 @@ public boolean hasHeartbeatTimeout() { return ((bitField0_ & 0x00000008) != 0); } /** - * - * *
      * Maximum time allowed between successful worker heartbeats.
      * 
* * .google.protobuf.Duration heartbeat_timeout = 9; - * * @return The heartbeatTimeout. */ @java.lang.Override public com.google.protobuf.Duration getHeartbeatTimeout() { - return heartbeatTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : heartbeatTimeout_; + return heartbeatTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : heartbeatTimeout_; } /** - * - * *
      * Maximum time allowed between successful worker heartbeats.
      * 
@@ -22897,16 +21867,12 @@ public com.google.protobuf.Duration getHeartbeatTimeout() { */ @java.lang.Override public com.google.protobuf.DurationOrBuilder getHeartbeatTimeoutOrBuilder() { - return heartbeatTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : heartbeatTimeout_; + return heartbeatTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : heartbeatTimeout_; } public static final int RETRY_POLICY_FIELD_NUMBER = 10; private io.temporal.api.common.v1.RetryPolicy retryPolicy_; /** - * - * *
      * Activities are provided by a default retry policy controlled through the service dynamic
      * configuration. Retries are happening up to schedule_to_close_timeout. To disable retries set
@@ -22914,7 +21880,6 @@ public com.google.protobuf.DurationOrBuilder getHeartbeatTimeoutOrBuilder() {
      * 
* * .temporal.api.common.v1.RetryPolicy retry_policy = 10; - * * @return Whether the retryPolicy field is set. */ @java.lang.Override @@ -22922,8 +21887,6 @@ public boolean hasRetryPolicy() { return ((bitField0_ & 0x00000010) != 0); } /** - * - * *
      * Activities are provided by a default retry policy controlled through the service dynamic
      * configuration. Retries are happening up to schedule_to_close_timeout. To disable retries set
@@ -22931,18 +21894,13 @@ public boolean hasRetryPolicy() {
      * 
* * .temporal.api.common.v1.RetryPolicy retry_policy = 10; - * * @return The retryPolicy. */ @java.lang.Override public io.temporal.api.common.v1.RetryPolicy getRetryPolicy() { - return retryPolicy_ == null - ? io.temporal.api.common.v1.RetryPolicy.getDefaultInstance() - : retryPolicy_; + return retryPolicy_ == null ? io.temporal.api.common.v1.RetryPolicy.getDefaultInstance() : retryPolicy_; } /** - * - * *
      * Activities are provided by a default retry policy controlled through the service dynamic
      * configuration. Retries are happening up to schedule_to_close_timeout. To disable retries set
@@ -22953,15 +21911,12 @@ public io.temporal.api.common.v1.RetryPolicy getRetryPolicy() {
      */
     @java.lang.Override
     public io.temporal.api.common.v1.RetryPolicyOrBuilder getRetryPolicyOrBuilder() {
-      return retryPolicy_ == null
-          ? io.temporal.api.common.v1.RetryPolicy.getDefaultInstance()
-          : retryPolicy_;
+      return retryPolicy_ == null ? io.temporal.api.common.v1.RetryPolicy.getDefaultInstance() : retryPolicy_;
     }
 
     public static final int IS_LOCAL_FIELD_NUMBER = 11;
     /**
      * .google.protobuf.Empty is_local = 11;
-     *
      * @return Whether the isLocal field is set.
      */
     @java.lang.Override
@@ -22970,21 +21925,22 @@ public boolean hasIsLocal() {
     }
     /**
      * .google.protobuf.Empty is_local = 11;
-     *
      * @return The isLocal.
      */
     @java.lang.Override
     public com.google.protobuf.Empty getIsLocal() {
       if (localityCase_ == 11) {
-        return (com.google.protobuf.Empty) locality_;
+         return (com.google.protobuf.Empty) locality_;
       }
       return com.google.protobuf.Empty.getDefaultInstance();
     }
-    /** .google.protobuf.Empty is_local = 11; */
+    /**
+     * .google.protobuf.Empty is_local = 11;
+     */
     @java.lang.Override
     public com.google.protobuf.EmptyOrBuilder getIsLocalOrBuilder() {
       if (localityCase_ == 11) {
-        return (com.google.protobuf.Empty) locality_;
+         return (com.google.protobuf.Empty) locality_;
       }
       return com.google.protobuf.Empty.getDefaultInstance();
     }
@@ -22992,7 +21948,6 @@ public com.google.protobuf.EmptyOrBuilder getIsLocalOrBuilder() {
     public static final int REMOTE_FIELD_NUMBER = 12;
     /**
      * .temporal.omes.kitchen_sink.RemoteActivityOptions remote = 12;
-     *
      * @return Whether the remote field is set.
      */
     @java.lang.Override
@@ -23001,21 +21956,22 @@ public boolean hasRemote() {
     }
     /**
      * .temporal.omes.kitchen_sink.RemoteActivityOptions remote = 12;
-     *
      * @return The remote.
      */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.RemoteActivityOptions getRemote() {
       if (localityCase_ == 12) {
-        return (io.temporal.omes.KitchenSink.RemoteActivityOptions) locality_;
+         return (io.temporal.omes.KitchenSink.RemoteActivityOptions) locality_;
       }
       return io.temporal.omes.KitchenSink.RemoteActivityOptions.getDefaultInstance();
     }
-    /** .temporal.omes.kitchen_sink.RemoteActivityOptions remote = 12; */
+    /**
+     * .temporal.omes.kitchen_sink.RemoteActivityOptions remote = 12;
+     */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.RemoteActivityOptionsOrBuilder getRemoteOrBuilder() {
       if (localityCase_ == 12) {
-        return (io.temporal.omes.KitchenSink.RemoteActivityOptions) locality_;
+         return (io.temporal.omes.KitchenSink.RemoteActivityOptions) locality_;
       }
       return io.temporal.omes.KitchenSink.RemoteActivityOptions.getDefaultInstance();
     }
@@ -23024,7 +21980,6 @@ public io.temporal.omes.KitchenSink.RemoteActivityOptionsOrBuilder getRemoteOrBu
     private io.temporal.omes.KitchenSink.AwaitableChoice awaitableChoice_;
     /**
      * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 13;
-     *
      * @return Whether the awaitableChoice field is set.
      */
     @java.lang.Override
@@ -23033,25 +21988,21 @@ public boolean hasAwaitableChoice() {
     }
     /**
      * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 13;
-     *
      * @return The awaitableChoice.
      */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.AwaitableChoice getAwaitableChoice() {
-      return awaitableChoice_ == null
-          ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance()
-          : awaitableChoice_;
+      return awaitableChoice_ == null ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() : awaitableChoice_;
     }
-    /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 13; */
+    /**
+     * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 13;
+     */
     @java.lang.Override
     public io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder getAwaitableChoiceOrBuilder() {
-      return awaitableChoice_ == null
-          ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance()
-          : awaitableChoice_;
+      return awaitableChoice_ == null ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() : awaitableChoice_;
     }
 
     private byte memoizedIsInitialized = -1;
-
     @java.lang.Override
     public final boolean isInitialized() {
       byte isInitialized = memoizedIsInitialized;
@@ -23063,10 +22014,10 @@ public final boolean isInitialized() {
     }
 
     @java.lang.Override
-    public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
+    public void writeTo(com.google.protobuf.CodedOutputStream output)
+                        throws java.io.IOException {
       if (activityTypeCase_ == 1) {
-        output.writeMessage(
-            1, (io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity) activityType_);
+        output.writeMessage(1, (io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity) activityType_);
       }
       if (activityTypeCase_ == 2) {
         output.writeMessage(2, (com.google.protobuf.Duration) activityType_);
@@ -23077,8 +22028,12 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io
       if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(taskQueue_)) {
         com.google.protobuf.GeneratedMessageV3.writeString(output, 4, taskQueue_);
       }
-      com.google.protobuf.GeneratedMessageV3.serializeStringMapTo(
-          output, internalGetHeaders(), HeadersDefaultEntryHolder.defaultEntry, 5);
+      com.google.protobuf.GeneratedMessageV3
+        .serializeStringMapTo(
+          output,
+          internalGetHeaders(),
+          HeadersDefaultEntryHolder.defaultEntry,
+          5);
       if (((bitField0_ & 0x00000001) != 0)) {
         output.writeMessage(6, getScheduleToCloseTimeout());
       }
@@ -23113,67 +22068,61 @@ public int getSerializedSize() {
 
       size = 0;
       if (activityTypeCase_ == 1) {
-        size +=
-            com.google.protobuf.CodedOutputStream.computeMessageSize(
-                1,
-                (io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity) activityType_);
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(1, (io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity) activityType_);
       }
       if (activityTypeCase_ == 2) {
-        size +=
-            com.google.protobuf.CodedOutputStream.computeMessageSize(
-                2, (com.google.protobuf.Duration) activityType_);
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(2, (com.google.protobuf.Duration) activityType_);
       }
       if (activityTypeCase_ == 3) {
-        size +=
-            com.google.protobuf.CodedOutputStream.computeMessageSize(
-                3, (com.google.protobuf.Empty) activityType_);
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(3, (com.google.protobuf.Empty) activityType_);
       }
       if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(taskQueue_)) {
         size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, taskQueue_);
       }
-      for (java.util.Map.Entry entry :
-          internalGetHeaders().getMap().entrySet()) {
+      for (java.util.Map.Entry entry
+           : internalGetHeaders().getMap().entrySet()) {
         com.google.protobuf.MapEntry
-            headers__ =
-                HeadersDefaultEntryHolder.defaultEntry
-                    .newBuilderForType()
-                    .setKey(entry.getKey())
-                    .setValue(entry.getValue())
-                    .build();
-        size += com.google.protobuf.CodedOutputStream.computeMessageSize(5, headers__);
+        headers__ = HeadersDefaultEntryHolder.defaultEntry.newBuilderForType()
+            .setKey(entry.getKey())
+            .setValue(entry.getValue())
+            .build();
+        size += com.google.protobuf.CodedOutputStream
+            .computeMessageSize(5, headers__);
       }
       if (((bitField0_ & 0x00000001) != 0)) {
-        size +=
-            com.google.protobuf.CodedOutputStream.computeMessageSize(
-                6, getScheduleToCloseTimeout());
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(6, getScheduleToCloseTimeout());
       }
       if (((bitField0_ & 0x00000002) != 0)) {
-        size +=
-            com.google.protobuf.CodedOutputStream.computeMessageSize(
-                7, getScheduleToStartTimeout());
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(7, getScheduleToStartTimeout());
       }
       if (((bitField0_ & 0x00000004) != 0)) {
-        size +=
-            com.google.protobuf.CodedOutputStream.computeMessageSize(8, getStartToCloseTimeout());
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(8, getStartToCloseTimeout());
       }
       if (((bitField0_ & 0x00000008) != 0)) {
-        size += com.google.protobuf.CodedOutputStream.computeMessageSize(9, getHeartbeatTimeout());
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(9, getHeartbeatTimeout());
       }
       if (((bitField0_ & 0x00000010) != 0)) {
-        size += com.google.protobuf.CodedOutputStream.computeMessageSize(10, getRetryPolicy());
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(10, getRetryPolicy());
       }
       if (localityCase_ == 11) {
-        size +=
-            com.google.protobuf.CodedOutputStream.computeMessageSize(
-                11, (com.google.protobuf.Empty) locality_);
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(11, (com.google.protobuf.Empty) locality_);
       }
       if (localityCase_ == 12) {
-        size +=
-            com.google.protobuf.CodedOutputStream.computeMessageSize(
-                12, (io.temporal.omes.KitchenSink.RemoteActivityOptions) locality_);
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(12, (io.temporal.omes.KitchenSink.RemoteActivityOptions) locality_);
       }
       if (((bitField0_ & 0x00000020) != 0)) {
-        size += com.google.protobuf.CodedOutputStream.computeMessageSize(13, getAwaitableChoice());
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(13, getAwaitableChoice());
       }
       size += getUnknownFields().getSerializedSize();
       memoizedSize = size;
@@ -23183,50 +22132,60 @@ public int getSerializedSize() {
     @java.lang.Override
     public boolean equals(final java.lang.Object obj) {
       if (obj == this) {
-        return true;
+       return true;
       }
       if (!(obj instanceof io.temporal.omes.KitchenSink.ExecuteActivityAction)) {
         return super.equals(obj);
       }
-      io.temporal.omes.KitchenSink.ExecuteActivityAction other =
-          (io.temporal.omes.KitchenSink.ExecuteActivityAction) obj;
+      io.temporal.omes.KitchenSink.ExecuteActivityAction other = (io.temporal.omes.KitchenSink.ExecuteActivityAction) obj;
 
-      if (!getTaskQueue().equals(other.getTaskQueue())) return false;
-      if (!internalGetHeaders().equals(other.internalGetHeaders())) return false;
+      if (!getTaskQueue()
+          .equals(other.getTaskQueue())) return false;
+      if (!internalGetHeaders().equals(
+          other.internalGetHeaders())) return false;
       if (hasScheduleToCloseTimeout() != other.hasScheduleToCloseTimeout()) return false;
       if (hasScheduleToCloseTimeout()) {
-        if (!getScheduleToCloseTimeout().equals(other.getScheduleToCloseTimeout())) return false;
+        if (!getScheduleToCloseTimeout()
+            .equals(other.getScheduleToCloseTimeout())) return false;
       }
       if (hasScheduleToStartTimeout() != other.hasScheduleToStartTimeout()) return false;
       if (hasScheduleToStartTimeout()) {
-        if (!getScheduleToStartTimeout().equals(other.getScheduleToStartTimeout())) return false;
+        if (!getScheduleToStartTimeout()
+            .equals(other.getScheduleToStartTimeout())) return false;
       }
       if (hasStartToCloseTimeout() != other.hasStartToCloseTimeout()) return false;
       if (hasStartToCloseTimeout()) {
-        if (!getStartToCloseTimeout().equals(other.getStartToCloseTimeout())) return false;
+        if (!getStartToCloseTimeout()
+            .equals(other.getStartToCloseTimeout())) return false;
       }
       if (hasHeartbeatTimeout() != other.hasHeartbeatTimeout()) return false;
       if (hasHeartbeatTimeout()) {
-        if (!getHeartbeatTimeout().equals(other.getHeartbeatTimeout())) return false;
+        if (!getHeartbeatTimeout()
+            .equals(other.getHeartbeatTimeout())) return false;
       }
       if (hasRetryPolicy() != other.hasRetryPolicy()) return false;
       if (hasRetryPolicy()) {
-        if (!getRetryPolicy().equals(other.getRetryPolicy())) return false;
+        if (!getRetryPolicy()
+            .equals(other.getRetryPolicy())) return false;
       }
       if (hasAwaitableChoice() != other.hasAwaitableChoice()) return false;
       if (hasAwaitableChoice()) {
-        if (!getAwaitableChoice().equals(other.getAwaitableChoice())) return false;
+        if (!getAwaitableChoice()
+            .equals(other.getAwaitableChoice())) return false;
       }
       if (!getActivityTypeCase().equals(other.getActivityTypeCase())) return false;
       switch (activityTypeCase_) {
         case 1:
-          if (!getGeneric().equals(other.getGeneric())) return false;
+          if (!getGeneric()
+              .equals(other.getGeneric())) return false;
           break;
         case 2:
-          if (!getDelay().equals(other.getDelay())) return false;
+          if (!getDelay()
+              .equals(other.getDelay())) return false;
           break;
         case 3:
-          if (!getNoop().equals(other.getNoop())) return false;
+          if (!getNoop()
+              .equals(other.getNoop())) return false;
           break;
         case 0:
         default:
@@ -23234,10 +22193,12 @@ public boolean equals(final java.lang.Object obj) {
       if (!getLocalityCase().equals(other.getLocalityCase())) return false;
       switch (localityCase_) {
         case 11:
-          if (!getIsLocal().equals(other.getIsLocal())) return false;
+          if (!getIsLocal()
+              .equals(other.getIsLocal())) return false;
           break;
         case 12:
-          if (!getRemote().equals(other.getRemote())) return false;
+          if (!getRemote()
+              .equals(other.getRemote())) return false;
           break;
         case 0:
         default:
@@ -23317,93 +22278,89 @@ public int hashCode() {
     }
 
     public static io.temporal.omes.KitchenSink.ExecuteActivityAction parseFrom(
-        java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
+        java.nio.ByteBuffer data)
+        throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data);
     }
-
     public static io.temporal.omes.KitchenSink.ExecuteActivityAction parseFrom(
-        java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        java.nio.ByteBuffer data,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.ExecuteActivityAction parseFrom(
         com.google.protobuf.ByteString data)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data);
     }
-
     public static io.temporal.omes.KitchenSink.ExecuteActivityAction parseFrom(
         com.google.protobuf.ByteString data,
         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.ExecuteActivityAction parseFrom(byte[] data)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data);
     }
-
     public static io.temporal.omes.KitchenSink.ExecuteActivityAction parseFrom(
-        byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        byte[] data,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data, extensionRegistry);
     }
-
-    public static io.temporal.omes.KitchenSink.ExecuteActivityAction parseFrom(
-        java.io.InputStream input) throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
+    public static io.temporal.omes.KitchenSink.ExecuteActivityAction parseFrom(java.io.InputStream input)
+        throws java.io.IOException {
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input);
     }
-
     public static io.temporal.omes.KitchenSink.ExecuteActivityAction parseFrom(
-        java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        java.io.InputStream input,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
-          PARSER, input, extensionRegistry);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input, extensionRegistry);
     }
 
-    public static io.temporal.omes.KitchenSink.ExecuteActivityAction parseDelimitedFrom(
-        java.io.InputStream input) throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
+    public static io.temporal.omes.KitchenSink.ExecuteActivityAction parseDelimitedFrom(java.io.InputStream input)
+        throws java.io.IOException {
+      return com.google.protobuf.GeneratedMessageV3
+          .parseDelimitedWithIOException(PARSER, input);
     }
 
     public static io.temporal.omes.KitchenSink.ExecuteActivityAction parseDelimitedFrom(
-        java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        java.io.InputStream input,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
-          PARSER, input, extensionRegistry);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseDelimitedWithIOException(PARSER, input, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.ExecuteActivityAction parseFrom(
-        com.google.protobuf.CodedInputStream input) throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
+        com.google.protobuf.CodedInputStream input)
+        throws java.io.IOException {
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input);
     }
-
     public static io.temporal.omes.KitchenSink.ExecuteActivityAction parseFrom(
         com.google.protobuf.CodedInputStream input,
         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
-          PARSER, input, extensionRegistry);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input, extensionRegistry);
     }
 
     @java.lang.Override
-    public Builder newBuilderForType() {
-      return newBuilder();
-    }
-
+    public Builder newBuilderForType() { return newBuilder(); }
     public static Builder newBuilder() {
       return DEFAULT_INSTANCE.toBuilder();
     }
-
     public static Builder newBuilder(io.temporal.omes.KitchenSink.ExecuteActivityAction prototype) {
       return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
     }
-
     @java.lang.Override
     public Builder toBuilder() {
-      return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
+      return this == DEFAULT_INSTANCE
+          ? new Builder() : new Builder().mergeFrom(this);
     }
 
     @java.lang.Override
@@ -23412,15 +22369,16 @@ protected Builder newBuilderForType(
       Builder builder = new Builder(parent);
       return builder;
     }
-    /** Protobuf type {@code temporal.omes.kitchen_sink.ExecuteActivityAction} */
-    public static final class Builder
-        extends com.google.protobuf.GeneratedMessageV3.Builder
-        implements
+    /**
+     * Protobuf type {@code temporal.omes.kitchen_sink.ExecuteActivityAction}
+     */
+    public static final class Builder extends
+        com.google.protobuf.GeneratedMessageV3.Builder implements
         // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.ExecuteActivityAction)
         io.temporal.omes.KitchenSink.ExecuteActivityActionOrBuilder {
-      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_descriptor;
+      public static final com.google.protobuf.Descriptors.Descriptor
+          getDescriptor() {
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_descriptor;
       }
 
       @SuppressWarnings({"rawtypes"})
@@ -23430,10 +22388,10 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMapFieldRefl
           case 5:
             return internalGetHeaders();
           default:
-            throw new RuntimeException("Invalid map field number: " + number);
+            throw new RuntimeException(
+                "Invalid map field number: " + number);
         }
       }
-
       @SuppressWarnings({"rawtypes"})
       protected com.google.protobuf.MapFieldReflectionAccessor internalGetMutableMapFieldReflection(
           int number) {
@@ -23441,18 +22399,16 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMutableMapFi
           case 5:
             return internalGetMutableHeaders();
           default:
-            throw new RuntimeException("Invalid map field number: " + number);
+            throw new RuntimeException(
+                "Invalid map field number: " + number);
         }
       }
-
       @java.lang.Override
       protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
           internalGetFieldAccessorTable() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_fieldAccessorTable
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_fieldAccessorTable
             .ensureFieldAccessorsInitialized(
-                io.temporal.omes.KitchenSink.ExecuteActivityAction.class,
-                io.temporal.omes.KitchenSink.ExecuteActivityAction.Builder.class);
+                io.temporal.omes.KitchenSink.ExecuteActivityAction.class, io.temporal.omes.KitchenSink.ExecuteActivityAction.Builder.class);
       }
 
       // Construct using io.temporal.omes.KitchenSink.ExecuteActivityAction.newBuilder()
@@ -23460,13 +22416,14 @@ private Builder() {
         maybeForceBuilderInitialization();
       }
 
-      private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
+      private Builder(
+          com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
         super(parent);
         maybeForceBuilderInitialization();
       }
-
       private void maybeForceBuilderInitialization() {
-        if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
+        if (com.google.protobuf.GeneratedMessageV3
+                .alwaysUseFieldBuilders) {
           getScheduleToCloseTimeoutFieldBuilder();
           getScheduleToStartTimeoutFieldBuilder();
           getStartToCloseTimeoutFieldBuilder();
@@ -23475,7 +22432,6 @@ private void maybeForceBuilderInitialization() {
           getAwaitableChoiceFieldBuilder();
         }
       }
-
       @java.lang.Override
       public Builder clear() {
         super.clear();
@@ -23535,9 +22491,9 @@ public Builder clear() {
       }
 
       @java.lang.Override
-      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_descriptor;
+      public com.google.protobuf.Descriptors.Descriptor
+          getDescriptorForType() {
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_descriptor;
       }
 
       @java.lang.Override
@@ -23556,11 +22512,8 @@ public io.temporal.omes.KitchenSink.ExecuteActivityAction build() {
 
       @java.lang.Override
       public io.temporal.omes.KitchenSink.ExecuteActivityAction buildPartial() {
-        io.temporal.omes.KitchenSink.ExecuteActivityAction result =
-            new io.temporal.omes.KitchenSink.ExecuteActivityAction(this);
-        if (bitField0_ != 0) {
-          buildPartial0(result);
-        }
+        io.temporal.omes.KitchenSink.ExecuteActivityAction result = new io.temporal.omes.KitchenSink.ExecuteActivityAction(this);
+        if (bitField0_ != 0) { buildPartial0(result); }
         buildPartialOneofs(result);
         onBuilt();
         return result;
@@ -23576,41 +22529,39 @@ private void buildPartial0(io.temporal.omes.KitchenSink.ExecuteActivityAction re
         }
         int to_bitField0_ = 0;
         if (((from_bitField0_ & 0x00000020) != 0)) {
-          result.scheduleToCloseTimeout_ =
-              scheduleToCloseTimeoutBuilder_ == null
-                  ? scheduleToCloseTimeout_
-                  : scheduleToCloseTimeoutBuilder_.build();
+          result.scheduleToCloseTimeout_ = scheduleToCloseTimeoutBuilder_ == null
+              ? scheduleToCloseTimeout_
+              : scheduleToCloseTimeoutBuilder_.build();
           to_bitField0_ |= 0x00000001;
         }
         if (((from_bitField0_ & 0x00000040) != 0)) {
-          result.scheduleToStartTimeout_ =
-              scheduleToStartTimeoutBuilder_ == null
-                  ? scheduleToStartTimeout_
-                  : scheduleToStartTimeoutBuilder_.build();
+          result.scheduleToStartTimeout_ = scheduleToStartTimeoutBuilder_ == null
+              ? scheduleToStartTimeout_
+              : scheduleToStartTimeoutBuilder_.build();
           to_bitField0_ |= 0x00000002;
         }
         if (((from_bitField0_ & 0x00000080) != 0)) {
-          result.startToCloseTimeout_ =
-              startToCloseTimeoutBuilder_ == null
-                  ? startToCloseTimeout_
-                  : startToCloseTimeoutBuilder_.build();
+          result.startToCloseTimeout_ = startToCloseTimeoutBuilder_ == null
+              ? startToCloseTimeout_
+              : startToCloseTimeoutBuilder_.build();
           to_bitField0_ |= 0x00000004;
         }
         if (((from_bitField0_ & 0x00000100) != 0)) {
-          result.heartbeatTimeout_ =
-              heartbeatTimeoutBuilder_ == null
-                  ? heartbeatTimeout_
-                  : heartbeatTimeoutBuilder_.build();
+          result.heartbeatTimeout_ = heartbeatTimeoutBuilder_ == null
+              ? heartbeatTimeout_
+              : heartbeatTimeoutBuilder_.build();
           to_bitField0_ |= 0x00000008;
         }
         if (((from_bitField0_ & 0x00000200) != 0)) {
-          result.retryPolicy_ =
-              retryPolicyBuilder_ == null ? retryPolicy_ : retryPolicyBuilder_.build();
+          result.retryPolicy_ = retryPolicyBuilder_ == null
+              ? retryPolicy_
+              : retryPolicyBuilder_.build();
           to_bitField0_ |= 0x00000010;
         }
         if (((from_bitField0_ & 0x00001000) != 0)) {
-          result.awaitableChoice_ =
-              awaitableChoiceBuilder_ == null ? awaitableChoice_ : awaitableChoiceBuilder_.build();
+          result.awaitableChoice_ = awaitableChoiceBuilder_ == null
+              ? awaitableChoice_
+              : awaitableChoiceBuilder_.build();
           to_bitField0_ |= 0x00000020;
         }
         result.bitField0_ |= to_bitField0_;
@@ -23619,21 +22570,26 @@ private void buildPartial0(io.temporal.omes.KitchenSink.ExecuteActivityAction re
       private void buildPartialOneofs(io.temporal.omes.KitchenSink.ExecuteActivityAction result) {
         result.activityTypeCase_ = activityTypeCase_;
         result.activityType_ = this.activityType_;
-        if (activityTypeCase_ == 1 && genericBuilder_ != null) {
+        if (activityTypeCase_ == 1 &&
+            genericBuilder_ != null) {
           result.activityType_ = genericBuilder_.build();
         }
-        if (activityTypeCase_ == 2 && delayBuilder_ != null) {
+        if (activityTypeCase_ == 2 &&
+            delayBuilder_ != null) {
           result.activityType_ = delayBuilder_.build();
         }
-        if (activityTypeCase_ == 3 && noopBuilder_ != null) {
+        if (activityTypeCase_ == 3 &&
+            noopBuilder_ != null) {
           result.activityType_ = noopBuilder_.build();
         }
         result.localityCase_ = localityCase_;
         result.locality_ = this.locality_;
-        if (localityCase_ == 11 && isLocalBuilder_ != null) {
+        if (localityCase_ == 11 &&
+            isLocalBuilder_ != null) {
           result.locality_ = isLocalBuilder_.build();
         }
-        if (localityCase_ == 12 && remoteBuilder_ != null) {
+        if (localityCase_ == 12 &&
+            remoteBuilder_ != null) {
           result.locality_ = remoteBuilder_.build();
         }
       }
@@ -23642,41 +22598,38 @@ private void buildPartialOneofs(io.temporal.omes.KitchenSink.ExecuteActivityActi
       public Builder clone() {
         return super.clone();
       }
-
       @java.lang.Override
       public Builder setField(
-          com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
+          com.google.protobuf.Descriptors.FieldDescriptor field,
+          java.lang.Object value) {
         return super.setField(field, value);
       }
-
       @java.lang.Override
-      public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
+      public Builder clearField(
+          com.google.protobuf.Descriptors.FieldDescriptor field) {
         return super.clearField(field);
       }
-
       @java.lang.Override
-      public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
+      public Builder clearOneof(
+          com.google.protobuf.Descriptors.OneofDescriptor oneof) {
         return super.clearOneof(oneof);
       }
-
       @java.lang.Override
       public Builder setRepeatedField(
           com.google.protobuf.Descriptors.FieldDescriptor field,
-          int index,
-          java.lang.Object value) {
+          int index, java.lang.Object value) {
         return super.setRepeatedField(field, index, value);
       }
-
       @java.lang.Override
       public Builder addRepeatedField(
-          com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
+          com.google.protobuf.Descriptors.FieldDescriptor field,
+          java.lang.Object value) {
         return super.addRepeatedField(field, value);
       }
-
       @java.lang.Override
       public Builder mergeFrom(com.google.protobuf.Message other) {
         if (other instanceof io.temporal.omes.KitchenSink.ExecuteActivityAction) {
-          return mergeFrom((io.temporal.omes.KitchenSink.ExecuteActivityAction) other);
+          return mergeFrom((io.temporal.omes.KitchenSink.ExecuteActivityAction)other);
         } else {
           super.mergeFrom(other);
           return this;
@@ -23684,14 +22637,14 @@ public Builder mergeFrom(com.google.protobuf.Message other) {
       }
 
       public Builder mergeFrom(io.temporal.omes.KitchenSink.ExecuteActivityAction other) {
-        if (other == io.temporal.omes.KitchenSink.ExecuteActivityAction.getDefaultInstance())
-          return this;
+        if (other == io.temporal.omes.KitchenSink.ExecuteActivityAction.getDefaultInstance()) return this;
         if (!other.getTaskQueue().isEmpty()) {
           taskQueue_ = other.taskQueue_;
           bitField0_ |= 0x00000008;
           onChanged();
         }
-        internalGetMutableHeaders().mergeFrom(other.internalGetHeaders());
+        internalGetMutableHeaders().mergeFrom(
+            other.internalGetHeaders());
         bitField0_ |= 0x00000010;
         if (other.hasScheduleToCloseTimeout()) {
           mergeScheduleToCloseTimeout(other.getScheduleToCloseTimeout());
@@ -23712,41 +22665,34 @@ public Builder mergeFrom(io.temporal.omes.KitchenSink.ExecuteActivityAction othe
           mergeAwaitableChoice(other.getAwaitableChoice());
         }
         switch (other.getActivityTypeCase()) {
-          case GENERIC:
-            {
-              mergeGeneric(other.getGeneric());
-              break;
-            }
-          case DELAY:
-            {
-              mergeDelay(other.getDelay());
-              break;
-            }
-          case NOOP:
-            {
-              mergeNoop(other.getNoop());
-              break;
-            }
-          case ACTIVITYTYPE_NOT_SET:
-            {
-              break;
-            }
+          case GENERIC: {
+            mergeGeneric(other.getGeneric());
+            break;
+          }
+          case DELAY: {
+            mergeDelay(other.getDelay());
+            break;
+          }
+          case NOOP: {
+            mergeNoop(other.getNoop());
+            break;
+          }
+          case ACTIVITYTYPE_NOT_SET: {
+            break;
+          }
         }
         switch (other.getLocalityCase()) {
-          case IS_LOCAL:
-            {
-              mergeIsLocal(other.getIsLocal());
-              break;
-            }
-          case REMOTE:
-            {
-              mergeRemote(other.getRemote());
-              break;
-            }
-          case LOCALITY_NOT_SET:
-            {
-              break;
-            }
+          case IS_LOCAL: {
+            mergeIsLocal(other.getIsLocal());
+            break;
+          }
+          case REMOTE: {
+            mergeRemote(other.getRemote());
+            break;
+          }
+          case LOCALITY_NOT_SET: {
+            break;
+          }
         }
         this.mergeUnknownFields(other.getUnknownFields());
         onChanged();
@@ -23774,103 +22720,103 @@ public Builder mergeFrom(
               case 0:
                 done = true;
                 break;
-              case 10:
-                {
-                  input.readMessage(getGenericFieldBuilder().getBuilder(), extensionRegistry);
-                  activityTypeCase_ = 1;
-                  break;
-                } // case 10
-              case 18:
-                {
-                  input.readMessage(getDelayFieldBuilder().getBuilder(), extensionRegistry);
-                  activityTypeCase_ = 2;
-                  break;
-                } // case 18
-              case 26:
-                {
-                  input.readMessage(getNoopFieldBuilder().getBuilder(), extensionRegistry);
-                  activityTypeCase_ = 3;
-                  break;
-                } // case 26
-              case 34:
-                {
-                  taskQueue_ = input.readStringRequireUtf8();
-                  bitField0_ |= 0x00000008;
-                  break;
-                } // case 34
-              case 42:
-                {
-                  com.google.protobuf.MapEntry
-                      headers__ =
-                          input.readMessage(
-                              HeadersDefaultEntryHolder.defaultEntry.getParserForType(),
-                              extensionRegistry);
-                  internalGetMutableHeaders()
-                      .ensureBuilderMap()
-                      .put(headers__.getKey(), headers__.getValue());
-                  bitField0_ |= 0x00000010;
-                  break;
-                } // case 42
-              case 50:
-                {
-                  input.readMessage(
-                      getScheduleToCloseTimeoutFieldBuilder().getBuilder(), extensionRegistry);
-                  bitField0_ |= 0x00000020;
-                  break;
-                } // case 50
-              case 58:
-                {
-                  input.readMessage(
-                      getScheduleToStartTimeoutFieldBuilder().getBuilder(), extensionRegistry);
-                  bitField0_ |= 0x00000040;
-                  break;
-                } // case 58
-              case 66:
-                {
-                  input.readMessage(
-                      getStartToCloseTimeoutFieldBuilder().getBuilder(), extensionRegistry);
-                  bitField0_ |= 0x00000080;
-                  break;
-                } // case 66
-              case 74:
-                {
-                  input.readMessage(
-                      getHeartbeatTimeoutFieldBuilder().getBuilder(), extensionRegistry);
-                  bitField0_ |= 0x00000100;
-                  break;
-                } // case 74
-              case 82:
-                {
-                  input.readMessage(getRetryPolicyFieldBuilder().getBuilder(), extensionRegistry);
-                  bitField0_ |= 0x00000200;
-                  break;
-                } // case 82
-              case 90:
-                {
-                  input.readMessage(getIsLocalFieldBuilder().getBuilder(), extensionRegistry);
-                  localityCase_ = 11;
-                  break;
-                } // case 90
-              case 98:
-                {
-                  input.readMessage(getRemoteFieldBuilder().getBuilder(), extensionRegistry);
-                  localityCase_ = 12;
-                  break;
-                } // case 98
-              case 106:
-                {
-                  input.readMessage(
-                      getAwaitableChoiceFieldBuilder().getBuilder(), extensionRegistry);
-                  bitField0_ |= 0x00001000;
-                  break;
-                } // case 106
-              default:
-                {
-                  if (!super.parseUnknownField(input, extensionRegistry, tag)) {
-                    done = true; // was an endgroup tag
-                  }
-                  break;
-                } // default:
+              case 10: {
+                input.readMessage(
+                    getGenericFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                activityTypeCase_ = 1;
+                break;
+              } // case 10
+              case 18: {
+                input.readMessage(
+                    getDelayFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                activityTypeCase_ = 2;
+                break;
+              } // case 18
+              case 26: {
+                input.readMessage(
+                    getNoopFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                activityTypeCase_ = 3;
+                break;
+              } // case 26
+              case 34: {
+                taskQueue_ = input.readStringRequireUtf8();
+                bitField0_ |= 0x00000008;
+                break;
+              } // case 34
+              case 42: {
+                com.google.protobuf.MapEntry
+                headers__ = input.readMessage(
+                    HeadersDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry);
+                internalGetMutableHeaders().ensureBuilderMap().put(
+                    headers__.getKey(), headers__.getValue());
+                bitField0_ |= 0x00000010;
+                break;
+              } // case 42
+              case 50: {
+                input.readMessage(
+                    getScheduleToCloseTimeoutFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                bitField0_ |= 0x00000020;
+                break;
+              } // case 50
+              case 58: {
+                input.readMessage(
+                    getScheduleToStartTimeoutFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                bitField0_ |= 0x00000040;
+                break;
+              } // case 58
+              case 66: {
+                input.readMessage(
+                    getStartToCloseTimeoutFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                bitField0_ |= 0x00000080;
+                break;
+              } // case 66
+              case 74: {
+                input.readMessage(
+                    getHeartbeatTimeoutFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                bitField0_ |= 0x00000100;
+                break;
+              } // case 74
+              case 82: {
+                input.readMessage(
+                    getRetryPolicyFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                bitField0_ |= 0x00000200;
+                break;
+              } // case 82
+              case 90: {
+                input.readMessage(
+                    getIsLocalFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                localityCase_ = 11;
+                break;
+              } // case 90
+              case 98: {
+                input.readMessage(
+                    getRemoteFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                localityCase_ = 12;
+                break;
+              } // case 98
+              case 106: {
+                input.readMessage(
+                    getAwaitableChoiceFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                bitField0_ |= 0x00001000;
+                break;
+              } // case 106
+              default: {
+                if (!super.parseUnknownField(input, extensionRegistry, tag)) {
+                  done = true; // was an endgroup tag
+                }
+                break;
+              } // default:
             } // switch (tag)
           } // while (!done)
         } catch (com.google.protobuf.InvalidProtocolBufferException e) {
@@ -23880,12 +22826,12 @@ public Builder mergeFrom(
         } // finally
         return this;
       }
-
       private int activityTypeCase_ = 0;
       private java.lang.Object activityType_;
-
-      public ActivityTypeCase getActivityTypeCase() {
-        return ActivityTypeCase.forNumber(activityTypeCase_);
+      public ActivityTypeCase
+          getActivityTypeCase() {
+        return ActivityTypeCase.forNumber(
+            activityTypeCase_);
       }
 
       public Builder clearActivityType() {
@@ -23897,9 +22843,10 @@ public Builder clearActivityType() {
 
       private int localityCase_ = 0;
       private java.lang.Object locality_;
-
-      public LocalityCase getLocalityCase() {
-        return LocalityCase.forNumber(localityCase_);
+      public LocalityCase
+          getLocalityCase() {
+        return LocalityCase.forNumber(
+            localityCase_);
       }
 
       public Builder clearLocality() {
@@ -23912,13 +22859,9 @@ public Builder clearLocality() {
       private int bitField0_;
 
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity,
-              io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.Builder,
-              io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivityOrBuilder>
-          genericBuilder_;
+          io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity, io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.Builder, io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivityOrBuilder> genericBuilder_;
       /**
        * .temporal.omes.kitchen_sink.ExecuteActivityAction.GenericActivity generic = 1;
-       *
        * @return Whether the generic field is set.
        */
       @java.lang.Override
@@ -23927,31 +22870,26 @@ public boolean hasGeneric() {
       }
       /**
        * .temporal.omes.kitchen_sink.ExecuteActivityAction.GenericActivity generic = 1;
-       *
        * @return The generic.
        */
       @java.lang.Override
       public io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity getGeneric() {
         if (genericBuilder_ == null) {
           if (activityTypeCase_ == 1) {
-            return (io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity)
-                activityType_;
+            return (io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity) activityType_;
           }
-          return io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity
-              .getDefaultInstance();
+          return io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.getDefaultInstance();
         } else {
           if (activityTypeCase_ == 1) {
             return genericBuilder_.getMessage();
           }
-          return io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity
-              .getDefaultInstance();
+          return io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.getDefaultInstance();
         }
       }
       /**
        * .temporal.omes.kitchen_sink.ExecuteActivityAction.GenericActivity generic = 1;
        */
-      public Builder setGeneric(
-          io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity value) {
+      public Builder setGeneric(io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity value) {
         if (genericBuilder_ == null) {
           if (value == null) {
             throw new NullPointerException();
@@ -23968,8 +22906,7 @@ public Builder setGeneric(
        * .temporal.omes.kitchen_sink.ExecuteActivityAction.GenericActivity generic = 1;
        */
       public Builder setGeneric(
-          io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.Builder
-              builderForValue) {
+          io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.Builder builderForValue) {
         if (genericBuilder_ == null) {
           activityType_ = builderForValue.build();
           onChanged();
@@ -23982,19 +22919,12 @@ public Builder setGeneric(
       /**
        * .temporal.omes.kitchen_sink.ExecuteActivityAction.GenericActivity generic = 1;
        */
-      public Builder mergeGeneric(
-          io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity value) {
+      public Builder mergeGeneric(io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity value) {
         if (genericBuilder_ == null) {
-          if (activityTypeCase_ == 1
-              && activityType_
-                  != io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity
-                      .getDefaultInstance()) {
-            activityType_ =
-                io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.newBuilder(
-                        (io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity)
-                            activityType_)
-                    .mergeFrom(value)
-                    .buildPartial();
+          if (activityTypeCase_ == 1 &&
+              activityType_ != io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.getDefaultInstance()) {
+            activityType_ = io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.newBuilder((io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity) activityType_)
+                .mergeFrom(value).buildPartial();
           } else {
             activityType_ = value;
           }
@@ -24031,48 +22961,36 @@ public Builder clearGeneric() {
       /**
        * .temporal.omes.kitchen_sink.ExecuteActivityAction.GenericActivity generic = 1;
        */
-      public io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.Builder
-          getGenericBuilder() {
+      public io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.Builder getGenericBuilder() {
         return getGenericFieldBuilder().getBuilder();
       }
       /**
        * .temporal.omes.kitchen_sink.ExecuteActivityAction.GenericActivity generic = 1;
        */
       @java.lang.Override
-      public io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivityOrBuilder
-          getGenericOrBuilder() {
+      public io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivityOrBuilder getGenericOrBuilder() {
         if ((activityTypeCase_ == 1) && (genericBuilder_ != null)) {
           return genericBuilder_.getMessageOrBuilder();
         } else {
           if (activityTypeCase_ == 1) {
-            return (io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity)
-                activityType_;
+            return (io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity) activityType_;
           }
-          return io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity
-              .getDefaultInstance();
+          return io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.getDefaultInstance();
         }
       }
       /**
        * .temporal.omes.kitchen_sink.ExecuteActivityAction.GenericActivity generic = 1;
        */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity,
-              io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.Builder,
-              io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivityOrBuilder>
+          io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity, io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.Builder, io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivityOrBuilder> 
           getGenericFieldBuilder() {
         if (genericBuilder_ == null) {
           if (!(activityTypeCase_ == 1)) {
-            activityType_ =
-                io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity
-                    .getDefaultInstance();
-          }
-          genericBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity,
-                  io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.Builder,
-                  io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivityOrBuilder>(
-                  (io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity)
-                      activityType_,
+            activityType_ = io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.getDefaultInstance();
+          }
+          genericBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity, io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity.Builder, io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivityOrBuilder>(
+                  (io.temporal.omes.KitchenSink.ExecuteActivityAction.GenericActivity) activityType_,
                   getParentForChildren(),
                   isClean());
           activityType_ = null;
@@ -24083,20 +23001,14 @@ public Builder clearGeneric() {
       }
 
       private com.google.protobuf.SingleFieldBuilderV3<
-              com.google.protobuf.Duration,
-              com.google.protobuf.Duration.Builder,
-              com.google.protobuf.DurationOrBuilder>
-          delayBuilder_;
+          com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> delayBuilder_;
       /**
-       *
-       *
        * 
        * There must be an activity named `delay` which accepts some kind of duration and waits
        * for that long
        * 
* * .google.protobuf.Duration delay = 2; - * * @return Whether the delay field is set. */ @java.lang.Override @@ -24104,15 +23016,12 @@ public boolean hasDelay() { return activityTypeCase_ == 2; } /** - * - * *
        * There must be an activity named `delay` which accepts some kind of duration and waits
        * for that long
        * 
* * .google.protobuf.Duration delay = 2; - * * @return The delay. */ @java.lang.Override @@ -24130,8 +23039,6 @@ public com.google.protobuf.Duration getDelay() { } } /** - * - * *
        * There must be an activity named `delay` which accepts some kind of duration and waits
        * for that long
@@ -24153,8 +23060,6 @@ public Builder setDelay(com.google.protobuf.Duration value) {
         return this;
       }
       /**
-       *
-       *
        * 
        * There must be an activity named `delay` which accepts some kind of duration and waits
        * for that long
@@ -24162,7 +23067,8 @@ public Builder setDelay(com.google.protobuf.Duration value) {
        *
        * .google.protobuf.Duration delay = 2;
        */
-      public Builder setDelay(com.google.protobuf.Duration.Builder builderForValue) {
+      public Builder setDelay(
+          com.google.protobuf.Duration.Builder builderForValue) {
         if (delayBuilder_ == null) {
           activityType_ = builderForValue.build();
           onChanged();
@@ -24173,8 +23079,6 @@ public Builder setDelay(com.google.protobuf.Duration.Builder builderForValue) {
         return this;
       }
       /**
-       *
-       *
        * 
        * There must be an activity named `delay` which accepts some kind of duration and waits
        * for that long
@@ -24184,13 +23088,10 @@ public Builder setDelay(com.google.protobuf.Duration.Builder builderForValue) {
        */
       public Builder mergeDelay(com.google.protobuf.Duration value) {
         if (delayBuilder_ == null) {
-          if (activityTypeCase_ == 2
-              && activityType_ != com.google.protobuf.Duration.getDefaultInstance()) {
-            activityType_ =
-                com.google.protobuf.Duration.newBuilder(
-                        (com.google.protobuf.Duration) activityType_)
-                    .mergeFrom(value)
-                    .buildPartial();
+          if (activityTypeCase_ == 2 &&
+              activityType_ != com.google.protobuf.Duration.getDefaultInstance()) {
+            activityType_ = com.google.protobuf.Duration.newBuilder((com.google.protobuf.Duration) activityType_)
+                .mergeFrom(value).buildPartial();
           } else {
             activityType_ = value;
           }
@@ -24206,8 +23107,6 @@ public Builder mergeDelay(com.google.protobuf.Duration value) {
         return this;
       }
       /**
-       *
-       *
        * 
        * There must be an activity named `delay` which accepts some kind of duration and waits
        * for that long
@@ -24232,8 +23131,6 @@ public Builder clearDelay() {
         return this;
       }
       /**
-       *
-       *
        * 
        * There must be an activity named `delay` which accepts some kind of duration and waits
        * for that long
@@ -24245,8 +23142,6 @@ public com.google.protobuf.Duration.Builder getDelayBuilder() {
         return getDelayFieldBuilder().getBuilder();
       }
       /**
-       *
-       *
        * 
        * There must be an activity named `delay` which accepts some kind of duration and waits
        * for that long
@@ -24266,8 +23161,6 @@ public com.google.protobuf.DurationOrBuilder getDelayOrBuilder() {
         }
       }
       /**
-       *
-       *
        * 
        * There must be an activity named `delay` which accepts some kind of duration and waits
        * for that long
@@ -24276,20 +23169,17 @@ public com.google.protobuf.DurationOrBuilder getDelayOrBuilder() {
        * .google.protobuf.Duration delay = 2;
        */
       private com.google.protobuf.SingleFieldBuilderV3<
-              com.google.protobuf.Duration,
-              com.google.protobuf.Duration.Builder,
-              com.google.protobuf.DurationOrBuilder>
+          com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> 
           getDelayFieldBuilder() {
         if (delayBuilder_ == null) {
           if (!(activityTypeCase_ == 2)) {
             activityType_ = com.google.protobuf.Duration.getDefaultInstance();
           }
-          delayBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  com.google.protobuf.Duration,
-                  com.google.protobuf.Duration.Builder,
-                  com.google.protobuf.DurationOrBuilder>(
-                  (com.google.protobuf.Duration) activityType_, getParentForChildren(), isClean());
+          delayBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder>(
+                  (com.google.protobuf.Duration) activityType_,
+                  getParentForChildren(),
+                  isClean());
           activityType_ = null;
         }
         activityTypeCase_ = 2;
@@ -24298,19 +23188,13 @@ public com.google.protobuf.DurationOrBuilder getDelayOrBuilder() {
       }
 
       private com.google.protobuf.SingleFieldBuilderV3<
-              com.google.protobuf.Empty,
-              com.google.protobuf.Empty.Builder,
-              com.google.protobuf.EmptyOrBuilder>
-          noopBuilder_;
+          com.google.protobuf.Empty, com.google.protobuf.Empty.Builder, com.google.protobuf.EmptyOrBuilder> noopBuilder_;
       /**
-       *
-       *
        * 
        * There must be an activity named `noop` which does nothing
        * 
* * .google.protobuf.Empty noop = 3; - * * @return Whether the noop field is set. */ @java.lang.Override @@ -24318,14 +23202,11 @@ public boolean hasNoop() { return activityTypeCase_ == 3; } /** - * - * *
        * There must be an activity named `noop` which does nothing
        * 
* * .google.protobuf.Empty noop = 3; - * * @return The noop. */ @java.lang.Override @@ -24343,8 +23224,6 @@ public com.google.protobuf.Empty getNoop() { } } /** - * - * *
        * There must be an activity named `noop` which does nothing
        * 
@@ -24365,15 +23244,14 @@ public Builder setNoop(com.google.protobuf.Empty value) { return this; } /** - * - * *
        * There must be an activity named `noop` which does nothing
        * 
* * .google.protobuf.Empty noop = 3; */ - public Builder setNoop(com.google.protobuf.Empty.Builder builderForValue) { + public Builder setNoop( + com.google.protobuf.Empty.Builder builderForValue) { if (noopBuilder_ == null) { activityType_ = builderForValue.build(); onChanged(); @@ -24384,8 +23262,6 @@ public Builder setNoop(com.google.protobuf.Empty.Builder builderForValue) { return this; } /** - * - * *
        * There must be an activity named `noop` which does nothing
        * 
@@ -24394,12 +23270,10 @@ public Builder setNoop(com.google.protobuf.Empty.Builder builderForValue) { */ public Builder mergeNoop(com.google.protobuf.Empty value) { if (noopBuilder_ == null) { - if (activityTypeCase_ == 3 - && activityType_ != com.google.protobuf.Empty.getDefaultInstance()) { - activityType_ = - com.google.protobuf.Empty.newBuilder((com.google.protobuf.Empty) activityType_) - .mergeFrom(value) - .buildPartial(); + if (activityTypeCase_ == 3 && + activityType_ != com.google.protobuf.Empty.getDefaultInstance()) { + activityType_ = com.google.protobuf.Empty.newBuilder((com.google.protobuf.Empty) activityType_) + .mergeFrom(value).buildPartial(); } else { activityType_ = value; } @@ -24415,8 +23289,6 @@ public Builder mergeNoop(com.google.protobuf.Empty value) { return this; } /** - * - * *
        * There must be an activity named `noop` which does nothing
        * 
@@ -24440,8 +23312,6 @@ public Builder clearNoop() { return this; } /** - * - * *
        * There must be an activity named `noop` which does nothing
        * 
@@ -24452,8 +23322,6 @@ public com.google.protobuf.Empty.Builder getNoopBuilder() { return getNoopFieldBuilder().getBuilder(); } /** - * - * *
        * There must be an activity named `noop` which does nothing
        * 
@@ -24472,8 +23340,6 @@ public com.google.protobuf.EmptyOrBuilder getNoopOrBuilder() { } } /** - * - * *
        * There must be an activity named `noop` which does nothing
        * 
@@ -24481,20 +23347,17 @@ public com.google.protobuf.EmptyOrBuilder getNoopOrBuilder() { * .google.protobuf.Empty noop = 3; */ private com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Empty, - com.google.protobuf.Empty.Builder, - com.google.protobuf.EmptyOrBuilder> + com.google.protobuf.Empty, com.google.protobuf.Empty.Builder, com.google.protobuf.EmptyOrBuilder> getNoopFieldBuilder() { if (noopBuilder_ == null) { if (!(activityTypeCase_ == 3)) { activityType_ = com.google.protobuf.Empty.getDefaultInstance(); } - noopBuilder_ = - new com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Empty, - com.google.protobuf.Empty.Builder, - com.google.protobuf.EmptyOrBuilder>( - (com.google.protobuf.Empty) activityType_, getParentForChildren(), isClean()); + noopBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Empty, com.google.protobuf.Empty.Builder, com.google.protobuf.EmptyOrBuilder>( + (com.google.protobuf.Empty) activityType_, + getParentForChildren(), + isClean()); activityType_ = null; } activityTypeCase_ = 3; @@ -24504,20 +23367,18 @@ public com.google.protobuf.EmptyOrBuilder getNoopOrBuilder() { private java.lang.Object taskQueue_ = ""; /** - * - * *
        * The name of the task queue to place this activity request in
        * 
* * string task_queue = 4; - * * @return The taskQueue. */ public java.lang.String getTaskQueue() { java.lang.Object ref = taskQueue_; if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); taskQueue_ = s; return s; @@ -24526,21 +23387,20 @@ public java.lang.String getTaskQueue() { } } /** - * - * *
        * The name of the task queue to place this activity request in
        * 
* * string task_queue = 4; - * * @return The bytes for taskQueue. */ - public com.google.protobuf.ByteString getTaskQueueBytes() { + public com.google.protobuf.ByteString + getTaskQueueBytes() { java.lang.Object ref = taskQueue_; if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); taskQueue_ = b; return b; } else { @@ -24548,35 +23408,28 @@ public com.google.protobuf.ByteString getTaskQueueBytes() { } } /** - * - * *
        * The name of the task queue to place this activity request in
        * 
* * string task_queue = 4; - * * @param value The taskQueue to set. * @return This builder for chaining. */ - public Builder setTaskQueue(java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setTaskQueue( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } taskQueue_ = value; bitField0_ |= 0x00000008; onChanged(); return this; } /** - * - * *
        * The name of the task queue to place this activity request in
        * 
* * string task_queue = 4; - * * @return This builder for chaining. */ public Builder clearTaskQueue() { @@ -24586,21 +23439,17 @@ public Builder clearTaskQueue() { return this; } /** - * - * *
        * The name of the task queue to place this activity request in
        * 
* * string task_queue = 4; - * * @param value The bytes for taskQueue to set. * @return This builder for chaining. */ - public Builder setTaskQueueBytes(com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setTaskQueueBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); taskQueue_ = value; bitField0_ |= 0x00000008; @@ -24608,54 +23457,30 @@ public Builder setTaskQueueBytes(com.google.protobuf.ByteString value) { return this; } - private static final class HeadersConverter - implements com.google.protobuf.MapFieldBuilder.Converter< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload> { + private static final class HeadersConverter implements com.google.protobuf.MapFieldBuilder.Converter { @java.lang.Override - public io.temporal.api.common.v1.Payload build( - io.temporal.api.common.v1.PayloadOrBuilder val) { - if (val instanceof io.temporal.api.common.v1.Payload) { - return (io.temporal.api.common.v1.Payload) val; - } + public io.temporal.api.common.v1.Payload build(io.temporal.api.common.v1.PayloadOrBuilder val) { + if (val instanceof io.temporal.api.common.v1.Payload) { return (io.temporal.api.common.v1.Payload) val; } return ((io.temporal.api.common.v1.Payload.Builder) val).build(); } @java.lang.Override - public com.google.protobuf.MapEntry - defaultEntry() { + public com.google.protobuf.MapEntry defaultEntry() { return HeadersDefaultEntryHolder.defaultEntry; } - } - ; - + }; private static final HeadersConverter headersConverter = new HeadersConverter(); private com.google.protobuf.MapFieldBuilder< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder> - headers_; - - private com.google.protobuf.MapFieldBuilder< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder> + java.lang.String, io.temporal.api.common.v1.PayloadOrBuilder, io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder> headers_; + private com.google.protobuf.MapFieldBuilder internalGetHeaders() { if (headers_ == null) { return new com.google.protobuf.MapFieldBuilder<>(headersConverter); } return headers_; } - - private com.google.protobuf.MapFieldBuilder< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder> + private com.google.protobuf.MapFieldBuilder internalGetMutableHeaders() { if (headers_ == null) { headers_ = new com.google.protobuf.MapFieldBuilder<>(headersConverter); @@ -24664,106 +23489,117 @@ public io.temporal.api.common.v1.Payload build( onChanged(); return headers_; } - public int getHeadersCount() { return internalGetHeaders().ensureBuilderMap().size(); } - /** map<string, .temporal.api.common.v1.Payload> headers = 5; */ + /** + * map<string, .temporal.api.common.v1.Payload> headers = 5; + */ @java.lang.Override - public boolean containsHeaders(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } + public boolean containsHeaders( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } return internalGetHeaders().ensureBuilderMap().containsKey(key); } - /** Use {@link #getHeadersMap()} instead. */ + /** + * Use {@link #getHeadersMap()} instead. + */ @java.lang.Override @java.lang.Deprecated public java.util.Map getHeaders() { return getHeadersMap(); } - /** map<string, .temporal.api.common.v1.Payload> headers = 5; */ + /** + * map<string, .temporal.api.common.v1.Payload> headers = 5; + */ @java.lang.Override public java.util.Map getHeadersMap() { return internalGetHeaders().getImmutableMap(); } - /** map<string, .temporal.api.common.v1.Payload> headers = 5; */ + /** + * map<string, .temporal.api.common.v1.Payload> headers = 5; + */ @java.lang.Override - public /* nullable */ io.temporal.api.common.v1.Payload getHeadersOrDefault( + public /* nullable */ +io.temporal.api.common.v1.Payload getHeadersOrDefault( java.lang.String key, /* nullable */ - io.temporal.api.common.v1.Payload defaultValue) { - if (key == null) { - throw new NullPointerException("map key"); - } - java.util.Map map = - internalGetMutableHeaders().ensureBuilderMap(); +io.temporal.api.common.v1.Payload defaultValue) { + if (key == null) { throw new NullPointerException("map key"); } + java.util.Map map = internalGetMutableHeaders().ensureBuilderMap(); return map.containsKey(key) ? headersConverter.build(map.get(key)) : defaultValue; } - /** map<string, .temporal.api.common.v1.Payload> headers = 5; */ + /** + * map<string, .temporal.api.common.v1.Payload> headers = 5; + */ @java.lang.Override - public io.temporal.api.common.v1.Payload getHeadersOrThrow(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } - java.util.Map map = - internalGetMutableHeaders().ensureBuilderMap(); + public io.temporal.api.common.v1.Payload getHeadersOrThrow( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } + java.util.Map map = internalGetMutableHeaders().ensureBuilderMap(); if (!map.containsKey(key)) { throw new java.lang.IllegalArgumentException(); } return headersConverter.build(map.get(key)); } - public Builder clearHeaders() { bitField0_ = (bitField0_ & ~0x00000010); internalGetMutableHeaders().clear(); return this; } - /** map<string, .temporal.api.common.v1.Payload> headers = 5; */ - public Builder removeHeaders(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } - internalGetMutableHeaders().ensureBuilderMap().remove(key); + /** + * map<string, .temporal.api.common.v1.Payload> headers = 5; + */ + public Builder removeHeaders( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } + internalGetMutableHeaders().ensureBuilderMap() + .remove(key); return this; } - /** Use alternate mutation accessors instead. */ + /** + * Use alternate mutation accessors instead. + */ @java.lang.Deprecated public java.util.Map getMutableHeaders() { bitField0_ |= 0x00000010; return internalGetMutableHeaders().ensureMessageMap(); } - /** map<string, .temporal.api.common.v1.Payload> headers = 5; */ - public Builder putHeaders(java.lang.String key, io.temporal.api.common.v1.Payload value) { - if (key == null) { - throw new NullPointerException("map key"); - } - if (value == null) { - throw new NullPointerException("map value"); - } - internalGetMutableHeaders().ensureBuilderMap().put(key, value); + /** + * map<string, .temporal.api.common.v1.Payload> headers = 5; + */ + public Builder putHeaders( + java.lang.String key, + io.temporal.api.common.v1.Payload value) { + if (key == null) { throw new NullPointerException("map key"); } + if (value == null) { throw new NullPointerException("map value"); } + internalGetMutableHeaders().ensureBuilderMap() + .put(key, value); bitField0_ |= 0x00000010; return this; } - /** map<string, .temporal.api.common.v1.Payload> headers = 5; */ + /** + * map<string, .temporal.api.common.v1.Payload> headers = 5; + */ public Builder putAllHeaders( java.util.Map values) { - for (java.util.Map.Entry e : - values.entrySet()) { + for (java.util.Map.Entry e : values.entrySet()) { if (e.getKey() == null || e.getValue() == null) { throw new NullPointerException(); } } - internalGetMutableHeaders().ensureBuilderMap().putAll(values); + internalGetMutableHeaders().ensureBuilderMap() + .putAll(values); bitField0_ |= 0x00000010; return this; } - /** map<string, .temporal.api.common.v1.Payload> headers = 5; */ + /** + * map<string, .temporal.api.common.v1.Payload> headers = 5; + */ public io.temporal.api.common.v1.Payload.Builder putHeadersBuilderIfAbsent( java.lang.String key) { - java.util.Map builderMap = - internalGetMutableHeaders().ensureBuilderMap(); + java.util.Map builderMap = internalGetMutableHeaders().ensureBuilderMap(); io.temporal.api.common.v1.PayloadOrBuilder entry = builderMap.get(key); if (entry == null) { entry = io.temporal.api.common.v1.Payload.newBuilder(); @@ -24778,13 +23614,8 @@ public io.temporal.api.common.v1.Payload.Builder putHeadersBuilderIfAbsent( private com.google.protobuf.Duration scheduleToCloseTimeout_; private com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Duration, - com.google.protobuf.Duration.Builder, - com.google.protobuf.DurationOrBuilder> - scheduleToCloseTimeoutBuilder_; + com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> scheduleToCloseTimeoutBuilder_; /** - * - * *
        * Indicates how long the caller is willing to wait for an activity completion. Limits how long
        * retries will be attempted. Either this or start_to_close_timeout_seconds must be specified.
@@ -24792,15 +23623,12 @@ public io.temporal.api.common.v1.Payload.Builder putHeadersBuilderIfAbsent(
        * 
* * .google.protobuf.Duration schedule_to_close_timeout = 6; - * * @return Whether the scheduleToCloseTimeout field is set. */ public boolean hasScheduleToCloseTimeout() { return ((bitField0_ & 0x00000020) != 0); } /** - * - * *
        * Indicates how long the caller is willing to wait for an activity completion. Limits how long
        * retries will be attempted. Either this or start_to_close_timeout_seconds must be specified.
@@ -24808,21 +23636,16 @@ public boolean hasScheduleToCloseTimeout() {
        * 
* * .google.protobuf.Duration schedule_to_close_timeout = 6; - * * @return The scheduleToCloseTimeout. */ public com.google.protobuf.Duration getScheduleToCloseTimeout() { if (scheduleToCloseTimeoutBuilder_ == null) { - return scheduleToCloseTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : scheduleToCloseTimeout_; + return scheduleToCloseTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : scheduleToCloseTimeout_; } else { return scheduleToCloseTimeoutBuilder_.getMessage(); } } /** - * - * *
        * Indicates how long the caller is willing to wait for an activity completion. Limits how long
        * retries will be attempted. Either this or start_to_close_timeout_seconds must be specified.
@@ -24845,8 +23668,6 @@ public Builder setScheduleToCloseTimeout(com.google.protobuf.Duration value) {
         return this;
       }
       /**
-       *
-       *
        * 
        * Indicates how long the caller is willing to wait for an activity completion. Limits how long
        * retries will be attempted. Either this or start_to_close_timeout_seconds must be specified.
@@ -24867,8 +23688,6 @@ public Builder setScheduleToCloseTimeout(
         return this;
       }
       /**
-       *
-       *
        * 
        * Indicates how long the caller is willing to wait for an activity completion. Limits how long
        * retries will be attempted. Either this or start_to_close_timeout_seconds must be specified.
@@ -24879,9 +23698,9 @@ public Builder setScheduleToCloseTimeout(
        */
       public Builder mergeScheduleToCloseTimeout(com.google.protobuf.Duration value) {
         if (scheduleToCloseTimeoutBuilder_ == null) {
-          if (((bitField0_ & 0x00000020) != 0)
-              && scheduleToCloseTimeout_ != null
-              && scheduleToCloseTimeout_ != com.google.protobuf.Duration.getDefaultInstance()) {
+          if (((bitField0_ & 0x00000020) != 0) &&
+            scheduleToCloseTimeout_ != null &&
+            scheduleToCloseTimeout_ != com.google.protobuf.Duration.getDefaultInstance()) {
             getScheduleToCloseTimeoutBuilder().mergeFrom(value);
           } else {
             scheduleToCloseTimeout_ = value;
@@ -24896,8 +23715,6 @@ public Builder mergeScheduleToCloseTimeout(com.google.protobuf.Duration value) {
         return this;
       }
       /**
-       *
-       *
        * 
        * Indicates how long the caller is willing to wait for an activity completion. Limits how long
        * retries will be attempted. Either this or start_to_close_timeout_seconds must be specified.
@@ -24917,8 +23734,6 @@ public Builder clearScheduleToCloseTimeout() {
         return this;
       }
       /**
-       *
-       *
        * 
        * Indicates how long the caller is willing to wait for an activity completion. Limits how long
        * retries will be attempted. Either this or start_to_close_timeout_seconds must be specified.
@@ -24933,8 +23748,6 @@ public com.google.protobuf.Duration.Builder getScheduleToCloseTimeoutBuilder() {
         return getScheduleToCloseTimeoutFieldBuilder().getBuilder();
       }
       /**
-       *
-       *
        * 
        * Indicates how long the caller is willing to wait for an activity completion. Limits how long
        * retries will be attempted. Either this or start_to_close_timeout_seconds must be specified.
@@ -24947,14 +23760,11 @@ public com.google.protobuf.DurationOrBuilder getScheduleToCloseTimeoutOrBuilder(
         if (scheduleToCloseTimeoutBuilder_ != null) {
           return scheduleToCloseTimeoutBuilder_.getMessageOrBuilder();
         } else {
-          return scheduleToCloseTimeout_ == null
-              ? com.google.protobuf.Duration.getDefaultInstance()
-              : scheduleToCloseTimeout_;
+          return scheduleToCloseTimeout_ == null ?
+              com.google.protobuf.Duration.getDefaultInstance() : scheduleToCloseTimeout_;
         }
       }
       /**
-       *
-       *
        * 
        * Indicates how long the caller is willing to wait for an activity completion. Limits how long
        * retries will be attempted. Either this or start_to_close_timeout_seconds must be specified.
@@ -24964,17 +23774,14 @@ public com.google.protobuf.DurationOrBuilder getScheduleToCloseTimeoutOrBuilder(
        * .google.protobuf.Duration schedule_to_close_timeout = 6;
        */
       private com.google.protobuf.SingleFieldBuilderV3<
-              com.google.protobuf.Duration,
-              com.google.protobuf.Duration.Builder,
-              com.google.protobuf.DurationOrBuilder>
+          com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> 
           getScheduleToCloseTimeoutFieldBuilder() {
         if (scheduleToCloseTimeoutBuilder_ == null) {
-          scheduleToCloseTimeoutBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  com.google.protobuf.Duration,
-                  com.google.protobuf.Duration.Builder,
-                  com.google.protobuf.DurationOrBuilder>(
-                  getScheduleToCloseTimeout(), getParentForChildren(), isClean());
+          scheduleToCloseTimeoutBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder>(
+                  getScheduleToCloseTimeout(),
+                  getParentForChildren(),
+                  isClean());
           scheduleToCloseTimeout_ = null;
         }
         return scheduleToCloseTimeoutBuilder_;
@@ -24982,13 +23789,8 @@ public com.google.protobuf.DurationOrBuilder getScheduleToCloseTimeoutOrBuilder(
 
       private com.google.protobuf.Duration scheduleToStartTimeout_;
       private com.google.protobuf.SingleFieldBuilderV3<
-              com.google.protobuf.Duration,
-              com.google.protobuf.Duration.Builder,
-              com.google.protobuf.DurationOrBuilder>
-          scheduleToStartTimeoutBuilder_;
+          com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> scheduleToStartTimeoutBuilder_;
       /**
-       *
-       *
        * 
        * Limits time an activity task can stay in a task queue before a worker picks it up. This
        * timeout is always non retryable as all a retry would achieve is to put it back into the same
@@ -24996,15 +23798,12 @@ public com.google.protobuf.DurationOrBuilder getScheduleToCloseTimeoutOrBuilder(
        * 
* * .google.protobuf.Duration schedule_to_start_timeout = 7; - * * @return Whether the scheduleToStartTimeout field is set. */ public boolean hasScheduleToStartTimeout() { return ((bitField0_ & 0x00000040) != 0); } /** - * - * *
        * Limits time an activity task can stay in a task queue before a worker picks it up. This
        * timeout is always non retryable as all a retry would achieve is to put it back into the same
@@ -25012,21 +23811,16 @@ public boolean hasScheduleToStartTimeout() {
        * 
* * .google.protobuf.Duration schedule_to_start_timeout = 7; - * * @return The scheduleToStartTimeout. */ public com.google.protobuf.Duration getScheduleToStartTimeout() { if (scheduleToStartTimeoutBuilder_ == null) { - return scheduleToStartTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : scheduleToStartTimeout_; + return scheduleToStartTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : scheduleToStartTimeout_; } else { return scheduleToStartTimeoutBuilder_.getMessage(); } } /** - * - * *
        * Limits time an activity task can stay in a task queue before a worker picks it up. This
        * timeout is always non retryable as all a retry would achieve is to put it back into the same
@@ -25049,8 +23843,6 @@ public Builder setScheduleToStartTimeout(com.google.protobuf.Duration value) {
         return this;
       }
       /**
-       *
-       *
        * 
        * Limits time an activity task can stay in a task queue before a worker picks it up. This
        * timeout is always non retryable as all a retry would achieve is to put it back into the same
@@ -25071,8 +23863,6 @@ public Builder setScheduleToStartTimeout(
         return this;
       }
       /**
-       *
-       *
        * 
        * Limits time an activity task can stay in a task queue before a worker picks it up. This
        * timeout is always non retryable as all a retry would achieve is to put it back into the same
@@ -25083,9 +23873,9 @@ public Builder setScheduleToStartTimeout(
        */
       public Builder mergeScheduleToStartTimeout(com.google.protobuf.Duration value) {
         if (scheduleToStartTimeoutBuilder_ == null) {
-          if (((bitField0_ & 0x00000040) != 0)
-              && scheduleToStartTimeout_ != null
-              && scheduleToStartTimeout_ != com.google.protobuf.Duration.getDefaultInstance()) {
+          if (((bitField0_ & 0x00000040) != 0) &&
+            scheduleToStartTimeout_ != null &&
+            scheduleToStartTimeout_ != com.google.protobuf.Duration.getDefaultInstance()) {
             getScheduleToStartTimeoutBuilder().mergeFrom(value);
           } else {
             scheduleToStartTimeout_ = value;
@@ -25100,8 +23890,6 @@ public Builder mergeScheduleToStartTimeout(com.google.protobuf.Duration value) {
         return this;
       }
       /**
-       *
-       *
        * 
        * Limits time an activity task can stay in a task queue before a worker picks it up. This
        * timeout is always non retryable as all a retry would achieve is to put it back into the same
@@ -25121,8 +23909,6 @@ public Builder clearScheduleToStartTimeout() {
         return this;
       }
       /**
-       *
-       *
        * 
        * Limits time an activity task can stay in a task queue before a worker picks it up. This
        * timeout is always non retryable as all a retry would achieve is to put it back into the same
@@ -25137,8 +23923,6 @@ public com.google.protobuf.Duration.Builder getScheduleToStartTimeoutBuilder() {
         return getScheduleToStartTimeoutFieldBuilder().getBuilder();
       }
       /**
-       *
-       *
        * 
        * Limits time an activity task can stay in a task queue before a worker picks it up. This
        * timeout is always non retryable as all a retry would achieve is to put it back into the same
@@ -25151,14 +23935,11 @@ public com.google.protobuf.DurationOrBuilder getScheduleToStartTimeoutOrBuilder(
         if (scheduleToStartTimeoutBuilder_ != null) {
           return scheduleToStartTimeoutBuilder_.getMessageOrBuilder();
         } else {
-          return scheduleToStartTimeout_ == null
-              ? com.google.protobuf.Duration.getDefaultInstance()
-              : scheduleToStartTimeout_;
+          return scheduleToStartTimeout_ == null ?
+              com.google.protobuf.Duration.getDefaultInstance() : scheduleToStartTimeout_;
         }
       }
       /**
-       *
-       *
        * 
        * Limits time an activity task can stay in a task queue before a worker picks it up. This
        * timeout is always non retryable as all a retry would achieve is to put it back into the same
@@ -25168,17 +23949,14 @@ public com.google.protobuf.DurationOrBuilder getScheduleToStartTimeoutOrBuilder(
        * .google.protobuf.Duration schedule_to_start_timeout = 7;
        */
       private com.google.protobuf.SingleFieldBuilderV3<
-              com.google.protobuf.Duration,
-              com.google.protobuf.Duration.Builder,
-              com.google.protobuf.DurationOrBuilder>
+          com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> 
           getScheduleToStartTimeoutFieldBuilder() {
         if (scheduleToStartTimeoutBuilder_ == null) {
-          scheduleToStartTimeoutBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  com.google.protobuf.Duration,
-                  com.google.protobuf.Duration.Builder,
-                  com.google.protobuf.DurationOrBuilder>(
-                  getScheduleToStartTimeout(), getParentForChildren(), isClean());
+          scheduleToStartTimeoutBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder>(
+                  getScheduleToStartTimeout(),
+                  getParentForChildren(),
+                  isClean());
           scheduleToStartTimeout_ = null;
         }
         return scheduleToStartTimeoutBuilder_;
@@ -25186,49 +23964,36 @@ public com.google.protobuf.DurationOrBuilder getScheduleToStartTimeoutOrBuilder(
 
       private com.google.protobuf.Duration startToCloseTimeout_;
       private com.google.protobuf.SingleFieldBuilderV3<
-              com.google.protobuf.Duration,
-              com.google.protobuf.Duration.Builder,
-              com.google.protobuf.DurationOrBuilder>
-          startToCloseTimeoutBuilder_;
+          com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> startToCloseTimeoutBuilder_;
       /**
-       *
-       *
        * 
        * Maximum time an activity is allowed to execute after a pick up by a worker. This timeout is
        * always retryable. Either this or schedule_to_close_timeout must be specified.
        * 
* * .google.protobuf.Duration start_to_close_timeout = 8; - * * @return Whether the startToCloseTimeout field is set. */ public boolean hasStartToCloseTimeout() { return ((bitField0_ & 0x00000080) != 0); } /** - * - * *
        * Maximum time an activity is allowed to execute after a pick up by a worker. This timeout is
        * always retryable. Either this or schedule_to_close_timeout must be specified.
        * 
* * .google.protobuf.Duration start_to_close_timeout = 8; - * * @return The startToCloseTimeout. */ public com.google.protobuf.Duration getStartToCloseTimeout() { if (startToCloseTimeoutBuilder_ == null) { - return startToCloseTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : startToCloseTimeout_; + return startToCloseTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : startToCloseTimeout_; } else { return startToCloseTimeoutBuilder_.getMessage(); } } /** - * - * *
        * Maximum time an activity is allowed to execute after a pick up by a worker. This timeout is
        * always retryable. Either this or schedule_to_close_timeout must be specified.
@@ -25250,8 +24015,6 @@ public Builder setStartToCloseTimeout(com.google.protobuf.Duration value) {
         return this;
       }
       /**
-       *
-       *
        * 
        * Maximum time an activity is allowed to execute after a pick up by a worker. This timeout is
        * always retryable. Either this or schedule_to_close_timeout must be specified.
@@ -25259,7 +24022,8 @@ public Builder setStartToCloseTimeout(com.google.protobuf.Duration value) {
        *
        * .google.protobuf.Duration start_to_close_timeout = 8;
        */
-      public Builder setStartToCloseTimeout(com.google.protobuf.Duration.Builder builderForValue) {
+      public Builder setStartToCloseTimeout(
+          com.google.protobuf.Duration.Builder builderForValue) {
         if (startToCloseTimeoutBuilder_ == null) {
           startToCloseTimeout_ = builderForValue.build();
         } else {
@@ -25270,8 +24034,6 @@ public Builder setStartToCloseTimeout(com.google.protobuf.Duration.Builder build
         return this;
       }
       /**
-       *
-       *
        * 
        * Maximum time an activity is allowed to execute after a pick up by a worker. This timeout is
        * always retryable. Either this or schedule_to_close_timeout must be specified.
@@ -25281,9 +24043,9 @@ public Builder setStartToCloseTimeout(com.google.protobuf.Duration.Builder build
        */
       public Builder mergeStartToCloseTimeout(com.google.protobuf.Duration value) {
         if (startToCloseTimeoutBuilder_ == null) {
-          if (((bitField0_ & 0x00000080) != 0)
-              && startToCloseTimeout_ != null
-              && startToCloseTimeout_ != com.google.protobuf.Duration.getDefaultInstance()) {
+          if (((bitField0_ & 0x00000080) != 0) &&
+            startToCloseTimeout_ != null &&
+            startToCloseTimeout_ != com.google.protobuf.Duration.getDefaultInstance()) {
             getStartToCloseTimeoutBuilder().mergeFrom(value);
           } else {
             startToCloseTimeout_ = value;
@@ -25298,8 +24060,6 @@ public Builder mergeStartToCloseTimeout(com.google.protobuf.Duration value) {
         return this;
       }
       /**
-       *
-       *
        * 
        * Maximum time an activity is allowed to execute after a pick up by a worker. This timeout is
        * always retryable. Either this or schedule_to_close_timeout must be specified.
@@ -25318,8 +24078,6 @@ public Builder clearStartToCloseTimeout() {
         return this;
       }
       /**
-       *
-       *
        * 
        * Maximum time an activity is allowed to execute after a pick up by a worker. This timeout is
        * always retryable. Either this or schedule_to_close_timeout must be specified.
@@ -25333,8 +24091,6 @@ public com.google.protobuf.Duration.Builder getStartToCloseTimeoutBuilder() {
         return getStartToCloseTimeoutFieldBuilder().getBuilder();
       }
       /**
-       *
-       *
        * 
        * Maximum time an activity is allowed to execute after a pick up by a worker. This timeout is
        * always retryable. Either this or schedule_to_close_timeout must be specified.
@@ -25346,14 +24102,11 @@ public com.google.protobuf.DurationOrBuilder getStartToCloseTimeoutOrBuilder() {
         if (startToCloseTimeoutBuilder_ != null) {
           return startToCloseTimeoutBuilder_.getMessageOrBuilder();
         } else {
-          return startToCloseTimeout_ == null
-              ? com.google.protobuf.Duration.getDefaultInstance()
-              : startToCloseTimeout_;
+          return startToCloseTimeout_ == null ?
+              com.google.protobuf.Duration.getDefaultInstance() : startToCloseTimeout_;
         }
       }
       /**
-       *
-       *
        * 
        * Maximum time an activity is allowed to execute after a pick up by a worker. This timeout is
        * always retryable. Either this or schedule_to_close_timeout must be specified.
@@ -25362,17 +24115,14 @@ public com.google.protobuf.DurationOrBuilder getStartToCloseTimeoutOrBuilder() {
        * .google.protobuf.Duration start_to_close_timeout = 8;
        */
       private com.google.protobuf.SingleFieldBuilderV3<
-              com.google.protobuf.Duration,
-              com.google.protobuf.Duration.Builder,
-              com.google.protobuf.DurationOrBuilder>
+          com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> 
           getStartToCloseTimeoutFieldBuilder() {
         if (startToCloseTimeoutBuilder_ == null) {
-          startToCloseTimeoutBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  com.google.protobuf.Duration,
-                  com.google.protobuf.Duration.Builder,
-                  com.google.protobuf.DurationOrBuilder>(
-                  getStartToCloseTimeout(), getParentForChildren(), isClean());
+          startToCloseTimeoutBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder>(
+                  getStartToCloseTimeout(),
+                  getParentForChildren(),
+                  isClean());
           startToCloseTimeout_ = null;
         }
         return startToCloseTimeoutBuilder_;
@@ -25380,47 +24130,34 @@ public com.google.protobuf.DurationOrBuilder getStartToCloseTimeoutOrBuilder() {
 
       private com.google.protobuf.Duration heartbeatTimeout_;
       private com.google.protobuf.SingleFieldBuilderV3<
-              com.google.protobuf.Duration,
-              com.google.protobuf.Duration.Builder,
-              com.google.protobuf.DurationOrBuilder>
-          heartbeatTimeoutBuilder_;
+          com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> heartbeatTimeoutBuilder_;
       /**
-       *
-       *
        * 
        * Maximum time allowed between successful worker heartbeats.
        * 
* * .google.protobuf.Duration heartbeat_timeout = 9; - * * @return Whether the heartbeatTimeout field is set. */ public boolean hasHeartbeatTimeout() { return ((bitField0_ & 0x00000100) != 0); } /** - * - * *
        * Maximum time allowed between successful worker heartbeats.
        * 
* * .google.protobuf.Duration heartbeat_timeout = 9; - * * @return The heartbeatTimeout. */ public com.google.protobuf.Duration getHeartbeatTimeout() { if (heartbeatTimeoutBuilder_ == null) { - return heartbeatTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : heartbeatTimeout_; + return heartbeatTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : heartbeatTimeout_; } else { return heartbeatTimeoutBuilder_.getMessage(); } } /** - * - * *
        * Maximum time allowed between successful worker heartbeats.
        * 
@@ -25441,15 +24178,14 @@ public Builder setHeartbeatTimeout(com.google.protobuf.Duration value) { return this; } /** - * - * *
        * Maximum time allowed between successful worker heartbeats.
        * 
* * .google.protobuf.Duration heartbeat_timeout = 9; */ - public Builder setHeartbeatTimeout(com.google.protobuf.Duration.Builder builderForValue) { + public Builder setHeartbeatTimeout( + com.google.protobuf.Duration.Builder builderForValue) { if (heartbeatTimeoutBuilder_ == null) { heartbeatTimeout_ = builderForValue.build(); } else { @@ -25460,8 +24196,6 @@ public Builder setHeartbeatTimeout(com.google.protobuf.Duration.Builder builderF return this; } /** - * - * *
        * Maximum time allowed between successful worker heartbeats.
        * 
@@ -25470,9 +24204,9 @@ public Builder setHeartbeatTimeout(com.google.protobuf.Duration.Builder builderF */ public Builder mergeHeartbeatTimeout(com.google.protobuf.Duration value) { if (heartbeatTimeoutBuilder_ == null) { - if (((bitField0_ & 0x00000100) != 0) - && heartbeatTimeout_ != null - && heartbeatTimeout_ != com.google.protobuf.Duration.getDefaultInstance()) { + if (((bitField0_ & 0x00000100) != 0) && + heartbeatTimeout_ != null && + heartbeatTimeout_ != com.google.protobuf.Duration.getDefaultInstance()) { getHeartbeatTimeoutBuilder().mergeFrom(value); } else { heartbeatTimeout_ = value; @@ -25487,8 +24221,6 @@ public Builder mergeHeartbeatTimeout(com.google.protobuf.Duration value) { return this; } /** - * - * *
        * Maximum time allowed between successful worker heartbeats.
        * 
@@ -25506,8 +24238,6 @@ public Builder clearHeartbeatTimeout() { return this; } /** - * - * *
        * Maximum time allowed between successful worker heartbeats.
        * 
@@ -25520,8 +24250,6 @@ public com.google.protobuf.Duration.Builder getHeartbeatTimeoutBuilder() { return getHeartbeatTimeoutFieldBuilder().getBuilder(); } /** - * - * *
        * Maximum time allowed between successful worker heartbeats.
        * 
@@ -25532,14 +24260,11 @@ public com.google.protobuf.DurationOrBuilder getHeartbeatTimeoutOrBuilder() { if (heartbeatTimeoutBuilder_ != null) { return heartbeatTimeoutBuilder_.getMessageOrBuilder(); } else { - return heartbeatTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : heartbeatTimeout_; + return heartbeatTimeout_ == null ? + com.google.protobuf.Duration.getDefaultInstance() : heartbeatTimeout_; } } /** - * - * *
        * Maximum time allowed between successful worker heartbeats.
        * 
@@ -25547,17 +24272,14 @@ public com.google.protobuf.DurationOrBuilder getHeartbeatTimeoutOrBuilder() { * .google.protobuf.Duration heartbeat_timeout = 9; */ private com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Duration, - com.google.protobuf.Duration.Builder, - com.google.protobuf.DurationOrBuilder> + com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> getHeartbeatTimeoutFieldBuilder() { if (heartbeatTimeoutBuilder_ == null) { - heartbeatTimeoutBuilder_ = - new com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Duration, - com.google.protobuf.Duration.Builder, - com.google.protobuf.DurationOrBuilder>( - getHeartbeatTimeout(), getParentForChildren(), isClean()); + heartbeatTimeoutBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder>( + getHeartbeatTimeout(), + getParentForChildren(), + isClean()); heartbeatTimeout_ = null; } return heartbeatTimeoutBuilder_; @@ -25565,13 +24287,8 @@ public com.google.protobuf.DurationOrBuilder getHeartbeatTimeoutOrBuilder() { private io.temporal.api.common.v1.RetryPolicy retryPolicy_; private com.google.protobuf.SingleFieldBuilderV3< - io.temporal.api.common.v1.RetryPolicy, - io.temporal.api.common.v1.RetryPolicy.Builder, - io.temporal.api.common.v1.RetryPolicyOrBuilder> - retryPolicyBuilder_; + io.temporal.api.common.v1.RetryPolicy, io.temporal.api.common.v1.RetryPolicy.Builder, io.temporal.api.common.v1.RetryPolicyOrBuilder> retryPolicyBuilder_; /** - * - * *
        * Activities are provided by a default retry policy controlled through the service dynamic
        * configuration. Retries are happening up to schedule_to_close_timeout. To disable retries set
@@ -25579,15 +24296,12 @@ public com.google.protobuf.DurationOrBuilder getHeartbeatTimeoutOrBuilder() {
        * 
* * .temporal.api.common.v1.RetryPolicy retry_policy = 10; - * * @return Whether the retryPolicy field is set. */ public boolean hasRetryPolicy() { return ((bitField0_ & 0x00000200) != 0); } /** - * - * *
        * Activities are provided by a default retry policy controlled through the service dynamic
        * configuration. Retries are happening up to schedule_to_close_timeout. To disable retries set
@@ -25595,21 +24309,16 @@ public boolean hasRetryPolicy() {
        * 
* * .temporal.api.common.v1.RetryPolicy retry_policy = 10; - * * @return The retryPolicy. */ public io.temporal.api.common.v1.RetryPolicy getRetryPolicy() { if (retryPolicyBuilder_ == null) { - return retryPolicy_ == null - ? io.temporal.api.common.v1.RetryPolicy.getDefaultInstance() - : retryPolicy_; + return retryPolicy_ == null ? io.temporal.api.common.v1.RetryPolicy.getDefaultInstance() : retryPolicy_; } else { return retryPolicyBuilder_.getMessage(); } } /** - * - * *
        * Activities are provided by a default retry policy controlled through the service dynamic
        * configuration. Retries are happening up to schedule_to_close_timeout. To disable retries set
@@ -25632,8 +24341,6 @@ public Builder setRetryPolicy(io.temporal.api.common.v1.RetryPolicy value) {
         return this;
       }
       /**
-       *
-       *
        * 
        * Activities are provided by a default retry policy controlled through the service dynamic
        * configuration. Retries are happening up to schedule_to_close_timeout. To disable retries set
@@ -25642,7 +24349,8 @@ public Builder setRetryPolicy(io.temporal.api.common.v1.RetryPolicy value) {
        *
        * .temporal.api.common.v1.RetryPolicy retry_policy = 10;
        */
-      public Builder setRetryPolicy(io.temporal.api.common.v1.RetryPolicy.Builder builderForValue) {
+      public Builder setRetryPolicy(
+          io.temporal.api.common.v1.RetryPolicy.Builder builderForValue) {
         if (retryPolicyBuilder_ == null) {
           retryPolicy_ = builderForValue.build();
         } else {
@@ -25653,8 +24361,6 @@ public Builder setRetryPolicy(io.temporal.api.common.v1.RetryPolicy.Builder buil
         return this;
       }
       /**
-       *
-       *
        * 
        * Activities are provided by a default retry policy controlled through the service dynamic
        * configuration. Retries are happening up to schedule_to_close_timeout. To disable retries set
@@ -25665,9 +24371,9 @@ public Builder setRetryPolicy(io.temporal.api.common.v1.RetryPolicy.Builder buil
        */
       public Builder mergeRetryPolicy(io.temporal.api.common.v1.RetryPolicy value) {
         if (retryPolicyBuilder_ == null) {
-          if (((bitField0_ & 0x00000200) != 0)
-              && retryPolicy_ != null
-              && retryPolicy_ != io.temporal.api.common.v1.RetryPolicy.getDefaultInstance()) {
+          if (((bitField0_ & 0x00000200) != 0) &&
+            retryPolicy_ != null &&
+            retryPolicy_ != io.temporal.api.common.v1.RetryPolicy.getDefaultInstance()) {
             getRetryPolicyBuilder().mergeFrom(value);
           } else {
             retryPolicy_ = value;
@@ -25682,8 +24388,6 @@ public Builder mergeRetryPolicy(io.temporal.api.common.v1.RetryPolicy value) {
         return this;
       }
       /**
-       *
-       *
        * 
        * Activities are provided by a default retry policy controlled through the service dynamic
        * configuration. Retries are happening up to schedule_to_close_timeout. To disable retries set
@@ -25703,8 +24407,6 @@ public Builder clearRetryPolicy() {
         return this;
       }
       /**
-       *
-       *
        * 
        * Activities are provided by a default retry policy controlled through the service dynamic
        * configuration. Retries are happening up to schedule_to_close_timeout. To disable retries set
@@ -25719,8 +24421,6 @@ public io.temporal.api.common.v1.RetryPolicy.Builder getRetryPolicyBuilder() {
         return getRetryPolicyFieldBuilder().getBuilder();
       }
       /**
-       *
-       *
        * 
        * Activities are provided by a default retry policy controlled through the service dynamic
        * configuration. Retries are happening up to schedule_to_close_timeout. To disable retries set
@@ -25733,14 +24433,11 @@ public io.temporal.api.common.v1.RetryPolicyOrBuilder getRetryPolicyOrBuilder()
         if (retryPolicyBuilder_ != null) {
           return retryPolicyBuilder_.getMessageOrBuilder();
         } else {
-          return retryPolicy_ == null
-              ? io.temporal.api.common.v1.RetryPolicy.getDefaultInstance()
-              : retryPolicy_;
+          return retryPolicy_ == null ?
+              io.temporal.api.common.v1.RetryPolicy.getDefaultInstance() : retryPolicy_;
         }
       }
       /**
-       *
-       *
        * 
        * Activities are provided by a default retry policy controlled through the service dynamic
        * configuration. Retries are happening up to schedule_to_close_timeout. To disable retries set
@@ -25750,30 +24447,23 @@ public io.temporal.api.common.v1.RetryPolicyOrBuilder getRetryPolicyOrBuilder()
        * .temporal.api.common.v1.RetryPolicy retry_policy = 10;
        */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.api.common.v1.RetryPolicy,
-              io.temporal.api.common.v1.RetryPolicy.Builder,
-              io.temporal.api.common.v1.RetryPolicyOrBuilder>
+          io.temporal.api.common.v1.RetryPolicy, io.temporal.api.common.v1.RetryPolicy.Builder, io.temporal.api.common.v1.RetryPolicyOrBuilder> 
           getRetryPolicyFieldBuilder() {
         if (retryPolicyBuilder_ == null) {
-          retryPolicyBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.api.common.v1.RetryPolicy,
-                  io.temporal.api.common.v1.RetryPolicy.Builder,
-                  io.temporal.api.common.v1.RetryPolicyOrBuilder>(
-                  getRetryPolicy(), getParentForChildren(), isClean());
+          retryPolicyBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.api.common.v1.RetryPolicy, io.temporal.api.common.v1.RetryPolicy.Builder, io.temporal.api.common.v1.RetryPolicyOrBuilder>(
+                  getRetryPolicy(),
+                  getParentForChildren(),
+                  isClean());
           retryPolicy_ = null;
         }
         return retryPolicyBuilder_;
       }
 
       private com.google.protobuf.SingleFieldBuilderV3<
-              com.google.protobuf.Empty,
-              com.google.protobuf.Empty.Builder,
-              com.google.protobuf.EmptyOrBuilder>
-          isLocalBuilder_;
+          com.google.protobuf.Empty, com.google.protobuf.Empty.Builder, com.google.protobuf.EmptyOrBuilder> isLocalBuilder_;
       /**
        * .google.protobuf.Empty is_local = 11;
-       *
        * @return Whether the isLocal field is set.
        */
       @java.lang.Override
@@ -25782,7 +24472,6 @@ public boolean hasIsLocal() {
       }
       /**
        * .google.protobuf.Empty is_local = 11;
-       *
        * @return The isLocal.
        */
       @java.lang.Override
@@ -25799,7 +24488,9 @@ public com.google.protobuf.Empty getIsLocal() {
           return com.google.protobuf.Empty.getDefaultInstance();
         }
       }
-      /** .google.protobuf.Empty is_local = 11; */
+      /**
+       * .google.protobuf.Empty is_local = 11;
+       */
       public Builder setIsLocal(com.google.protobuf.Empty value) {
         if (isLocalBuilder_ == null) {
           if (value == null) {
@@ -25813,8 +24504,11 @@ public Builder setIsLocal(com.google.protobuf.Empty value) {
         localityCase_ = 11;
         return this;
       }
-      /** .google.protobuf.Empty is_local = 11; */
-      public Builder setIsLocal(com.google.protobuf.Empty.Builder builderForValue) {
+      /**
+       * .google.protobuf.Empty is_local = 11;
+       */
+      public Builder setIsLocal(
+          com.google.protobuf.Empty.Builder builderForValue) {
         if (isLocalBuilder_ == null) {
           locality_ = builderForValue.build();
           onChanged();
@@ -25824,14 +24518,15 @@ public Builder setIsLocal(com.google.protobuf.Empty.Builder builderForValue) {
         localityCase_ = 11;
         return this;
       }
-      /** .google.protobuf.Empty is_local = 11; */
+      /**
+       * .google.protobuf.Empty is_local = 11;
+       */
       public Builder mergeIsLocal(com.google.protobuf.Empty value) {
         if (isLocalBuilder_ == null) {
-          if (localityCase_ == 11 && locality_ != com.google.protobuf.Empty.getDefaultInstance()) {
-            locality_ =
-                com.google.protobuf.Empty.newBuilder((com.google.protobuf.Empty) locality_)
-                    .mergeFrom(value)
-                    .buildPartial();
+          if (localityCase_ == 11 &&
+              locality_ != com.google.protobuf.Empty.getDefaultInstance()) {
+            locality_ = com.google.protobuf.Empty.newBuilder((com.google.protobuf.Empty) locality_)
+                .mergeFrom(value).buildPartial();
           } else {
             locality_ = value;
           }
@@ -25846,7 +24541,9 @@ public Builder mergeIsLocal(com.google.protobuf.Empty value) {
         localityCase_ = 11;
         return this;
       }
-      /** .google.protobuf.Empty is_local = 11; */
+      /**
+       * .google.protobuf.Empty is_local = 11;
+       */
       public Builder clearIsLocal() {
         if (isLocalBuilder_ == null) {
           if (localityCase_ == 11) {
@@ -25863,11 +24560,15 @@ public Builder clearIsLocal() {
         }
         return this;
       }
-      /** .google.protobuf.Empty is_local = 11; */
+      /**
+       * .google.protobuf.Empty is_local = 11;
+       */
       public com.google.protobuf.Empty.Builder getIsLocalBuilder() {
         return getIsLocalFieldBuilder().getBuilder();
       }
-      /** .google.protobuf.Empty is_local = 11; */
+      /**
+       * .google.protobuf.Empty is_local = 11;
+       */
       @java.lang.Override
       public com.google.protobuf.EmptyOrBuilder getIsLocalOrBuilder() {
         if ((localityCase_ == 11) && (isLocalBuilder_ != null)) {
@@ -25879,22 +24580,21 @@ public com.google.protobuf.EmptyOrBuilder getIsLocalOrBuilder() {
           return com.google.protobuf.Empty.getDefaultInstance();
         }
       }
-      /** .google.protobuf.Empty is_local = 11; */
+      /**
+       * .google.protobuf.Empty is_local = 11;
+       */
       private com.google.protobuf.SingleFieldBuilderV3<
-              com.google.protobuf.Empty,
-              com.google.protobuf.Empty.Builder,
-              com.google.protobuf.EmptyOrBuilder>
+          com.google.protobuf.Empty, com.google.protobuf.Empty.Builder, com.google.protobuf.EmptyOrBuilder> 
           getIsLocalFieldBuilder() {
         if (isLocalBuilder_ == null) {
           if (!(localityCase_ == 11)) {
             locality_ = com.google.protobuf.Empty.getDefaultInstance();
           }
-          isLocalBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  com.google.protobuf.Empty,
-                  com.google.protobuf.Empty.Builder,
-                  com.google.protobuf.EmptyOrBuilder>(
-                  (com.google.protobuf.Empty) locality_, getParentForChildren(), isClean());
+          isLocalBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              com.google.protobuf.Empty, com.google.protobuf.Empty.Builder, com.google.protobuf.EmptyOrBuilder>(
+                  (com.google.protobuf.Empty) locality_,
+                  getParentForChildren(),
+                  isClean());
           locality_ = null;
         }
         localityCase_ = 11;
@@ -25903,13 +24603,9 @@ public com.google.protobuf.EmptyOrBuilder getIsLocalOrBuilder() {
       }
 
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.RemoteActivityOptions,
-              io.temporal.omes.KitchenSink.RemoteActivityOptions.Builder,
-              io.temporal.omes.KitchenSink.RemoteActivityOptionsOrBuilder>
-          remoteBuilder_;
+          io.temporal.omes.KitchenSink.RemoteActivityOptions, io.temporal.omes.KitchenSink.RemoteActivityOptions.Builder, io.temporal.omes.KitchenSink.RemoteActivityOptionsOrBuilder> remoteBuilder_;
       /**
        * .temporal.omes.kitchen_sink.RemoteActivityOptions remote = 12;
-       *
        * @return Whether the remote field is set.
        */
       @java.lang.Override
@@ -25918,7 +24614,6 @@ public boolean hasRemote() {
       }
       /**
        * .temporal.omes.kitchen_sink.RemoteActivityOptions remote = 12;
-       *
        * @return The remote.
        */
       @java.lang.Override
@@ -25935,7 +24630,9 @@ public io.temporal.omes.KitchenSink.RemoteActivityOptions getRemote() {
           return io.temporal.omes.KitchenSink.RemoteActivityOptions.getDefaultInstance();
         }
       }
-      /** .temporal.omes.kitchen_sink.RemoteActivityOptions remote = 12; */
+      /**
+       * .temporal.omes.kitchen_sink.RemoteActivityOptions remote = 12;
+       */
       public Builder setRemote(io.temporal.omes.KitchenSink.RemoteActivityOptions value) {
         if (remoteBuilder_ == null) {
           if (value == null) {
@@ -25949,7 +24646,9 @@ public Builder setRemote(io.temporal.omes.KitchenSink.RemoteActivityOptions valu
         localityCase_ = 12;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.RemoteActivityOptions remote = 12; */
+      /**
+       * .temporal.omes.kitchen_sink.RemoteActivityOptions remote = 12;
+       */
       public Builder setRemote(
           io.temporal.omes.KitchenSink.RemoteActivityOptions.Builder builderForValue) {
         if (remoteBuilder_ == null) {
@@ -25961,17 +24660,15 @@ public Builder setRemote(
         localityCase_ = 12;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.RemoteActivityOptions remote = 12; */
+      /**
+       * .temporal.omes.kitchen_sink.RemoteActivityOptions remote = 12;
+       */
       public Builder mergeRemote(io.temporal.omes.KitchenSink.RemoteActivityOptions value) {
         if (remoteBuilder_ == null) {
-          if (localityCase_ == 12
-              && locality_
-                  != io.temporal.omes.KitchenSink.RemoteActivityOptions.getDefaultInstance()) {
-            locality_ =
-                io.temporal.omes.KitchenSink.RemoteActivityOptions.newBuilder(
-                        (io.temporal.omes.KitchenSink.RemoteActivityOptions) locality_)
-                    .mergeFrom(value)
-                    .buildPartial();
+          if (localityCase_ == 12 &&
+              locality_ != io.temporal.omes.KitchenSink.RemoteActivityOptions.getDefaultInstance()) {
+            locality_ = io.temporal.omes.KitchenSink.RemoteActivityOptions.newBuilder((io.temporal.omes.KitchenSink.RemoteActivityOptions) locality_)
+                .mergeFrom(value).buildPartial();
           } else {
             locality_ = value;
           }
@@ -25986,7 +24683,9 @@ public Builder mergeRemote(io.temporal.omes.KitchenSink.RemoteActivityOptions va
         localityCase_ = 12;
         return this;
       }
-      /** .temporal.omes.kitchen_sink.RemoteActivityOptions remote = 12; */
+      /**
+       * .temporal.omes.kitchen_sink.RemoteActivityOptions remote = 12;
+       */
       public Builder clearRemote() {
         if (remoteBuilder_ == null) {
           if (localityCase_ == 12) {
@@ -26003,11 +24702,15 @@ public Builder clearRemote() {
         }
         return this;
       }
-      /** .temporal.omes.kitchen_sink.RemoteActivityOptions remote = 12; */
+      /**
+       * .temporal.omes.kitchen_sink.RemoteActivityOptions remote = 12;
+       */
       public io.temporal.omes.KitchenSink.RemoteActivityOptions.Builder getRemoteBuilder() {
         return getRemoteFieldBuilder().getBuilder();
       }
-      /** .temporal.omes.kitchen_sink.RemoteActivityOptions remote = 12; */
+      /**
+       * .temporal.omes.kitchen_sink.RemoteActivityOptions remote = 12;
+       */
       @java.lang.Override
       public io.temporal.omes.KitchenSink.RemoteActivityOptionsOrBuilder getRemoteOrBuilder() {
         if ((localityCase_ == 12) && (remoteBuilder_ != null)) {
@@ -26019,21 +24722,18 @@ public io.temporal.omes.KitchenSink.RemoteActivityOptionsOrBuilder getRemoteOrBu
           return io.temporal.omes.KitchenSink.RemoteActivityOptions.getDefaultInstance();
         }
       }
-      /** .temporal.omes.kitchen_sink.RemoteActivityOptions remote = 12; */
+      /**
+       * .temporal.omes.kitchen_sink.RemoteActivityOptions remote = 12;
+       */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.RemoteActivityOptions,
-              io.temporal.omes.KitchenSink.RemoteActivityOptions.Builder,
-              io.temporal.omes.KitchenSink.RemoteActivityOptionsOrBuilder>
+          io.temporal.omes.KitchenSink.RemoteActivityOptions, io.temporal.omes.KitchenSink.RemoteActivityOptions.Builder, io.temporal.omes.KitchenSink.RemoteActivityOptionsOrBuilder> 
           getRemoteFieldBuilder() {
         if (remoteBuilder_ == null) {
           if (!(localityCase_ == 12)) {
             locality_ = io.temporal.omes.KitchenSink.RemoteActivityOptions.getDefaultInstance();
           }
-          remoteBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.omes.KitchenSink.RemoteActivityOptions,
-                  io.temporal.omes.KitchenSink.RemoteActivityOptions.Builder,
-                  io.temporal.omes.KitchenSink.RemoteActivityOptionsOrBuilder>(
+          remoteBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.omes.KitchenSink.RemoteActivityOptions, io.temporal.omes.KitchenSink.RemoteActivityOptions.Builder, io.temporal.omes.KitchenSink.RemoteActivityOptionsOrBuilder>(
                   (io.temporal.omes.KitchenSink.RemoteActivityOptions) locality_,
                   getParentForChildren(),
                   isClean());
@@ -26046,13 +24746,9 @@ public io.temporal.omes.KitchenSink.RemoteActivityOptionsOrBuilder getRemoteOrBu
 
       private io.temporal.omes.KitchenSink.AwaitableChoice awaitableChoice_;
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.AwaitableChoice,
-              io.temporal.omes.KitchenSink.AwaitableChoice.Builder,
-              io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder>
-          awaitableChoiceBuilder_;
+          io.temporal.omes.KitchenSink.AwaitableChoice, io.temporal.omes.KitchenSink.AwaitableChoice.Builder, io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder> awaitableChoiceBuilder_;
       /**
        * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 13;
-       *
        * @return Whether the awaitableChoice field is set.
        */
       public boolean hasAwaitableChoice() {
@@ -26060,19 +24756,18 @@ public boolean hasAwaitableChoice() {
       }
       /**
        * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 13;
-       *
        * @return The awaitableChoice.
        */
       public io.temporal.omes.KitchenSink.AwaitableChoice getAwaitableChoice() {
         if (awaitableChoiceBuilder_ == null) {
-          return awaitableChoice_ == null
-              ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance()
-              : awaitableChoice_;
+          return awaitableChoice_ == null ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() : awaitableChoice_;
         } else {
           return awaitableChoiceBuilder_.getMessage();
         }
       }
-      /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 13; */
+      /**
+       * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 13;
+       */
       public Builder setAwaitableChoice(io.temporal.omes.KitchenSink.AwaitableChoice value) {
         if (awaitableChoiceBuilder_ == null) {
           if (value == null) {
@@ -26086,7 +24781,9 @@ public Builder setAwaitableChoice(io.temporal.omes.KitchenSink.AwaitableChoice v
         onChanged();
         return this;
       }
-      /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 13; */
+      /**
+       * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 13;
+       */
       public Builder setAwaitableChoice(
           io.temporal.omes.KitchenSink.AwaitableChoice.Builder builderForValue) {
         if (awaitableChoiceBuilder_ == null) {
@@ -26098,13 +24795,14 @@ public Builder setAwaitableChoice(
         onChanged();
         return this;
       }
-      /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 13; */
+      /**
+       * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 13;
+       */
       public Builder mergeAwaitableChoice(io.temporal.omes.KitchenSink.AwaitableChoice value) {
         if (awaitableChoiceBuilder_ == null) {
-          if (((bitField0_ & 0x00001000) != 0)
-              && awaitableChoice_ != null
-              && awaitableChoice_
-                  != io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance()) {
+          if (((bitField0_ & 0x00001000) != 0) &&
+            awaitableChoice_ != null &&
+            awaitableChoice_ != io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance()) {
             getAwaitableChoiceBuilder().mergeFrom(value);
           } else {
             awaitableChoice_ = value;
@@ -26118,7 +24816,9 @@ public Builder mergeAwaitableChoice(io.temporal.omes.KitchenSink.AwaitableChoice
         }
         return this;
       }
-      /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 13; */
+      /**
+       * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 13;
+       */
       public Builder clearAwaitableChoice() {
         bitField0_ = (bitField0_ & ~0x00001000);
         awaitableChoice_ = null;
@@ -26129,40 +24829,41 @@ public Builder clearAwaitableChoice() {
         onChanged();
         return this;
       }
-      /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 13; */
+      /**
+       * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 13;
+       */
       public io.temporal.omes.KitchenSink.AwaitableChoice.Builder getAwaitableChoiceBuilder() {
         bitField0_ |= 0x00001000;
         onChanged();
         return getAwaitableChoiceFieldBuilder().getBuilder();
       }
-      /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 13; */
+      /**
+       * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 13;
+       */
       public io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder getAwaitableChoiceOrBuilder() {
         if (awaitableChoiceBuilder_ != null) {
           return awaitableChoiceBuilder_.getMessageOrBuilder();
         } else {
-          return awaitableChoice_ == null
-              ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance()
-              : awaitableChoice_;
+          return awaitableChoice_ == null ?
+              io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() : awaitableChoice_;
         }
       }
-      /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 13; */
+      /**
+       * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 13;
+       */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.omes.KitchenSink.AwaitableChoice,
-              io.temporal.omes.KitchenSink.AwaitableChoice.Builder,
-              io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder>
+          io.temporal.omes.KitchenSink.AwaitableChoice, io.temporal.omes.KitchenSink.AwaitableChoice.Builder, io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder> 
           getAwaitableChoiceFieldBuilder() {
         if (awaitableChoiceBuilder_ == null) {
-          awaitableChoiceBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.omes.KitchenSink.AwaitableChoice,
-                  io.temporal.omes.KitchenSink.AwaitableChoice.Builder,
-                  io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder>(
-                  getAwaitableChoice(), getParentForChildren(), isClean());
+          awaitableChoiceBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.omes.KitchenSink.AwaitableChoice, io.temporal.omes.KitchenSink.AwaitableChoice.Builder, io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder>(
+                  getAwaitableChoice(),
+                  getParentForChildren(),
+                  isClean());
           awaitableChoice_ = null;
         }
         return awaitableChoiceBuilder_;
       }
-
       @java.lang.Override
       public final Builder setUnknownFields(
           final com.google.protobuf.UnknownFieldSet unknownFields) {
@@ -26175,12 +24876,12 @@ public final Builder mergeUnknownFields(
         return super.mergeUnknownFields(unknownFields);
       }
 
+
       // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.ExecuteActivityAction)
     }
 
     // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.ExecuteActivityAction)
     private static final io.temporal.omes.KitchenSink.ExecuteActivityAction DEFAULT_INSTANCE;
-
     static {
       DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.ExecuteActivityAction();
     }
@@ -26189,28 +24890,27 @@ public static io.temporal.omes.KitchenSink.ExecuteActivityAction getDefaultInsta
       return DEFAULT_INSTANCE;
     }
 
-    private static final com.google.protobuf.Parser PARSER =
-        new com.google.protobuf.AbstractParser() {
-          @java.lang.Override
-          public ExecuteActivityAction parsePartialFrom(
-              com.google.protobuf.CodedInputStream input,
-              com.google.protobuf.ExtensionRegistryLite extensionRegistry)
-              throws com.google.protobuf.InvalidProtocolBufferException {
-            Builder builder = newBuilder();
-            try {
-              builder.mergeFrom(input, extensionRegistry);
-            } catch (com.google.protobuf.InvalidProtocolBufferException e) {
-              throw e.setUnfinishedMessage(builder.buildPartial());
-            } catch (com.google.protobuf.UninitializedMessageException e) {
-              throw e.asInvalidProtocolBufferException()
-                  .setUnfinishedMessage(builder.buildPartial());
-            } catch (java.io.IOException e) {
-              throw new com.google.protobuf.InvalidProtocolBufferException(e)
-                  .setUnfinishedMessage(builder.buildPartial());
-            }
-            return builder.buildPartial();
-          }
-        };
+    private static final com.google.protobuf.Parser
+        PARSER = new com.google.protobuf.AbstractParser() {
+      @java.lang.Override
+      public ExecuteActivityAction parsePartialFrom(
+          com.google.protobuf.CodedInputStream input,
+          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+          throws com.google.protobuf.InvalidProtocolBufferException {
+        Builder builder = newBuilder();
+        try {
+          builder.mergeFrom(input, extensionRegistry);
+        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
+          throw e.setUnfinishedMessage(builder.buildPartial());
+        } catch (com.google.protobuf.UninitializedMessageException e) {
+          throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
+        } catch (java.io.IOException e) {
+          throw new com.google.protobuf.InvalidProtocolBufferException(e)
+              .setUnfinishedMessage(builder.buildPartial());
+        }
+        return builder.buildPartial();
+      }
+    };
 
     public static com.google.protobuf.Parser parser() {
       return PARSER;
@@ -26225,103 +24925,104 @@ public com.google.protobuf.Parser getParserForType() {
     public io.temporal.omes.KitchenSink.ExecuteActivityAction getDefaultInstanceForType() {
       return DEFAULT_INSTANCE;
     }
+
   }
 
-  public interface ExecuteChildWorkflowActionOrBuilder
-      extends
+  public interface ExecuteChildWorkflowActionOrBuilder extends
       // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.ExecuteChildWorkflowAction)
       com.google.protobuf.MessageOrBuilder {
 
     /**
      * string namespace = 2;
-     *
      * @return The namespace.
      */
     java.lang.String getNamespace();
     /**
      * string namespace = 2;
-     *
      * @return The bytes for namespace.
      */
-    com.google.protobuf.ByteString getNamespaceBytes();
+    com.google.protobuf.ByteString
+        getNamespaceBytes();
 
     /**
      * string workflow_id = 3;
-     *
      * @return The workflowId.
      */
     java.lang.String getWorkflowId();
     /**
      * string workflow_id = 3;
-     *
      * @return The bytes for workflowId.
      */
-    com.google.protobuf.ByteString getWorkflowIdBytes();
+    com.google.protobuf.ByteString
+        getWorkflowIdBytes();
 
     /**
      * string workflow_type = 4;
-     *
      * @return The workflowType.
      */
     java.lang.String getWorkflowType();
     /**
      * string workflow_type = 4;
-     *
      * @return The bytes for workflowType.
      */
-    com.google.protobuf.ByteString getWorkflowTypeBytes();
+    com.google.protobuf.ByteString
+        getWorkflowTypeBytes();
 
     /**
      * string task_queue = 5;
-     *
      * @return The taskQueue.
      */
     java.lang.String getTaskQueue();
     /**
      * string task_queue = 5;
-     *
      * @return The bytes for taskQueue.
      */
-    com.google.protobuf.ByteString getTaskQueueBytes();
+    com.google.protobuf.ByteString
+        getTaskQueueBytes();
 
-    /** repeated .temporal.api.common.v1.Payload input = 6; */
-    java.util.List getInputList();
-    /** repeated .temporal.api.common.v1.Payload input = 6; */
+    /**
+     * repeated .temporal.api.common.v1.Payload input = 6;
+     */
+    java.util.List 
+        getInputList();
+    /**
+     * repeated .temporal.api.common.v1.Payload input = 6;
+     */
     io.temporal.api.common.v1.Payload getInput(int index);
-    /** repeated .temporal.api.common.v1.Payload input = 6; */
+    /**
+     * repeated .temporal.api.common.v1.Payload input = 6;
+     */
     int getInputCount();
-    /** repeated .temporal.api.common.v1.Payload input = 6; */
-    java.util.List getInputOrBuilderList();
-    /** repeated .temporal.api.common.v1.Payload input = 6; */
-    io.temporal.api.common.v1.PayloadOrBuilder getInputOrBuilder(int index);
+    /**
+     * repeated .temporal.api.common.v1.Payload input = 6;
+     */
+    java.util.List 
+        getInputOrBuilderList();
+    /**
+     * repeated .temporal.api.common.v1.Payload input = 6;
+     */
+    io.temporal.api.common.v1.PayloadOrBuilder getInputOrBuilder(
+        int index);
 
     /**
-     *
-     *
      * 
      * Total workflow execution timeout including retries and continue as new.
      * 
* * .google.protobuf.Duration workflow_execution_timeout = 7; - * * @return Whether the workflowExecutionTimeout field is set. */ boolean hasWorkflowExecutionTimeout(); /** - * - * *
      * Total workflow execution timeout including retries and continue as new.
      * 
* * .google.protobuf.Duration workflow_execution_timeout = 7; - * * @return The workflowExecutionTimeout. */ com.google.protobuf.Duration getWorkflowExecutionTimeout(); /** - * - * *
      * Total workflow execution timeout including retries and continue as new.
      * 
@@ -26331,32 +25032,24 @@ public interface ExecuteChildWorkflowActionOrBuilder com.google.protobuf.DurationOrBuilder getWorkflowExecutionTimeoutOrBuilder(); /** - * - * *
      * Timeout of a single workflow run.
      * 
* * .google.protobuf.Duration workflow_run_timeout = 8; - * * @return Whether the workflowRunTimeout field is set. */ boolean hasWorkflowRunTimeout(); /** - * - * *
      * Timeout of a single workflow run.
      * 
* * .google.protobuf.Duration workflow_run_timeout = 8; - * * @return The workflowRunTimeout. */ com.google.protobuf.Duration getWorkflowRunTimeout(); /** - * - * *
      * Timeout of a single workflow run.
      * 
@@ -26366,32 +25059,24 @@ public interface ExecuteChildWorkflowActionOrBuilder com.google.protobuf.DurationOrBuilder getWorkflowRunTimeoutOrBuilder(); /** - * - * *
      * Timeout of a single workflow task.
      * 
* * .google.protobuf.Duration workflow_task_timeout = 9; - * * @return Whether the workflowTaskTimeout field is set. */ boolean hasWorkflowTaskTimeout(); /** - * - * *
      * Timeout of a single workflow task.
      * 
* * .google.protobuf.Duration workflow_task_timeout = 9; - * * @return The workflowTaskTimeout. */ com.google.protobuf.Duration getWorkflowTaskTimeout(); /** - * - * *
      * Timeout of a single workflow task.
      * 
@@ -26401,86 +25086,71 @@ public interface ExecuteChildWorkflowActionOrBuilder com.google.protobuf.DurationOrBuilder getWorkflowTaskTimeoutOrBuilder(); /** - * - * *
      * Default: PARENT_CLOSE_POLICY_TERMINATE.
      * 
* * .temporal.omes.kitchen_sink.ParentClosePolicy parent_close_policy = 10; - * * @return The enum numeric value on the wire for parentClosePolicy. */ int getParentClosePolicyValue(); /** - * - * *
      * Default: PARENT_CLOSE_POLICY_TERMINATE.
      * 
* * .temporal.omes.kitchen_sink.ParentClosePolicy parent_close_policy = 10; - * * @return The parentClosePolicy. */ io.temporal.omes.KitchenSink.ParentClosePolicy getParentClosePolicy(); /** - * - * *
      * Default: WORKFLOW_ID_REUSE_POLICY_ALLOW_DUPLICATE.
      * 
* * .temporal.api.enums.v1.WorkflowIdReusePolicy workflow_id_reuse_policy = 12; - * * @return The enum numeric value on the wire for workflowIdReusePolicy. */ int getWorkflowIdReusePolicyValue(); /** - * - * *
      * Default: WORKFLOW_ID_REUSE_POLICY_ALLOW_DUPLICATE.
      * 
* * .temporal.api.enums.v1.WorkflowIdReusePolicy workflow_id_reuse_policy = 12; - * * @return The workflowIdReusePolicy. */ io.temporal.api.enums.v1.WorkflowIdReusePolicy getWorkflowIdReusePolicy(); /** * .temporal.api.common.v1.RetryPolicy retry_policy = 13; - * * @return Whether the retryPolicy field is set. */ boolean hasRetryPolicy(); /** * .temporal.api.common.v1.RetryPolicy retry_policy = 13; - * * @return The retryPolicy. */ io.temporal.api.common.v1.RetryPolicy getRetryPolicy(); - /** .temporal.api.common.v1.RetryPolicy retry_policy = 13; */ + /** + * .temporal.api.common.v1.RetryPolicy retry_policy = 13; + */ io.temporal.api.common.v1.RetryPolicyOrBuilder getRetryPolicyOrBuilder(); /** * string cron_schedule = 14; - * * @return The cronSchedule. */ java.lang.String getCronSchedule(); /** * string cron_schedule = 14; - * * @return The bytes for cronSchedule. */ - com.google.protobuf.ByteString getCronScheduleBytes(); + com.google.protobuf.ByteString + getCronScheduleBytes(); /** - * - * *
      * Header fields
      * 
@@ -26489,31 +25159,30 @@ public interface ExecuteChildWorkflowActionOrBuilder */ int getHeadersCount(); /** - * - * *
      * Header fields
      * 
* * map<string, .temporal.api.common.v1.Payload> headers = 15; */ - boolean containsHeaders(java.lang.String key); - /** Use {@link #getHeadersMap()} instead. */ + boolean containsHeaders( + java.lang.String key); + /** + * Use {@link #getHeadersMap()} instead. + */ @java.lang.Deprecated - java.util.Map getHeaders(); + java.util.Map + getHeaders(); /** - * - * *
      * Header fields
      * 
* * map<string, .temporal.api.common.v1.Payload> headers = 15; */ - java.util.Map getHeadersMap(); + java.util.Map + getHeadersMap(); /** - * - * *
      * Header fields
      * 
@@ -26521,24 +25190,21 @@ public interface ExecuteChildWorkflowActionOrBuilder * map<string, .temporal.api.common.v1.Payload> headers = 15; */ /* nullable */ - io.temporal.api.common.v1.Payload getHeadersOrDefault( +io.temporal.api.common.v1.Payload getHeadersOrDefault( java.lang.String key, /* nullable */ - io.temporal.api.common.v1.Payload defaultValue); +io.temporal.api.common.v1.Payload defaultValue); /** - * - * *
      * Header fields
      * 
* * map<string, .temporal.api.common.v1.Payload> headers = 15; */ - io.temporal.api.common.v1.Payload getHeadersOrThrow(java.lang.String key); + io.temporal.api.common.v1.Payload getHeadersOrThrow( + java.lang.String key); /** - * - * *
      * Memo fields
      * 
@@ -26547,31 +25213,30 @@ io.temporal.api.common.v1.Payload getHeadersOrDefault( */ int getMemoCount(); /** - * - * *
      * Memo fields
      * 
* * map<string, .temporal.api.common.v1.Payload> memo = 16; */ - boolean containsMemo(java.lang.String key); - /** Use {@link #getMemoMap()} instead. */ + boolean containsMemo( + java.lang.String key); + /** + * Use {@link #getMemoMap()} instead. + */ @java.lang.Deprecated - java.util.Map getMemo(); + java.util.Map + getMemo(); /** - * - * *
      * Memo fields
      * 
* * map<string, .temporal.api.common.v1.Payload> memo = 16; */ - java.util.Map getMemoMap(); + java.util.Map + getMemoMap(); /** - * - * *
      * Memo fields
      * 
@@ -26579,24 +25244,21 @@ io.temporal.api.common.v1.Payload getHeadersOrDefault( * map<string, .temporal.api.common.v1.Payload> memo = 16; */ /* nullable */ - io.temporal.api.common.v1.Payload getMemoOrDefault( +io.temporal.api.common.v1.Payload getMemoOrDefault( java.lang.String key, /* nullable */ - io.temporal.api.common.v1.Payload defaultValue); +io.temporal.api.common.v1.Payload defaultValue); /** - * - * *
      * Memo fields
      * 
* * map<string, .temporal.api.common.v1.Payload> memo = 16; */ - io.temporal.api.common.v1.Payload getMemoOrThrow(java.lang.String key); + io.temporal.api.common.v1.Payload getMemoOrThrow( + java.lang.String key); /** - * - * *
      * Search attributes
      * 
@@ -26605,31 +25267,30 @@ io.temporal.api.common.v1.Payload getMemoOrDefault( */ int getSearchAttributesCount(); /** - * - * *
      * Search attributes
      * 
* * map<string, .temporal.api.common.v1.Payload> search_attributes = 17; */ - boolean containsSearchAttributes(java.lang.String key); - /** Use {@link #getSearchAttributesMap()} instead. */ + boolean containsSearchAttributes( + java.lang.String key); + /** + * Use {@link #getSearchAttributesMap()} instead. + */ @java.lang.Deprecated - java.util.Map getSearchAttributes(); + java.util.Map + getSearchAttributes(); /** - * - * *
      * Search attributes
      * 
* * map<string, .temporal.api.common.v1.Payload> search_attributes = 17; */ - java.util.Map getSearchAttributesMap(); + java.util.Map + getSearchAttributesMap(); /** - * - * *
      * Search attributes
      * 
@@ -26637,100 +25298,85 @@ io.temporal.api.common.v1.Payload getMemoOrDefault( * map<string, .temporal.api.common.v1.Payload> search_attributes = 17; */ /* nullable */ - io.temporal.api.common.v1.Payload getSearchAttributesOrDefault( +io.temporal.api.common.v1.Payload getSearchAttributesOrDefault( java.lang.String key, /* nullable */ - io.temporal.api.common.v1.Payload defaultValue); +io.temporal.api.common.v1.Payload defaultValue); /** - * - * *
      * Search attributes
      * 
* * map<string, .temporal.api.common.v1.Payload> search_attributes = 17; */ - io.temporal.api.common.v1.Payload getSearchAttributesOrThrow(java.lang.String key); + io.temporal.api.common.v1.Payload getSearchAttributesOrThrow( + java.lang.String key); /** - * - * *
      * Defines behaviour of the underlying workflow when child workflow cancellation has been requested.
      * 
* - * .temporal.omes.kitchen_sink.ChildWorkflowCancellationType cancellation_type = 18; - * - * + * .temporal.omes.kitchen_sink.ChildWorkflowCancellationType cancellation_type = 18; * @return The enum numeric value on the wire for cancellationType. */ int getCancellationTypeValue(); /** - * - * *
      * Defines behaviour of the underlying workflow when child workflow cancellation has been requested.
      * 
* - * .temporal.omes.kitchen_sink.ChildWorkflowCancellationType cancellation_type = 18; - * - * + * .temporal.omes.kitchen_sink.ChildWorkflowCancellationType cancellation_type = 18; * @return The cancellationType. */ io.temporal.omes.KitchenSink.ChildWorkflowCancellationType getCancellationType(); /** - * - * *
      * Whether this child should run on a worker with a compatible build id or not.
      * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 19; - * * @return The enum numeric value on the wire for versioningIntent. */ int getVersioningIntentValue(); /** - * - * *
      * Whether this child should run on a worker with a compatible build id or not.
      * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 19; - * * @return The versioningIntent. */ io.temporal.omes.KitchenSink.VersioningIntent getVersioningIntent(); /** * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 20; - * * @return Whether the awaitableChoice field is set. */ boolean hasAwaitableChoice(); /** * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 20; - * * @return The awaitableChoice. */ io.temporal.omes.KitchenSink.AwaitableChoice getAwaitableChoice(); - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 20; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 20; + */ io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder getAwaitableChoiceOrBuilder(); } - /** Protobuf type {@code temporal.omes.kitchen_sink.ExecuteChildWorkflowAction} */ - public static final class ExecuteChildWorkflowAction - extends com.google.protobuf.GeneratedMessageV3 - implements + /** + * Protobuf type {@code temporal.omes.kitchen_sink.ExecuteChildWorkflowAction} + */ + public static final class ExecuteChildWorkflowAction extends + com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.ExecuteChildWorkflowAction) ExecuteChildWorkflowActionOrBuilder { - private static final long serialVersionUID = 0L; + private static final long serialVersionUID = 0L; // Use ExecuteChildWorkflowAction.newBuilder() to construct. private ExecuteChildWorkflowAction(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } - private ExecuteChildWorkflowAction() { namespace_ = ""; workflowId_ = ""; @@ -26746,13 +25392,14 @@ private ExecuteChildWorkflowAction() { @java.lang.Override @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { return new ExecuteChildWorkflowAction(); } - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_descriptor; } @SuppressWarnings({"rawtypes"}) @@ -26767,28 +25414,24 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMapFieldRefl case 17: return internalGetSearchAttributes(); default: - throw new RuntimeException("Invalid map field number: " + number); + throw new RuntimeException( + "Invalid map field number: " + number); } } - @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.class, - io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.Builder.class); + io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.class, io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.Builder.class); } private int bitField0_; public static final int NAMESPACE_FIELD_NUMBER = 2; - @SuppressWarnings("serial") private volatile java.lang.Object namespace_ = ""; /** * string namespace = 2; - * * @return The namespace. */ @java.lang.Override @@ -26797,7 +25440,8 @@ public java.lang.String getNamespace() { if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); namespace_ = s; return s; @@ -26805,15 +25449,16 @@ public java.lang.String getNamespace() { } /** * string namespace = 2; - * * @return The bytes for namespace. */ @java.lang.Override - public com.google.protobuf.ByteString getNamespaceBytes() { + public com.google.protobuf.ByteString + getNamespaceBytes() { java.lang.Object ref = namespace_; if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); namespace_ = b; return b; } else { @@ -26822,12 +25467,10 @@ public com.google.protobuf.ByteString getNamespaceBytes() { } public static final int WORKFLOW_ID_FIELD_NUMBER = 3; - @SuppressWarnings("serial") private volatile java.lang.Object workflowId_ = ""; /** * string workflow_id = 3; - * * @return The workflowId. */ @java.lang.Override @@ -26836,7 +25479,8 @@ public java.lang.String getWorkflowId() { if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); workflowId_ = s; return s; @@ -26844,15 +25488,16 @@ public java.lang.String getWorkflowId() { } /** * string workflow_id = 3; - * * @return The bytes for workflowId. */ @java.lang.Override - public com.google.protobuf.ByteString getWorkflowIdBytes() { + public com.google.protobuf.ByteString + getWorkflowIdBytes() { java.lang.Object ref = workflowId_; if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); workflowId_ = b; return b; } else { @@ -26861,12 +25506,10 @@ public com.google.protobuf.ByteString getWorkflowIdBytes() { } public static final int WORKFLOW_TYPE_FIELD_NUMBER = 4; - @SuppressWarnings("serial") private volatile java.lang.Object workflowType_ = ""; /** * string workflow_type = 4; - * * @return The workflowType. */ @java.lang.Override @@ -26875,7 +25518,8 @@ public java.lang.String getWorkflowType() { if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); workflowType_ = s; return s; @@ -26883,15 +25527,16 @@ public java.lang.String getWorkflowType() { } /** * string workflow_type = 4; - * * @return The bytes for workflowType. */ @java.lang.Override - public com.google.protobuf.ByteString getWorkflowTypeBytes() { + public com.google.protobuf.ByteString + getWorkflowTypeBytes() { java.lang.Object ref = workflowType_; if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); workflowType_ = b; return b; } else { @@ -26900,12 +25545,10 @@ public com.google.protobuf.ByteString getWorkflowTypeBytes() { } public static final int TASK_QUEUE_FIELD_NUMBER = 5; - @SuppressWarnings("serial") private volatile java.lang.Object taskQueue_ = ""; /** * string task_queue = 5; - * * @return The taskQueue. */ @java.lang.Override @@ -26914,7 +25557,8 @@ public java.lang.String getTaskQueue() { if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); taskQueue_ = s; return s; @@ -26922,15 +25566,16 @@ public java.lang.String getTaskQueue() { } /** * string task_queue = 5; - * * @return The bytes for taskQueue. */ @java.lang.Override - public com.google.protobuf.ByteString getTaskQueueBytes() { + public com.google.protobuf.ByteString + getTaskQueueBytes() { java.lang.Object ref = taskQueue_; if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); taskQueue_ = b; return b; } else { @@ -26939,47 +25584,54 @@ public com.google.protobuf.ByteString getTaskQueueBytes() { } public static final int INPUT_FIELD_NUMBER = 6; - @SuppressWarnings("serial") private java.util.List input_; - /** repeated .temporal.api.common.v1.Payload input = 6; */ + /** + * repeated .temporal.api.common.v1.Payload input = 6; + */ @java.lang.Override public java.util.List getInputList() { return input_; } - /** repeated .temporal.api.common.v1.Payload input = 6; */ + /** + * repeated .temporal.api.common.v1.Payload input = 6; + */ @java.lang.Override - public java.util.List + public java.util.List getInputOrBuilderList() { return input_; } - /** repeated .temporal.api.common.v1.Payload input = 6; */ + /** + * repeated .temporal.api.common.v1.Payload input = 6; + */ @java.lang.Override public int getInputCount() { return input_.size(); } - /** repeated .temporal.api.common.v1.Payload input = 6; */ + /** + * repeated .temporal.api.common.v1.Payload input = 6; + */ @java.lang.Override public io.temporal.api.common.v1.Payload getInput(int index) { return input_.get(index); } - /** repeated .temporal.api.common.v1.Payload input = 6; */ + /** + * repeated .temporal.api.common.v1.Payload input = 6; + */ @java.lang.Override - public io.temporal.api.common.v1.PayloadOrBuilder getInputOrBuilder(int index) { + public io.temporal.api.common.v1.PayloadOrBuilder getInputOrBuilder( + int index) { return input_.get(index); } public static final int WORKFLOW_EXECUTION_TIMEOUT_FIELD_NUMBER = 7; private com.google.protobuf.Duration workflowExecutionTimeout_; /** - * - * *
      * Total workflow execution timeout including retries and continue as new.
      * 
* * .google.protobuf.Duration workflow_execution_timeout = 7; - * * @return Whether the workflowExecutionTimeout field is set. */ @java.lang.Override @@ -26987,25 +25639,18 @@ public boolean hasWorkflowExecutionTimeout() { return ((bitField0_ & 0x00000001) != 0); } /** - * - * *
      * Total workflow execution timeout including retries and continue as new.
      * 
* * .google.protobuf.Duration workflow_execution_timeout = 7; - * * @return The workflowExecutionTimeout. */ @java.lang.Override public com.google.protobuf.Duration getWorkflowExecutionTimeout() { - return workflowExecutionTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : workflowExecutionTimeout_; + return workflowExecutionTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : workflowExecutionTimeout_; } /** - * - * *
      * Total workflow execution timeout including retries and continue as new.
      * 
@@ -27014,22 +25659,17 @@ public com.google.protobuf.Duration getWorkflowExecutionTimeout() { */ @java.lang.Override public com.google.protobuf.DurationOrBuilder getWorkflowExecutionTimeoutOrBuilder() { - return workflowExecutionTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : workflowExecutionTimeout_; + return workflowExecutionTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : workflowExecutionTimeout_; } public static final int WORKFLOW_RUN_TIMEOUT_FIELD_NUMBER = 8; private com.google.protobuf.Duration workflowRunTimeout_; /** - * - * *
      * Timeout of a single workflow run.
      * 
* * .google.protobuf.Duration workflow_run_timeout = 8; - * * @return Whether the workflowRunTimeout field is set. */ @java.lang.Override @@ -27037,25 +25677,18 @@ public boolean hasWorkflowRunTimeout() { return ((bitField0_ & 0x00000002) != 0); } /** - * - * *
      * Timeout of a single workflow run.
      * 
* * .google.protobuf.Duration workflow_run_timeout = 8; - * * @return The workflowRunTimeout. */ @java.lang.Override public com.google.protobuf.Duration getWorkflowRunTimeout() { - return workflowRunTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : workflowRunTimeout_; + return workflowRunTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : workflowRunTimeout_; } /** - * - * *
      * Timeout of a single workflow run.
      * 
@@ -27064,22 +25697,17 @@ public com.google.protobuf.Duration getWorkflowRunTimeout() { */ @java.lang.Override public com.google.protobuf.DurationOrBuilder getWorkflowRunTimeoutOrBuilder() { - return workflowRunTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : workflowRunTimeout_; + return workflowRunTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : workflowRunTimeout_; } public static final int WORKFLOW_TASK_TIMEOUT_FIELD_NUMBER = 9; private com.google.protobuf.Duration workflowTaskTimeout_; /** - * - * *
      * Timeout of a single workflow task.
      * 
* * .google.protobuf.Duration workflow_task_timeout = 9; - * * @return Whether the workflowTaskTimeout field is set. */ @java.lang.Override @@ -27087,25 +25715,18 @@ public boolean hasWorkflowTaskTimeout() { return ((bitField0_ & 0x00000004) != 0); } /** - * - * *
      * Timeout of a single workflow task.
      * 
* * .google.protobuf.Duration workflow_task_timeout = 9; - * * @return The workflowTaskTimeout. */ @java.lang.Override public com.google.protobuf.Duration getWorkflowTaskTimeout() { - return workflowTaskTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : workflowTaskTimeout_; + return workflowTaskTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : workflowTaskTimeout_; } /** - * - * *
      * Timeout of a single workflow task.
      * 
@@ -27114,78 +25735,58 @@ public com.google.protobuf.Duration getWorkflowTaskTimeout() { */ @java.lang.Override public com.google.protobuf.DurationOrBuilder getWorkflowTaskTimeoutOrBuilder() { - return workflowTaskTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : workflowTaskTimeout_; + return workflowTaskTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : workflowTaskTimeout_; } public static final int PARENT_CLOSE_POLICY_FIELD_NUMBER = 10; private int parentClosePolicy_ = 0; /** - * - * *
      * Default: PARENT_CLOSE_POLICY_TERMINATE.
      * 
* * .temporal.omes.kitchen_sink.ParentClosePolicy parent_close_policy = 10; - * * @return The enum numeric value on the wire for parentClosePolicy. */ - @java.lang.Override - public int getParentClosePolicyValue() { + @java.lang.Override public int getParentClosePolicyValue() { return parentClosePolicy_; } /** - * - * *
      * Default: PARENT_CLOSE_POLICY_TERMINATE.
      * 
* * .temporal.omes.kitchen_sink.ParentClosePolicy parent_close_policy = 10; - * * @return The parentClosePolicy. */ - @java.lang.Override - public io.temporal.omes.KitchenSink.ParentClosePolicy getParentClosePolicy() { - io.temporal.omes.KitchenSink.ParentClosePolicy result = - io.temporal.omes.KitchenSink.ParentClosePolicy.forNumber(parentClosePolicy_); + @java.lang.Override public io.temporal.omes.KitchenSink.ParentClosePolicy getParentClosePolicy() { + io.temporal.omes.KitchenSink.ParentClosePolicy result = io.temporal.omes.KitchenSink.ParentClosePolicy.forNumber(parentClosePolicy_); return result == null ? io.temporal.omes.KitchenSink.ParentClosePolicy.UNRECOGNIZED : result; } public static final int WORKFLOW_ID_REUSE_POLICY_FIELD_NUMBER = 12; private int workflowIdReusePolicy_ = 0; /** - * - * *
      * Default: WORKFLOW_ID_REUSE_POLICY_ALLOW_DUPLICATE.
      * 
* * .temporal.api.enums.v1.WorkflowIdReusePolicy workflow_id_reuse_policy = 12; - * * @return The enum numeric value on the wire for workflowIdReusePolicy. */ - @java.lang.Override - public int getWorkflowIdReusePolicyValue() { + @java.lang.Override public int getWorkflowIdReusePolicyValue() { return workflowIdReusePolicy_; } /** - * - * *
      * Default: WORKFLOW_ID_REUSE_POLICY_ALLOW_DUPLICATE.
      * 
* * .temporal.api.enums.v1.WorkflowIdReusePolicy workflow_id_reuse_policy = 12; - * * @return The workflowIdReusePolicy. */ - @java.lang.Override - public io.temporal.api.enums.v1.WorkflowIdReusePolicy getWorkflowIdReusePolicy() { - io.temporal.api.enums.v1.WorkflowIdReusePolicy result = - io.temporal.api.enums.v1.WorkflowIdReusePolicy.forNumber(workflowIdReusePolicy_); + @java.lang.Override public io.temporal.api.enums.v1.WorkflowIdReusePolicy getWorkflowIdReusePolicy() { + io.temporal.api.enums.v1.WorkflowIdReusePolicy result = io.temporal.api.enums.v1.WorkflowIdReusePolicy.forNumber(workflowIdReusePolicy_); return result == null ? io.temporal.api.enums.v1.WorkflowIdReusePolicy.UNRECOGNIZED : result; } @@ -27193,7 +25794,6 @@ public io.temporal.api.enums.v1.WorkflowIdReusePolicy getWorkflowIdReusePolicy() private io.temporal.api.common.v1.RetryPolicy retryPolicy_; /** * .temporal.api.common.v1.RetryPolicy retry_policy = 13; - * * @return Whether the retryPolicy field is set. */ @java.lang.Override @@ -27202,30 +25802,25 @@ public boolean hasRetryPolicy() { } /** * .temporal.api.common.v1.RetryPolicy retry_policy = 13; - * * @return The retryPolicy. */ @java.lang.Override public io.temporal.api.common.v1.RetryPolicy getRetryPolicy() { - return retryPolicy_ == null - ? io.temporal.api.common.v1.RetryPolicy.getDefaultInstance() - : retryPolicy_; + return retryPolicy_ == null ? io.temporal.api.common.v1.RetryPolicy.getDefaultInstance() : retryPolicy_; } - /** .temporal.api.common.v1.RetryPolicy retry_policy = 13; */ + /** + * .temporal.api.common.v1.RetryPolicy retry_policy = 13; + */ @java.lang.Override public io.temporal.api.common.v1.RetryPolicyOrBuilder getRetryPolicyOrBuilder() { - return retryPolicy_ == null - ? io.temporal.api.common.v1.RetryPolicy.getDefaultInstance() - : retryPolicy_; + return retryPolicy_ == null ? io.temporal.api.common.v1.RetryPolicy.getDefaultInstance() : retryPolicy_; } public static final int CRON_SCHEDULE_FIELD_NUMBER = 14; - @SuppressWarnings("serial") private volatile java.lang.Object cronSchedule_ = ""; /** * string cron_schedule = 14; - * * @return The cronSchedule. */ @java.lang.Override @@ -27234,7 +25829,8 @@ public java.lang.String getCronSchedule() { if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); cronSchedule_ = s; return s; @@ -27242,15 +25838,16 @@ public java.lang.String getCronSchedule() { } /** * string cron_schedule = 14; - * * @return The bytes for cronSchedule. */ @java.lang.Override - public com.google.protobuf.ByteString getCronScheduleBytes() { + public com.google.protobuf.ByteString + getCronScheduleBytes() { java.lang.Object ref = cronSchedule_; if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); cronSchedule_ = b; return b; } else { @@ -27259,38 +25856,32 @@ public com.google.protobuf.ByteString getCronScheduleBytes() { } public static final int HEADERS_FIELD_NUMBER = 15; - private static final class HeadersDefaultEntryHolder { - static final com.google.protobuf.MapEntry - defaultEntry = + static final com.google.protobuf.MapEntry< + java.lang.String, io.temporal.api.common.v1.Payload> defaultEntry = com.google.protobuf.MapEntry - .newDefaultInstance( - io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_HeadersEntry_descriptor, - com.google.protobuf.WireFormat.FieldType.STRING, - "", - com.google.protobuf.WireFormat.FieldType.MESSAGE, - io.temporal.api.common.v1.Payload.getDefaultInstance()); + .newDefaultInstance( + io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_HeadersEntry_descriptor, + com.google.protobuf.WireFormat.FieldType.STRING, + "", + com.google.protobuf.WireFormat.FieldType.MESSAGE, + io.temporal.api.common.v1.Payload.getDefaultInstance()); } - @SuppressWarnings("serial") + private com.google.protobuf.MapField< + java.lang.String, io.temporal.api.common.v1.Payload> headers_; private com.google.protobuf.MapField - headers_; - - private com.google.protobuf.MapField - internalGetHeaders() { + internalGetHeaders() { if (headers_ == null) { - return com.google.protobuf.MapField.emptyMapField(HeadersDefaultEntryHolder.defaultEntry); + return com.google.protobuf.MapField.emptyMapField( + HeadersDefaultEntryHolder.defaultEntry); } return headers_; } - public int getHeadersCount() { return internalGetHeaders().getMap().size(); } /** - * - * *
      * Header fields
      * 
@@ -27298,21 +25889,20 @@ public int getHeadersCount() { * map<string, .temporal.api.common.v1.Payload> headers = 15; */ @java.lang.Override - public boolean containsHeaders(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } + public boolean containsHeaders( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } return internalGetHeaders().getMap().containsKey(key); } - /** Use {@link #getHeadersMap()} instead. */ + /** + * Use {@link #getHeadersMap()} instead. + */ @java.lang.Override @java.lang.Deprecated public java.util.Map getHeaders() { return getHeadersMap(); } /** - * - * *
      * Header fields
      * 
@@ -27324,8 +25914,6 @@ public java.util.Map getHea return internalGetHeaders().getMap(); } /** - * - * *
      * Header fields
      * 
@@ -27333,20 +25921,17 @@ public java.util.Map getHea * map<string, .temporal.api.common.v1.Payload> headers = 15; */ @java.lang.Override - public /* nullable */ io.temporal.api.common.v1.Payload getHeadersOrDefault( + public /* nullable */ +io.temporal.api.common.v1.Payload getHeadersOrDefault( java.lang.String key, /* nullable */ - io.temporal.api.common.v1.Payload defaultValue) { - if (key == null) { - throw new NullPointerException("map key"); - } +io.temporal.api.common.v1.Payload defaultValue) { + if (key == null) { throw new NullPointerException("map key"); } java.util.Map map = internalGetHeaders().getMap(); return map.containsKey(key) ? map.get(key) : defaultValue; } /** - * - * *
      * Header fields
      * 
@@ -27354,10 +25939,9 @@ public java.util.Map getHea * map<string, .temporal.api.common.v1.Payload> headers = 15; */ @java.lang.Override - public io.temporal.api.common.v1.Payload getHeadersOrThrow(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } + public io.temporal.api.common.v1.Payload getHeadersOrThrow( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } java.util.Map map = internalGetHeaders().getMap(); if (!map.containsKey(key)) { @@ -27367,37 +25951,32 @@ public io.temporal.api.common.v1.Payload getHeadersOrThrow(java.lang.String key) } public static final int MEMO_FIELD_NUMBER = 16; - private static final class MemoDefaultEntryHolder { - static final com.google.protobuf.MapEntry - defaultEntry = + static final com.google.protobuf.MapEntry< + java.lang.String, io.temporal.api.common.v1.Payload> defaultEntry = com.google.protobuf.MapEntry - .newDefaultInstance( - io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_MemoEntry_descriptor, - com.google.protobuf.WireFormat.FieldType.STRING, - "", - com.google.protobuf.WireFormat.FieldType.MESSAGE, - io.temporal.api.common.v1.Payload.getDefaultInstance()); + .newDefaultInstance( + io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_MemoEntry_descriptor, + com.google.protobuf.WireFormat.FieldType.STRING, + "", + com.google.protobuf.WireFormat.FieldType.MESSAGE, + io.temporal.api.common.v1.Payload.getDefaultInstance()); } - @SuppressWarnings("serial") - private com.google.protobuf.MapField memo_; - + private com.google.protobuf.MapField< + java.lang.String, io.temporal.api.common.v1.Payload> memo_; private com.google.protobuf.MapField - internalGetMemo() { + internalGetMemo() { if (memo_ == null) { - return com.google.protobuf.MapField.emptyMapField(MemoDefaultEntryHolder.defaultEntry); + return com.google.protobuf.MapField.emptyMapField( + MemoDefaultEntryHolder.defaultEntry); } return memo_; } - public int getMemoCount() { return internalGetMemo().getMap().size(); } /** - * - * *
      * Memo fields
      * 
@@ -27405,21 +25984,20 @@ public int getMemoCount() { * map<string, .temporal.api.common.v1.Payload> memo = 16; */ @java.lang.Override - public boolean containsMemo(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } + public boolean containsMemo( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } return internalGetMemo().getMap().containsKey(key); } - /** Use {@link #getMemoMap()} instead. */ + /** + * Use {@link #getMemoMap()} instead. + */ @java.lang.Override @java.lang.Deprecated public java.util.Map getMemo() { return getMemoMap(); } /** - * - * *
      * Memo fields
      * 
@@ -27431,8 +26009,6 @@ public java.util.Map getMem return internalGetMemo().getMap(); } /** - * - * *
      * Memo fields
      * 
@@ -27440,20 +26016,17 @@ public java.util.Map getMem * map<string, .temporal.api.common.v1.Payload> memo = 16; */ @java.lang.Override - public /* nullable */ io.temporal.api.common.v1.Payload getMemoOrDefault( + public /* nullable */ +io.temporal.api.common.v1.Payload getMemoOrDefault( java.lang.String key, /* nullable */ - io.temporal.api.common.v1.Payload defaultValue) { - if (key == null) { - throw new NullPointerException("map key"); - } +io.temporal.api.common.v1.Payload defaultValue) { + if (key == null) { throw new NullPointerException("map key"); } java.util.Map map = internalGetMemo().getMap(); return map.containsKey(key) ? map.get(key) : defaultValue; } /** - * - * *
      * Memo fields
      * 
@@ -27461,10 +26034,9 @@ public java.util.Map getMem * map<string, .temporal.api.common.v1.Payload> memo = 16; */ @java.lang.Override - public io.temporal.api.common.v1.Payload getMemoOrThrow(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } + public io.temporal.api.common.v1.Payload getMemoOrThrow( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } java.util.Map map = internalGetMemo().getMap(); if (!map.containsKey(key)) { @@ -27474,39 +26046,32 @@ public io.temporal.api.common.v1.Payload getMemoOrThrow(java.lang.String key) { } public static final int SEARCH_ATTRIBUTES_FIELD_NUMBER = 17; - private static final class SearchAttributesDefaultEntryHolder { - static final com.google.protobuf.MapEntry - defaultEntry = + static final com.google.protobuf.MapEntry< + java.lang.String, io.temporal.api.common.v1.Payload> defaultEntry = com.google.protobuf.MapEntry - .newDefaultInstance( - io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_SearchAttributesEntry_descriptor, - com.google.protobuf.WireFormat.FieldType.STRING, - "", - com.google.protobuf.WireFormat.FieldType.MESSAGE, - io.temporal.api.common.v1.Payload.getDefaultInstance()); + .newDefaultInstance( + io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_SearchAttributesEntry_descriptor, + com.google.protobuf.WireFormat.FieldType.STRING, + "", + com.google.protobuf.WireFormat.FieldType.MESSAGE, + io.temporal.api.common.v1.Payload.getDefaultInstance()); } - @SuppressWarnings("serial") + private com.google.protobuf.MapField< + java.lang.String, io.temporal.api.common.v1.Payload> searchAttributes_; private com.google.protobuf.MapField - searchAttributes_; - - private com.google.protobuf.MapField - internalGetSearchAttributes() { + internalGetSearchAttributes() { if (searchAttributes_ == null) { return com.google.protobuf.MapField.emptyMapField( SearchAttributesDefaultEntryHolder.defaultEntry); } return searchAttributes_; } - public int getSearchAttributesCount() { return internalGetSearchAttributes().getMap().size(); } /** - * - * *
      * Search attributes
      * 
@@ -27514,22 +26079,20 @@ public int getSearchAttributesCount() { * map<string, .temporal.api.common.v1.Payload> search_attributes = 17; */ @java.lang.Override - public boolean containsSearchAttributes(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } + public boolean containsSearchAttributes( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } return internalGetSearchAttributes().getMap().containsKey(key); } - /** Use {@link #getSearchAttributesMap()} instead. */ + /** + * Use {@link #getSearchAttributesMap()} instead. + */ @java.lang.Override @java.lang.Deprecated - public java.util.Map - getSearchAttributes() { + public java.util.Map getSearchAttributes() { return getSearchAttributesMap(); } /** - * - * *
      * Search attributes
      * 
@@ -27537,13 +26100,10 @@ public boolean containsSearchAttributes(java.lang.String key) { * map<string, .temporal.api.common.v1.Payload> search_attributes = 17; */ @java.lang.Override - public java.util.Map - getSearchAttributesMap() { + public java.util.Map getSearchAttributesMap() { return internalGetSearchAttributes().getMap(); } /** - * - * *
      * Search attributes
      * 
@@ -27551,20 +26111,17 @@ public boolean containsSearchAttributes(java.lang.String key) { * map<string, .temporal.api.common.v1.Payload> search_attributes = 17; */ @java.lang.Override - public /* nullable */ io.temporal.api.common.v1.Payload getSearchAttributesOrDefault( + public /* nullable */ +io.temporal.api.common.v1.Payload getSearchAttributesOrDefault( java.lang.String key, /* nullable */ - io.temporal.api.common.v1.Payload defaultValue) { - if (key == null) { - throw new NullPointerException("map key"); - } +io.temporal.api.common.v1.Payload defaultValue) { + if (key == null) { throw new NullPointerException("map key"); } java.util.Map map = internalGetSearchAttributes().getMap(); return map.containsKey(key) ? map.get(key) : defaultValue; } /** - * - * *
      * Search attributes
      * 
@@ -27572,10 +26129,9 @@ public boolean containsSearchAttributes(java.lang.String key) { * map<string, .temporal.api.common.v1.Payload> search_attributes = 17; */ @java.lang.Override - public io.temporal.api.common.v1.Payload getSearchAttributesOrThrow(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } + public io.temporal.api.common.v1.Payload getSearchAttributesOrThrow( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } java.util.Map map = internalGetSearchAttributes().getMap(); if (!map.containsKey(key)) { @@ -27587,74 +26143,52 @@ public io.temporal.api.common.v1.Payload getSearchAttributesOrThrow(java.lang.St public static final int CANCELLATION_TYPE_FIELD_NUMBER = 18; private int cancellationType_ = 0; /** - * - * *
      * Defines behaviour of the underlying workflow when child workflow cancellation has been requested.
      * 
* - * .temporal.omes.kitchen_sink.ChildWorkflowCancellationType cancellation_type = 18; - * - * + * .temporal.omes.kitchen_sink.ChildWorkflowCancellationType cancellation_type = 18; * @return The enum numeric value on the wire for cancellationType. */ - @java.lang.Override - public int getCancellationTypeValue() { + @java.lang.Override public int getCancellationTypeValue() { return cancellationType_; } /** - * - * *
      * Defines behaviour of the underlying workflow when child workflow cancellation has been requested.
      * 
* - * .temporal.omes.kitchen_sink.ChildWorkflowCancellationType cancellation_type = 18; - * - * + * .temporal.omes.kitchen_sink.ChildWorkflowCancellationType cancellation_type = 18; * @return The cancellationType. */ - @java.lang.Override - public io.temporal.omes.KitchenSink.ChildWorkflowCancellationType getCancellationType() { - io.temporal.omes.KitchenSink.ChildWorkflowCancellationType result = - io.temporal.omes.KitchenSink.ChildWorkflowCancellationType.forNumber(cancellationType_); - return result == null - ? io.temporal.omes.KitchenSink.ChildWorkflowCancellationType.UNRECOGNIZED - : result; + @java.lang.Override public io.temporal.omes.KitchenSink.ChildWorkflowCancellationType getCancellationType() { + io.temporal.omes.KitchenSink.ChildWorkflowCancellationType result = io.temporal.omes.KitchenSink.ChildWorkflowCancellationType.forNumber(cancellationType_); + return result == null ? io.temporal.omes.KitchenSink.ChildWorkflowCancellationType.UNRECOGNIZED : result; } public static final int VERSIONING_INTENT_FIELD_NUMBER = 19; private int versioningIntent_ = 0; /** - * - * *
      * Whether this child should run on a worker with a compatible build id or not.
      * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 19; - * * @return The enum numeric value on the wire for versioningIntent. */ - @java.lang.Override - public int getVersioningIntentValue() { + @java.lang.Override public int getVersioningIntentValue() { return versioningIntent_; } /** - * - * *
      * Whether this child should run on a worker with a compatible build id or not.
      * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 19; - * * @return The versioningIntent. */ - @java.lang.Override - public io.temporal.omes.KitchenSink.VersioningIntent getVersioningIntent() { - io.temporal.omes.KitchenSink.VersioningIntent result = - io.temporal.omes.KitchenSink.VersioningIntent.forNumber(versioningIntent_); + @java.lang.Override public io.temporal.omes.KitchenSink.VersioningIntent getVersioningIntent() { + io.temporal.omes.KitchenSink.VersioningIntent result = io.temporal.omes.KitchenSink.VersioningIntent.forNumber(versioningIntent_); return result == null ? io.temporal.omes.KitchenSink.VersioningIntent.UNRECOGNIZED : result; } @@ -27662,7 +26196,6 @@ public io.temporal.omes.KitchenSink.VersioningIntent getVersioningIntent() { private io.temporal.omes.KitchenSink.AwaitableChoice awaitableChoice_; /** * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 20; - * * @return Whether the awaitableChoice field is set. */ @java.lang.Override @@ -27671,25 +26204,21 @@ public boolean hasAwaitableChoice() { } /** * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 20; - * * @return The awaitableChoice. */ @java.lang.Override public io.temporal.omes.KitchenSink.AwaitableChoice getAwaitableChoice() { - return awaitableChoice_ == null - ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() - : awaitableChoice_; + return awaitableChoice_ == null ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() : awaitableChoice_; } - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 20; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 20; + */ @java.lang.Override public io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder getAwaitableChoiceOrBuilder() { - return awaitableChoice_ == null - ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() - : awaitableChoice_; + return awaitableChoice_ == null ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() : awaitableChoice_; } private byte memoizedIsInitialized = -1; - @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; @@ -27701,7 +26230,8 @@ public final boolean isInitialized() { } @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(namespace_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, namespace_); } @@ -27726,14 +26256,10 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (((bitField0_ & 0x00000004) != 0)) { output.writeMessage(9, getWorkflowTaskTimeout()); } - if (parentClosePolicy_ - != io.temporal.omes.KitchenSink.ParentClosePolicy.PARENT_CLOSE_POLICY_UNSPECIFIED - .getNumber()) { + if (parentClosePolicy_ != io.temporal.omes.KitchenSink.ParentClosePolicy.PARENT_CLOSE_POLICY_UNSPECIFIED.getNumber()) { output.writeEnum(10, parentClosePolicy_); } - if (workflowIdReusePolicy_ - != io.temporal.api.enums.v1.WorkflowIdReusePolicy.WORKFLOW_ID_REUSE_POLICY_UNSPECIFIED - .getNumber()) { + if (workflowIdReusePolicy_ != io.temporal.api.enums.v1.WorkflowIdReusePolicy.WORKFLOW_ID_REUSE_POLICY_UNSPECIFIED.getNumber()) { output.writeEnum(12, workflowIdReusePolicy_); } if (((bitField0_ & 0x00000008) != 0)) { @@ -27742,22 +26268,28 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(cronSchedule_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 14, cronSchedule_); } - com.google.protobuf.GeneratedMessageV3.serializeStringMapTo( - output, internalGetHeaders(), HeadersDefaultEntryHolder.defaultEntry, 15); - com.google.protobuf.GeneratedMessageV3.serializeStringMapTo( - output, internalGetMemo(), MemoDefaultEntryHolder.defaultEntry, 16); - com.google.protobuf.GeneratedMessageV3.serializeStringMapTo( + com.google.protobuf.GeneratedMessageV3 + .serializeStringMapTo( + output, + internalGetHeaders(), + HeadersDefaultEntryHolder.defaultEntry, + 15); + com.google.protobuf.GeneratedMessageV3 + .serializeStringMapTo( + output, + internalGetMemo(), + MemoDefaultEntryHolder.defaultEntry, + 16); + com.google.protobuf.GeneratedMessageV3 + .serializeStringMapTo( output, internalGetSearchAttributes(), SearchAttributesDefaultEntryHolder.defaultEntry, 17); - if (cancellationType_ - != io.temporal.omes.KitchenSink.ChildWorkflowCancellationType.CHILD_WF_ABANDON - .getNumber()) { + if (cancellationType_ != io.temporal.omes.KitchenSink.ChildWorkflowCancellationType.CHILD_WF_ABANDON.getNumber()) { output.writeEnum(18, cancellationType_); } - if (versioningIntent_ - != io.temporal.omes.KitchenSink.VersioningIntent.UNSPECIFIED.getNumber()) { + if (versioningIntent_ != io.temporal.omes.KitchenSink.VersioningIntent.UNSPECIFIED.getNumber()) { output.writeEnum(19, versioningIntent_); } if (((bitField0_ & 0x00000010) != 0)) { @@ -27785,80 +26317,77 @@ public int getSerializedSize() { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, taskQueue_); } for (int i = 0; i < input_.size(); i++) { - size += com.google.protobuf.CodedOutputStream.computeMessageSize(6, input_.get(i)); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(6, input_.get(i)); } if (((bitField0_ & 0x00000001) != 0)) { - size += - com.google.protobuf.CodedOutputStream.computeMessageSize( - 7, getWorkflowExecutionTimeout()); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(7, getWorkflowExecutionTimeout()); } if (((bitField0_ & 0x00000002) != 0)) { - size += - com.google.protobuf.CodedOutputStream.computeMessageSize(8, getWorkflowRunTimeout()); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(8, getWorkflowRunTimeout()); } if (((bitField0_ & 0x00000004) != 0)) { - size += - com.google.protobuf.CodedOutputStream.computeMessageSize(9, getWorkflowTaskTimeout()); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(9, getWorkflowTaskTimeout()); } - if (parentClosePolicy_ - != io.temporal.omes.KitchenSink.ParentClosePolicy.PARENT_CLOSE_POLICY_UNSPECIFIED - .getNumber()) { - size += com.google.protobuf.CodedOutputStream.computeEnumSize(10, parentClosePolicy_); + if (parentClosePolicy_ != io.temporal.omes.KitchenSink.ParentClosePolicy.PARENT_CLOSE_POLICY_UNSPECIFIED.getNumber()) { + size += com.google.protobuf.CodedOutputStream + .computeEnumSize(10, parentClosePolicy_); } - if (workflowIdReusePolicy_ - != io.temporal.api.enums.v1.WorkflowIdReusePolicy.WORKFLOW_ID_REUSE_POLICY_UNSPECIFIED - .getNumber()) { - size += com.google.protobuf.CodedOutputStream.computeEnumSize(12, workflowIdReusePolicy_); + if (workflowIdReusePolicy_ != io.temporal.api.enums.v1.WorkflowIdReusePolicy.WORKFLOW_ID_REUSE_POLICY_UNSPECIFIED.getNumber()) { + size += com.google.protobuf.CodedOutputStream + .computeEnumSize(12, workflowIdReusePolicy_); } if (((bitField0_ & 0x00000008) != 0)) { - size += com.google.protobuf.CodedOutputStream.computeMessageSize(13, getRetryPolicy()); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(13, getRetryPolicy()); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(cronSchedule_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(14, cronSchedule_); } - for (java.util.Map.Entry entry : - internalGetHeaders().getMap().entrySet()) { + for (java.util.Map.Entry entry + : internalGetHeaders().getMap().entrySet()) { com.google.protobuf.MapEntry - headers__ = - HeadersDefaultEntryHolder.defaultEntry - .newBuilderForType() - .setKey(entry.getKey()) - .setValue(entry.getValue()) - .build(); - size += com.google.protobuf.CodedOutputStream.computeMessageSize(15, headers__); - } - for (java.util.Map.Entry entry : - internalGetMemo().getMap().entrySet()) { - com.google.protobuf.MapEntry memo__ = - MemoDefaultEntryHolder.defaultEntry - .newBuilderForType() - .setKey(entry.getKey()) - .setValue(entry.getValue()) - .build(); - size += com.google.protobuf.CodedOutputStream.computeMessageSize(16, memo__); - } - for (java.util.Map.Entry entry : - internalGetSearchAttributes().getMap().entrySet()) { + headers__ = HeadersDefaultEntryHolder.defaultEntry.newBuilderForType() + .setKey(entry.getKey()) + .setValue(entry.getValue()) + .build(); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(15, headers__); + } + for (java.util.Map.Entry entry + : internalGetMemo().getMap().entrySet()) { com.google.protobuf.MapEntry - searchAttributes__ = - SearchAttributesDefaultEntryHolder.defaultEntry - .newBuilderForType() - .setKey(entry.getKey()) - .setValue(entry.getValue()) - .build(); - size += com.google.protobuf.CodedOutputStream.computeMessageSize(17, searchAttributes__); - } - if (cancellationType_ - != io.temporal.omes.KitchenSink.ChildWorkflowCancellationType.CHILD_WF_ABANDON - .getNumber()) { - size += com.google.protobuf.CodedOutputStream.computeEnumSize(18, cancellationType_); - } - if (versioningIntent_ - != io.temporal.omes.KitchenSink.VersioningIntent.UNSPECIFIED.getNumber()) { - size += com.google.protobuf.CodedOutputStream.computeEnumSize(19, versioningIntent_); + memo__ = MemoDefaultEntryHolder.defaultEntry.newBuilderForType() + .setKey(entry.getKey()) + .setValue(entry.getValue()) + .build(); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(16, memo__); + } + for (java.util.Map.Entry entry + : internalGetSearchAttributes().getMap().entrySet()) { + com.google.protobuf.MapEntry + searchAttributes__ = SearchAttributesDefaultEntryHolder.defaultEntry.newBuilderForType() + .setKey(entry.getKey()) + .setValue(entry.getValue()) + .build(); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(17, searchAttributes__); + } + if (cancellationType_ != io.temporal.omes.KitchenSink.ChildWorkflowCancellationType.CHILD_WF_ABANDON.getNumber()) { + size += com.google.protobuf.CodedOutputStream + .computeEnumSize(18, cancellationType_); + } + if (versioningIntent_ != io.temporal.omes.KitchenSink.VersioningIntent.UNSPECIFIED.getNumber()) { + size += com.google.protobuf.CodedOutputStream + .computeEnumSize(19, versioningIntent_); } if (((bitField0_ & 0x00000010) != 0)) { - size += com.google.protobuf.CodedOutputStream.computeMessageSize(20, getAwaitableChoice()); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(20, getAwaitableChoice()); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; @@ -27868,47 +26397,59 @@ public int getSerializedSize() { @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { - return true; + return true; } if (!(obj instanceof io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction)) { return super.equals(obj); } - io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction other = - (io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction) obj; - - if (!getNamespace().equals(other.getNamespace())) return false; - if (!getWorkflowId().equals(other.getWorkflowId())) return false; - if (!getWorkflowType().equals(other.getWorkflowType())) return false; - if (!getTaskQueue().equals(other.getTaskQueue())) return false; - if (!getInputList().equals(other.getInputList())) return false; + io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction other = (io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction) obj; + + if (!getNamespace() + .equals(other.getNamespace())) return false; + if (!getWorkflowId() + .equals(other.getWorkflowId())) return false; + if (!getWorkflowType() + .equals(other.getWorkflowType())) return false; + if (!getTaskQueue() + .equals(other.getTaskQueue())) return false; + if (!getInputList() + .equals(other.getInputList())) return false; if (hasWorkflowExecutionTimeout() != other.hasWorkflowExecutionTimeout()) return false; if (hasWorkflowExecutionTimeout()) { - if (!getWorkflowExecutionTimeout().equals(other.getWorkflowExecutionTimeout())) - return false; + if (!getWorkflowExecutionTimeout() + .equals(other.getWorkflowExecutionTimeout())) return false; } if (hasWorkflowRunTimeout() != other.hasWorkflowRunTimeout()) return false; if (hasWorkflowRunTimeout()) { - if (!getWorkflowRunTimeout().equals(other.getWorkflowRunTimeout())) return false; + if (!getWorkflowRunTimeout() + .equals(other.getWorkflowRunTimeout())) return false; } if (hasWorkflowTaskTimeout() != other.hasWorkflowTaskTimeout()) return false; if (hasWorkflowTaskTimeout()) { - if (!getWorkflowTaskTimeout().equals(other.getWorkflowTaskTimeout())) return false; + if (!getWorkflowTaskTimeout() + .equals(other.getWorkflowTaskTimeout())) return false; } if (parentClosePolicy_ != other.parentClosePolicy_) return false; if (workflowIdReusePolicy_ != other.workflowIdReusePolicy_) return false; if (hasRetryPolicy() != other.hasRetryPolicy()) return false; if (hasRetryPolicy()) { - if (!getRetryPolicy().equals(other.getRetryPolicy())) return false; - } - if (!getCronSchedule().equals(other.getCronSchedule())) return false; - if (!internalGetHeaders().equals(other.internalGetHeaders())) return false; - if (!internalGetMemo().equals(other.internalGetMemo())) return false; - if (!internalGetSearchAttributes().equals(other.internalGetSearchAttributes())) return false; + if (!getRetryPolicy() + .equals(other.getRetryPolicy())) return false; + } + if (!getCronSchedule() + .equals(other.getCronSchedule())) return false; + if (!internalGetHeaders().equals( + other.internalGetHeaders())) return false; + if (!internalGetMemo().equals( + other.internalGetMemo())) return false; + if (!internalGetSearchAttributes().equals( + other.internalGetSearchAttributes())) return false; if (cancellationType_ != other.cancellationType_) return false; if (versioningIntent_ != other.versioningIntent_) return false; if (hasAwaitableChoice() != other.hasAwaitableChoice()) return false; if (hasAwaitableChoice()) { - if (!getAwaitableChoice().equals(other.getAwaitableChoice())) return false; + if (!getAwaitableChoice() + .equals(other.getAwaitableChoice())) return false; } if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; @@ -27981,94 +26522,89 @@ public int hashCode() { } public static io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction parseFrom( - java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction parseFrom( - java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction parseFrom( - byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - - public static io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction parseFrom( - java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + public static io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction parseFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction parseDelimitedFrom( - java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + public static io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); } public static io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction parseDelimitedFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction parseFrom( - com.google.protobuf.CodedInputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override - public Builder newBuilderForType() { - return newBuilder(); - } - + public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - - public static Builder newBuilder( - io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction prototype) { + public static Builder newBuilder(io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } - @java.lang.Override public Builder toBuilder() { - return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override @@ -28077,15 +26613,16 @@ protected Builder newBuilderForType( Builder builder = new Builder(parent); return builder; } - /** Protobuf type {@code temporal.omes.kitchen_sink.ExecuteChildWorkflowAction} */ - public static final class Builder - extends com.google.protobuf.GeneratedMessageV3.Builder - implements + /** + * Protobuf type {@code temporal.omes.kitchen_sink.ExecuteChildWorkflowAction} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.ExecuteChildWorkflowAction) io.temporal.omes.KitchenSink.ExecuteChildWorkflowActionOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_descriptor; } @SuppressWarnings({"rawtypes"}) @@ -28099,10 +26636,10 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMapFieldRefl case 17: return internalGetSearchAttributes(); default: - throw new RuntimeException("Invalid map field number: " + number); + throw new RuntimeException( + "Invalid map field number: " + number); } } - @SuppressWarnings({"rawtypes"}) protected com.google.protobuf.MapFieldReflectionAccessor internalGetMutableMapFieldReflection( int number) { @@ -28114,18 +26651,16 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMutableMapFi case 17: return internalGetMutableSearchAttributes(); default: - throw new RuntimeException("Invalid map field number: " + number); + throw new RuntimeException( + "Invalid map field number: " + number); } } - @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.class, - io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.Builder.class); + io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.class, io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.Builder.class); } // Construct using io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.newBuilder() @@ -28133,13 +26668,14 @@ private Builder() { maybeForceBuilderInitialization(); } - private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { getInputFieldBuilder(); getWorkflowExecutionTimeoutFieldBuilder(); getWorkflowRunTimeoutFieldBuilder(); @@ -28148,7 +26684,6 @@ private void maybeForceBuilderInitialization() { getAwaitableChoiceFieldBuilder(); } } - @java.lang.Override public Builder clear() { super.clear(); @@ -28201,9 +26736,9 @@ public Builder clear() { } @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_descriptor; + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_descriptor; } @java.lang.Override @@ -28222,18 +26757,14 @@ public io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction build() { @java.lang.Override public io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction buildPartial() { - io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction result = - new io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction(this); + io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction result = new io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction(this); buildPartialRepeatedFields(result); - if (bitField0_ != 0) { - buildPartial0(result); - } + if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } - private void buildPartialRepeatedFields( - io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction result) { + private void buildPartialRepeatedFields(io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction result) { if (inputBuilder_ == null) { if (((bitField0_ & 0x00000010) != 0)) { input_ = java.util.Collections.unmodifiableList(input_); @@ -28261,24 +26792,21 @@ private void buildPartial0(io.temporal.omes.KitchenSink.ExecuteChildWorkflowActi } int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000020) != 0)) { - result.workflowExecutionTimeout_ = - workflowExecutionTimeoutBuilder_ == null - ? workflowExecutionTimeout_ - : workflowExecutionTimeoutBuilder_.build(); + result.workflowExecutionTimeout_ = workflowExecutionTimeoutBuilder_ == null + ? workflowExecutionTimeout_ + : workflowExecutionTimeoutBuilder_.build(); to_bitField0_ |= 0x00000001; } if (((from_bitField0_ & 0x00000040) != 0)) { - result.workflowRunTimeout_ = - workflowRunTimeoutBuilder_ == null - ? workflowRunTimeout_ - : workflowRunTimeoutBuilder_.build(); + result.workflowRunTimeout_ = workflowRunTimeoutBuilder_ == null + ? workflowRunTimeout_ + : workflowRunTimeoutBuilder_.build(); to_bitField0_ |= 0x00000002; } if (((from_bitField0_ & 0x00000080) != 0)) { - result.workflowTaskTimeout_ = - workflowTaskTimeoutBuilder_ == null - ? workflowTaskTimeout_ - : workflowTaskTimeoutBuilder_.build(); + result.workflowTaskTimeout_ = workflowTaskTimeoutBuilder_ == null + ? workflowTaskTimeout_ + : workflowTaskTimeoutBuilder_.build(); to_bitField0_ |= 0x00000004; } if (((from_bitField0_ & 0x00000100) != 0)) { @@ -28288,8 +26816,9 @@ private void buildPartial0(io.temporal.omes.KitchenSink.ExecuteChildWorkflowActi result.workflowIdReusePolicy_ = workflowIdReusePolicy_; } if (((from_bitField0_ & 0x00000400) != 0)) { - result.retryPolicy_ = - retryPolicyBuilder_ == null ? retryPolicy_ : retryPolicyBuilder_.build(); + result.retryPolicy_ = retryPolicyBuilder_ == null + ? retryPolicy_ + : retryPolicyBuilder_.build(); to_bitField0_ |= 0x00000008; } if (((from_bitField0_ & 0x00000800) != 0)) { @@ -28302,8 +26831,7 @@ private void buildPartial0(io.temporal.omes.KitchenSink.ExecuteChildWorkflowActi result.memo_ = internalGetMemo().build(MemoDefaultEntryHolder.defaultEntry); } if (((from_bitField0_ & 0x00004000) != 0)) { - result.searchAttributes_ = - internalGetSearchAttributes().build(SearchAttributesDefaultEntryHolder.defaultEntry); + result.searchAttributes_ = internalGetSearchAttributes().build(SearchAttributesDefaultEntryHolder.defaultEntry); } if (((from_bitField0_ & 0x00008000) != 0)) { result.cancellationType_ = cancellationType_; @@ -28312,8 +26840,9 @@ private void buildPartial0(io.temporal.omes.KitchenSink.ExecuteChildWorkflowActi result.versioningIntent_ = versioningIntent_; } if (((from_bitField0_ & 0x00020000) != 0)) { - result.awaitableChoice_ = - awaitableChoiceBuilder_ == null ? awaitableChoice_ : awaitableChoiceBuilder_.build(); + result.awaitableChoice_ = awaitableChoiceBuilder_ == null + ? awaitableChoice_ + : awaitableChoiceBuilder_.build(); to_bitField0_ |= 0x00000010; } result.bitField0_ |= to_bitField0_; @@ -28323,41 +26852,38 @@ private void buildPartial0(io.temporal.omes.KitchenSink.ExecuteChildWorkflowActi public Builder clone() { return super.clone(); } - @java.lang.Override public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.setField(field, value); } - @java.lang.Override - public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } - @java.lang.Override - public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } - @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, - int index, - java.lang.Object value) { + int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } - @java.lang.Override public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.addRepeatedField(field, value); } - @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction) { - return mergeFrom((io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction) other); + return mergeFrom((io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction)other); } else { super.mergeFrom(other); return this; @@ -28365,8 +26891,7 @@ public Builder mergeFrom(com.google.protobuf.Message other) { } public Builder mergeFrom(io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction other) { - if (other == io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.getDefaultInstance()) - return this; + if (other == io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction.getDefaultInstance()) return this; if (!other.getNamespace().isEmpty()) { namespace_ = other.namespace_; bitField0_ |= 0x00000001; @@ -28405,10 +26930,9 @@ public Builder mergeFrom(io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction inputBuilder_ = null; input_ = other.input_; bitField0_ = (bitField0_ & ~0x00000010); - inputBuilder_ = - com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders - ? getInputFieldBuilder() - : null; + inputBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getInputFieldBuilder() : null; } else { inputBuilder_.addAllMessages(other.input_); } @@ -28437,11 +26961,14 @@ public Builder mergeFrom(io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction bitField0_ |= 0x00000800; onChanged(); } - internalGetMutableHeaders().mergeFrom(other.internalGetHeaders()); + internalGetMutableHeaders().mergeFrom( + other.internalGetHeaders()); bitField0_ |= 0x00001000; - internalGetMutableMemo().mergeFrom(other.internalGetMemo()); + internalGetMutableMemo().mergeFrom( + other.internalGetMemo()); bitField0_ |= 0x00002000; - internalGetMutableSearchAttributes().mergeFrom(other.internalGetSearchAttributes()); + internalGetMutableSearchAttributes().mergeFrom( + other.internalGetSearchAttributes()); bitField0_ |= 0x00004000; if (other.cancellationType_ != 0) { setCancellationTypeValue(other.getCancellationTypeValue()); @@ -28478,153 +27005,132 @@ public Builder mergeFrom( case 0: done = true; break; - case 18: - { - namespace_ = input.readStringRequireUtf8(); - bitField0_ |= 0x00000001; - break; - } // case 18 - case 26: - { - workflowId_ = input.readStringRequireUtf8(); - bitField0_ |= 0x00000002; - break; - } // case 26 - case 34: - { - workflowType_ = input.readStringRequireUtf8(); - bitField0_ |= 0x00000004; - break; - } // case 34 - case 42: - { - taskQueue_ = input.readStringRequireUtf8(); - bitField0_ |= 0x00000008; - break; - } // case 42 - case 50: - { - io.temporal.api.common.v1.Payload m = - input.readMessage( - io.temporal.api.common.v1.Payload.parser(), extensionRegistry); - if (inputBuilder_ == null) { - ensureInputIsMutable(); - input_.add(m); - } else { - inputBuilder_.addMessage(m); - } - break; - } // case 50 - case 58: - { - input.readMessage( - getWorkflowExecutionTimeoutFieldBuilder().getBuilder(), extensionRegistry); - bitField0_ |= 0x00000020; - break; - } // case 58 - case 66: - { - input.readMessage( - getWorkflowRunTimeoutFieldBuilder().getBuilder(), extensionRegistry); - bitField0_ |= 0x00000040; - break; - } // case 66 - case 74: - { - input.readMessage( - getWorkflowTaskTimeoutFieldBuilder().getBuilder(), extensionRegistry); - bitField0_ |= 0x00000080; - break; - } // case 74 - case 80: - { - parentClosePolicy_ = input.readEnum(); - bitField0_ |= 0x00000100; - break; - } // case 80 - case 96: - { - workflowIdReusePolicy_ = input.readEnum(); - bitField0_ |= 0x00000200; - break; - } // case 96 - case 106: - { - input.readMessage(getRetryPolicyFieldBuilder().getBuilder(), extensionRegistry); - bitField0_ |= 0x00000400; - break; - } // case 106 - case 114: - { - cronSchedule_ = input.readStringRequireUtf8(); - bitField0_ |= 0x00000800; - break; - } // case 114 - case 122: - { - com.google.protobuf.MapEntry - headers__ = - input.readMessage( - HeadersDefaultEntryHolder.defaultEntry.getParserForType(), - extensionRegistry); - internalGetMutableHeaders() - .ensureBuilderMap() - .put(headers__.getKey(), headers__.getValue()); - bitField0_ |= 0x00001000; - break; - } // case 122 - case 130: - { - com.google.protobuf.MapEntry - memo__ = - input.readMessage( - MemoDefaultEntryHolder.defaultEntry.getParserForType(), - extensionRegistry); - internalGetMutableMemo() - .ensureBuilderMap() - .put(memo__.getKey(), memo__.getValue()); - bitField0_ |= 0x00002000; - break; - } // case 130 - case 138: - { - com.google.protobuf.MapEntry - searchAttributes__ = - input.readMessage( - SearchAttributesDefaultEntryHolder.defaultEntry.getParserForType(), - extensionRegistry); - internalGetMutableSearchAttributes() - .ensureBuilderMap() - .put(searchAttributes__.getKey(), searchAttributes__.getValue()); - bitField0_ |= 0x00004000; - break; - } // case 138 - case 144: - { - cancellationType_ = input.readEnum(); - bitField0_ |= 0x00008000; - break; - } // case 144 - case 152: - { - versioningIntent_ = input.readEnum(); - bitField0_ |= 0x00010000; - break; - } // case 152 - case 162: - { - input.readMessage( - getAwaitableChoiceFieldBuilder().getBuilder(), extensionRegistry); - bitField0_ |= 0x00020000; - break; - } // case 162 - default: - { - if (!super.parseUnknownField(input, extensionRegistry, tag)) { - done = true; // was an endgroup tag - } - break; - } // default: + case 18: { + namespace_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 18 + case 26: { + workflowId_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000002; + break; + } // case 26 + case 34: { + workflowType_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000004; + break; + } // case 34 + case 42: { + taskQueue_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000008; + break; + } // case 42 + case 50: { + io.temporal.api.common.v1.Payload m = + input.readMessage( + io.temporal.api.common.v1.Payload.parser(), + extensionRegistry); + if (inputBuilder_ == null) { + ensureInputIsMutable(); + input_.add(m); + } else { + inputBuilder_.addMessage(m); + } + break; + } // case 50 + case 58: { + input.readMessage( + getWorkflowExecutionTimeoutFieldBuilder().getBuilder(), + extensionRegistry); + bitField0_ |= 0x00000020; + break; + } // case 58 + case 66: { + input.readMessage( + getWorkflowRunTimeoutFieldBuilder().getBuilder(), + extensionRegistry); + bitField0_ |= 0x00000040; + break; + } // case 66 + case 74: { + input.readMessage( + getWorkflowTaskTimeoutFieldBuilder().getBuilder(), + extensionRegistry); + bitField0_ |= 0x00000080; + break; + } // case 74 + case 80: { + parentClosePolicy_ = input.readEnum(); + bitField0_ |= 0x00000100; + break; + } // case 80 + case 96: { + workflowIdReusePolicy_ = input.readEnum(); + bitField0_ |= 0x00000200; + break; + } // case 96 + case 106: { + input.readMessage( + getRetryPolicyFieldBuilder().getBuilder(), + extensionRegistry); + bitField0_ |= 0x00000400; + break; + } // case 106 + case 114: { + cronSchedule_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000800; + break; + } // case 114 + case 122: { + com.google.protobuf.MapEntry + headers__ = input.readMessage( + HeadersDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry); + internalGetMutableHeaders().ensureBuilderMap().put( + headers__.getKey(), headers__.getValue()); + bitField0_ |= 0x00001000; + break; + } // case 122 + case 130: { + com.google.protobuf.MapEntry + memo__ = input.readMessage( + MemoDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry); + internalGetMutableMemo().ensureBuilderMap().put( + memo__.getKey(), memo__.getValue()); + bitField0_ |= 0x00002000; + break; + } // case 130 + case 138: { + com.google.protobuf.MapEntry + searchAttributes__ = input.readMessage( + SearchAttributesDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry); + internalGetMutableSearchAttributes().ensureBuilderMap().put( + searchAttributes__.getKey(), searchAttributes__.getValue()); + bitField0_ |= 0x00004000; + break; + } // case 138 + case 144: { + cancellationType_ = input.readEnum(); + bitField0_ |= 0x00008000; + break; + } // case 144 + case 152: { + versioningIntent_ = input.readEnum(); + bitField0_ |= 0x00010000; + break; + } // case 152 + case 162: { + input.readMessage( + getAwaitableChoiceFieldBuilder().getBuilder(), + extensionRegistry); + bitField0_ |= 0x00020000; + break; + } // case 162 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -28634,19 +27140,18 @@ public Builder mergeFrom( } // finally return this; } - private int bitField0_; private java.lang.Object namespace_ = ""; /** * string namespace = 2; - * * @return The namespace. */ public java.lang.String getNamespace() { java.lang.Object ref = namespace_; if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); namespace_ = s; return s; @@ -28656,14 +27161,15 @@ public java.lang.String getNamespace() { } /** * string namespace = 2; - * * @return The bytes for namespace. */ - public com.google.protobuf.ByteString getNamespaceBytes() { + public com.google.protobuf.ByteString + getNamespaceBytes() { java.lang.Object ref = namespace_; if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); namespace_ = b; return b; } else { @@ -28672,14 +27178,12 @@ public com.google.protobuf.ByteString getNamespaceBytes() { } /** * string namespace = 2; - * * @param value The namespace to set. * @return This builder for chaining. */ - public Builder setNamespace(java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setNamespace( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } namespace_ = value; bitField0_ |= 0x00000001; onChanged(); @@ -28687,7 +27191,6 @@ public Builder setNamespace(java.lang.String value) { } /** * string namespace = 2; - * * @return This builder for chaining. */ public Builder clearNamespace() { @@ -28698,14 +27201,12 @@ public Builder clearNamespace() { } /** * string namespace = 2; - * * @param value The bytes for namespace to set. * @return This builder for chaining. */ - public Builder setNamespaceBytes(com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setNamespaceBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); namespace_ = value; bitField0_ |= 0x00000001; @@ -28716,13 +27217,13 @@ public Builder setNamespaceBytes(com.google.protobuf.ByteString value) { private java.lang.Object workflowId_ = ""; /** * string workflow_id = 3; - * * @return The workflowId. */ public java.lang.String getWorkflowId() { java.lang.Object ref = workflowId_; if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); workflowId_ = s; return s; @@ -28732,14 +27233,15 @@ public java.lang.String getWorkflowId() { } /** * string workflow_id = 3; - * * @return The bytes for workflowId. */ - public com.google.protobuf.ByteString getWorkflowIdBytes() { + public com.google.protobuf.ByteString + getWorkflowIdBytes() { java.lang.Object ref = workflowId_; if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); workflowId_ = b; return b; } else { @@ -28748,14 +27250,12 @@ public com.google.protobuf.ByteString getWorkflowIdBytes() { } /** * string workflow_id = 3; - * * @param value The workflowId to set. * @return This builder for chaining. */ - public Builder setWorkflowId(java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setWorkflowId( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } workflowId_ = value; bitField0_ |= 0x00000002; onChanged(); @@ -28763,7 +27263,6 @@ public Builder setWorkflowId(java.lang.String value) { } /** * string workflow_id = 3; - * * @return This builder for chaining. */ public Builder clearWorkflowId() { @@ -28774,14 +27273,12 @@ public Builder clearWorkflowId() { } /** * string workflow_id = 3; - * * @param value The bytes for workflowId to set. * @return This builder for chaining. */ - public Builder setWorkflowIdBytes(com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setWorkflowIdBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); workflowId_ = value; bitField0_ |= 0x00000002; @@ -28792,13 +27289,13 @@ public Builder setWorkflowIdBytes(com.google.protobuf.ByteString value) { private java.lang.Object workflowType_ = ""; /** * string workflow_type = 4; - * * @return The workflowType. */ public java.lang.String getWorkflowType() { java.lang.Object ref = workflowType_; if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); workflowType_ = s; return s; @@ -28808,14 +27305,15 @@ public java.lang.String getWorkflowType() { } /** * string workflow_type = 4; - * * @return The bytes for workflowType. */ - public com.google.protobuf.ByteString getWorkflowTypeBytes() { + public com.google.protobuf.ByteString + getWorkflowTypeBytes() { java.lang.Object ref = workflowType_; if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); workflowType_ = b; return b; } else { @@ -28824,14 +27322,12 @@ public com.google.protobuf.ByteString getWorkflowTypeBytes() { } /** * string workflow_type = 4; - * * @param value The workflowType to set. * @return This builder for chaining. */ - public Builder setWorkflowType(java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setWorkflowType( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } workflowType_ = value; bitField0_ |= 0x00000004; onChanged(); @@ -28839,7 +27335,6 @@ public Builder setWorkflowType(java.lang.String value) { } /** * string workflow_type = 4; - * * @return This builder for chaining. */ public Builder clearWorkflowType() { @@ -28850,14 +27345,12 @@ public Builder clearWorkflowType() { } /** * string workflow_type = 4; - * * @param value The bytes for workflowType to set. * @return This builder for chaining. */ - public Builder setWorkflowTypeBytes(com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setWorkflowTypeBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); workflowType_ = value; bitField0_ |= 0x00000004; @@ -28868,13 +27361,13 @@ public Builder setWorkflowTypeBytes(com.google.protobuf.ByteString value) { private java.lang.Object taskQueue_ = ""; /** * string task_queue = 5; - * * @return The taskQueue. */ public java.lang.String getTaskQueue() { java.lang.Object ref = taskQueue_; if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); taskQueue_ = s; return s; @@ -28884,14 +27377,15 @@ public java.lang.String getTaskQueue() { } /** * string task_queue = 5; - * * @return The bytes for taskQueue. */ - public com.google.protobuf.ByteString getTaskQueueBytes() { + public com.google.protobuf.ByteString + getTaskQueueBytes() { java.lang.Object ref = taskQueue_; if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); taskQueue_ = b; return b; } else { @@ -28900,14 +27394,12 @@ public com.google.protobuf.ByteString getTaskQueueBytes() { } /** * string task_queue = 5; - * * @param value The taskQueue to set. * @return This builder for chaining. */ - public Builder setTaskQueue(java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setTaskQueue( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } taskQueue_ = value; bitField0_ |= 0x00000008; onChanged(); @@ -28915,7 +27407,6 @@ public Builder setTaskQueue(java.lang.String value) { } /** * string task_queue = 5; - * * @return This builder for chaining. */ public Builder clearTaskQueue() { @@ -28926,14 +27417,12 @@ public Builder clearTaskQueue() { } /** * string task_queue = 5; - * * @param value The bytes for taskQueue to set. * @return This builder for chaining. */ - public Builder setTaskQueueBytes(com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setTaskQueueBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); taskQueue_ = value; bitField0_ |= 0x00000008; @@ -28942,22 +27431,20 @@ public Builder setTaskQueueBytes(com.google.protobuf.ByteString value) { } private java.util.List input_ = - java.util.Collections.emptyList(); - + java.util.Collections.emptyList(); private void ensureInputIsMutable() { if (!((bitField0_ & 0x00000010) != 0)) { input_ = new java.util.ArrayList(input_); bitField0_ |= 0x00000010; - } + } } private com.google.protobuf.RepeatedFieldBuilderV3< - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder, - io.temporal.api.common.v1.PayloadOrBuilder> - inputBuilder_; + io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder, io.temporal.api.common.v1.PayloadOrBuilder> inputBuilder_; - /** repeated .temporal.api.common.v1.Payload input = 6; */ + /** + * repeated .temporal.api.common.v1.Payload input = 6; + */ public java.util.List getInputList() { if (inputBuilder_ == null) { return java.util.Collections.unmodifiableList(input_); @@ -28965,7 +27452,9 @@ public java.util.List getInputList() { return inputBuilder_.getMessageList(); } } - /** repeated .temporal.api.common.v1.Payload input = 6; */ + /** + * repeated .temporal.api.common.v1.Payload input = 6; + */ public int getInputCount() { if (inputBuilder_ == null) { return input_.size(); @@ -28973,7 +27462,9 @@ public int getInputCount() { return inputBuilder_.getCount(); } } - /** repeated .temporal.api.common.v1.Payload input = 6; */ + /** + * repeated .temporal.api.common.v1.Payload input = 6; + */ public io.temporal.api.common.v1.Payload getInput(int index) { if (inputBuilder_ == null) { return input_.get(index); @@ -28981,8 +27472,11 @@ public io.temporal.api.common.v1.Payload getInput(int index) { return inputBuilder_.getMessage(index); } } - /** repeated .temporal.api.common.v1.Payload input = 6; */ - public Builder setInput(int index, io.temporal.api.common.v1.Payload value) { + /** + * repeated .temporal.api.common.v1.Payload input = 6; + */ + public Builder setInput( + int index, io.temporal.api.common.v1.Payload value) { if (inputBuilder_ == null) { if (value == null) { throw new NullPointerException(); @@ -28995,7 +27489,9 @@ public Builder setInput(int index, io.temporal.api.common.v1.Payload value) { } return this; } - /** repeated .temporal.api.common.v1.Payload input = 6; */ + /** + * repeated .temporal.api.common.v1.Payload input = 6; + */ public Builder setInput( int index, io.temporal.api.common.v1.Payload.Builder builderForValue) { if (inputBuilder_ == null) { @@ -29007,7 +27503,9 @@ public Builder setInput( } return this; } - /** repeated .temporal.api.common.v1.Payload input = 6; */ + /** + * repeated .temporal.api.common.v1.Payload input = 6; + */ public Builder addInput(io.temporal.api.common.v1.Payload value) { if (inputBuilder_ == null) { if (value == null) { @@ -29021,8 +27519,11 @@ public Builder addInput(io.temporal.api.common.v1.Payload value) { } return this; } - /** repeated .temporal.api.common.v1.Payload input = 6; */ - public Builder addInput(int index, io.temporal.api.common.v1.Payload value) { + /** + * repeated .temporal.api.common.v1.Payload input = 6; + */ + public Builder addInput( + int index, io.temporal.api.common.v1.Payload value) { if (inputBuilder_ == null) { if (value == null) { throw new NullPointerException(); @@ -29035,8 +27536,11 @@ public Builder addInput(int index, io.temporal.api.common.v1.Payload value) { } return this; } - /** repeated .temporal.api.common.v1.Payload input = 6; */ - public Builder addInput(io.temporal.api.common.v1.Payload.Builder builderForValue) { + /** + * repeated .temporal.api.common.v1.Payload input = 6; + */ + public Builder addInput( + io.temporal.api.common.v1.Payload.Builder builderForValue) { if (inputBuilder_ == null) { ensureInputIsMutable(); input_.add(builderForValue.build()); @@ -29046,7 +27550,9 @@ public Builder addInput(io.temporal.api.common.v1.Payload.Builder builderForValu } return this; } - /** repeated .temporal.api.common.v1.Payload input = 6; */ + /** + * repeated .temporal.api.common.v1.Payload input = 6; + */ public Builder addInput( int index, io.temporal.api.common.v1.Payload.Builder builderForValue) { if (inputBuilder_ == null) { @@ -29058,19 +27564,24 @@ public Builder addInput( } return this; } - /** repeated .temporal.api.common.v1.Payload input = 6; */ + /** + * repeated .temporal.api.common.v1.Payload input = 6; + */ public Builder addAllInput( java.lang.Iterable values) { if (inputBuilder_ == null) { ensureInputIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll(values, input_); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, input_); onChanged(); } else { inputBuilder_.addAllMessages(values); } return this; } - /** repeated .temporal.api.common.v1.Payload input = 6; */ + /** + * repeated .temporal.api.common.v1.Payload input = 6; + */ public Builder clearInput() { if (inputBuilder_ == null) { input_ = java.util.Collections.emptyList(); @@ -29081,7 +27592,9 @@ public Builder clearInput() { } return this; } - /** repeated .temporal.api.common.v1.Payload input = 6; */ + /** + * repeated .temporal.api.common.v1.Payload input = 6; + */ public Builder removeInput(int index) { if (inputBuilder_ == null) { ensureInputIsMutable(); @@ -29092,54 +27605,66 @@ public Builder removeInput(int index) { } return this; } - /** repeated .temporal.api.common.v1.Payload input = 6; */ - public io.temporal.api.common.v1.Payload.Builder getInputBuilder(int index) { + /** + * repeated .temporal.api.common.v1.Payload input = 6; + */ + public io.temporal.api.common.v1.Payload.Builder getInputBuilder( + int index) { return getInputFieldBuilder().getBuilder(index); } - /** repeated .temporal.api.common.v1.Payload input = 6; */ - public io.temporal.api.common.v1.PayloadOrBuilder getInputOrBuilder(int index) { + /** + * repeated .temporal.api.common.v1.Payload input = 6; + */ + public io.temporal.api.common.v1.PayloadOrBuilder getInputOrBuilder( + int index) { if (inputBuilder_ == null) { - return input_.get(index); - } else { + return input_.get(index); } else { return inputBuilder_.getMessageOrBuilder(index); } } - /** repeated .temporal.api.common.v1.Payload input = 6; */ - public java.util.List - getInputOrBuilderList() { + /** + * repeated .temporal.api.common.v1.Payload input = 6; + */ + public java.util.List + getInputOrBuilderList() { if (inputBuilder_ != null) { return inputBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(input_); } } - /** repeated .temporal.api.common.v1.Payload input = 6; */ + /** + * repeated .temporal.api.common.v1.Payload input = 6; + */ public io.temporal.api.common.v1.Payload.Builder addInputBuilder() { - return getInputFieldBuilder() - .addBuilder(io.temporal.api.common.v1.Payload.getDefaultInstance()); + return getInputFieldBuilder().addBuilder( + io.temporal.api.common.v1.Payload.getDefaultInstance()); } - /** repeated .temporal.api.common.v1.Payload input = 6; */ - public io.temporal.api.common.v1.Payload.Builder addInputBuilder(int index) { - return getInputFieldBuilder() - .addBuilder(index, io.temporal.api.common.v1.Payload.getDefaultInstance()); + /** + * repeated .temporal.api.common.v1.Payload input = 6; + */ + public io.temporal.api.common.v1.Payload.Builder addInputBuilder( + int index) { + return getInputFieldBuilder().addBuilder( + index, io.temporal.api.common.v1.Payload.getDefaultInstance()); } - /** repeated .temporal.api.common.v1.Payload input = 6; */ - public java.util.List getInputBuilderList() { + /** + * repeated .temporal.api.common.v1.Payload input = 6; + */ + public java.util.List + getInputBuilderList() { return getInputFieldBuilder().getBuilderList(); } - private com.google.protobuf.RepeatedFieldBuilderV3< - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder, - io.temporal.api.common.v1.PayloadOrBuilder> + io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder, io.temporal.api.common.v1.PayloadOrBuilder> getInputFieldBuilder() { if (inputBuilder_ == null) { - inputBuilder_ = - new com.google.protobuf.RepeatedFieldBuilderV3< - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder, - io.temporal.api.common.v1.PayloadOrBuilder>( - input_, ((bitField0_ & 0x00000010) != 0), getParentForChildren(), isClean()); + inputBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder, io.temporal.api.common.v1.PayloadOrBuilder>( + input_, + ((bitField0_ & 0x00000010) != 0), + getParentForChildren(), + isClean()); input_ = null; } return inputBuilder_; @@ -29147,47 +27672,34 @@ public java.util.List getInputBuilder private com.google.protobuf.Duration workflowExecutionTimeout_; private com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Duration, - com.google.protobuf.Duration.Builder, - com.google.protobuf.DurationOrBuilder> - workflowExecutionTimeoutBuilder_; + com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> workflowExecutionTimeoutBuilder_; /** - * - * *
        * Total workflow execution timeout including retries and continue as new.
        * 
* * .google.protobuf.Duration workflow_execution_timeout = 7; - * * @return Whether the workflowExecutionTimeout field is set. */ public boolean hasWorkflowExecutionTimeout() { return ((bitField0_ & 0x00000020) != 0); } /** - * - * *
        * Total workflow execution timeout including retries and continue as new.
        * 
* * .google.protobuf.Duration workflow_execution_timeout = 7; - * * @return The workflowExecutionTimeout. */ public com.google.protobuf.Duration getWorkflowExecutionTimeout() { if (workflowExecutionTimeoutBuilder_ == null) { - return workflowExecutionTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : workflowExecutionTimeout_; + return workflowExecutionTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : workflowExecutionTimeout_; } else { return workflowExecutionTimeoutBuilder_.getMessage(); } } /** - * - * *
        * Total workflow execution timeout including retries and continue as new.
        * 
@@ -29208,8 +27720,6 @@ public Builder setWorkflowExecutionTimeout(com.google.protobuf.Duration value) { return this; } /** - * - * *
        * Total workflow execution timeout including retries and continue as new.
        * 
@@ -29228,8 +27738,6 @@ public Builder setWorkflowExecutionTimeout( return this; } /** - * - * *
        * Total workflow execution timeout including retries and continue as new.
        * 
@@ -29238,9 +27746,9 @@ public Builder setWorkflowExecutionTimeout( */ public Builder mergeWorkflowExecutionTimeout(com.google.protobuf.Duration value) { if (workflowExecutionTimeoutBuilder_ == null) { - if (((bitField0_ & 0x00000020) != 0) - && workflowExecutionTimeout_ != null - && workflowExecutionTimeout_ != com.google.protobuf.Duration.getDefaultInstance()) { + if (((bitField0_ & 0x00000020) != 0) && + workflowExecutionTimeout_ != null && + workflowExecutionTimeout_ != com.google.protobuf.Duration.getDefaultInstance()) { getWorkflowExecutionTimeoutBuilder().mergeFrom(value); } else { workflowExecutionTimeout_ = value; @@ -29255,8 +27763,6 @@ public Builder mergeWorkflowExecutionTimeout(com.google.protobuf.Duration value) return this; } /** - * - * *
        * Total workflow execution timeout including retries and continue as new.
        * 
@@ -29274,8 +27780,6 @@ public Builder clearWorkflowExecutionTimeout() { return this; } /** - * - * *
        * Total workflow execution timeout including retries and continue as new.
        * 
@@ -29288,8 +27792,6 @@ public com.google.protobuf.Duration.Builder getWorkflowExecutionTimeoutBuilder() return getWorkflowExecutionTimeoutFieldBuilder().getBuilder(); } /** - * - * *
        * Total workflow execution timeout including retries and continue as new.
        * 
@@ -29300,14 +27802,11 @@ public com.google.protobuf.DurationOrBuilder getWorkflowExecutionTimeoutOrBuilde if (workflowExecutionTimeoutBuilder_ != null) { return workflowExecutionTimeoutBuilder_.getMessageOrBuilder(); } else { - return workflowExecutionTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : workflowExecutionTimeout_; + return workflowExecutionTimeout_ == null ? + com.google.protobuf.Duration.getDefaultInstance() : workflowExecutionTimeout_; } } /** - * - * *
        * Total workflow execution timeout including retries and continue as new.
        * 
@@ -29315,17 +27814,14 @@ public com.google.protobuf.DurationOrBuilder getWorkflowExecutionTimeoutOrBuilde * .google.protobuf.Duration workflow_execution_timeout = 7; */ private com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Duration, - com.google.protobuf.Duration.Builder, - com.google.protobuf.DurationOrBuilder> + com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> getWorkflowExecutionTimeoutFieldBuilder() { if (workflowExecutionTimeoutBuilder_ == null) { - workflowExecutionTimeoutBuilder_ = - new com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Duration, - com.google.protobuf.Duration.Builder, - com.google.protobuf.DurationOrBuilder>( - getWorkflowExecutionTimeout(), getParentForChildren(), isClean()); + workflowExecutionTimeoutBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder>( + getWorkflowExecutionTimeout(), + getParentForChildren(), + isClean()); workflowExecutionTimeout_ = null; } return workflowExecutionTimeoutBuilder_; @@ -29333,47 +27829,34 @@ public com.google.protobuf.DurationOrBuilder getWorkflowExecutionTimeoutOrBuilde private com.google.protobuf.Duration workflowRunTimeout_; private com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Duration, - com.google.protobuf.Duration.Builder, - com.google.protobuf.DurationOrBuilder> - workflowRunTimeoutBuilder_; + com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> workflowRunTimeoutBuilder_; /** - * - * *
        * Timeout of a single workflow run.
        * 
* * .google.protobuf.Duration workflow_run_timeout = 8; - * * @return Whether the workflowRunTimeout field is set. */ public boolean hasWorkflowRunTimeout() { return ((bitField0_ & 0x00000040) != 0); } /** - * - * *
        * Timeout of a single workflow run.
        * 
* * .google.protobuf.Duration workflow_run_timeout = 8; - * * @return The workflowRunTimeout. */ public com.google.protobuf.Duration getWorkflowRunTimeout() { if (workflowRunTimeoutBuilder_ == null) { - return workflowRunTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : workflowRunTimeout_; + return workflowRunTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : workflowRunTimeout_; } else { return workflowRunTimeoutBuilder_.getMessage(); } } /** - * - * *
        * Timeout of a single workflow run.
        * 
@@ -29394,15 +27877,14 @@ public Builder setWorkflowRunTimeout(com.google.protobuf.Duration value) { return this; } /** - * - * *
        * Timeout of a single workflow run.
        * 
* * .google.protobuf.Duration workflow_run_timeout = 8; */ - public Builder setWorkflowRunTimeout(com.google.protobuf.Duration.Builder builderForValue) { + public Builder setWorkflowRunTimeout( + com.google.protobuf.Duration.Builder builderForValue) { if (workflowRunTimeoutBuilder_ == null) { workflowRunTimeout_ = builderForValue.build(); } else { @@ -29413,8 +27895,6 @@ public Builder setWorkflowRunTimeout(com.google.protobuf.Duration.Builder builde return this; } /** - * - * *
        * Timeout of a single workflow run.
        * 
@@ -29423,9 +27903,9 @@ public Builder setWorkflowRunTimeout(com.google.protobuf.Duration.Builder builde */ public Builder mergeWorkflowRunTimeout(com.google.protobuf.Duration value) { if (workflowRunTimeoutBuilder_ == null) { - if (((bitField0_ & 0x00000040) != 0) - && workflowRunTimeout_ != null - && workflowRunTimeout_ != com.google.protobuf.Duration.getDefaultInstance()) { + if (((bitField0_ & 0x00000040) != 0) && + workflowRunTimeout_ != null && + workflowRunTimeout_ != com.google.protobuf.Duration.getDefaultInstance()) { getWorkflowRunTimeoutBuilder().mergeFrom(value); } else { workflowRunTimeout_ = value; @@ -29440,8 +27920,6 @@ public Builder mergeWorkflowRunTimeout(com.google.protobuf.Duration value) { return this; } /** - * - * *
        * Timeout of a single workflow run.
        * 
@@ -29459,8 +27937,6 @@ public Builder clearWorkflowRunTimeout() { return this; } /** - * - * *
        * Timeout of a single workflow run.
        * 
@@ -29473,8 +27949,6 @@ public com.google.protobuf.Duration.Builder getWorkflowRunTimeoutBuilder() { return getWorkflowRunTimeoutFieldBuilder().getBuilder(); } /** - * - * *
        * Timeout of a single workflow run.
        * 
@@ -29485,14 +27959,11 @@ public com.google.protobuf.DurationOrBuilder getWorkflowRunTimeoutOrBuilder() { if (workflowRunTimeoutBuilder_ != null) { return workflowRunTimeoutBuilder_.getMessageOrBuilder(); } else { - return workflowRunTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : workflowRunTimeout_; + return workflowRunTimeout_ == null ? + com.google.protobuf.Duration.getDefaultInstance() : workflowRunTimeout_; } } /** - * - * *
        * Timeout of a single workflow run.
        * 
@@ -29500,17 +27971,14 @@ public com.google.protobuf.DurationOrBuilder getWorkflowRunTimeoutOrBuilder() { * .google.protobuf.Duration workflow_run_timeout = 8; */ private com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Duration, - com.google.protobuf.Duration.Builder, - com.google.protobuf.DurationOrBuilder> + com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> getWorkflowRunTimeoutFieldBuilder() { if (workflowRunTimeoutBuilder_ == null) { - workflowRunTimeoutBuilder_ = - new com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Duration, - com.google.protobuf.Duration.Builder, - com.google.protobuf.DurationOrBuilder>( - getWorkflowRunTimeout(), getParentForChildren(), isClean()); + workflowRunTimeoutBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder>( + getWorkflowRunTimeout(), + getParentForChildren(), + isClean()); workflowRunTimeout_ = null; } return workflowRunTimeoutBuilder_; @@ -29518,47 +27986,34 @@ public com.google.protobuf.DurationOrBuilder getWorkflowRunTimeoutOrBuilder() { private com.google.protobuf.Duration workflowTaskTimeout_; private com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Duration, - com.google.protobuf.Duration.Builder, - com.google.protobuf.DurationOrBuilder> - workflowTaskTimeoutBuilder_; + com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> workflowTaskTimeoutBuilder_; /** - * - * *
        * Timeout of a single workflow task.
        * 
* * .google.protobuf.Duration workflow_task_timeout = 9; - * * @return Whether the workflowTaskTimeout field is set. */ public boolean hasWorkflowTaskTimeout() { return ((bitField0_ & 0x00000080) != 0); } /** - * - * *
        * Timeout of a single workflow task.
        * 
* * .google.protobuf.Duration workflow_task_timeout = 9; - * * @return The workflowTaskTimeout. */ public com.google.protobuf.Duration getWorkflowTaskTimeout() { if (workflowTaskTimeoutBuilder_ == null) { - return workflowTaskTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : workflowTaskTimeout_; + return workflowTaskTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : workflowTaskTimeout_; } else { return workflowTaskTimeoutBuilder_.getMessage(); } } /** - * - * *
        * Timeout of a single workflow task.
        * 
@@ -29579,15 +28034,14 @@ public Builder setWorkflowTaskTimeout(com.google.protobuf.Duration value) { return this; } /** - * - * *
        * Timeout of a single workflow task.
        * 
* * .google.protobuf.Duration workflow_task_timeout = 9; */ - public Builder setWorkflowTaskTimeout(com.google.protobuf.Duration.Builder builderForValue) { + public Builder setWorkflowTaskTimeout( + com.google.protobuf.Duration.Builder builderForValue) { if (workflowTaskTimeoutBuilder_ == null) { workflowTaskTimeout_ = builderForValue.build(); } else { @@ -29598,8 +28052,6 @@ public Builder setWorkflowTaskTimeout(com.google.protobuf.Duration.Builder build return this; } /** - * - * *
        * Timeout of a single workflow task.
        * 
@@ -29608,9 +28060,9 @@ public Builder setWorkflowTaskTimeout(com.google.protobuf.Duration.Builder build */ public Builder mergeWorkflowTaskTimeout(com.google.protobuf.Duration value) { if (workflowTaskTimeoutBuilder_ == null) { - if (((bitField0_ & 0x00000080) != 0) - && workflowTaskTimeout_ != null - && workflowTaskTimeout_ != com.google.protobuf.Duration.getDefaultInstance()) { + if (((bitField0_ & 0x00000080) != 0) && + workflowTaskTimeout_ != null && + workflowTaskTimeout_ != com.google.protobuf.Duration.getDefaultInstance()) { getWorkflowTaskTimeoutBuilder().mergeFrom(value); } else { workflowTaskTimeout_ = value; @@ -29625,8 +28077,6 @@ public Builder mergeWorkflowTaskTimeout(com.google.protobuf.Duration value) { return this; } /** - * - * *
        * Timeout of a single workflow task.
        * 
@@ -29644,8 +28094,6 @@ public Builder clearWorkflowTaskTimeout() { return this; } /** - * - * *
        * Timeout of a single workflow task.
        * 
@@ -29658,8 +28106,6 @@ public com.google.protobuf.Duration.Builder getWorkflowTaskTimeoutBuilder() { return getWorkflowTaskTimeoutFieldBuilder().getBuilder(); } /** - * - * *
        * Timeout of a single workflow task.
        * 
@@ -29670,14 +28116,11 @@ public com.google.protobuf.DurationOrBuilder getWorkflowTaskTimeoutOrBuilder() { if (workflowTaskTimeoutBuilder_ != null) { return workflowTaskTimeoutBuilder_.getMessageOrBuilder(); } else { - return workflowTaskTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : workflowTaskTimeout_; + return workflowTaskTimeout_ == null ? + com.google.protobuf.Duration.getDefaultInstance() : workflowTaskTimeout_; } } /** - * - * *
        * Timeout of a single workflow task.
        * 
@@ -29685,17 +28128,14 @@ public com.google.protobuf.DurationOrBuilder getWorkflowTaskTimeoutOrBuilder() { * .google.protobuf.Duration workflow_task_timeout = 9; */ private com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Duration, - com.google.protobuf.Duration.Builder, - com.google.protobuf.DurationOrBuilder> + com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> getWorkflowTaskTimeoutFieldBuilder() { if (workflowTaskTimeoutBuilder_ == null) { - workflowTaskTimeoutBuilder_ = - new com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Duration, - com.google.protobuf.Duration.Builder, - com.google.protobuf.DurationOrBuilder>( - getWorkflowTaskTimeout(), getParentForChildren(), isClean()); + workflowTaskTimeoutBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder>( + getWorkflowTaskTimeout(), + getParentForChildren(), + isClean()); workflowTaskTimeout_ = null; } return workflowTaskTimeoutBuilder_; @@ -29703,29 +28143,22 @@ public com.google.protobuf.DurationOrBuilder getWorkflowTaskTimeoutOrBuilder() { private int parentClosePolicy_ = 0; /** - * - * *
        * Default: PARENT_CLOSE_POLICY_TERMINATE.
        * 
* * .temporal.omes.kitchen_sink.ParentClosePolicy parent_close_policy = 10; - * * @return The enum numeric value on the wire for parentClosePolicy. */ - @java.lang.Override - public int getParentClosePolicyValue() { + @java.lang.Override public int getParentClosePolicyValue() { return parentClosePolicy_; } /** - * - * *
        * Default: PARENT_CLOSE_POLICY_TERMINATE.
        * 
* * .temporal.omes.kitchen_sink.ParentClosePolicy parent_close_policy = 10; - * * @param value The enum numeric value on the wire for parentClosePolicy to set. * @return This builder for chaining. */ @@ -29736,33 +28169,24 @@ public Builder setParentClosePolicyValue(int value) { return this; } /** - * - * *
        * Default: PARENT_CLOSE_POLICY_TERMINATE.
        * 
* * .temporal.omes.kitchen_sink.ParentClosePolicy parent_close_policy = 10; - * * @return The parentClosePolicy. */ @java.lang.Override public io.temporal.omes.KitchenSink.ParentClosePolicy getParentClosePolicy() { - io.temporal.omes.KitchenSink.ParentClosePolicy result = - io.temporal.omes.KitchenSink.ParentClosePolicy.forNumber(parentClosePolicy_); - return result == null - ? io.temporal.omes.KitchenSink.ParentClosePolicy.UNRECOGNIZED - : result; + io.temporal.omes.KitchenSink.ParentClosePolicy result = io.temporal.omes.KitchenSink.ParentClosePolicy.forNumber(parentClosePolicy_); + return result == null ? io.temporal.omes.KitchenSink.ParentClosePolicy.UNRECOGNIZED : result; } /** - * - * *
        * Default: PARENT_CLOSE_POLICY_TERMINATE.
        * 
* * .temporal.omes.kitchen_sink.ParentClosePolicy parent_close_policy = 10; - * * @param value The parentClosePolicy to set. * @return This builder for chaining. */ @@ -29776,14 +28200,11 @@ public Builder setParentClosePolicy(io.temporal.omes.KitchenSink.ParentClosePoli return this; } /** - * - * *
        * Default: PARENT_CLOSE_POLICY_TERMINATE.
        * 
* * .temporal.omes.kitchen_sink.ParentClosePolicy parent_close_policy = 10; - * * @return This builder for chaining. */ public Builder clearParentClosePolicy() { @@ -29795,29 +28216,22 @@ public Builder clearParentClosePolicy() { private int workflowIdReusePolicy_ = 0; /** - * - * *
        * Default: WORKFLOW_ID_REUSE_POLICY_ALLOW_DUPLICATE.
        * 
* * .temporal.api.enums.v1.WorkflowIdReusePolicy workflow_id_reuse_policy = 12; - * * @return The enum numeric value on the wire for workflowIdReusePolicy. */ - @java.lang.Override - public int getWorkflowIdReusePolicyValue() { + @java.lang.Override public int getWorkflowIdReusePolicyValue() { return workflowIdReusePolicy_; } /** - * - * *
        * Default: WORKFLOW_ID_REUSE_POLICY_ALLOW_DUPLICATE.
        * 
* * .temporal.api.enums.v1.WorkflowIdReusePolicy workflow_id_reuse_policy = 12; - * * @param value The enum numeric value on the wire for workflowIdReusePolicy to set. * @return This builder for chaining. */ @@ -29828,38 +28242,28 @@ public Builder setWorkflowIdReusePolicyValue(int value) { return this; } /** - * - * *
        * Default: WORKFLOW_ID_REUSE_POLICY_ALLOW_DUPLICATE.
        * 
* * .temporal.api.enums.v1.WorkflowIdReusePolicy workflow_id_reuse_policy = 12; - * * @return The workflowIdReusePolicy. */ @java.lang.Override public io.temporal.api.enums.v1.WorkflowIdReusePolicy getWorkflowIdReusePolicy() { - io.temporal.api.enums.v1.WorkflowIdReusePolicy result = - io.temporal.api.enums.v1.WorkflowIdReusePolicy.forNumber(workflowIdReusePolicy_); - return result == null - ? io.temporal.api.enums.v1.WorkflowIdReusePolicy.UNRECOGNIZED - : result; + io.temporal.api.enums.v1.WorkflowIdReusePolicy result = io.temporal.api.enums.v1.WorkflowIdReusePolicy.forNumber(workflowIdReusePolicy_); + return result == null ? io.temporal.api.enums.v1.WorkflowIdReusePolicy.UNRECOGNIZED : result; } /** - * - * *
        * Default: WORKFLOW_ID_REUSE_POLICY_ALLOW_DUPLICATE.
        * 
* * .temporal.api.enums.v1.WorkflowIdReusePolicy workflow_id_reuse_policy = 12; - * * @param value The workflowIdReusePolicy to set. * @return This builder for chaining. */ - public Builder setWorkflowIdReusePolicy( - io.temporal.api.enums.v1.WorkflowIdReusePolicy value) { + public Builder setWorkflowIdReusePolicy(io.temporal.api.enums.v1.WorkflowIdReusePolicy value) { if (value == null) { throw new NullPointerException(); } @@ -29869,14 +28273,11 @@ public Builder setWorkflowIdReusePolicy( return this; } /** - * - * *
        * Default: WORKFLOW_ID_REUSE_POLICY_ALLOW_DUPLICATE.
        * 
* * .temporal.api.enums.v1.WorkflowIdReusePolicy workflow_id_reuse_policy = 12; - * * @return This builder for chaining. */ public Builder clearWorkflowIdReusePolicy() { @@ -29888,13 +28289,9 @@ public Builder clearWorkflowIdReusePolicy() { private io.temporal.api.common.v1.RetryPolicy retryPolicy_; private com.google.protobuf.SingleFieldBuilderV3< - io.temporal.api.common.v1.RetryPolicy, - io.temporal.api.common.v1.RetryPolicy.Builder, - io.temporal.api.common.v1.RetryPolicyOrBuilder> - retryPolicyBuilder_; + io.temporal.api.common.v1.RetryPolicy, io.temporal.api.common.v1.RetryPolicy.Builder, io.temporal.api.common.v1.RetryPolicyOrBuilder> retryPolicyBuilder_; /** * .temporal.api.common.v1.RetryPolicy retry_policy = 13; - * * @return Whether the retryPolicy field is set. */ public boolean hasRetryPolicy() { @@ -29902,19 +28299,18 @@ public boolean hasRetryPolicy() { } /** * .temporal.api.common.v1.RetryPolicy retry_policy = 13; - * * @return The retryPolicy. */ public io.temporal.api.common.v1.RetryPolicy getRetryPolicy() { if (retryPolicyBuilder_ == null) { - return retryPolicy_ == null - ? io.temporal.api.common.v1.RetryPolicy.getDefaultInstance() - : retryPolicy_; + return retryPolicy_ == null ? io.temporal.api.common.v1.RetryPolicy.getDefaultInstance() : retryPolicy_; } else { return retryPolicyBuilder_.getMessage(); } } - /** .temporal.api.common.v1.RetryPolicy retry_policy = 13; */ + /** + * .temporal.api.common.v1.RetryPolicy retry_policy = 13; + */ public Builder setRetryPolicy(io.temporal.api.common.v1.RetryPolicy value) { if (retryPolicyBuilder_ == null) { if (value == null) { @@ -29928,8 +28324,11 @@ public Builder setRetryPolicy(io.temporal.api.common.v1.RetryPolicy value) { onChanged(); return this; } - /** .temporal.api.common.v1.RetryPolicy retry_policy = 13; */ - public Builder setRetryPolicy(io.temporal.api.common.v1.RetryPolicy.Builder builderForValue) { + /** + * .temporal.api.common.v1.RetryPolicy retry_policy = 13; + */ + public Builder setRetryPolicy( + io.temporal.api.common.v1.RetryPolicy.Builder builderForValue) { if (retryPolicyBuilder_ == null) { retryPolicy_ = builderForValue.build(); } else { @@ -29939,12 +28338,14 @@ public Builder setRetryPolicy(io.temporal.api.common.v1.RetryPolicy.Builder buil onChanged(); return this; } - /** .temporal.api.common.v1.RetryPolicy retry_policy = 13; */ + /** + * .temporal.api.common.v1.RetryPolicy retry_policy = 13; + */ public Builder mergeRetryPolicy(io.temporal.api.common.v1.RetryPolicy value) { if (retryPolicyBuilder_ == null) { - if (((bitField0_ & 0x00000400) != 0) - && retryPolicy_ != null - && retryPolicy_ != io.temporal.api.common.v1.RetryPolicy.getDefaultInstance()) { + if (((bitField0_ & 0x00000400) != 0) && + retryPolicy_ != null && + retryPolicy_ != io.temporal.api.common.v1.RetryPolicy.getDefaultInstance()) { getRetryPolicyBuilder().mergeFrom(value); } else { retryPolicy_ = value; @@ -29958,7 +28359,9 @@ public Builder mergeRetryPolicy(io.temporal.api.common.v1.RetryPolicy value) { } return this; } - /** .temporal.api.common.v1.RetryPolicy retry_policy = 13; */ + /** + * .temporal.api.common.v1.RetryPolicy retry_policy = 13; + */ public Builder clearRetryPolicy() { bitField0_ = (bitField0_ & ~0x00000400); retryPolicy_ = null; @@ -29969,35 +28372,37 @@ public Builder clearRetryPolicy() { onChanged(); return this; } - /** .temporal.api.common.v1.RetryPolicy retry_policy = 13; */ + /** + * .temporal.api.common.v1.RetryPolicy retry_policy = 13; + */ public io.temporal.api.common.v1.RetryPolicy.Builder getRetryPolicyBuilder() { bitField0_ |= 0x00000400; onChanged(); return getRetryPolicyFieldBuilder().getBuilder(); } - /** .temporal.api.common.v1.RetryPolicy retry_policy = 13; */ + /** + * .temporal.api.common.v1.RetryPolicy retry_policy = 13; + */ public io.temporal.api.common.v1.RetryPolicyOrBuilder getRetryPolicyOrBuilder() { if (retryPolicyBuilder_ != null) { return retryPolicyBuilder_.getMessageOrBuilder(); } else { - return retryPolicy_ == null - ? io.temporal.api.common.v1.RetryPolicy.getDefaultInstance() - : retryPolicy_; + return retryPolicy_ == null ? + io.temporal.api.common.v1.RetryPolicy.getDefaultInstance() : retryPolicy_; } } - /** .temporal.api.common.v1.RetryPolicy retry_policy = 13; */ + /** + * .temporal.api.common.v1.RetryPolicy retry_policy = 13; + */ private com.google.protobuf.SingleFieldBuilderV3< - io.temporal.api.common.v1.RetryPolicy, - io.temporal.api.common.v1.RetryPolicy.Builder, - io.temporal.api.common.v1.RetryPolicyOrBuilder> + io.temporal.api.common.v1.RetryPolicy, io.temporal.api.common.v1.RetryPolicy.Builder, io.temporal.api.common.v1.RetryPolicyOrBuilder> getRetryPolicyFieldBuilder() { if (retryPolicyBuilder_ == null) { - retryPolicyBuilder_ = - new com.google.protobuf.SingleFieldBuilderV3< - io.temporal.api.common.v1.RetryPolicy, - io.temporal.api.common.v1.RetryPolicy.Builder, - io.temporal.api.common.v1.RetryPolicyOrBuilder>( - getRetryPolicy(), getParentForChildren(), isClean()); + retryPolicyBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + io.temporal.api.common.v1.RetryPolicy, io.temporal.api.common.v1.RetryPolicy.Builder, io.temporal.api.common.v1.RetryPolicyOrBuilder>( + getRetryPolicy(), + getParentForChildren(), + isClean()); retryPolicy_ = null; } return retryPolicyBuilder_; @@ -30006,13 +28411,13 @@ public io.temporal.api.common.v1.RetryPolicyOrBuilder getRetryPolicyOrBuilder() private java.lang.Object cronSchedule_ = ""; /** * string cron_schedule = 14; - * * @return The cronSchedule. */ public java.lang.String getCronSchedule() { java.lang.Object ref = cronSchedule_; if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); cronSchedule_ = s; return s; @@ -30022,14 +28427,15 @@ public java.lang.String getCronSchedule() { } /** * string cron_schedule = 14; - * * @return The bytes for cronSchedule. */ - public com.google.protobuf.ByteString getCronScheduleBytes() { + public com.google.protobuf.ByteString + getCronScheduleBytes() { java.lang.Object ref = cronSchedule_; if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); cronSchedule_ = b; return b; } else { @@ -30038,14 +28444,12 @@ public com.google.protobuf.ByteString getCronScheduleBytes() { } /** * string cron_schedule = 14; - * * @param value The cronSchedule to set. * @return This builder for chaining. */ - public Builder setCronSchedule(java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setCronSchedule( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } cronSchedule_ = value; bitField0_ |= 0x00000800; onChanged(); @@ -30053,7 +28457,6 @@ public Builder setCronSchedule(java.lang.String value) { } /** * string cron_schedule = 14; - * * @return This builder for chaining. */ public Builder clearCronSchedule() { @@ -30064,14 +28467,12 @@ public Builder clearCronSchedule() { } /** * string cron_schedule = 14; - * * @param value The bytes for cronSchedule to set. * @return This builder for chaining. */ - public Builder setCronScheduleBytes(com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setCronScheduleBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); cronSchedule_ = value; bitField0_ |= 0x00000800; @@ -30079,54 +28480,30 @@ public Builder setCronScheduleBytes(com.google.protobuf.ByteString value) { return this; } - private static final class HeadersConverter - implements com.google.protobuf.MapFieldBuilder.Converter< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload> { + private static final class HeadersConverter implements com.google.protobuf.MapFieldBuilder.Converter { @java.lang.Override - public io.temporal.api.common.v1.Payload build( - io.temporal.api.common.v1.PayloadOrBuilder val) { - if (val instanceof io.temporal.api.common.v1.Payload) { - return (io.temporal.api.common.v1.Payload) val; - } + public io.temporal.api.common.v1.Payload build(io.temporal.api.common.v1.PayloadOrBuilder val) { + if (val instanceof io.temporal.api.common.v1.Payload) { return (io.temporal.api.common.v1.Payload) val; } return ((io.temporal.api.common.v1.Payload.Builder) val).build(); } @java.lang.Override - public com.google.protobuf.MapEntry - defaultEntry() { + public com.google.protobuf.MapEntry defaultEntry() { return HeadersDefaultEntryHolder.defaultEntry; } - } - ; - + }; private static final HeadersConverter headersConverter = new HeadersConverter(); private com.google.protobuf.MapFieldBuilder< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder> - headers_; - - private com.google.protobuf.MapFieldBuilder< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder> + java.lang.String, io.temporal.api.common.v1.PayloadOrBuilder, io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder> headers_; + private com.google.protobuf.MapFieldBuilder internalGetHeaders() { if (headers_ == null) { return new com.google.protobuf.MapFieldBuilder<>(headersConverter); } return headers_; } - - private com.google.protobuf.MapFieldBuilder< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder> + private com.google.protobuf.MapFieldBuilder internalGetMutableHeaders() { if (headers_ == null) { headers_ = new com.google.protobuf.MapFieldBuilder<>(headersConverter); @@ -30135,13 +28512,10 @@ public io.temporal.api.common.v1.Payload build( onChanged(); return headers_; } - public int getHeadersCount() { return internalGetHeaders().ensureBuilderMap().size(); } /** - * - * *
        * Header fields
        * 
@@ -30149,21 +28523,20 @@ public int getHeadersCount() { * map<string, .temporal.api.common.v1.Payload> headers = 15; */ @java.lang.Override - public boolean containsHeaders(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } + public boolean containsHeaders( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } return internalGetHeaders().ensureBuilderMap().containsKey(key); } - /** Use {@link #getHeadersMap()} instead. */ + /** + * Use {@link #getHeadersMap()} instead. + */ @java.lang.Override @java.lang.Deprecated public java.util.Map getHeaders() { return getHeadersMap(); } /** - * - * *
        * Header fields
        * 
@@ -30175,8 +28548,6 @@ public java.util.Map getHea return internalGetHeaders().getImmutableMap(); } /** - * - * *
        * Header fields
        * 
@@ -30184,20 +28555,16 @@ public java.util.Map getHea * map<string, .temporal.api.common.v1.Payload> headers = 15; */ @java.lang.Override - public /* nullable */ io.temporal.api.common.v1.Payload getHeadersOrDefault( + public /* nullable */ +io.temporal.api.common.v1.Payload getHeadersOrDefault( java.lang.String key, /* nullable */ - io.temporal.api.common.v1.Payload defaultValue) { - if (key == null) { - throw new NullPointerException("map key"); - } - java.util.Map map = - internalGetMutableHeaders().ensureBuilderMap(); +io.temporal.api.common.v1.Payload defaultValue) { + if (key == null) { throw new NullPointerException("map key"); } + java.util.Map map = internalGetMutableHeaders().ensureBuilderMap(); return map.containsKey(key) ? headersConverter.build(map.get(key)) : defaultValue; } /** - * - * *
        * Header fields
        * 
@@ -30205,40 +28572,37 @@ public java.util.Map getHea * map<string, .temporal.api.common.v1.Payload> headers = 15; */ @java.lang.Override - public io.temporal.api.common.v1.Payload getHeadersOrThrow(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } - java.util.Map map = - internalGetMutableHeaders().ensureBuilderMap(); + public io.temporal.api.common.v1.Payload getHeadersOrThrow( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } + java.util.Map map = internalGetMutableHeaders().ensureBuilderMap(); if (!map.containsKey(key)) { throw new java.lang.IllegalArgumentException(); } return headersConverter.build(map.get(key)); } - public Builder clearHeaders() { bitField0_ = (bitField0_ & ~0x00001000); internalGetMutableHeaders().clear(); return this; } /** - * - * *
        * Header fields
        * 
* * map<string, .temporal.api.common.v1.Payload> headers = 15; */ - public Builder removeHeaders(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } - internalGetMutableHeaders().ensureBuilderMap().remove(key); + public Builder removeHeaders( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } + internalGetMutableHeaders().ensureBuilderMap() + .remove(key); return this; } - /** Use alternate mutation accessors instead. */ + /** + * Use alternate mutation accessors instead. + */ @java.lang.Deprecated public java.util.Map getMutableHeaders() { @@ -30246,28 +28610,23 @@ public Builder removeHeaders(java.lang.String key) { return internalGetMutableHeaders().ensureMessageMap(); } /** - * - * *
        * Header fields
        * 
* * map<string, .temporal.api.common.v1.Payload> headers = 15; */ - public Builder putHeaders(java.lang.String key, io.temporal.api.common.v1.Payload value) { - if (key == null) { - throw new NullPointerException("map key"); - } - if (value == null) { - throw new NullPointerException("map value"); - } - internalGetMutableHeaders().ensureBuilderMap().put(key, value); + public Builder putHeaders( + java.lang.String key, + io.temporal.api.common.v1.Payload value) { + if (key == null) { throw new NullPointerException("map key"); } + if (value == null) { throw new NullPointerException("map value"); } + internalGetMutableHeaders().ensureBuilderMap() + .put(key, value); bitField0_ |= 0x00001000; return this; } /** - * - * *
        * Header fields
        * 
@@ -30276,19 +28635,17 @@ public Builder putHeaders(java.lang.String key, io.temporal.api.common.v1.Payloa */ public Builder putAllHeaders( java.util.Map values) { - for (java.util.Map.Entry e : - values.entrySet()) { + for (java.util.Map.Entry e : values.entrySet()) { if (e.getKey() == null || e.getValue() == null) { throw new NullPointerException(); } } - internalGetMutableHeaders().ensureBuilderMap().putAll(values); + internalGetMutableHeaders().ensureBuilderMap() + .putAll(values); bitField0_ |= 0x00001000; return this; } /** - * - * *
        * Header fields
        * 
@@ -30297,8 +28654,7 @@ public Builder putAllHeaders( */ public io.temporal.api.common.v1.Payload.Builder putHeadersBuilderIfAbsent( java.lang.String key) { - java.util.Map builderMap = - internalGetMutableHeaders().ensureBuilderMap(); + java.util.Map builderMap = internalGetMutableHeaders().ensureBuilderMap(); io.temporal.api.common.v1.PayloadOrBuilder entry = builderMap.get(key); if (entry == null) { entry = io.temporal.api.common.v1.Payload.newBuilder(); @@ -30311,54 +28667,30 @@ public io.temporal.api.common.v1.Payload.Builder putHeadersBuilderIfAbsent( return (io.temporal.api.common.v1.Payload.Builder) entry; } - private static final class MemoConverter - implements com.google.protobuf.MapFieldBuilder.Converter< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload> { + private static final class MemoConverter implements com.google.protobuf.MapFieldBuilder.Converter { @java.lang.Override - public io.temporal.api.common.v1.Payload build( - io.temporal.api.common.v1.PayloadOrBuilder val) { - if (val instanceof io.temporal.api.common.v1.Payload) { - return (io.temporal.api.common.v1.Payload) val; - } + public io.temporal.api.common.v1.Payload build(io.temporal.api.common.v1.PayloadOrBuilder val) { + if (val instanceof io.temporal.api.common.v1.Payload) { return (io.temporal.api.common.v1.Payload) val; } return ((io.temporal.api.common.v1.Payload.Builder) val).build(); } @java.lang.Override - public com.google.protobuf.MapEntry - defaultEntry() { + public com.google.protobuf.MapEntry defaultEntry() { return MemoDefaultEntryHolder.defaultEntry; } - } - ; - + }; private static final MemoConverter memoConverter = new MemoConverter(); private com.google.protobuf.MapFieldBuilder< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder> - memo_; - - private com.google.protobuf.MapFieldBuilder< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder> + java.lang.String, io.temporal.api.common.v1.PayloadOrBuilder, io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder> memo_; + private com.google.protobuf.MapFieldBuilder internalGetMemo() { if (memo_ == null) { return new com.google.protobuf.MapFieldBuilder<>(memoConverter); } return memo_; } - - private com.google.protobuf.MapFieldBuilder< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder> + private com.google.protobuf.MapFieldBuilder internalGetMutableMemo() { if (memo_ == null) { memo_ = new com.google.protobuf.MapFieldBuilder<>(memoConverter); @@ -30367,13 +28699,10 @@ public io.temporal.api.common.v1.Payload build( onChanged(); return memo_; } - public int getMemoCount() { return internalGetMemo().ensureBuilderMap().size(); } /** - * - * *
        * Memo fields
        * 
@@ -30381,21 +28710,20 @@ public int getMemoCount() { * map<string, .temporal.api.common.v1.Payload> memo = 16; */ @java.lang.Override - public boolean containsMemo(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } + public boolean containsMemo( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } return internalGetMemo().ensureBuilderMap().containsKey(key); } - /** Use {@link #getMemoMap()} instead. */ + /** + * Use {@link #getMemoMap()} instead. + */ @java.lang.Override @java.lang.Deprecated public java.util.Map getMemo() { return getMemoMap(); } /** - * - * *
        * Memo fields
        * 
@@ -30407,8 +28735,6 @@ public java.util.Map getMem return internalGetMemo().getImmutableMap(); } /** - * - * *
        * Memo fields
        * 
@@ -30416,20 +28742,16 @@ public java.util.Map getMem * map<string, .temporal.api.common.v1.Payload> memo = 16; */ @java.lang.Override - public /* nullable */ io.temporal.api.common.v1.Payload getMemoOrDefault( + public /* nullable */ +io.temporal.api.common.v1.Payload getMemoOrDefault( java.lang.String key, /* nullable */ - io.temporal.api.common.v1.Payload defaultValue) { - if (key == null) { - throw new NullPointerException("map key"); - } - java.util.Map map = - internalGetMutableMemo().ensureBuilderMap(); +io.temporal.api.common.v1.Payload defaultValue) { + if (key == null) { throw new NullPointerException("map key"); } + java.util.Map map = internalGetMutableMemo().ensureBuilderMap(); return map.containsKey(key) ? memoConverter.build(map.get(key)) : defaultValue; } /** - * - * *
        * Memo fields
        * 
@@ -30437,68 +28759,61 @@ public java.util.Map getMem * map<string, .temporal.api.common.v1.Payload> memo = 16; */ @java.lang.Override - public io.temporal.api.common.v1.Payload getMemoOrThrow(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } - java.util.Map map = - internalGetMutableMemo().ensureBuilderMap(); + public io.temporal.api.common.v1.Payload getMemoOrThrow( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } + java.util.Map map = internalGetMutableMemo().ensureBuilderMap(); if (!map.containsKey(key)) { throw new java.lang.IllegalArgumentException(); } return memoConverter.build(map.get(key)); } - public Builder clearMemo() { bitField0_ = (bitField0_ & ~0x00002000); internalGetMutableMemo().clear(); return this; } /** - * - * *
        * Memo fields
        * 
* * map<string, .temporal.api.common.v1.Payload> memo = 16; */ - public Builder removeMemo(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } - internalGetMutableMemo().ensureBuilderMap().remove(key); + public Builder removeMemo( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } + internalGetMutableMemo().ensureBuilderMap() + .remove(key); return this; } - /** Use alternate mutation accessors instead. */ + /** + * Use alternate mutation accessors instead. + */ @java.lang.Deprecated - public java.util.Map getMutableMemo() { + public java.util.Map + getMutableMemo() { bitField0_ |= 0x00002000; return internalGetMutableMemo().ensureMessageMap(); } /** - * - * *
        * Memo fields
        * 
* * map<string, .temporal.api.common.v1.Payload> memo = 16; */ - public Builder putMemo(java.lang.String key, io.temporal.api.common.v1.Payload value) { - if (key == null) { - throw new NullPointerException("map key"); - } - if (value == null) { - throw new NullPointerException("map value"); - } - internalGetMutableMemo().ensureBuilderMap().put(key, value); + public Builder putMemo( + java.lang.String key, + io.temporal.api.common.v1.Payload value) { + if (key == null) { throw new NullPointerException("map key"); } + if (value == null) { throw new NullPointerException("map value"); } + internalGetMutableMemo().ensureBuilderMap() + .put(key, value); bitField0_ |= 0x00002000; return this; } /** - * - * *
        * Memo fields
        * 
@@ -30507,19 +28822,17 @@ public Builder putMemo(java.lang.String key, io.temporal.api.common.v1.Payload v */ public Builder putAllMemo( java.util.Map values) { - for (java.util.Map.Entry e : - values.entrySet()) { + for (java.util.Map.Entry e : values.entrySet()) { if (e.getKey() == null || e.getValue() == null) { throw new NullPointerException(); } } - internalGetMutableMemo().ensureBuilderMap().putAll(values); + internalGetMutableMemo().ensureBuilderMap() + .putAll(values); bitField0_ |= 0x00002000; return this; } /** - * - * *
        * Memo fields
        * 
@@ -30528,8 +28841,7 @@ public Builder putAllMemo( */ public io.temporal.api.common.v1.Payload.Builder putMemoBuilderIfAbsent( java.lang.String key) { - java.util.Map builderMap = - internalGetMutableMemo().ensureBuilderMap(); + java.util.Map builderMap = internalGetMutableMemo().ensureBuilderMap(); io.temporal.api.common.v1.PayloadOrBuilder entry = builderMap.get(key); if (entry == null) { entry = io.temporal.api.common.v1.Payload.newBuilder(); @@ -30542,55 +28854,30 @@ public io.temporal.api.common.v1.Payload.Builder putMemoBuilderIfAbsent( return (io.temporal.api.common.v1.Payload.Builder) entry; } - private static final class SearchAttributesConverter - implements com.google.protobuf.MapFieldBuilder.Converter< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload> { + private static final class SearchAttributesConverter implements com.google.protobuf.MapFieldBuilder.Converter { @java.lang.Override - public io.temporal.api.common.v1.Payload build( - io.temporal.api.common.v1.PayloadOrBuilder val) { - if (val instanceof io.temporal.api.common.v1.Payload) { - return (io.temporal.api.common.v1.Payload) val; - } + public io.temporal.api.common.v1.Payload build(io.temporal.api.common.v1.PayloadOrBuilder val) { + if (val instanceof io.temporal.api.common.v1.Payload) { return (io.temporal.api.common.v1.Payload) val; } return ((io.temporal.api.common.v1.Payload.Builder) val).build(); } @java.lang.Override - public com.google.protobuf.MapEntry - defaultEntry() { + public com.google.protobuf.MapEntry defaultEntry() { return SearchAttributesDefaultEntryHolder.defaultEntry; } - } - ; - - private static final SearchAttributesConverter searchAttributesConverter = - new SearchAttributesConverter(); - - private com.google.protobuf.MapFieldBuilder< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder> - searchAttributes_; + }; + private static final SearchAttributesConverter searchAttributesConverter = new SearchAttributesConverter(); private com.google.protobuf.MapFieldBuilder< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder> + java.lang.String, io.temporal.api.common.v1.PayloadOrBuilder, io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder> searchAttributes_; + private com.google.protobuf.MapFieldBuilder internalGetSearchAttributes() { if (searchAttributes_ == null) { return new com.google.protobuf.MapFieldBuilder<>(searchAttributesConverter); } return searchAttributes_; } - - private com.google.protobuf.MapFieldBuilder< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder> + private com.google.protobuf.MapFieldBuilder internalGetMutableSearchAttributes() { if (searchAttributes_ == null) { searchAttributes_ = new com.google.protobuf.MapFieldBuilder<>(searchAttributesConverter); @@ -30599,13 +28886,10 @@ public io.temporal.api.common.v1.Payload build( onChanged(); return searchAttributes_; } - public int getSearchAttributesCount() { return internalGetSearchAttributes().ensureBuilderMap().size(); } /** - * - * *
        * Search attributes
        * 
@@ -30613,22 +28897,20 @@ public int getSearchAttributesCount() { * map<string, .temporal.api.common.v1.Payload> search_attributes = 17; */ @java.lang.Override - public boolean containsSearchAttributes(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } + public boolean containsSearchAttributes( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } return internalGetSearchAttributes().ensureBuilderMap().containsKey(key); } - /** Use {@link #getSearchAttributesMap()} instead. */ + /** + * Use {@link #getSearchAttributesMap()} instead. + */ @java.lang.Override @java.lang.Deprecated - public java.util.Map - getSearchAttributes() { + public java.util.Map getSearchAttributes() { return getSearchAttributesMap(); } /** - * - * *
        * Search attributes
        * 
@@ -30636,13 +28918,10 @@ public boolean containsSearchAttributes(java.lang.String key) { * map<string, .temporal.api.common.v1.Payload> search_attributes = 17; */ @java.lang.Override - public java.util.Map - getSearchAttributesMap() { + public java.util.Map getSearchAttributesMap() { return internalGetSearchAttributes().getImmutableMap(); } /** - * - * *
        * Search attributes
        * 
@@ -30650,20 +28929,16 @@ public boolean containsSearchAttributes(java.lang.String key) { * map<string, .temporal.api.common.v1.Payload> search_attributes = 17; */ @java.lang.Override - public /* nullable */ io.temporal.api.common.v1.Payload getSearchAttributesOrDefault( + public /* nullable */ +io.temporal.api.common.v1.Payload getSearchAttributesOrDefault( java.lang.String key, /* nullable */ - io.temporal.api.common.v1.Payload defaultValue) { - if (key == null) { - throw new NullPointerException("map key"); - } - java.util.Map map = - internalGetMutableSearchAttributes().ensureBuilderMap(); +io.temporal.api.common.v1.Payload defaultValue) { + if (key == null) { throw new NullPointerException("map key"); } + java.util.Map map = internalGetMutableSearchAttributes().ensureBuilderMap(); return map.containsKey(key) ? searchAttributesConverter.build(map.get(key)) : defaultValue; } /** - * - * *
        * Search attributes
        * 
@@ -30671,40 +28946,37 @@ public boolean containsSearchAttributes(java.lang.String key) { * map<string, .temporal.api.common.v1.Payload> search_attributes = 17; */ @java.lang.Override - public io.temporal.api.common.v1.Payload getSearchAttributesOrThrow(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } - java.util.Map map = - internalGetMutableSearchAttributes().ensureBuilderMap(); + public io.temporal.api.common.v1.Payload getSearchAttributesOrThrow( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } + java.util.Map map = internalGetMutableSearchAttributes().ensureBuilderMap(); if (!map.containsKey(key)) { throw new java.lang.IllegalArgumentException(); } return searchAttributesConverter.build(map.get(key)); } - public Builder clearSearchAttributes() { bitField0_ = (bitField0_ & ~0x00004000); internalGetMutableSearchAttributes().clear(); return this; } /** - * - * *
        * Search attributes
        * 
* * map<string, .temporal.api.common.v1.Payload> search_attributes = 17; */ - public Builder removeSearchAttributes(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } - internalGetMutableSearchAttributes().ensureBuilderMap().remove(key); + public Builder removeSearchAttributes( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } + internalGetMutableSearchAttributes().ensureBuilderMap() + .remove(key); return this; } - /** Use alternate mutation accessors instead. */ + /** + * Use alternate mutation accessors instead. + */ @java.lang.Deprecated public java.util.Map getMutableSearchAttributes() { @@ -30712,8 +28984,6 @@ public Builder removeSearchAttributes(java.lang.String key) { return internalGetMutableSearchAttributes().ensureMessageMap(); } /** - * - * *
        * Search attributes
        * 
@@ -30721,20 +28991,16 @@ public Builder removeSearchAttributes(java.lang.String key) { * map<string, .temporal.api.common.v1.Payload> search_attributes = 17; */ public Builder putSearchAttributes( - java.lang.String key, io.temporal.api.common.v1.Payload value) { - if (key == null) { - throw new NullPointerException("map key"); - } - if (value == null) { - throw new NullPointerException("map value"); - } - internalGetMutableSearchAttributes().ensureBuilderMap().put(key, value); + java.lang.String key, + io.temporal.api.common.v1.Payload value) { + if (key == null) { throw new NullPointerException("map key"); } + if (value == null) { throw new NullPointerException("map value"); } + internalGetMutableSearchAttributes().ensureBuilderMap() + .put(key, value); bitField0_ |= 0x00004000; return this; } /** - * - * *
        * Search attributes
        * 
@@ -30743,19 +29009,17 @@ public Builder putSearchAttributes( */ public Builder putAllSearchAttributes( java.util.Map values) { - for (java.util.Map.Entry e : - values.entrySet()) { + for (java.util.Map.Entry e : values.entrySet()) { if (e.getKey() == null || e.getValue() == null) { throw new NullPointerException(); } } - internalGetMutableSearchAttributes().ensureBuilderMap().putAll(values); + internalGetMutableSearchAttributes().ensureBuilderMap() + .putAll(values); bitField0_ |= 0x00004000; return this; } /** - * - * *
        * Search attributes
        * 
@@ -30764,8 +29028,7 @@ public Builder putAllSearchAttributes( */ public io.temporal.api.common.v1.Payload.Builder putSearchAttributesBuilderIfAbsent( java.lang.String key) { - java.util.Map builderMap = - internalGetMutableSearchAttributes().ensureBuilderMap(); + java.util.Map builderMap = internalGetMutableSearchAttributes().ensureBuilderMap(); io.temporal.api.common.v1.PayloadOrBuilder entry = builderMap.get(key); if (entry == null) { entry = io.temporal.api.common.v1.Payload.newBuilder(); @@ -30780,31 +29043,22 @@ public io.temporal.api.common.v1.Payload.Builder putSearchAttributesBuilderIfAbs private int cancellationType_ = 0; /** - * - * *
        * Defines behaviour of the underlying workflow when child workflow cancellation has been requested.
        * 
* - * .temporal.omes.kitchen_sink.ChildWorkflowCancellationType cancellation_type = 18; - * - * + * .temporal.omes.kitchen_sink.ChildWorkflowCancellationType cancellation_type = 18; * @return The enum numeric value on the wire for cancellationType. */ - @java.lang.Override - public int getCancellationTypeValue() { + @java.lang.Override public int getCancellationTypeValue() { return cancellationType_; } /** - * - * *
        * Defines behaviour of the underlying workflow when child workflow cancellation has been requested.
        * 
* - * .temporal.omes.kitchen_sink.ChildWorkflowCancellationType cancellation_type = 18; - * - * + * .temporal.omes.kitchen_sink.ChildWorkflowCancellationType cancellation_type = 18; * @param value The enum numeric value on the wire for cancellationType to set. * @return This builder for chaining. */ @@ -30815,40 +29069,28 @@ public Builder setCancellationTypeValue(int value) { return this; } /** - * - * *
        * Defines behaviour of the underlying workflow when child workflow cancellation has been requested.
        * 
* - * .temporal.omes.kitchen_sink.ChildWorkflowCancellationType cancellation_type = 18; - * - * + * .temporal.omes.kitchen_sink.ChildWorkflowCancellationType cancellation_type = 18; * @return The cancellationType. */ @java.lang.Override public io.temporal.omes.KitchenSink.ChildWorkflowCancellationType getCancellationType() { - io.temporal.omes.KitchenSink.ChildWorkflowCancellationType result = - io.temporal.omes.KitchenSink.ChildWorkflowCancellationType.forNumber(cancellationType_); - return result == null - ? io.temporal.omes.KitchenSink.ChildWorkflowCancellationType.UNRECOGNIZED - : result; + io.temporal.omes.KitchenSink.ChildWorkflowCancellationType result = io.temporal.omes.KitchenSink.ChildWorkflowCancellationType.forNumber(cancellationType_); + return result == null ? io.temporal.omes.KitchenSink.ChildWorkflowCancellationType.UNRECOGNIZED : result; } /** - * - * *
        * Defines behaviour of the underlying workflow when child workflow cancellation has been requested.
        * 
* - * .temporal.omes.kitchen_sink.ChildWorkflowCancellationType cancellation_type = 18; - * - * + * .temporal.omes.kitchen_sink.ChildWorkflowCancellationType cancellation_type = 18; * @param value The cancellationType to set. * @return This builder for chaining. */ - public Builder setCancellationType( - io.temporal.omes.KitchenSink.ChildWorkflowCancellationType value) { + public Builder setCancellationType(io.temporal.omes.KitchenSink.ChildWorkflowCancellationType value) { if (value == null) { throw new NullPointerException(); } @@ -30858,15 +29100,11 @@ public Builder setCancellationType( return this; } /** - * - * *
        * Defines behaviour of the underlying workflow when child workflow cancellation has been requested.
        * 
* - * .temporal.omes.kitchen_sink.ChildWorkflowCancellationType cancellation_type = 18; - * - * + * .temporal.omes.kitchen_sink.ChildWorkflowCancellationType cancellation_type = 18; * @return This builder for chaining. */ public Builder clearCancellationType() { @@ -30878,29 +29116,22 @@ public Builder clearCancellationType() { private int versioningIntent_ = 0; /** - * - * *
        * Whether this child should run on a worker with a compatible build id or not.
        * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 19; - * * @return The enum numeric value on the wire for versioningIntent. */ - @java.lang.Override - public int getVersioningIntentValue() { + @java.lang.Override public int getVersioningIntentValue() { return versioningIntent_; } /** - * - * *
        * Whether this child should run on a worker with a compatible build id or not.
        * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 19; - * * @param value The enum numeric value on the wire for versioningIntent to set. * @return This builder for chaining. */ @@ -30911,31 +29142,24 @@ public Builder setVersioningIntentValue(int value) { return this; } /** - * - * *
        * Whether this child should run on a worker with a compatible build id or not.
        * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 19; - * * @return The versioningIntent. */ @java.lang.Override public io.temporal.omes.KitchenSink.VersioningIntent getVersioningIntent() { - io.temporal.omes.KitchenSink.VersioningIntent result = - io.temporal.omes.KitchenSink.VersioningIntent.forNumber(versioningIntent_); + io.temporal.omes.KitchenSink.VersioningIntent result = io.temporal.omes.KitchenSink.VersioningIntent.forNumber(versioningIntent_); return result == null ? io.temporal.omes.KitchenSink.VersioningIntent.UNRECOGNIZED : result; } /** - * - * *
        * Whether this child should run on a worker with a compatible build id or not.
        * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 19; - * * @param value The versioningIntent to set. * @return This builder for chaining. */ @@ -30949,14 +29173,11 @@ public Builder setVersioningIntent(io.temporal.omes.KitchenSink.VersioningIntent return this; } /** - * - * *
        * Whether this child should run on a worker with a compatible build id or not.
        * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 19; - * * @return This builder for chaining. */ public Builder clearVersioningIntent() { @@ -30968,13 +29189,9 @@ public Builder clearVersioningIntent() { private io.temporal.omes.KitchenSink.AwaitableChoice awaitableChoice_; private com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.AwaitableChoice, - io.temporal.omes.KitchenSink.AwaitableChoice.Builder, - io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder> - awaitableChoiceBuilder_; + io.temporal.omes.KitchenSink.AwaitableChoice, io.temporal.omes.KitchenSink.AwaitableChoice.Builder, io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder> awaitableChoiceBuilder_; /** * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 20; - * * @return Whether the awaitableChoice field is set. */ public boolean hasAwaitableChoice() { @@ -30982,19 +29199,18 @@ public boolean hasAwaitableChoice() { } /** * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 20; - * * @return The awaitableChoice. */ public io.temporal.omes.KitchenSink.AwaitableChoice getAwaitableChoice() { if (awaitableChoiceBuilder_ == null) { - return awaitableChoice_ == null - ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() - : awaitableChoice_; + return awaitableChoice_ == null ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() : awaitableChoice_; } else { return awaitableChoiceBuilder_.getMessage(); } } - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 20; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 20; + */ public Builder setAwaitableChoice(io.temporal.omes.KitchenSink.AwaitableChoice value) { if (awaitableChoiceBuilder_ == null) { if (value == null) { @@ -31008,7 +29224,9 @@ public Builder setAwaitableChoice(io.temporal.omes.KitchenSink.AwaitableChoice v onChanged(); return this; } - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 20; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 20; + */ public Builder setAwaitableChoice( io.temporal.omes.KitchenSink.AwaitableChoice.Builder builderForValue) { if (awaitableChoiceBuilder_ == null) { @@ -31020,13 +29238,14 @@ public Builder setAwaitableChoice( onChanged(); return this; } - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 20; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 20; + */ public Builder mergeAwaitableChoice(io.temporal.omes.KitchenSink.AwaitableChoice value) { if (awaitableChoiceBuilder_ == null) { - if (((bitField0_ & 0x00020000) != 0) - && awaitableChoice_ != null - && awaitableChoice_ - != io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance()) { + if (((bitField0_ & 0x00020000) != 0) && + awaitableChoice_ != null && + awaitableChoice_ != io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance()) { getAwaitableChoiceBuilder().mergeFrom(value); } else { awaitableChoice_ = value; @@ -31040,7 +29259,9 @@ public Builder mergeAwaitableChoice(io.temporal.omes.KitchenSink.AwaitableChoice } return this; } - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 20; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 20; + */ public Builder clearAwaitableChoice() { bitField0_ = (bitField0_ & ~0x00020000); awaitableChoice_ = null; @@ -31051,40 +29272,41 @@ public Builder clearAwaitableChoice() { onChanged(); return this; } - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 20; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 20; + */ public io.temporal.omes.KitchenSink.AwaitableChoice.Builder getAwaitableChoiceBuilder() { bitField0_ |= 0x00020000; onChanged(); return getAwaitableChoiceFieldBuilder().getBuilder(); } - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 20; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 20; + */ public io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder getAwaitableChoiceOrBuilder() { if (awaitableChoiceBuilder_ != null) { return awaitableChoiceBuilder_.getMessageOrBuilder(); } else { - return awaitableChoice_ == null - ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() - : awaitableChoice_; + return awaitableChoice_ == null ? + io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() : awaitableChoice_; } } - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 20; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 20; + */ private com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.AwaitableChoice, - io.temporal.omes.KitchenSink.AwaitableChoice.Builder, - io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder> + io.temporal.omes.KitchenSink.AwaitableChoice, io.temporal.omes.KitchenSink.AwaitableChoice.Builder, io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder> getAwaitableChoiceFieldBuilder() { if (awaitableChoiceBuilder_ == null) { - awaitableChoiceBuilder_ = - new com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.AwaitableChoice, - io.temporal.omes.KitchenSink.AwaitableChoice.Builder, - io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder>( - getAwaitableChoice(), getParentForChildren(), isClean()); + awaitableChoiceBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + io.temporal.omes.KitchenSink.AwaitableChoice, io.temporal.omes.KitchenSink.AwaitableChoice.Builder, io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder>( + getAwaitableChoice(), + getParentForChildren(), + isClean()); awaitableChoice_ = null; } return awaitableChoiceBuilder_; } - @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -31097,12 +29319,12 @@ public final Builder mergeUnknownFields( return super.mergeUnknownFields(unknownFields); } + // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.ExecuteChildWorkflowAction) } // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.ExecuteChildWorkflowAction) private static final io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction DEFAULT_INSTANCE; - static { DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction(); } @@ -31111,28 +29333,27 @@ public static io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction getDefault return DEFAULT_INSTANCE; } - private static final com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser() { - @java.lang.Override - public ExecuteChildWorkflowAction parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException() - .setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public ExecuteChildWorkflowAction parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; public static com.google.protobuf.Parser parser() { return PARSER; @@ -31147,58 +29368,53 @@ public com.google.protobuf.Parser getParserForType() public io.temporal.omes.KitchenSink.ExecuteChildWorkflowAction getDefaultInstanceForType() { return DEFAULT_INSTANCE; } + } - public interface AwaitWorkflowStateOrBuilder - extends + public interface AwaitWorkflowStateOrBuilder extends // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.AwaitWorkflowState) com.google.protobuf.MessageOrBuilder { /** * string key = 1; - * * @return The key. */ java.lang.String getKey(); /** * string key = 1; - * * @return The bytes for key. */ - com.google.protobuf.ByteString getKeyBytes(); + com.google.protobuf.ByteString + getKeyBytes(); /** * string value = 2; - * * @return The value. */ java.lang.String getValue(); /** * string value = 2; - * * @return The bytes for value. */ - com.google.protobuf.ByteString getValueBytes(); + com.google.protobuf.ByteString + getValueBytes(); } /** - * - * *
    * Wait for the workflow state to have a matching k/v entry
    * 
* * Protobuf type {@code temporal.omes.kitchen_sink.AwaitWorkflowState} */ - public static final class AwaitWorkflowState extends com.google.protobuf.GeneratedMessageV3 - implements + public static final class AwaitWorkflowState extends + com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.AwaitWorkflowState) AwaitWorkflowStateOrBuilder { - private static final long serialVersionUID = 0L; + private static final long serialVersionUID = 0L; // Use AwaitWorkflowState.newBuilder() to construct. private AwaitWorkflowState(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } - private AwaitWorkflowState() { key_ = ""; value_ = ""; @@ -31206,32 +29422,29 @@ private AwaitWorkflowState() { @java.lang.Override @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { return new AwaitWorkflowState(); } - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_AwaitWorkflowState_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_AwaitWorkflowState_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_AwaitWorkflowState_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_AwaitWorkflowState_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.AwaitWorkflowState.class, - io.temporal.omes.KitchenSink.AwaitWorkflowState.Builder.class); + io.temporal.omes.KitchenSink.AwaitWorkflowState.class, io.temporal.omes.KitchenSink.AwaitWorkflowState.Builder.class); } public static final int KEY_FIELD_NUMBER = 1; - @SuppressWarnings("serial") private volatile java.lang.Object key_ = ""; /** * string key = 1; - * * @return The key. */ @java.lang.Override @@ -31240,7 +29453,8 @@ public java.lang.String getKey() { if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); key_ = s; return s; @@ -31248,15 +29462,16 @@ public java.lang.String getKey() { } /** * string key = 1; - * * @return The bytes for key. */ @java.lang.Override - public com.google.protobuf.ByteString getKeyBytes() { + public com.google.protobuf.ByteString + getKeyBytes() { java.lang.Object ref = key_; if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); key_ = b; return b; } else { @@ -31265,12 +29480,10 @@ public com.google.protobuf.ByteString getKeyBytes() { } public static final int VALUE_FIELD_NUMBER = 2; - @SuppressWarnings("serial") private volatile java.lang.Object value_ = ""; /** * string value = 2; - * * @return The value. */ @java.lang.Override @@ -31279,7 +29492,8 @@ public java.lang.String getValue() { if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); value_ = s; return s; @@ -31287,15 +29501,16 @@ public java.lang.String getValue() { } /** * string value = 2; - * * @return The bytes for value. */ @java.lang.Override - public com.google.protobuf.ByteString getValueBytes() { + public com.google.protobuf.ByteString + getValueBytes() { java.lang.Object ref = value_; if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); value_ = b; return b; } else { @@ -31304,7 +29519,6 @@ public com.google.protobuf.ByteString getValueBytes() { } private byte memoizedIsInitialized = -1; - @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; @@ -31316,7 +29530,8 @@ public final boolean isInitialized() { } @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(key_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, key_); } @@ -31346,16 +29561,17 @@ public int getSerializedSize() { @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { - return true; + return true; } if (!(obj instanceof io.temporal.omes.KitchenSink.AwaitWorkflowState)) { return super.equals(obj); } - io.temporal.omes.KitchenSink.AwaitWorkflowState other = - (io.temporal.omes.KitchenSink.AwaitWorkflowState) obj; + io.temporal.omes.KitchenSink.AwaitWorkflowState other = (io.temporal.omes.KitchenSink.AwaitWorkflowState) obj; - if (!getKey().equals(other.getKey())) return false; - if (!getValue().equals(other.getValue())) return false; + if (!getKey() + .equals(other.getKey())) return false; + if (!getValue() + .equals(other.getValue())) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -31377,93 +29593,89 @@ public int hashCode() { } public static io.temporal.omes.KitchenSink.AwaitWorkflowState parseFrom( - java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.AwaitWorkflowState parseFrom( - java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.AwaitWorkflowState parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.AwaitWorkflowState parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.AwaitWorkflowState parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.AwaitWorkflowState parseFrom( - byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - - public static io.temporal.omes.KitchenSink.AwaitWorkflowState parseFrom( - java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + public static io.temporal.omes.KitchenSink.AwaitWorkflowState parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.AwaitWorkflowState parseFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.AwaitWorkflowState parseDelimitedFrom( - java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + public static io.temporal.omes.KitchenSink.AwaitWorkflowState parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); } public static io.temporal.omes.KitchenSink.AwaitWorkflowState parseDelimitedFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.AwaitWorkflowState parseFrom( - com.google.protobuf.CodedInputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.AwaitWorkflowState parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override - public Builder newBuilderForType() { - return newBuilder(); - } - + public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(io.temporal.omes.KitchenSink.AwaitWorkflowState prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } - @java.lang.Override public Builder toBuilder() { - return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override @@ -31473,41 +29685,39 @@ protected Builder newBuilderForType( return builder; } /** - * - * *
      * Wait for the workflow state to have a matching k/v entry
      * 
* * Protobuf type {@code temporal.omes.kitchen_sink.AwaitWorkflowState} */ - public static final class Builder - extends com.google.protobuf.GeneratedMessageV3.Builder - implements + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.AwaitWorkflowState) io.temporal.omes.KitchenSink.AwaitWorkflowStateOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_AwaitWorkflowState_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_AwaitWorkflowState_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_AwaitWorkflowState_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_AwaitWorkflowState_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.AwaitWorkflowState.class, - io.temporal.omes.KitchenSink.AwaitWorkflowState.Builder.class); + io.temporal.omes.KitchenSink.AwaitWorkflowState.class, io.temporal.omes.KitchenSink.AwaitWorkflowState.Builder.class); } // Construct using io.temporal.omes.KitchenSink.AwaitWorkflowState.newBuilder() - private Builder() {} + private Builder() { - private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); } + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } @java.lang.Override public Builder clear() { super.clear(); @@ -31518,9 +29728,9 @@ public Builder clear() { } @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_AwaitWorkflowState_descriptor; + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_AwaitWorkflowState_descriptor; } @java.lang.Override @@ -31539,11 +29749,8 @@ public io.temporal.omes.KitchenSink.AwaitWorkflowState build() { @java.lang.Override public io.temporal.omes.KitchenSink.AwaitWorkflowState buildPartial() { - io.temporal.omes.KitchenSink.AwaitWorkflowState result = - new io.temporal.omes.KitchenSink.AwaitWorkflowState(this); - if (bitField0_ != 0) { - buildPartial0(result); - } + io.temporal.omes.KitchenSink.AwaitWorkflowState result = new io.temporal.omes.KitchenSink.AwaitWorkflowState(this); + if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } @@ -31562,41 +29769,38 @@ private void buildPartial0(io.temporal.omes.KitchenSink.AwaitWorkflowState resul public Builder clone() { return super.clone(); } - @java.lang.Override public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.setField(field, value); } - @java.lang.Override - public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } - @java.lang.Override - public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } - @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, - int index, - java.lang.Object value) { + int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } - @java.lang.Override public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.addRepeatedField(field, value); } - @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.temporal.omes.KitchenSink.AwaitWorkflowState) { - return mergeFrom((io.temporal.omes.KitchenSink.AwaitWorkflowState) other); + return mergeFrom((io.temporal.omes.KitchenSink.AwaitWorkflowState)other); } else { super.mergeFrom(other); return this; @@ -31604,8 +29808,7 @@ public Builder mergeFrom(com.google.protobuf.Message other) { } public Builder mergeFrom(io.temporal.omes.KitchenSink.AwaitWorkflowState other) { - if (other == io.temporal.omes.KitchenSink.AwaitWorkflowState.getDefaultInstance()) - return this; + if (other == io.temporal.omes.KitchenSink.AwaitWorkflowState.getDefaultInstance()) return this; if (!other.getKey().isEmpty()) { key_ = other.key_; bitField0_ |= 0x00000001; @@ -31642,25 +29845,22 @@ public Builder mergeFrom( case 0: done = true; break; - case 10: - { - key_ = input.readStringRequireUtf8(); - bitField0_ |= 0x00000001; - break; - } // case 10 - case 18: - { - value_ = input.readStringRequireUtf8(); - bitField0_ |= 0x00000002; - break; - } // case 18 - default: - { - if (!super.parseUnknownField(input, extensionRegistry, tag)) { - done = true; // was an endgroup tag - } - break; - } // default: + case 10: { + key_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: { + value_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000002; + break; + } // case 18 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -31670,19 +29870,18 @@ public Builder mergeFrom( } // finally return this; } - private int bitField0_; private java.lang.Object key_ = ""; /** * string key = 1; - * * @return The key. */ public java.lang.String getKey() { java.lang.Object ref = key_; if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); key_ = s; return s; @@ -31692,14 +29891,15 @@ public java.lang.String getKey() { } /** * string key = 1; - * * @return The bytes for key. */ - public com.google.protobuf.ByteString getKeyBytes() { + public com.google.protobuf.ByteString + getKeyBytes() { java.lang.Object ref = key_; if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); key_ = b; return b; } else { @@ -31708,14 +29908,12 @@ public com.google.protobuf.ByteString getKeyBytes() { } /** * string key = 1; - * * @param value The key to set. * @return This builder for chaining. */ - public Builder setKey(java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setKey( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } key_ = value; bitField0_ |= 0x00000001; onChanged(); @@ -31723,7 +29921,6 @@ public Builder setKey(java.lang.String value) { } /** * string key = 1; - * * @return This builder for chaining. */ public Builder clearKey() { @@ -31734,14 +29931,12 @@ public Builder clearKey() { } /** * string key = 1; - * * @param value The bytes for key to set. * @return This builder for chaining. */ - public Builder setKeyBytes(com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setKeyBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); key_ = value; bitField0_ |= 0x00000001; @@ -31752,13 +29947,13 @@ public Builder setKeyBytes(com.google.protobuf.ByteString value) { private java.lang.Object value_ = ""; /** * string value = 2; - * * @return The value. */ public java.lang.String getValue() { java.lang.Object ref = value_; if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); value_ = s; return s; @@ -31768,14 +29963,15 @@ public java.lang.String getValue() { } /** * string value = 2; - * * @return The bytes for value. */ - public com.google.protobuf.ByteString getValueBytes() { + public com.google.protobuf.ByteString + getValueBytes() { java.lang.Object ref = value_; if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); value_ = b; return b; } else { @@ -31784,14 +29980,12 @@ public com.google.protobuf.ByteString getValueBytes() { } /** * string value = 2; - * * @param value The value to set. * @return This builder for chaining. */ - public Builder setValue(java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setValue( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } value_ = value; bitField0_ |= 0x00000002; onChanged(); @@ -31799,7 +29993,6 @@ public Builder setValue(java.lang.String value) { } /** * string value = 2; - * * @return This builder for chaining. */ public Builder clearValue() { @@ -31810,21 +30003,18 @@ public Builder clearValue() { } /** * string value = 2; - * * @param value The bytes for value to set. * @return This builder for chaining. */ - public Builder setValueBytes(com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setValueBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); value_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } - @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -31837,12 +30027,12 @@ public final Builder mergeUnknownFields( return super.mergeUnknownFields(unknownFields); } + // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.AwaitWorkflowState) } // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.AwaitWorkflowState) private static final io.temporal.omes.KitchenSink.AwaitWorkflowState DEFAULT_INSTANCE; - static { DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.AwaitWorkflowState(); } @@ -31851,28 +30041,27 @@ public static io.temporal.omes.KitchenSink.AwaitWorkflowState getDefaultInstance return DEFAULT_INSTANCE; } - private static final com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser() { - @java.lang.Override - public AwaitWorkflowState parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException() - .setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public AwaitWorkflowState parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; public static com.google.protobuf.Parser parser() { return PARSER; @@ -31887,89 +30076,75 @@ public com.google.protobuf.Parser getParserForType() { public io.temporal.omes.KitchenSink.AwaitWorkflowState getDefaultInstanceForType() { return DEFAULT_INSTANCE; } + } - public interface SendSignalActionOrBuilder - extends + public interface SendSignalActionOrBuilder extends // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.SendSignalAction) com.google.protobuf.MessageOrBuilder { /** - * - * *
      * What workflow is being targeted
      * 
* * string workflow_id = 1; - * * @return The workflowId. */ java.lang.String getWorkflowId(); /** - * - * *
      * What workflow is being targeted
      * 
* * string workflow_id = 1; - * * @return The bytes for workflowId. */ - com.google.protobuf.ByteString getWorkflowIdBytes(); + com.google.protobuf.ByteString + getWorkflowIdBytes(); /** * string run_id = 2; - * * @return The runId. */ java.lang.String getRunId(); /** * string run_id = 2; - * * @return The bytes for runId. */ - com.google.protobuf.ByteString getRunIdBytes(); + com.google.protobuf.ByteString + getRunIdBytes(); /** - * - * *
      * Name of the signal handler
      * 
* * string signal_name = 3; - * * @return The signalName. */ java.lang.String getSignalName(); /** - * - * *
      * Name of the signal handler
      * 
* * string signal_name = 3; - * * @return The bytes for signalName. */ - com.google.protobuf.ByteString getSignalNameBytes(); + com.google.protobuf.ByteString + getSignalNameBytes(); /** - * - * *
      * Arguments for the handler
      * 
* * repeated .temporal.api.common.v1.Payload args = 4; */ - java.util.List getArgsList(); + java.util.List + getArgsList(); /** - * - * *
      * Arguments for the handler
      * 
@@ -31978,8 +30153,6 @@ public interface SendSignalActionOrBuilder */ io.temporal.api.common.v1.Payload getArgs(int index); /** - * - * *
      * Arguments for the handler
      * 
@@ -31988,29 +30161,25 @@ public interface SendSignalActionOrBuilder */ int getArgsCount(); /** - * - * *
      * Arguments for the handler
      * 
* * repeated .temporal.api.common.v1.Payload args = 4; */ - java.util.List getArgsOrBuilderList(); + java.util.List + getArgsOrBuilderList(); /** - * - * *
      * Arguments for the handler
      * 
* * repeated .temporal.api.common.v1.Payload args = 4; */ - io.temporal.api.common.v1.PayloadOrBuilder getArgsOrBuilder(int index); + io.temporal.api.common.v1.PayloadOrBuilder getArgsOrBuilder( + int index); /** - * - * *
      * Headers to attach to the signal
      * 
@@ -32019,31 +30188,30 @@ public interface SendSignalActionOrBuilder */ int getHeadersCount(); /** - * - * *
      * Headers to attach to the signal
      * 
* * map<string, .temporal.api.common.v1.Payload> headers = 5; */ - boolean containsHeaders(java.lang.String key); - /** Use {@link #getHeadersMap()} instead. */ + boolean containsHeaders( + java.lang.String key); + /** + * Use {@link #getHeadersMap()} instead. + */ @java.lang.Deprecated - java.util.Map getHeaders(); + java.util.Map + getHeaders(); /** - * - * *
      * Headers to attach to the signal
      * 
* * map<string, .temporal.api.common.v1.Payload> headers = 5; */ - java.util.Map getHeadersMap(); + java.util.Map + getHeadersMap(); /** - * - * *
      * Headers to attach to the signal
      * 
@@ -32051,47 +30219,47 @@ public interface SendSignalActionOrBuilder * map<string, .temporal.api.common.v1.Payload> headers = 5; */ /* nullable */ - io.temporal.api.common.v1.Payload getHeadersOrDefault( +io.temporal.api.common.v1.Payload getHeadersOrDefault( java.lang.String key, /* nullable */ - io.temporal.api.common.v1.Payload defaultValue); +io.temporal.api.common.v1.Payload defaultValue); /** - * - * *
      * Headers to attach to the signal
      * 
* * map<string, .temporal.api.common.v1.Payload> headers = 5; */ - io.temporal.api.common.v1.Payload getHeadersOrThrow(java.lang.String key); + io.temporal.api.common.v1.Payload getHeadersOrThrow( + java.lang.String key); /** * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 6; - * * @return Whether the awaitableChoice field is set. */ boolean hasAwaitableChoice(); /** * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 6; - * * @return The awaitableChoice. */ io.temporal.omes.KitchenSink.AwaitableChoice getAwaitableChoice(); - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 6; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 6; + */ io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder getAwaitableChoiceOrBuilder(); } - /** Protobuf type {@code temporal.omes.kitchen_sink.SendSignalAction} */ - public static final class SendSignalAction extends com.google.protobuf.GeneratedMessageV3 - implements + /** + * Protobuf type {@code temporal.omes.kitchen_sink.SendSignalAction} + */ + public static final class SendSignalAction extends + com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.SendSignalAction) SendSignalActionOrBuilder { - private static final long serialVersionUID = 0L; + private static final long serialVersionUID = 0L; // Use SendSignalAction.newBuilder() to construct. private SendSignalAction(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } - private SendSignalAction() { workflowId_ = ""; runId_ = ""; @@ -32101,13 +30269,14 @@ private SendSignalAction() { @java.lang.Override @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { return new SendSignalAction(); } - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_SendSignalAction_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_SendSignalAction_descriptor; } @SuppressWarnings({"rawtypes"}) @@ -32118,34 +30287,28 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMapFieldRefl case 5: return internalGetHeaders(); default: - throw new RuntimeException("Invalid map field number: " + number); + throw new RuntimeException( + "Invalid map field number: " + number); } } - @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_SendSignalAction_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_SendSignalAction_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.SendSignalAction.class, - io.temporal.omes.KitchenSink.SendSignalAction.Builder.class); + io.temporal.omes.KitchenSink.SendSignalAction.class, io.temporal.omes.KitchenSink.SendSignalAction.Builder.class); } private int bitField0_; public static final int WORKFLOW_ID_FIELD_NUMBER = 1; - @SuppressWarnings("serial") private volatile java.lang.Object workflowId_ = ""; /** - * - * *
      * What workflow is being targeted
      * 
* * string workflow_id = 1; - * * @return The workflowId. */ @java.lang.Override @@ -32154,29 +30317,29 @@ public java.lang.String getWorkflowId() { if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); workflowId_ = s; return s; } } /** - * - * *
      * What workflow is being targeted
      * 
* * string workflow_id = 1; - * * @return The bytes for workflowId. */ @java.lang.Override - public com.google.protobuf.ByteString getWorkflowIdBytes() { + public com.google.protobuf.ByteString + getWorkflowIdBytes() { java.lang.Object ref = workflowId_; if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); workflowId_ = b; return b; } else { @@ -32185,12 +30348,10 @@ public com.google.protobuf.ByteString getWorkflowIdBytes() { } public static final int RUN_ID_FIELD_NUMBER = 2; - @SuppressWarnings("serial") private volatile java.lang.Object runId_ = ""; /** * string run_id = 2; - * * @return The runId. */ @java.lang.Override @@ -32199,7 +30360,8 @@ public java.lang.String getRunId() { if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); runId_ = s; return s; @@ -32207,15 +30369,16 @@ public java.lang.String getRunId() { } /** * string run_id = 2; - * * @return The bytes for runId. */ @java.lang.Override - public com.google.protobuf.ByteString getRunIdBytes() { + public com.google.protobuf.ByteString + getRunIdBytes() { java.lang.Object ref = runId_; if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); runId_ = b; return b; } else { @@ -32224,18 +30387,14 @@ public com.google.protobuf.ByteString getRunIdBytes() { } public static final int SIGNAL_NAME_FIELD_NUMBER = 3; - @SuppressWarnings("serial") private volatile java.lang.Object signalName_ = ""; /** - * - * *
      * Name of the signal handler
      * 
* * string signal_name = 3; - * * @return The signalName. */ @java.lang.Override @@ -32244,29 +30403,29 @@ public java.lang.String getSignalName() { if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); signalName_ = s; return s; } } /** - * - * *
      * Name of the signal handler
      * 
* * string signal_name = 3; - * * @return The bytes for signalName. */ @java.lang.Override - public com.google.protobuf.ByteString getSignalNameBytes() { + public com.google.protobuf.ByteString + getSignalNameBytes() { java.lang.Object ref = signalName_; if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); signalName_ = b; return b; } else { @@ -32275,12 +30434,9 @@ public com.google.protobuf.ByteString getSignalNameBytes() { } public static final int ARGS_FIELD_NUMBER = 4; - @SuppressWarnings("serial") private java.util.List args_; /** - * - * *
      * Arguments for the handler
      * 
@@ -32292,8 +30448,6 @@ public java.util.List getArgsList() { return args_; } /** - * - * *
      * Arguments for the handler
      * 
@@ -32301,13 +30455,11 @@ public java.util.List getArgsList() { * repeated .temporal.api.common.v1.Payload args = 4; */ @java.lang.Override - public java.util.List + public java.util.List getArgsOrBuilderList() { return args_; } /** - * - * *
      * Arguments for the handler
      * 
@@ -32319,8 +30471,6 @@ public int getArgsCount() { return args_.size(); } /** - * - * *
      * Arguments for the handler
      * 
@@ -32332,8 +30482,6 @@ public io.temporal.api.common.v1.Payload getArgs(int index) { return args_.get(index); } /** - * - * *
      * Arguments for the handler
      * 
@@ -32341,43 +30489,38 @@ public io.temporal.api.common.v1.Payload getArgs(int index) { * repeated .temporal.api.common.v1.Payload args = 4; */ @java.lang.Override - public io.temporal.api.common.v1.PayloadOrBuilder getArgsOrBuilder(int index) { + public io.temporal.api.common.v1.PayloadOrBuilder getArgsOrBuilder( + int index) { return args_.get(index); } public static final int HEADERS_FIELD_NUMBER = 5; - private static final class HeadersDefaultEntryHolder { - static final com.google.protobuf.MapEntry - defaultEntry = + static final com.google.protobuf.MapEntry< + java.lang.String, io.temporal.api.common.v1.Payload> defaultEntry = com.google.protobuf.MapEntry - .newDefaultInstance( - io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_SendSignalAction_HeadersEntry_descriptor, - com.google.protobuf.WireFormat.FieldType.STRING, - "", - com.google.protobuf.WireFormat.FieldType.MESSAGE, - io.temporal.api.common.v1.Payload.getDefaultInstance()); + .newDefaultInstance( + io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_SendSignalAction_HeadersEntry_descriptor, + com.google.protobuf.WireFormat.FieldType.STRING, + "", + com.google.protobuf.WireFormat.FieldType.MESSAGE, + io.temporal.api.common.v1.Payload.getDefaultInstance()); } - @SuppressWarnings("serial") + private com.google.protobuf.MapField< + java.lang.String, io.temporal.api.common.v1.Payload> headers_; private com.google.protobuf.MapField - headers_; - - private com.google.protobuf.MapField - internalGetHeaders() { + internalGetHeaders() { if (headers_ == null) { - return com.google.protobuf.MapField.emptyMapField(HeadersDefaultEntryHolder.defaultEntry); + return com.google.protobuf.MapField.emptyMapField( + HeadersDefaultEntryHolder.defaultEntry); } return headers_; } - public int getHeadersCount() { return internalGetHeaders().getMap().size(); } /** - * - * *
      * Headers to attach to the signal
      * 
@@ -32385,21 +30528,20 @@ public int getHeadersCount() { * map<string, .temporal.api.common.v1.Payload> headers = 5; */ @java.lang.Override - public boolean containsHeaders(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } + public boolean containsHeaders( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } return internalGetHeaders().getMap().containsKey(key); } - /** Use {@link #getHeadersMap()} instead. */ + /** + * Use {@link #getHeadersMap()} instead. + */ @java.lang.Override @java.lang.Deprecated public java.util.Map getHeaders() { return getHeadersMap(); } /** - * - * *
      * Headers to attach to the signal
      * 
@@ -32411,8 +30553,6 @@ public java.util.Map getHea return internalGetHeaders().getMap(); } /** - * - * *
      * Headers to attach to the signal
      * 
@@ -32420,20 +30560,17 @@ public java.util.Map getHea * map<string, .temporal.api.common.v1.Payload> headers = 5; */ @java.lang.Override - public /* nullable */ io.temporal.api.common.v1.Payload getHeadersOrDefault( + public /* nullable */ +io.temporal.api.common.v1.Payload getHeadersOrDefault( java.lang.String key, /* nullable */ - io.temporal.api.common.v1.Payload defaultValue) { - if (key == null) { - throw new NullPointerException("map key"); - } +io.temporal.api.common.v1.Payload defaultValue) { + if (key == null) { throw new NullPointerException("map key"); } java.util.Map map = internalGetHeaders().getMap(); return map.containsKey(key) ? map.get(key) : defaultValue; } /** - * - * *
      * Headers to attach to the signal
      * 
@@ -32441,10 +30578,9 @@ public java.util.Map getHea * map<string, .temporal.api.common.v1.Payload> headers = 5; */ @java.lang.Override - public io.temporal.api.common.v1.Payload getHeadersOrThrow(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } + public io.temporal.api.common.v1.Payload getHeadersOrThrow( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } java.util.Map map = internalGetHeaders().getMap(); if (!map.containsKey(key)) { @@ -32457,7 +30593,6 @@ public io.temporal.api.common.v1.Payload getHeadersOrThrow(java.lang.String key) private io.temporal.omes.KitchenSink.AwaitableChoice awaitableChoice_; /** * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 6; - * * @return Whether the awaitableChoice field is set. */ @java.lang.Override @@ -32466,25 +30601,21 @@ public boolean hasAwaitableChoice() { } /** * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 6; - * * @return The awaitableChoice. */ @java.lang.Override public io.temporal.omes.KitchenSink.AwaitableChoice getAwaitableChoice() { - return awaitableChoice_ == null - ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() - : awaitableChoice_; + return awaitableChoice_ == null ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() : awaitableChoice_; } - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 6; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 6; + */ @java.lang.Override public io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder getAwaitableChoiceOrBuilder() { - return awaitableChoice_ == null - ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() - : awaitableChoice_; + return awaitableChoice_ == null ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() : awaitableChoice_; } private byte memoizedIsInitialized = -1; - @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; @@ -32496,7 +30627,8 @@ public final boolean isInitialized() { } @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(workflowId_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, workflowId_); } @@ -32509,8 +30641,12 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io for (int i = 0; i < args_.size(); i++) { output.writeMessage(4, args_.get(i)); } - com.google.protobuf.GeneratedMessageV3.serializeStringMapTo( - output, internalGetHeaders(), HeadersDefaultEntryHolder.defaultEntry, 5); + com.google.protobuf.GeneratedMessageV3 + .serializeStringMapTo( + output, + internalGetHeaders(), + HeadersDefaultEntryHolder.defaultEntry, + 5); if (((bitField0_ & 0x00000001) != 0)) { output.writeMessage(6, getAwaitableChoice()); } @@ -32533,21 +30669,22 @@ public int getSerializedSize() { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, signalName_); } for (int i = 0; i < args_.size(); i++) { - size += com.google.protobuf.CodedOutputStream.computeMessageSize(4, args_.get(i)); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(4, args_.get(i)); } - for (java.util.Map.Entry entry : - internalGetHeaders().getMap().entrySet()) { + for (java.util.Map.Entry entry + : internalGetHeaders().getMap().entrySet()) { com.google.protobuf.MapEntry - headers__ = - HeadersDefaultEntryHolder.defaultEntry - .newBuilderForType() - .setKey(entry.getKey()) - .setValue(entry.getValue()) - .build(); - size += com.google.protobuf.CodedOutputStream.computeMessageSize(5, headers__); + headers__ = HeadersDefaultEntryHolder.defaultEntry.newBuilderForType() + .setKey(entry.getKey()) + .setValue(entry.getValue()) + .build(); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(5, headers__); } if (((bitField0_ & 0x00000001) != 0)) { - size += com.google.protobuf.CodedOutputStream.computeMessageSize(6, getAwaitableChoice()); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(6, getAwaitableChoice()); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; @@ -32557,22 +30694,27 @@ public int getSerializedSize() { @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { - return true; + return true; } if (!(obj instanceof io.temporal.omes.KitchenSink.SendSignalAction)) { return super.equals(obj); } - io.temporal.omes.KitchenSink.SendSignalAction other = - (io.temporal.omes.KitchenSink.SendSignalAction) obj; - - if (!getWorkflowId().equals(other.getWorkflowId())) return false; - if (!getRunId().equals(other.getRunId())) return false; - if (!getSignalName().equals(other.getSignalName())) return false; - if (!getArgsList().equals(other.getArgsList())) return false; - if (!internalGetHeaders().equals(other.internalGetHeaders())) return false; + io.temporal.omes.KitchenSink.SendSignalAction other = (io.temporal.omes.KitchenSink.SendSignalAction) obj; + + if (!getWorkflowId() + .equals(other.getWorkflowId())) return false; + if (!getRunId() + .equals(other.getRunId())) return false; + if (!getSignalName() + .equals(other.getSignalName())) return false; + if (!getArgsList() + .equals(other.getArgsList())) return false; + if (!internalGetHeaders().equals( + other.internalGetHeaders())) return false; if (hasAwaitableChoice() != other.hasAwaitableChoice()) return false; if (hasAwaitableChoice()) { - if (!getAwaitableChoice().equals(other.getAwaitableChoice())) return false; + if (!getAwaitableChoice() + .equals(other.getAwaitableChoice())) return false; } if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; @@ -32608,94 +30750,90 @@ public int hashCode() { return hash; } - public static io.temporal.omes.KitchenSink.SendSignalAction parseFrom(java.nio.ByteBuffer data) + public static io.temporal.omes.KitchenSink.SendSignalAction parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.SendSignalAction parseFrom( - java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.SendSignalAction parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.SendSignalAction parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.SendSignalAction parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.SendSignalAction parseFrom( - byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.SendSignalAction parseFrom(java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.SendSignalAction parseFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.SendSignalAction parseDelimitedFrom( - java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + public static io.temporal.omes.KitchenSink.SendSignalAction parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); } public static io.temporal.omes.KitchenSink.SendSignalAction parseDelimitedFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.SendSignalAction parseFrom( - com.google.protobuf.CodedInputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.SendSignalAction parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override - public Builder newBuilderForType() { - return newBuilder(); - } - + public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(io.temporal.omes.KitchenSink.SendSignalAction prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } - @java.lang.Override public Builder toBuilder() { - return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override @@ -32704,15 +30842,16 @@ protected Builder newBuilderForType( Builder builder = new Builder(parent); return builder; } - /** Protobuf type {@code temporal.omes.kitchen_sink.SendSignalAction} */ - public static final class Builder - extends com.google.protobuf.GeneratedMessageV3.Builder - implements + /** + * Protobuf type {@code temporal.omes.kitchen_sink.SendSignalAction} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.SendSignalAction) io.temporal.omes.KitchenSink.SendSignalActionOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_SendSignalAction_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_SendSignalAction_descriptor; } @SuppressWarnings({"rawtypes"}) @@ -32722,10 +30861,10 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMapFieldRefl case 5: return internalGetHeaders(); default: - throw new RuntimeException("Invalid map field number: " + number); + throw new RuntimeException( + "Invalid map field number: " + number); } } - @SuppressWarnings({"rawtypes"}) protected com.google.protobuf.MapFieldReflectionAccessor internalGetMutableMapFieldReflection( int number) { @@ -32733,18 +30872,16 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMutableMapFi case 5: return internalGetMutableHeaders(); default: - throw new RuntimeException("Invalid map field number: " + number); + throw new RuntimeException( + "Invalid map field number: " + number); } } - @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_SendSignalAction_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_SendSignalAction_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.SendSignalAction.class, - io.temporal.omes.KitchenSink.SendSignalAction.Builder.class); + io.temporal.omes.KitchenSink.SendSignalAction.class, io.temporal.omes.KitchenSink.SendSignalAction.Builder.class); } // Construct using io.temporal.omes.KitchenSink.SendSignalAction.newBuilder() @@ -32752,18 +30889,18 @@ private Builder() { maybeForceBuilderInitialization(); } - private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { getArgsFieldBuilder(); getAwaitableChoiceFieldBuilder(); } } - @java.lang.Override public Builder clear() { super.clear(); @@ -32788,9 +30925,9 @@ public Builder clear() { } @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_SendSignalAction_descriptor; + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_SendSignalAction_descriptor; } @java.lang.Override @@ -32809,18 +30946,14 @@ public io.temporal.omes.KitchenSink.SendSignalAction build() { @java.lang.Override public io.temporal.omes.KitchenSink.SendSignalAction buildPartial() { - io.temporal.omes.KitchenSink.SendSignalAction result = - new io.temporal.omes.KitchenSink.SendSignalAction(this); + io.temporal.omes.KitchenSink.SendSignalAction result = new io.temporal.omes.KitchenSink.SendSignalAction(this); buildPartialRepeatedFields(result); - if (bitField0_ != 0) { - buildPartial0(result); - } + if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } - private void buildPartialRepeatedFields( - io.temporal.omes.KitchenSink.SendSignalAction result) { + private void buildPartialRepeatedFields(io.temporal.omes.KitchenSink.SendSignalAction result) { if (argsBuilder_ == null) { if (((bitField0_ & 0x00000008) != 0)) { args_ = java.util.Collections.unmodifiableList(args_); @@ -32848,8 +30981,9 @@ private void buildPartial0(io.temporal.omes.KitchenSink.SendSignalAction result) } int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000020) != 0)) { - result.awaitableChoice_ = - awaitableChoiceBuilder_ == null ? awaitableChoice_ : awaitableChoiceBuilder_.build(); + result.awaitableChoice_ = awaitableChoiceBuilder_ == null + ? awaitableChoice_ + : awaitableChoiceBuilder_.build(); to_bitField0_ |= 0x00000001; } result.bitField0_ |= to_bitField0_; @@ -32859,41 +30993,38 @@ private void buildPartial0(io.temporal.omes.KitchenSink.SendSignalAction result) public Builder clone() { return super.clone(); } - @java.lang.Override public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.setField(field, value); } - @java.lang.Override - public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } - @java.lang.Override - public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } - @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, - int index, - java.lang.Object value) { + int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } - @java.lang.Override public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.addRepeatedField(field, value); } - @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.temporal.omes.KitchenSink.SendSignalAction) { - return mergeFrom((io.temporal.omes.KitchenSink.SendSignalAction) other); + return mergeFrom((io.temporal.omes.KitchenSink.SendSignalAction)other); } else { super.mergeFrom(other); return this; @@ -32901,8 +31032,7 @@ public Builder mergeFrom(com.google.protobuf.Message other) { } public Builder mergeFrom(io.temporal.omes.KitchenSink.SendSignalAction other) { - if (other == io.temporal.omes.KitchenSink.SendSignalAction.getDefaultInstance()) - return this; + if (other == io.temporal.omes.KitchenSink.SendSignalAction.getDefaultInstance()) return this; if (!other.getWorkflowId().isEmpty()) { workflowId_ = other.workflowId_; bitField0_ |= 0x00000001; @@ -32936,16 +31066,16 @@ public Builder mergeFrom(io.temporal.omes.KitchenSink.SendSignalAction other) { argsBuilder_ = null; args_ = other.args_; bitField0_ = (bitField0_ & ~0x00000008); - argsBuilder_ = - com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders - ? getArgsFieldBuilder() - : null; + argsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getArgsFieldBuilder() : null; } else { argsBuilder_.addAllMessages(other.args_); } } } - internalGetMutableHeaders().mergeFrom(other.internalGetHeaders()); + internalGetMutableHeaders().mergeFrom( + other.internalGetHeaders()); bitField0_ |= 0x00000010; if (other.hasAwaitableChoice()) { mergeAwaitableChoice(other.getAwaitableChoice()); @@ -32976,64 +31106,56 @@ public Builder mergeFrom( case 0: done = true; break; - case 10: - { - workflowId_ = input.readStringRequireUtf8(); - bitField0_ |= 0x00000001; - break; - } // case 10 - case 18: - { - runId_ = input.readStringRequireUtf8(); - bitField0_ |= 0x00000002; - break; - } // case 18 - case 26: - { - signalName_ = input.readStringRequireUtf8(); - bitField0_ |= 0x00000004; - break; - } // case 26 - case 34: - { - io.temporal.api.common.v1.Payload m = - input.readMessage( - io.temporal.api.common.v1.Payload.parser(), extensionRegistry); - if (argsBuilder_ == null) { - ensureArgsIsMutable(); - args_.add(m); - } else { - argsBuilder_.addMessage(m); - } - break; - } // case 34 - case 42: - { - com.google.protobuf.MapEntry - headers__ = - input.readMessage( - HeadersDefaultEntryHolder.defaultEntry.getParserForType(), - extensionRegistry); - internalGetMutableHeaders() - .ensureBuilderMap() - .put(headers__.getKey(), headers__.getValue()); - bitField0_ |= 0x00000010; - break; - } // case 42 - case 50: - { - input.readMessage( - getAwaitableChoiceFieldBuilder().getBuilder(), extensionRegistry); - bitField0_ |= 0x00000020; - break; - } // case 50 - default: - { - if (!super.parseUnknownField(input, extensionRegistry, tag)) { - done = true; // was an endgroup tag - } - break; - } // default: + case 10: { + workflowId_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: { + runId_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000002; + break; + } // case 18 + case 26: { + signalName_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000004; + break; + } // case 26 + case 34: { + io.temporal.api.common.v1.Payload m = + input.readMessage( + io.temporal.api.common.v1.Payload.parser(), + extensionRegistry); + if (argsBuilder_ == null) { + ensureArgsIsMutable(); + args_.add(m); + } else { + argsBuilder_.addMessage(m); + } + break; + } // case 34 + case 42: { + com.google.protobuf.MapEntry + headers__ = input.readMessage( + HeadersDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry); + internalGetMutableHeaders().ensureBuilderMap().put( + headers__.getKey(), headers__.getValue()); + bitField0_ |= 0x00000010; + break; + } // case 42 + case 50: { + input.readMessage( + getAwaitableChoiceFieldBuilder().getBuilder(), + extensionRegistry); + bitField0_ |= 0x00000020; + break; + } // case 50 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -33043,25 +31165,22 @@ public Builder mergeFrom( } // finally return this; } - private int bitField0_; private java.lang.Object workflowId_ = ""; /** - * - * *
        * What workflow is being targeted
        * 
* * string workflow_id = 1; - * * @return The workflowId. */ public java.lang.String getWorkflowId() { java.lang.Object ref = workflowId_; if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); workflowId_ = s; return s; @@ -33070,21 +31189,20 @@ public java.lang.String getWorkflowId() { } } /** - * - * *
        * What workflow is being targeted
        * 
* * string workflow_id = 1; - * * @return The bytes for workflowId. */ - public com.google.protobuf.ByteString getWorkflowIdBytes() { + public com.google.protobuf.ByteString + getWorkflowIdBytes() { java.lang.Object ref = workflowId_; if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); workflowId_ = b; return b; } else { @@ -33092,35 +31210,28 @@ public com.google.protobuf.ByteString getWorkflowIdBytes() { } } /** - * - * *
        * What workflow is being targeted
        * 
* * string workflow_id = 1; - * * @param value The workflowId to set. * @return This builder for chaining. */ - public Builder setWorkflowId(java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setWorkflowId( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } workflowId_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** - * - * *
        * What workflow is being targeted
        * 
* * string workflow_id = 1; - * * @return This builder for chaining. */ public Builder clearWorkflowId() { @@ -33130,21 +31241,17 @@ public Builder clearWorkflowId() { return this; } /** - * - * *
        * What workflow is being targeted
        * 
* * string workflow_id = 1; - * * @param value The bytes for workflowId to set. * @return This builder for chaining. */ - public Builder setWorkflowIdBytes(com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setWorkflowIdBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); workflowId_ = value; bitField0_ |= 0x00000001; @@ -33155,13 +31262,13 @@ public Builder setWorkflowIdBytes(com.google.protobuf.ByteString value) { private java.lang.Object runId_ = ""; /** * string run_id = 2; - * * @return The runId. */ public java.lang.String getRunId() { java.lang.Object ref = runId_; if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); runId_ = s; return s; @@ -33171,14 +31278,15 @@ public java.lang.String getRunId() { } /** * string run_id = 2; - * * @return The bytes for runId. */ - public com.google.protobuf.ByteString getRunIdBytes() { + public com.google.protobuf.ByteString + getRunIdBytes() { java.lang.Object ref = runId_; if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); runId_ = b; return b; } else { @@ -33187,14 +31295,12 @@ public com.google.protobuf.ByteString getRunIdBytes() { } /** * string run_id = 2; - * * @param value The runId to set. * @return This builder for chaining. */ - public Builder setRunId(java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setRunId( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } runId_ = value; bitField0_ |= 0x00000002; onChanged(); @@ -33202,7 +31308,6 @@ public Builder setRunId(java.lang.String value) { } /** * string run_id = 2; - * * @return This builder for chaining. */ public Builder clearRunId() { @@ -33213,14 +31318,12 @@ public Builder clearRunId() { } /** * string run_id = 2; - * * @param value The bytes for runId to set. * @return This builder for chaining. */ - public Builder setRunIdBytes(com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setRunIdBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); runId_ = value; bitField0_ |= 0x00000002; @@ -33230,20 +31333,18 @@ public Builder setRunIdBytes(com.google.protobuf.ByteString value) { private java.lang.Object signalName_ = ""; /** - * - * *
        * Name of the signal handler
        * 
* * string signal_name = 3; - * * @return The signalName. */ public java.lang.String getSignalName() { java.lang.Object ref = signalName_; if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); signalName_ = s; return s; @@ -33252,21 +31353,20 @@ public java.lang.String getSignalName() { } } /** - * - * *
        * Name of the signal handler
        * 
* * string signal_name = 3; - * * @return The bytes for signalName. */ - public com.google.protobuf.ByteString getSignalNameBytes() { + public com.google.protobuf.ByteString + getSignalNameBytes() { java.lang.Object ref = signalName_; if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); signalName_ = b; return b; } else { @@ -33274,35 +31374,28 @@ public com.google.protobuf.ByteString getSignalNameBytes() { } } /** - * - * *
        * Name of the signal handler
        * 
* * string signal_name = 3; - * * @param value The signalName to set. * @return This builder for chaining. */ - public Builder setSignalName(java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setSignalName( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } signalName_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } /** - * - * *
        * Name of the signal handler
        * 
* * string signal_name = 3; - * * @return This builder for chaining. */ public Builder clearSignalName() { @@ -33312,21 +31405,17 @@ public Builder clearSignalName() { return this; } /** - * - * *
        * Name of the signal handler
        * 
* * string signal_name = 3; - * * @param value The bytes for signalName to set. * @return This builder for chaining. */ - public Builder setSignalNameBytes(com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setSignalNameBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); signalName_ = value; bitField0_ |= 0x00000004; @@ -33335,24 +31424,18 @@ public Builder setSignalNameBytes(com.google.protobuf.ByteString value) { } private java.util.List args_ = - java.util.Collections.emptyList(); - + java.util.Collections.emptyList(); private void ensureArgsIsMutable() { if (!((bitField0_ & 0x00000008) != 0)) { args_ = new java.util.ArrayList(args_); bitField0_ |= 0x00000008; - } + } } private com.google.protobuf.RepeatedFieldBuilderV3< - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder, - io.temporal.api.common.v1.PayloadOrBuilder> - argsBuilder_; + io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder, io.temporal.api.common.v1.PayloadOrBuilder> argsBuilder_; /** - * - * *
        * Arguments for the handler
        * 
@@ -33367,8 +31450,6 @@ public java.util.List getArgsList() { } } /** - * - * *
        * Arguments for the handler
        * 
@@ -33383,8 +31464,6 @@ public int getArgsCount() { } } /** - * - * *
        * Arguments for the handler
        * 
@@ -33399,15 +31478,14 @@ public io.temporal.api.common.v1.Payload getArgs(int index) { } } /** - * - * *
        * Arguments for the handler
        * 
* * repeated .temporal.api.common.v1.Payload args = 4; */ - public Builder setArgs(int index, io.temporal.api.common.v1.Payload value) { + public Builder setArgs( + int index, io.temporal.api.common.v1.Payload value) { if (argsBuilder_ == null) { if (value == null) { throw new NullPointerException(); @@ -33421,15 +31499,14 @@ public Builder setArgs(int index, io.temporal.api.common.v1.Payload value) { return this; } /** - * - * *
        * Arguments for the handler
        * 
* * repeated .temporal.api.common.v1.Payload args = 4; */ - public Builder setArgs(int index, io.temporal.api.common.v1.Payload.Builder builderForValue) { + public Builder setArgs( + int index, io.temporal.api.common.v1.Payload.Builder builderForValue) { if (argsBuilder_ == null) { ensureArgsIsMutable(); args_.set(index, builderForValue.build()); @@ -33440,8 +31517,6 @@ public Builder setArgs(int index, io.temporal.api.common.v1.Payload.Builder buil return this; } /** - * - * *
        * Arguments for the handler
        * 
@@ -33462,15 +31537,14 @@ public Builder addArgs(io.temporal.api.common.v1.Payload value) { return this; } /** - * - * *
        * Arguments for the handler
        * 
* * repeated .temporal.api.common.v1.Payload args = 4; */ - public Builder addArgs(int index, io.temporal.api.common.v1.Payload value) { + public Builder addArgs( + int index, io.temporal.api.common.v1.Payload value) { if (argsBuilder_ == null) { if (value == null) { throw new NullPointerException(); @@ -33484,15 +31558,14 @@ public Builder addArgs(int index, io.temporal.api.common.v1.Payload value) { return this; } /** - * - * *
        * Arguments for the handler
        * 
* * repeated .temporal.api.common.v1.Payload args = 4; */ - public Builder addArgs(io.temporal.api.common.v1.Payload.Builder builderForValue) { + public Builder addArgs( + io.temporal.api.common.v1.Payload.Builder builderForValue) { if (argsBuilder_ == null) { ensureArgsIsMutable(); args_.add(builderForValue.build()); @@ -33503,15 +31576,14 @@ public Builder addArgs(io.temporal.api.common.v1.Payload.Builder builderForValue return this; } /** - * - * *
        * Arguments for the handler
        * 
* * repeated .temporal.api.common.v1.Payload args = 4; */ - public Builder addArgs(int index, io.temporal.api.common.v1.Payload.Builder builderForValue) { + public Builder addArgs( + int index, io.temporal.api.common.v1.Payload.Builder builderForValue) { if (argsBuilder_ == null) { ensureArgsIsMutable(); args_.add(index, builderForValue.build()); @@ -33522,8 +31594,6 @@ public Builder addArgs(int index, io.temporal.api.common.v1.Payload.Builder buil return this; } /** - * - * *
        * Arguments for the handler
        * 
@@ -33534,7 +31604,8 @@ public Builder addAllArgs( java.lang.Iterable values) { if (argsBuilder_ == null) { ensureArgsIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll(values, args_); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, args_); onChanged(); } else { argsBuilder_.addAllMessages(values); @@ -33542,8 +31613,6 @@ public Builder addAllArgs( return this; } /** - * - * *
        * Arguments for the handler
        * 
@@ -33561,8 +31630,6 @@ public Builder clearArgs() { return this; } /** - * - * *
        * Arguments for the handler
        * 
@@ -33580,44 +31647,39 @@ public Builder removeArgs(int index) { return this; } /** - * - * *
        * Arguments for the handler
        * 
* * repeated .temporal.api.common.v1.Payload args = 4; */ - public io.temporal.api.common.v1.Payload.Builder getArgsBuilder(int index) { + public io.temporal.api.common.v1.Payload.Builder getArgsBuilder( + int index) { return getArgsFieldBuilder().getBuilder(index); } /** - * - * *
        * Arguments for the handler
        * 
* * repeated .temporal.api.common.v1.Payload args = 4; */ - public io.temporal.api.common.v1.PayloadOrBuilder getArgsOrBuilder(int index) { + public io.temporal.api.common.v1.PayloadOrBuilder getArgsOrBuilder( + int index) { if (argsBuilder_ == null) { - return args_.get(index); - } else { + return args_.get(index); } else { return argsBuilder_.getMessageOrBuilder(index); } } /** - * - * *
        * Arguments for the handler
        * 
* * repeated .temporal.api.common.v1.Payload args = 4; */ - public java.util.List - getArgsOrBuilderList() { + public java.util.List + getArgsOrBuilderList() { if (argsBuilder_ != null) { return argsBuilder_.getMessageOrBuilderList(); } else { @@ -33625,8 +31687,6 @@ public io.temporal.api.common.v1.PayloadOrBuilder getArgsOrBuilder(int index) { } } /** - * - * *
        * Arguments for the handler
        * 
@@ -33634,100 +31694,71 @@ public io.temporal.api.common.v1.PayloadOrBuilder getArgsOrBuilder(int index) { * repeated .temporal.api.common.v1.Payload args = 4; */ public io.temporal.api.common.v1.Payload.Builder addArgsBuilder() { - return getArgsFieldBuilder() - .addBuilder(io.temporal.api.common.v1.Payload.getDefaultInstance()); + return getArgsFieldBuilder().addBuilder( + io.temporal.api.common.v1.Payload.getDefaultInstance()); } /** - * - * *
        * Arguments for the handler
        * 
* * repeated .temporal.api.common.v1.Payload args = 4; */ - public io.temporal.api.common.v1.Payload.Builder addArgsBuilder(int index) { - return getArgsFieldBuilder() - .addBuilder(index, io.temporal.api.common.v1.Payload.getDefaultInstance()); + public io.temporal.api.common.v1.Payload.Builder addArgsBuilder( + int index) { + return getArgsFieldBuilder().addBuilder( + index, io.temporal.api.common.v1.Payload.getDefaultInstance()); } /** - * - * *
        * Arguments for the handler
        * 
* * repeated .temporal.api.common.v1.Payload args = 4; */ - public java.util.List getArgsBuilderList() { + public java.util.List + getArgsBuilderList() { return getArgsFieldBuilder().getBuilderList(); } - private com.google.protobuf.RepeatedFieldBuilderV3< - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder, - io.temporal.api.common.v1.PayloadOrBuilder> + io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder, io.temporal.api.common.v1.PayloadOrBuilder> getArgsFieldBuilder() { if (argsBuilder_ == null) { - argsBuilder_ = - new com.google.protobuf.RepeatedFieldBuilderV3< - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder, - io.temporal.api.common.v1.PayloadOrBuilder>( - args_, ((bitField0_ & 0x00000008) != 0), getParentForChildren(), isClean()); + argsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder, io.temporal.api.common.v1.PayloadOrBuilder>( + args_, + ((bitField0_ & 0x00000008) != 0), + getParentForChildren(), + isClean()); args_ = null; } return argsBuilder_; } - private static final class HeadersConverter - implements com.google.protobuf.MapFieldBuilder.Converter< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload> { + private static final class HeadersConverter implements com.google.protobuf.MapFieldBuilder.Converter { @java.lang.Override - public io.temporal.api.common.v1.Payload build( - io.temporal.api.common.v1.PayloadOrBuilder val) { - if (val instanceof io.temporal.api.common.v1.Payload) { - return (io.temporal.api.common.v1.Payload) val; - } + public io.temporal.api.common.v1.Payload build(io.temporal.api.common.v1.PayloadOrBuilder val) { + if (val instanceof io.temporal.api.common.v1.Payload) { return (io.temporal.api.common.v1.Payload) val; } return ((io.temporal.api.common.v1.Payload.Builder) val).build(); } @java.lang.Override - public com.google.protobuf.MapEntry - defaultEntry() { + public com.google.protobuf.MapEntry defaultEntry() { return HeadersDefaultEntryHolder.defaultEntry; } - } - ; - + }; private static final HeadersConverter headersConverter = new HeadersConverter(); private com.google.protobuf.MapFieldBuilder< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder> - headers_; - - private com.google.protobuf.MapFieldBuilder< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder> + java.lang.String, io.temporal.api.common.v1.PayloadOrBuilder, io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder> headers_; + private com.google.protobuf.MapFieldBuilder internalGetHeaders() { if (headers_ == null) { return new com.google.protobuf.MapFieldBuilder<>(headersConverter); } return headers_; } - - private com.google.protobuf.MapFieldBuilder< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder> + private com.google.protobuf.MapFieldBuilder internalGetMutableHeaders() { if (headers_ == null) { headers_ = new com.google.protobuf.MapFieldBuilder<>(headersConverter); @@ -33736,13 +31767,10 @@ public io.temporal.api.common.v1.Payload build( onChanged(); return headers_; } - public int getHeadersCount() { return internalGetHeaders().ensureBuilderMap().size(); } /** - * - * *
        * Headers to attach to the signal
        * 
@@ -33750,21 +31778,20 @@ public int getHeadersCount() { * map<string, .temporal.api.common.v1.Payload> headers = 5; */ @java.lang.Override - public boolean containsHeaders(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } + public boolean containsHeaders( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } return internalGetHeaders().ensureBuilderMap().containsKey(key); } - /** Use {@link #getHeadersMap()} instead. */ + /** + * Use {@link #getHeadersMap()} instead. + */ @java.lang.Override @java.lang.Deprecated public java.util.Map getHeaders() { return getHeadersMap(); } /** - * - * *
        * Headers to attach to the signal
        * 
@@ -33776,8 +31803,6 @@ public java.util.Map getHea return internalGetHeaders().getImmutableMap(); } /** - * - * *
        * Headers to attach to the signal
        * 
@@ -33785,20 +31810,16 @@ public java.util.Map getHea * map<string, .temporal.api.common.v1.Payload> headers = 5; */ @java.lang.Override - public /* nullable */ io.temporal.api.common.v1.Payload getHeadersOrDefault( + public /* nullable */ +io.temporal.api.common.v1.Payload getHeadersOrDefault( java.lang.String key, /* nullable */ - io.temporal.api.common.v1.Payload defaultValue) { - if (key == null) { - throw new NullPointerException("map key"); - } - java.util.Map map = - internalGetMutableHeaders().ensureBuilderMap(); +io.temporal.api.common.v1.Payload defaultValue) { + if (key == null) { throw new NullPointerException("map key"); } + java.util.Map map = internalGetMutableHeaders().ensureBuilderMap(); return map.containsKey(key) ? headersConverter.build(map.get(key)) : defaultValue; } /** - * - * *
        * Headers to attach to the signal
        * 
@@ -33806,40 +31827,37 @@ public java.util.Map getHea * map<string, .temporal.api.common.v1.Payload> headers = 5; */ @java.lang.Override - public io.temporal.api.common.v1.Payload getHeadersOrThrow(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } - java.util.Map map = - internalGetMutableHeaders().ensureBuilderMap(); + public io.temporal.api.common.v1.Payload getHeadersOrThrow( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } + java.util.Map map = internalGetMutableHeaders().ensureBuilderMap(); if (!map.containsKey(key)) { throw new java.lang.IllegalArgumentException(); } return headersConverter.build(map.get(key)); } - public Builder clearHeaders() { bitField0_ = (bitField0_ & ~0x00000010); internalGetMutableHeaders().clear(); return this; } /** - * - * *
        * Headers to attach to the signal
        * 
* * map<string, .temporal.api.common.v1.Payload> headers = 5; */ - public Builder removeHeaders(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } - internalGetMutableHeaders().ensureBuilderMap().remove(key); + public Builder removeHeaders( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } + internalGetMutableHeaders().ensureBuilderMap() + .remove(key); return this; } - /** Use alternate mutation accessors instead. */ + /** + * Use alternate mutation accessors instead. + */ @java.lang.Deprecated public java.util.Map getMutableHeaders() { @@ -33847,28 +31865,23 @@ public Builder removeHeaders(java.lang.String key) { return internalGetMutableHeaders().ensureMessageMap(); } /** - * - * *
        * Headers to attach to the signal
        * 
* * map<string, .temporal.api.common.v1.Payload> headers = 5; */ - public Builder putHeaders(java.lang.String key, io.temporal.api.common.v1.Payload value) { - if (key == null) { - throw new NullPointerException("map key"); - } - if (value == null) { - throw new NullPointerException("map value"); - } - internalGetMutableHeaders().ensureBuilderMap().put(key, value); + public Builder putHeaders( + java.lang.String key, + io.temporal.api.common.v1.Payload value) { + if (key == null) { throw new NullPointerException("map key"); } + if (value == null) { throw new NullPointerException("map value"); } + internalGetMutableHeaders().ensureBuilderMap() + .put(key, value); bitField0_ |= 0x00000010; return this; } /** - * - * *
        * Headers to attach to the signal
        * 
@@ -33877,19 +31890,17 @@ public Builder putHeaders(java.lang.String key, io.temporal.api.common.v1.Payloa */ public Builder putAllHeaders( java.util.Map values) { - for (java.util.Map.Entry e : - values.entrySet()) { + for (java.util.Map.Entry e : values.entrySet()) { if (e.getKey() == null || e.getValue() == null) { throw new NullPointerException(); } } - internalGetMutableHeaders().ensureBuilderMap().putAll(values); + internalGetMutableHeaders().ensureBuilderMap() + .putAll(values); bitField0_ |= 0x00000010; return this; } /** - * - * *
        * Headers to attach to the signal
        * 
@@ -33898,8 +31909,7 @@ public Builder putAllHeaders( */ public io.temporal.api.common.v1.Payload.Builder putHeadersBuilderIfAbsent( java.lang.String key) { - java.util.Map builderMap = - internalGetMutableHeaders().ensureBuilderMap(); + java.util.Map builderMap = internalGetMutableHeaders().ensureBuilderMap(); io.temporal.api.common.v1.PayloadOrBuilder entry = builderMap.get(key); if (entry == null) { entry = io.temporal.api.common.v1.Payload.newBuilder(); @@ -33914,13 +31924,9 @@ public io.temporal.api.common.v1.Payload.Builder putHeadersBuilderIfAbsent( private io.temporal.omes.KitchenSink.AwaitableChoice awaitableChoice_; private com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.AwaitableChoice, - io.temporal.omes.KitchenSink.AwaitableChoice.Builder, - io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder> - awaitableChoiceBuilder_; + io.temporal.omes.KitchenSink.AwaitableChoice, io.temporal.omes.KitchenSink.AwaitableChoice.Builder, io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder> awaitableChoiceBuilder_; /** * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 6; - * * @return Whether the awaitableChoice field is set. */ public boolean hasAwaitableChoice() { @@ -33928,19 +31934,18 @@ public boolean hasAwaitableChoice() { } /** * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 6; - * * @return The awaitableChoice. */ public io.temporal.omes.KitchenSink.AwaitableChoice getAwaitableChoice() { if (awaitableChoiceBuilder_ == null) { - return awaitableChoice_ == null - ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() - : awaitableChoice_; + return awaitableChoice_ == null ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() : awaitableChoice_; } else { return awaitableChoiceBuilder_.getMessage(); } } - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 6; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 6; + */ public Builder setAwaitableChoice(io.temporal.omes.KitchenSink.AwaitableChoice value) { if (awaitableChoiceBuilder_ == null) { if (value == null) { @@ -33954,7 +31959,9 @@ public Builder setAwaitableChoice(io.temporal.omes.KitchenSink.AwaitableChoice v onChanged(); return this; } - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 6; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 6; + */ public Builder setAwaitableChoice( io.temporal.omes.KitchenSink.AwaitableChoice.Builder builderForValue) { if (awaitableChoiceBuilder_ == null) { @@ -33966,13 +31973,14 @@ public Builder setAwaitableChoice( onChanged(); return this; } - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 6; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 6; + */ public Builder mergeAwaitableChoice(io.temporal.omes.KitchenSink.AwaitableChoice value) { if (awaitableChoiceBuilder_ == null) { - if (((bitField0_ & 0x00000020) != 0) - && awaitableChoice_ != null - && awaitableChoice_ - != io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance()) { + if (((bitField0_ & 0x00000020) != 0) && + awaitableChoice_ != null && + awaitableChoice_ != io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance()) { getAwaitableChoiceBuilder().mergeFrom(value); } else { awaitableChoice_ = value; @@ -33986,7 +31994,9 @@ public Builder mergeAwaitableChoice(io.temporal.omes.KitchenSink.AwaitableChoice } return this; } - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 6; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 6; + */ public Builder clearAwaitableChoice() { bitField0_ = (bitField0_ & ~0x00000020); awaitableChoice_ = null; @@ -33997,40 +32007,41 @@ public Builder clearAwaitableChoice() { onChanged(); return this; } - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 6; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 6; + */ public io.temporal.omes.KitchenSink.AwaitableChoice.Builder getAwaitableChoiceBuilder() { bitField0_ |= 0x00000020; onChanged(); return getAwaitableChoiceFieldBuilder().getBuilder(); } - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 6; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 6; + */ public io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder getAwaitableChoiceOrBuilder() { if (awaitableChoiceBuilder_ != null) { return awaitableChoiceBuilder_.getMessageOrBuilder(); } else { - return awaitableChoice_ == null - ? io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() - : awaitableChoice_; + return awaitableChoice_ == null ? + io.temporal.omes.KitchenSink.AwaitableChoice.getDefaultInstance() : awaitableChoice_; } } - /** .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 6; */ + /** + * .temporal.omes.kitchen_sink.AwaitableChoice awaitable_choice = 6; + */ private com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.AwaitableChoice, - io.temporal.omes.KitchenSink.AwaitableChoice.Builder, - io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder> + io.temporal.omes.KitchenSink.AwaitableChoice, io.temporal.omes.KitchenSink.AwaitableChoice.Builder, io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder> getAwaitableChoiceFieldBuilder() { if (awaitableChoiceBuilder_ == null) { - awaitableChoiceBuilder_ = - new com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.AwaitableChoice, - io.temporal.omes.KitchenSink.AwaitableChoice.Builder, - io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder>( - getAwaitableChoice(), getParentForChildren(), isClean()); + awaitableChoiceBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + io.temporal.omes.KitchenSink.AwaitableChoice, io.temporal.omes.KitchenSink.AwaitableChoice.Builder, io.temporal.omes.KitchenSink.AwaitableChoiceOrBuilder>( + getAwaitableChoice(), + getParentForChildren(), + isClean()); awaitableChoice_ = null; } return awaitableChoiceBuilder_; } - @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -34043,12 +32054,12 @@ public final Builder mergeUnknownFields( return super.mergeUnknownFields(unknownFields); } + // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.SendSignalAction) } // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.SendSignalAction) private static final io.temporal.omes.KitchenSink.SendSignalAction DEFAULT_INSTANCE; - static { DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.SendSignalAction(); } @@ -34057,28 +32068,27 @@ public static io.temporal.omes.KitchenSink.SendSignalAction getDefaultInstance() return DEFAULT_INSTANCE; } - private static final com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser() { - @java.lang.Override - public SendSignalAction parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException() - .setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public SendSignalAction parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; public static com.google.protobuf.Parser parser() { return PARSER; @@ -34093,58 +32103,53 @@ public com.google.protobuf.Parser getParserForType() { public io.temporal.omes.KitchenSink.SendSignalAction getDefaultInstanceForType() { return DEFAULT_INSTANCE; } + } - public interface CancelWorkflowActionOrBuilder - extends + public interface CancelWorkflowActionOrBuilder extends // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.CancelWorkflowAction) com.google.protobuf.MessageOrBuilder { /** * string workflow_id = 1; - * * @return The workflowId. */ java.lang.String getWorkflowId(); /** * string workflow_id = 1; - * * @return The bytes for workflowId. */ - com.google.protobuf.ByteString getWorkflowIdBytes(); + com.google.protobuf.ByteString + getWorkflowIdBytes(); /** * string run_id = 2; - * * @return The runId. */ java.lang.String getRunId(); /** * string run_id = 2; - * * @return The bytes for runId. */ - com.google.protobuf.ByteString getRunIdBytes(); + com.google.protobuf.ByteString + getRunIdBytes(); } /** - * - * *
    * Cancel an external workflow (may be a child)
    * 
* * Protobuf type {@code temporal.omes.kitchen_sink.CancelWorkflowAction} */ - public static final class CancelWorkflowAction extends com.google.protobuf.GeneratedMessageV3 - implements + public static final class CancelWorkflowAction extends + com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.CancelWorkflowAction) CancelWorkflowActionOrBuilder { - private static final long serialVersionUID = 0L; + private static final long serialVersionUID = 0L; // Use CancelWorkflowAction.newBuilder() to construct. private CancelWorkflowAction(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } - private CancelWorkflowAction() { workflowId_ = ""; runId_ = ""; @@ -34152,32 +32157,29 @@ private CancelWorkflowAction() { @java.lang.Override @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { return new CancelWorkflowAction(); } - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_CancelWorkflowAction_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_CancelWorkflowAction_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_CancelWorkflowAction_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_CancelWorkflowAction_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.CancelWorkflowAction.class, - io.temporal.omes.KitchenSink.CancelWorkflowAction.Builder.class); + io.temporal.omes.KitchenSink.CancelWorkflowAction.class, io.temporal.omes.KitchenSink.CancelWorkflowAction.Builder.class); } public static final int WORKFLOW_ID_FIELD_NUMBER = 1; - @SuppressWarnings("serial") private volatile java.lang.Object workflowId_ = ""; /** * string workflow_id = 1; - * * @return The workflowId. */ @java.lang.Override @@ -34186,7 +32188,8 @@ public java.lang.String getWorkflowId() { if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); workflowId_ = s; return s; @@ -34194,15 +32197,16 @@ public java.lang.String getWorkflowId() { } /** * string workflow_id = 1; - * * @return The bytes for workflowId. */ @java.lang.Override - public com.google.protobuf.ByteString getWorkflowIdBytes() { + public com.google.protobuf.ByteString + getWorkflowIdBytes() { java.lang.Object ref = workflowId_; if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); workflowId_ = b; return b; } else { @@ -34211,12 +32215,10 @@ public com.google.protobuf.ByteString getWorkflowIdBytes() { } public static final int RUN_ID_FIELD_NUMBER = 2; - @SuppressWarnings("serial") private volatile java.lang.Object runId_ = ""; /** * string run_id = 2; - * * @return The runId. */ @java.lang.Override @@ -34225,7 +32227,8 @@ public java.lang.String getRunId() { if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); runId_ = s; return s; @@ -34233,15 +32236,16 @@ public java.lang.String getRunId() { } /** * string run_id = 2; - * * @return The bytes for runId. */ @java.lang.Override - public com.google.protobuf.ByteString getRunIdBytes() { + public com.google.protobuf.ByteString + getRunIdBytes() { java.lang.Object ref = runId_; if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); runId_ = b; return b; } else { @@ -34250,7 +32254,6 @@ public com.google.protobuf.ByteString getRunIdBytes() { } private byte memoizedIsInitialized = -1; - @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; @@ -34262,7 +32265,8 @@ public final boolean isInitialized() { } @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(workflowId_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, workflowId_); } @@ -34292,16 +32296,17 @@ public int getSerializedSize() { @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { - return true; + return true; } if (!(obj instanceof io.temporal.omes.KitchenSink.CancelWorkflowAction)) { return super.equals(obj); } - io.temporal.omes.KitchenSink.CancelWorkflowAction other = - (io.temporal.omes.KitchenSink.CancelWorkflowAction) obj; + io.temporal.omes.KitchenSink.CancelWorkflowAction other = (io.temporal.omes.KitchenSink.CancelWorkflowAction) obj; - if (!getWorkflowId().equals(other.getWorkflowId())) return false; - if (!getRunId().equals(other.getRunId())) return false; + if (!getWorkflowId() + .equals(other.getWorkflowId())) return false; + if (!getRunId() + .equals(other.getRunId())) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -34323,93 +32328,89 @@ public int hashCode() { } public static io.temporal.omes.KitchenSink.CancelWorkflowAction parseFrom( - java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.CancelWorkflowAction parseFrom( - java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.CancelWorkflowAction parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.CancelWorkflowAction parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.CancelWorkflowAction parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.CancelWorkflowAction parseFrom( - byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - - public static io.temporal.omes.KitchenSink.CancelWorkflowAction parseFrom( - java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + public static io.temporal.omes.KitchenSink.CancelWorkflowAction parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.CancelWorkflowAction parseFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.CancelWorkflowAction parseDelimitedFrom( - java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + public static io.temporal.omes.KitchenSink.CancelWorkflowAction parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); } public static io.temporal.omes.KitchenSink.CancelWorkflowAction parseDelimitedFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.CancelWorkflowAction parseFrom( - com.google.protobuf.CodedInputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.CancelWorkflowAction parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override - public Builder newBuilderForType() { - return newBuilder(); - } - + public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(io.temporal.omes.KitchenSink.CancelWorkflowAction prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } - @java.lang.Override public Builder toBuilder() { - return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override @@ -34419,41 +32420,39 @@ protected Builder newBuilderForType( return builder; } /** - * - * *
      * Cancel an external workflow (may be a child)
      * 
* * Protobuf type {@code temporal.omes.kitchen_sink.CancelWorkflowAction} */ - public static final class Builder - extends com.google.protobuf.GeneratedMessageV3.Builder - implements + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.CancelWorkflowAction) io.temporal.omes.KitchenSink.CancelWorkflowActionOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_CancelWorkflowAction_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_CancelWorkflowAction_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_CancelWorkflowAction_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_CancelWorkflowAction_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.CancelWorkflowAction.class, - io.temporal.omes.KitchenSink.CancelWorkflowAction.Builder.class); + io.temporal.omes.KitchenSink.CancelWorkflowAction.class, io.temporal.omes.KitchenSink.CancelWorkflowAction.Builder.class); } // Construct using io.temporal.omes.KitchenSink.CancelWorkflowAction.newBuilder() - private Builder() {} + private Builder() { - private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); } + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } @java.lang.Override public Builder clear() { super.clear(); @@ -34464,9 +32463,9 @@ public Builder clear() { } @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_CancelWorkflowAction_descriptor; + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_CancelWorkflowAction_descriptor; } @java.lang.Override @@ -34485,11 +32484,8 @@ public io.temporal.omes.KitchenSink.CancelWorkflowAction build() { @java.lang.Override public io.temporal.omes.KitchenSink.CancelWorkflowAction buildPartial() { - io.temporal.omes.KitchenSink.CancelWorkflowAction result = - new io.temporal.omes.KitchenSink.CancelWorkflowAction(this); - if (bitField0_ != 0) { - buildPartial0(result); - } + io.temporal.omes.KitchenSink.CancelWorkflowAction result = new io.temporal.omes.KitchenSink.CancelWorkflowAction(this); + if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } @@ -34508,41 +32504,38 @@ private void buildPartial0(io.temporal.omes.KitchenSink.CancelWorkflowAction res public Builder clone() { return super.clone(); } - @java.lang.Override public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.setField(field, value); } - @java.lang.Override - public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } - @java.lang.Override - public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } - @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, - int index, - java.lang.Object value) { + int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } - @java.lang.Override public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.addRepeatedField(field, value); } - @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.temporal.omes.KitchenSink.CancelWorkflowAction) { - return mergeFrom((io.temporal.omes.KitchenSink.CancelWorkflowAction) other); + return mergeFrom((io.temporal.omes.KitchenSink.CancelWorkflowAction)other); } else { super.mergeFrom(other); return this; @@ -34550,8 +32543,7 @@ public Builder mergeFrom(com.google.protobuf.Message other) { } public Builder mergeFrom(io.temporal.omes.KitchenSink.CancelWorkflowAction other) { - if (other == io.temporal.omes.KitchenSink.CancelWorkflowAction.getDefaultInstance()) - return this; + if (other == io.temporal.omes.KitchenSink.CancelWorkflowAction.getDefaultInstance()) return this; if (!other.getWorkflowId().isEmpty()) { workflowId_ = other.workflowId_; bitField0_ |= 0x00000001; @@ -34588,25 +32580,22 @@ public Builder mergeFrom( case 0: done = true; break; - case 10: - { - workflowId_ = input.readStringRequireUtf8(); - bitField0_ |= 0x00000001; - break; - } // case 10 - case 18: - { - runId_ = input.readStringRequireUtf8(); - bitField0_ |= 0x00000002; - break; - } // case 18 - default: - { - if (!super.parseUnknownField(input, extensionRegistry, tag)) { - done = true; // was an endgroup tag - } - break; - } // default: + case 10: { + workflowId_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: { + runId_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000002; + break; + } // case 18 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -34616,19 +32605,18 @@ public Builder mergeFrom( } // finally return this; } - private int bitField0_; private java.lang.Object workflowId_ = ""; /** * string workflow_id = 1; - * * @return The workflowId. */ public java.lang.String getWorkflowId() { java.lang.Object ref = workflowId_; if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); workflowId_ = s; return s; @@ -34638,14 +32626,15 @@ public java.lang.String getWorkflowId() { } /** * string workflow_id = 1; - * * @return The bytes for workflowId. */ - public com.google.protobuf.ByteString getWorkflowIdBytes() { + public com.google.protobuf.ByteString + getWorkflowIdBytes() { java.lang.Object ref = workflowId_; if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); workflowId_ = b; return b; } else { @@ -34654,14 +32643,12 @@ public com.google.protobuf.ByteString getWorkflowIdBytes() { } /** * string workflow_id = 1; - * * @param value The workflowId to set. * @return This builder for chaining. */ - public Builder setWorkflowId(java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setWorkflowId( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } workflowId_ = value; bitField0_ |= 0x00000001; onChanged(); @@ -34669,7 +32656,6 @@ public Builder setWorkflowId(java.lang.String value) { } /** * string workflow_id = 1; - * * @return This builder for chaining. */ public Builder clearWorkflowId() { @@ -34680,14 +32666,12 @@ public Builder clearWorkflowId() { } /** * string workflow_id = 1; - * * @param value The bytes for workflowId to set. * @return This builder for chaining. */ - public Builder setWorkflowIdBytes(com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setWorkflowIdBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); workflowId_ = value; bitField0_ |= 0x00000001; @@ -34698,13 +32682,13 @@ public Builder setWorkflowIdBytes(com.google.protobuf.ByteString value) { private java.lang.Object runId_ = ""; /** * string run_id = 2; - * * @return The runId. */ public java.lang.String getRunId() { java.lang.Object ref = runId_; if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); runId_ = s; return s; @@ -34714,14 +32698,15 @@ public java.lang.String getRunId() { } /** * string run_id = 2; - * * @return The bytes for runId. */ - public com.google.protobuf.ByteString getRunIdBytes() { + public com.google.protobuf.ByteString + getRunIdBytes() { java.lang.Object ref = runId_; if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); runId_ = b; return b; } else { @@ -34730,14 +32715,12 @@ public com.google.protobuf.ByteString getRunIdBytes() { } /** * string run_id = 2; - * * @param value The runId to set. * @return This builder for chaining. */ - public Builder setRunId(java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setRunId( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } runId_ = value; bitField0_ |= 0x00000002; onChanged(); @@ -34745,7 +32728,6 @@ public Builder setRunId(java.lang.String value) { } /** * string run_id = 2; - * * @return This builder for chaining. */ public Builder clearRunId() { @@ -34756,21 +32738,18 @@ public Builder clearRunId() { } /** * string run_id = 2; - * * @param value The bytes for runId to set. * @return This builder for chaining. */ - public Builder setRunIdBytes(com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setRunIdBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); runId_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } - @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -34783,12 +32762,12 @@ public final Builder mergeUnknownFields( return super.mergeUnknownFields(unknownFields); } + // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.CancelWorkflowAction) } // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.CancelWorkflowAction) private static final io.temporal.omes.KitchenSink.CancelWorkflowAction DEFAULT_INSTANCE; - static { DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.CancelWorkflowAction(); } @@ -34797,28 +32776,27 @@ public static io.temporal.omes.KitchenSink.CancelWorkflowAction getDefaultInstan return DEFAULT_INSTANCE; } - private static final com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser() { - @java.lang.Override - public CancelWorkflowAction parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException() - .setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public CancelWorkflowAction parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; public static com.google.protobuf.Parser parser() { return PARSER; @@ -34833,16 +32811,14 @@ public com.google.protobuf.Parser getParserForType() { public io.temporal.omes.KitchenSink.CancelWorkflowAction getDefaultInstanceForType() { return DEFAULT_INSTANCE; } + } - public interface SetPatchMarkerActionOrBuilder - extends + public interface SetPatchMarkerActionOrBuilder extends // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.SetPatchMarkerAction) com.google.protobuf.MessageOrBuilder { /** - * - * *
      * A user-chosen identifier for this patch. If the same identifier is used in multiple places in
      * the code, those places are considered to be versioned as one unit. IE: The check call will
@@ -34850,13 +32826,10 @@ public interface SetPatchMarkerActionOrBuilder
      * 
* * string patch_id = 1; - * * @return The patchId. */ java.lang.String getPatchId(); /** - * - * *
      * A user-chosen identifier for this patch. If the same identifier is used in multiple places in
      * the code, those places are considered to be versioned as one unit. IE: The check call will
@@ -34864,14 +32837,12 @@ public interface SetPatchMarkerActionOrBuilder
      * 
* * string patch_id = 1; - * * @return The bytes for patchId. */ - com.google.protobuf.ByteString getPatchIdBytes(); + com.google.protobuf.ByteString + getPatchIdBytes(); /** - * - * *
      * TODO Not sure how we could use this in these tests
      * Can be set to true to indicate that branches using this change are being removed, and all
@@ -34879,38 +32850,29 @@ public interface SetPatchMarkerActionOrBuilder
      * 
* * bool deprecated = 2; - * * @return The deprecated. */ boolean getDeprecated(); /** - * - * *
      * Perform this action behind the if guard
      * 
* * .temporal.omes.kitchen_sink.Action inner_action = 3; - * * @return Whether the innerAction field is set. */ boolean hasInnerAction(); /** - * - * *
      * Perform this action behind the if guard
      * 
* * .temporal.omes.kitchen_sink.Action inner_action = 3; - * * @return The innerAction. */ io.temporal.omes.KitchenSink.Action getInnerAction(); /** - * - * *
      * Perform this action behind the if guard
      * 
@@ -34920,8 +32882,6 @@ public interface SetPatchMarkerActionOrBuilder io.temporal.omes.KitchenSink.ActionOrBuilder getInnerActionOrBuilder(); } /** - * - * *
    * patched or getVersion API
    * For getVersion SDKs, use `DEFAULT_VERSION, 1` as the numeric arguments,
@@ -34929,49 +32889,44 @@ public interface SetPatchMarkerActionOrBuilder
    *
    * Protobuf type {@code temporal.omes.kitchen_sink.SetPatchMarkerAction}
    */
-  public static final class SetPatchMarkerAction extends com.google.protobuf.GeneratedMessageV3
-      implements
+  public static final class SetPatchMarkerAction extends
+      com.google.protobuf.GeneratedMessageV3 implements
       // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.SetPatchMarkerAction)
       SetPatchMarkerActionOrBuilder {
-    private static final long serialVersionUID = 0L;
+  private static final long serialVersionUID = 0L;
     // Use SetPatchMarkerAction.newBuilder() to construct.
     private SetPatchMarkerAction(com.google.protobuf.GeneratedMessageV3.Builder builder) {
       super(builder);
     }
-
     private SetPatchMarkerAction() {
       patchId_ = "";
     }
 
     @java.lang.Override
     @SuppressWarnings({"unused"})
-    protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
+    protected java.lang.Object newInstance(
+        UnusedPrivateParameter unused) {
       return new SetPatchMarkerAction();
     }
 
-    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
-      return io.temporal.omes.KitchenSink
-          .internal_static_temporal_omes_kitchen_sink_SetPatchMarkerAction_descriptor;
+    public static final com.google.protobuf.Descriptors.Descriptor
+        getDescriptor() {
+      return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_SetPatchMarkerAction_descriptor;
     }
 
     @java.lang.Override
     protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
         internalGetFieldAccessorTable() {
-      return io.temporal.omes.KitchenSink
-          .internal_static_temporal_omes_kitchen_sink_SetPatchMarkerAction_fieldAccessorTable
+      return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_SetPatchMarkerAction_fieldAccessorTable
           .ensureFieldAccessorsInitialized(
-              io.temporal.omes.KitchenSink.SetPatchMarkerAction.class,
-              io.temporal.omes.KitchenSink.SetPatchMarkerAction.Builder.class);
+              io.temporal.omes.KitchenSink.SetPatchMarkerAction.class, io.temporal.omes.KitchenSink.SetPatchMarkerAction.Builder.class);
     }
 
     private int bitField0_;
     public static final int PATCH_ID_FIELD_NUMBER = 1;
-
     @SuppressWarnings("serial")
     private volatile java.lang.Object patchId_ = "";
     /**
-     *
-     *
      * 
      * A user-chosen identifier for this patch. If the same identifier is used in multiple places in
      * the code, those places are considered to be versioned as one unit. IE: The check call will
@@ -34979,7 +32934,6 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
      * 
* * string patch_id = 1; - * * @return The patchId. */ @java.lang.Override @@ -34988,15 +32942,14 @@ public java.lang.String getPatchId() { if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); patchId_ = s; return s; } } /** - * - * *
      * A user-chosen identifier for this patch. If the same identifier is used in multiple places in
      * the code, those places are considered to be versioned as one unit. IE: The check call will
@@ -35004,15 +32957,16 @@ public java.lang.String getPatchId() {
      * 
* * string patch_id = 1; - * * @return The bytes for patchId. */ @java.lang.Override - public com.google.protobuf.ByteString getPatchIdBytes() { + public com.google.protobuf.ByteString + getPatchIdBytes() { java.lang.Object ref = patchId_; if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); patchId_ = b; return b; } else { @@ -35023,8 +32977,6 @@ public com.google.protobuf.ByteString getPatchIdBytes() { public static final int DEPRECATED_FIELD_NUMBER = 2; private boolean deprecated_ = false; /** - * - * *
      * TODO Not sure how we could use this in these tests
      * Can be set to true to indicate that branches using this change are being removed, and all
@@ -35032,7 +32984,6 @@ public com.google.protobuf.ByteString getPatchIdBytes() {
      * 
* * bool deprecated = 2; - * * @return The deprecated. */ @java.lang.Override @@ -35043,14 +32994,11 @@ public boolean getDeprecated() { public static final int INNER_ACTION_FIELD_NUMBER = 3; private io.temporal.omes.KitchenSink.Action innerAction_; /** - * - * *
      * Perform this action behind the if guard
      * 
* * .temporal.omes.kitchen_sink.Action inner_action = 3; - * * @return Whether the innerAction field is set. */ @java.lang.Override @@ -35058,25 +33006,18 @@ public boolean hasInnerAction() { return ((bitField0_ & 0x00000001) != 0); } /** - * - * *
      * Perform this action behind the if guard
      * 
* * .temporal.omes.kitchen_sink.Action inner_action = 3; - * * @return The innerAction. */ @java.lang.Override public io.temporal.omes.KitchenSink.Action getInnerAction() { - return innerAction_ == null - ? io.temporal.omes.KitchenSink.Action.getDefaultInstance() - : innerAction_; + return innerAction_ == null ? io.temporal.omes.KitchenSink.Action.getDefaultInstance() : innerAction_; } /** - * - * *
      * Perform this action behind the if guard
      * 
@@ -35085,13 +33026,10 @@ public io.temporal.omes.KitchenSink.Action getInnerAction() { */ @java.lang.Override public io.temporal.omes.KitchenSink.ActionOrBuilder getInnerActionOrBuilder() { - return innerAction_ == null - ? io.temporal.omes.KitchenSink.Action.getDefaultInstance() - : innerAction_; + return innerAction_ == null ? io.temporal.omes.KitchenSink.Action.getDefaultInstance() : innerAction_; } private byte memoizedIsInitialized = -1; - @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; @@ -35103,7 +33041,8 @@ public final boolean isInitialized() { } @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(patchId_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, patchId_); } @@ -35126,10 +33065,12 @@ public int getSerializedSize() { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, patchId_); } if (deprecated_ != false) { - size += com.google.protobuf.CodedOutputStream.computeBoolSize(2, deprecated_); + size += com.google.protobuf.CodedOutputStream + .computeBoolSize(2, deprecated_); } if (((bitField0_ & 0x00000001) != 0)) { - size += com.google.protobuf.CodedOutputStream.computeMessageSize(3, getInnerAction()); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(3, getInnerAction()); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; @@ -35139,19 +33080,21 @@ public int getSerializedSize() { @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { - return true; + return true; } if (!(obj instanceof io.temporal.omes.KitchenSink.SetPatchMarkerAction)) { return super.equals(obj); } - io.temporal.omes.KitchenSink.SetPatchMarkerAction other = - (io.temporal.omes.KitchenSink.SetPatchMarkerAction) obj; + io.temporal.omes.KitchenSink.SetPatchMarkerAction other = (io.temporal.omes.KitchenSink.SetPatchMarkerAction) obj; - if (!getPatchId().equals(other.getPatchId())) return false; - if (getDeprecated() != other.getDeprecated()) return false; + if (!getPatchId() + .equals(other.getPatchId())) return false; + if (getDeprecated() + != other.getDeprecated()) return false; if (hasInnerAction() != other.hasInnerAction()) return false; if (hasInnerAction()) { - if (!getInnerAction().equals(other.getInnerAction())) return false; + if (!getInnerAction() + .equals(other.getInnerAction())) return false; } if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; @@ -35167,7 +33110,8 @@ public int hashCode() { hash = (37 * hash) + PATCH_ID_FIELD_NUMBER; hash = (53 * hash) + getPatchId().hashCode(); hash = (37 * hash) + DEPRECATED_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getDeprecated()); + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( + getDeprecated()); if (hasInnerAction()) { hash = (37 * hash) + INNER_ACTION_FIELD_NUMBER; hash = (53 * hash) + getInnerAction().hashCode(); @@ -35178,93 +33122,89 @@ public int hashCode() { } public static io.temporal.omes.KitchenSink.SetPatchMarkerAction parseFrom( - java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.SetPatchMarkerAction parseFrom( - java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.SetPatchMarkerAction parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.SetPatchMarkerAction parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.SetPatchMarkerAction parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.SetPatchMarkerAction parseFrom( - byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - - public static io.temporal.omes.KitchenSink.SetPatchMarkerAction parseFrom( - java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + public static io.temporal.omes.KitchenSink.SetPatchMarkerAction parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.SetPatchMarkerAction parseFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.SetPatchMarkerAction parseDelimitedFrom( - java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + public static io.temporal.omes.KitchenSink.SetPatchMarkerAction parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); } public static io.temporal.omes.KitchenSink.SetPatchMarkerAction parseDelimitedFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.SetPatchMarkerAction parseFrom( - com.google.protobuf.CodedInputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.SetPatchMarkerAction parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override - public Builder newBuilderForType() { - return newBuilder(); - } - + public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(io.temporal.omes.KitchenSink.SetPatchMarkerAction prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } - @java.lang.Override public Builder toBuilder() { - return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override @@ -35274,8 +33214,6 @@ protected Builder newBuilderForType( return builder; } /** - * - * *
      * patched or getVersion API
      * For getVersion SDKs, use `DEFAULT_VERSION, 1` as the numeric arguments,
@@ -35283,24 +33221,21 @@ protected Builder newBuilderForType(
      *
      * Protobuf type {@code temporal.omes.kitchen_sink.SetPatchMarkerAction}
      */
-    public static final class Builder
-        extends com.google.protobuf.GeneratedMessageV3.Builder
-        implements
+    public static final class Builder extends
+        com.google.protobuf.GeneratedMessageV3.Builder implements
         // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.SetPatchMarkerAction)
         io.temporal.omes.KitchenSink.SetPatchMarkerActionOrBuilder {
-      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_SetPatchMarkerAction_descriptor;
+      public static final com.google.protobuf.Descriptors.Descriptor
+          getDescriptor() {
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_SetPatchMarkerAction_descriptor;
       }
 
       @java.lang.Override
       protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
           internalGetFieldAccessorTable() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_SetPatchMarkerAction_fieldAccessorTable
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_SetPatchMarkerAction_fieldAccessorTable
             .ensureFieldAccessorsInitialized(
-                io.temporal.omes.KitchenSink.SetPatchMarkerAction.class,
-                io.temporal.omes.KitchenSink.SetPatchMarkerAction.Builder.class);
+                io.temporal.omes.KitchenSink.SetPatchMarkerAction.class, io.temporal.omes.KitchenSink.SetPatchMarkerAction.Builder.class);
       }
 
       // Construct using io.temporal.omes.KitchenSink.SetPatchMarkerAction.newBuilder()
@@ -35308,17 +33243,17 @@ private Builder() {
         maybeForceBuilderInitialization();
       }
 
-      private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
+      private Builder(
+          com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
         super(parent);
         maybeForceBuilderInitialization();
       }
-
       private void maybeForceBuilderInitialization() {
-        if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
+        if (com.google.protobuf.GeneratedMessageV3
+                .alwaysUseFieldBuilders) {
           getInnerActionFieldBuilder();
         }
       }
-
       @java.lang.Override
       public Builder clear() {
         super.clear();
@@ -35334,9 +33269,9 @@ public Builder clear() {
       }
 
       @java.lang.Override
-      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_SetPatchMarkerAction_descriptor;
+      public com.google.protobuf.Descriptors.Descriptor
+          getDescriptorForType() {
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_SetPatchMarkerAction_descriptor;
       }
 
       @java.lang.Override
@@ -35355,11 +33290,8 @@ public io.temporal.omes.KitchenSink.SetPatchMarkerAction build() {
 
       @java.lang.Override
       public io.temporal.omes.KitchenSink.SetPatchMarkerAction buildPartial() {
-        io.temporal.omes.KitchenSink.SetPatchMarkerAction result =
-            new io.temporal.omes.KitchenSink.SetPatchMarkerAction(this);
-        if (bitField0_ != 0) {
-          buildPartial0(result);
-        }
+        io.temporal.omes.KitchenSink.SetPatchMarkerAction result = new io.temporal.omes.KitchenSink.SetPatchMarkerAction(this);
+        if (bitField0_ != 0) { buildPartial0(result); }
         onBuilt();
         return result;
       }
@@ -35374,8 +33306,9 @@ private void buildPartial0(io.temporal.omes.KitchenSink.SetPatchMarkerAction res
         }
         int to_bitField0_ = 0;
         if (((from_bitField0_ & 0x00000004) != 0)) {
-          result.innerAction_ =
-              innerActionBuilder_ == null ? innerAction_ : innerActionBuilder_.build();
+          result.innerAction_ = innerActionBuilder_ == null
+              ? innerAction_
+              : innerActionBuilder_.build();
           to_bitField0_ |= 0x00000001;
         }
         result.bitField0_ |= to_bitField0_;
@@ -35385,41 +33318,38 @@ private void buildPartial0(io.temporal.omes.KitchenSink.SetPatchMarkerAction res
       public Builder clone() {
         return super.clone();
       }
-
       @java.lang.Override
       public Builder setField(
-          com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
+          com.google.protobuf.Descriptors.FieldDescriptor field,
+          java.lang.Object value) {
         return super.setField(field, value);
       }
-
       @java.lang.Override
-      public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
+      public Builder clearField(
+          com.google.protobuf.Descriptors.FieldDescriptor field) {
         return super.clearField(field);
       }
-
       @java.lang.Override
-      public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
+      public Builder clearOneof(
+          com.google.protobuf.Descriptors.OneofDescriptor oneof) {
         return super.clearOneof(oneof);
       }
-
       @java.lang.Override
       public Builder setRepeatedField(
           com.google.protobuf.Descriptors.FieldDescriptor field,
-          int index,
-          java.lang.Object value) {
+          int index, java.lang.Object value) {
         return super.setRepeatedField(field, index, value);
       }
-
       @java.lang.Override
       public Builder addRepeatedField(
-          com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
+          com.google.protobuf.Descriptors.FieldDescriptor field,
+          java.lang.Object value) {
         return super.addRepeatedField(field, value);
       }
-
       @java.lang.Override
       public Builder mergeFrom(com.google.protobuf.Message other) {
         if (other instanceof io.temporal.omes.KitchenSink.SetPatchMarkerAction) {
-          return mergeFrom((io.temporal.omes.KitchenSink.SetPatchMarkerAction) other);
+          return mergeFrom((io.temporal.omes.KitchenSink.SetPatchMarkerAction)other);
         } else {
           super.mergeFrom(other);
           return this;
@@ -35427,8 +33357,7 @@ public Builder mergeFrom(com.google.protobuf.Message other) {
       }
 
       public Builder mergeFrom(io.temporal.omes.KitchenSink.SetPatchMarkerAction other) {
-        if (other == io.temporal.omes.KitchenSink.SetPatchMarkerAction.getDefaultInstance())
-          return this;
+        if (other == io.temporal.omes.KitchenSink.SetPatchMarkerAction.getDefaultInstance()) return this;
         if (!other.getPatchId().isEmpty()) {
           patchId_ = other.patchId_;
           bitField0_ |= 0x00000001;
@@ -35466,31 +33395,29 @@ public Builder mergeFrom(
               case 0:
                 done = true;
                 break;
-              case 10:
-                {
-                  patchId_ = input.readStringRequireUtf8();
-                  bitField0_ |= 0x00000001;
-                  break;
-                } // case 10
-              case 16:
-                {
-                  deprecated_ = input.readBool();
-                  bitField0_ |= 0x00000002;
-                  break;
-                } // case 16
-              case 26:
-                {
-                  input.readMessage(getInnerActionFieldBuilder().getBuilder(), extensionRegistry);
-                  bitField0_ |= 0x00000004;
-                  break;
-                } // case 26
-              default:
-                {
-                  if (!super.parseUnknownField(input, extensionRegistry, tag)) {
-                    done = true; // was an endgroup tag
-                  }
-                  break;
-                } // default:
+              case 10: {
+                patchId_ = input.readStringRequireUtf8();
+                bitField0_ |= 0x00000001;
+                break;
+              } // case 10
+              case 16: {
+                deprecated_ = input.readBool();
+                bitField0_ |= 0x00000002;
+                break;
+              } // case 16
+              case 26: {
+                input.readMessage(
+                    getInnerActionFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                bitField0_ |= 0x00000004;
+                break;
+              } // case 26
+              default: {
+                if (!super.parseUnknownField(input, extensionRegistry, tag)) {
+                  done = true; // was an endgroup tag
+                }
+                break;
+              } // default:
             } // switch (tag)
           } // while (!done)
         } catch (com.google.protobuf.InvalidProtocolBufferException e) {
@@ -35500,13 +33427,10 @@ public Builder mergeFrom(
         } // finally
         return this;
       }
-
       private int bitField0_;
 
       private java.lang.Object patchId_ = "";
       /**
-       *
-       *
        * 
        * A user-chosen identifier for this patch. If the same identifier is used in multiple places in
        * the code, those places are considered to be versioned as one unit. IE: The check call will
@@ -35514,13 +33438,13 @@ public Builder mergeFrom(
        * 
* * string patch_id = 1; - * * @return The patchId. */ public java.lang.String getPatchId() { java.lang.Object ref = patchId_; if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); patchId_ = s; return s; @@ -35529,8 +33453,6 @@ public java.lang.String getPatchId() { } } /** - * - * *
        * A user-chosen identifier for this patch. If the same identifier is used in multiple places in
        * the code, those places are considered to be versioned as one unit. IE: The check call will
@@ -35538,14 +33460,15 @@ public java.lang.String getPatchId() {
        * 
* * string patch_id = 1; - * * @return The bytes for patchId. */ - public com.google.protobuf.ByteString getPatchIdBytes() { + public com.google.protobuf.ByteString + getPatchIdBytes() { java.lang.Object ref = patchId_; if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); patchId_ = b; return b; } else { @@ -35553,8 +33476,6 @@ public com.google.protobuf.ByteString getPatchIdBytes() { } } /** - * - * *
        * A user-chosen identifier for this patch. If the same identifier is used in multiple places in
        * the code, those places are considered to be versioned as one unit. IE: The check call will
@@ -35562,22 +33483,18 @@ public com.google.protobuf.ByteString getPatchIdBytes() {
        * 
* * string patch_id = 1; - * * @param value The patchId to set. * @return This builder for chaining. */ - public Builder setPatchId(java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setPatchId( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } patchId_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** - * - * *
        * A user-chosen identifier for this patch. If the same identifier is used in multiple places in
        * the code, those places are considered to be versioned as one unit. IE: The check call will
@@ -35585,7 +33502,6 @@ public Builder setPatchId(java.lang.String value) {
        * 
* * string patch_id = 1; - * * @return This builder for chaining. */ public Builder clearPatchId() { @@ -35595,8 +33511,6 @@ public Builder clearPatchId() { return this; } /** - * - * *
        * A user-chosen identifier for this patch. If the same identifier is used in multiple places in
        * the code, those places are considered to be versioned as one unit. IE: The check call will
@@ -35604,14 +33518,12 @@ public Builder clearPatchId() {
        * 
* * string patch_id = 1; - * * @param value The bytes for patchId to set. * @return This builder for chaining. */ - public Builder setPatchIdBytes(com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setPatchIdBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); patchId_ = value; bitField0_ |= 0x00000001; @@ -35619,10 +33531,8 @@ public Builder setPatchIdBytes(com.google.protobuf.ByteString value) { return this; } - private boolean deprecated_; + private boolean deprecated_ ; /** - * - * *
        * TODO Not sure how we could use this in these tests
        * Can be set to true to indicate that branches using this change are being removed, and all
@@ -35630,7 +33540,6 @@ public Builder setPatchIdBytes(com.google.protobuf.ByteString value) {
        * 
* * bool deprecated = 2; - * * @return The deprecated. */ @java.lang.Override @@ -35638,8 +33547,6 @@ public boolean getDeprecated() { return deprecated_; } /** - * - * *
        * TODO Not sure how we could use this in these tests
        * Can be set to true to indicate that branches using this change are being removed, and all
@@ -35647,7 +33554,6 @@ public boolean getDeprecated() {
        * 
* * bool deprecated = 2; - * * @param value The deprecated to set. * @return This builder for chaining. */ @@ -35659,8 +33565,6 @@ public Builder setDeprecated(boolean value) { return this; } /** - * - * *
        * TODO Not sure how we could use this in these tests
        * Can be set to true to indicate that branches using this change are being removed, and all
@@ -35668,7 +33572,6 @@ public Builder setDeprecated(boolean value) {
        * 
* * bool deprecated = 2; - * * @return This builder for chaining. */ public Builder clearDeprecated() { @@ -35680,47 +33583,34 @@ public Builder clearDeprecated() { private io.temporal.omes.KitchenSink.Action innerAction_; private com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.Action, - io.temporal.omes.KitchenSink.Action.Builder, - io.temporal.omes.KitchenSink.ActionOrBuilder> - innerActionBuilder_; + io.temporal.omes.KitchenSink.Action, io.temporal.omes.KitchenSink.Action.Builder, io.temporal.omes.KitchenSink.ActionOrBuilder> innerActionBuilder_; /** - * - * *
        * Perform this action behind the if guard
        * 
* * .temporal.omes.kitchen_sink.Action inner_action = 3; - * * @return Whether the innerAction field is set. */ public boolean hasInnerAction() { return ((bitField0_ & 0x00000004) != 0); } /** - * - * *
        * Perform this action behind the if guard
        * 
* * .temporal.omes.kitchen_sink.Action inner_action = 3; - * * @return The innerAction. */ public io.temporal.omes.KitchenSink.Action getInnerAction() { if (innerActionBuilder_ == null) { - return innerAction_ == null - ? io.temporal.omes.KitchenSink.Action.getDefaultInstance() - : innerAction_; + return innerAction_ == null ? io.temporal.omes.KitchenSink.Action.getDefaultInstance() : innerAction_; } else { return innerActionBuilder_.getMessage(); } } /** - * - * *
        * Perform this action behind the if guard
        * 
@@ -35741,15 +33631,14 @@ public Builder setInnerAction(io.temporal.omes.KitchenSink.Action value) { return this; } /** - * - * *
        * Perform this action behind the if guard
        * 
* * .temporal.omes.kitchen_sink.Action inner_action = 3; */ - public Builder setInnerAction(io.temporal.omes.KitchenSink.Action.Builder builderForValue) { + public Builder setInnerAction( + io.temporal.omes.KitchenSink.Action.Builder builderForValue) { if (innerActionBuilder_ == null) { innerAction_ = builderForValue.build(); } else { @@ -35760,8 +33649,6 @@ public Builder setInnerAction(io.temporal.omes.KitchenSink.Action.Builder builde return this; } /** - * - * *
        * Perform this action behind the if guard
        * 
@@ -35770,9 +33657,9 @@ public Builder setInnerAction(io.temporal.omes.KitchenSink.Action.Builder builde */ public Builder mergeInnerAction(io.temporal.omes.KitchenSink.Action value) { if (innerActionBuilder_ == null) { - if (((bitField0_ & 0x00000004) != 0) - && innerAction_ != null - && innerAction_ != io.temporal.omes.KitchenSink.Action.getDefaultInstance()) { + if (((bitField0_ & 0x00000004) != 0) && + innerAction_ != null && + innerAction_ != io.temporal.omes.KitchenSink.Action.getDefaultInstance()) { getInnerActionBuilder().mergeFrom(value); } else { innerAction_ = value; @@ -35787,8 +33674,6 @@ public Builder mergeInnerAction(io.temporal.omes.KitchenSink.Action value) { return this; } /** - * - * *
        * Perform this action behind the if guard
        * 
@@ -35806,8 +33691,6 @@ public Builder clearInnerAction() { return this; } /** - * - * *
        * Perform this action behind the if guard
        * 
@@ -35820,8 +33703,6 @@ public io.temporal.omes.KitchenSink.Action.Builder getInnerActionBuilder() { return getInnerActionFieldBuilder().getBuilder(); } /** - * - * *
        * Perform this action behind the if guard
        * 
@@ -35832,14 +33713,11 @@ public io.temporal.omes.KitchenSink.ActionOrBuilder getInnerActionOrBuilder() { if (innerActionBuilder_ != null) { return innerActionBuilder_.getMessageOrBuilder(); } else { - return innerAction_ == null - ? io.temporal.omes.KitchenSink.Action.getDefaultInstance() - : innerAction_; + return innerAction_ == null ? + io.temporal.omes.KitchenSink.Action.getDefaultInstance() : innerAction_; } } /** - * - * *
        * Perform this action behind the if guard
        * 
@@ -35847,22 +33725,18 @@ public io.temporal.omes.KitchenSink.ActionOrBuilder getInnerActionOrBuilder() { * .temporal.omes.kitchen_sink.Action inner_action = 3; */ private com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.Action, - io.temporal.omes.KitchenSink.Action.Builder, - io.temporal.omes.KitchenSink.ActionOrBuilder> + io.temporal.omes.KitchenSink.Action, io.temporal.omes.KitchenSink.Action.Builder, io.temporal.omes.KitchenSink.ActionOrBuilder> getInnerActionFieldBuilder() { if (innerActionBuilder_ == null) { - innerActionBuilder_ = - new com.google.protobuf.SingleFieldBuilderV3< - io.temporal.omes.KitchenSink.Action, - io.temporal.omes.KitchenSink.Action.Builder, - io.temporal.omes.KitchenSink.ActionOrBuilder>( - getInnerAction(), getParentForChildren(), isClean()); + innerActionBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + io.temporal.omes.KitchenSink.Action, io.temporal.omes.KitchenSink.Action.Builder, io.temporal.omes.KitchenSink.ActionOrBuilder>( + getInnerAction(), + getParentForChildren(), + isClean()); innerAction_ = null; } return innerActionBuilder_; } - @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -35875,12 +33749,12 @@ public final Builder mergeUnknownFields( return super.mergeUnknownFields(unknownFields); } + // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.SetPatchMarkerAction) } // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.SetPatchMarkerAction) private static final io.temporal.omes.KitchenSink.SetPatchMarkerAction DEFAULT_INSTANCE; - static { DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.SetPatchMarkerAction(); } @@ -35889,28 +33763,27 @@ public static io.temporal.omes.KitchenSink.SetPatchMarkerAction getDefaultInstan return DEFAULT_INSTANCE; } - private static final com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser() { - @java.lang.Override - public SetPatchMarkerAction parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException() - .setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public SetPatchMarkerAction parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; public static com.google.protobuf.Parser parser() { return PARSER; @@ -35925,16 +33798,14 @@ public com.google.protobuf.Parser getParserForType() { public io.temporal.omes.KitchenSink.SetPatchMarkerAction getDefaultInstanceForType() { return DEFAULT_INSTANCE; } + } - public interface UpsertSearchAttributesActionOrBuilder - extends + public interface UpsertSearchAttributesActionOrBuilder extends // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.UpsertSearchAttributesAction) com.google.protobuf.MessageOrBuilder { /** - * - * *
      * SearchAttributes fields - equivalent to indexed_fields on api. Key = search index, Value =
      * value
@@ -35944,8 +33815,6 @@ public interface UpsertSearchAttributesActionOrBuilder
      */
     int getSearchAttributesCount();
     /**
-     *
-     *
      * 
      * SearchAttributes fields - equivalent to indexed_fields on api. Key = search index, Value =
      * value
@@ -35953,13 +33822,15 @@ public interface UpsertSearchAttributesActionOrBuilder
      *
      * map<string, .temporal.api.common.v1.Payload> search_attributes = 1;
      */
-    boolean containsSearchAttributes(java.lang.String key);
-    /** Use {@link #getSearchAttributesMap()} instead. */
+    boolean containsSearchAttributes(
+        java.lang.String key);
+    /**
+     * Use {@link #getSearchAttributesMap()} instead.
+     */
     @java.lang.Deprecated
-    java.util.Map getSearchAttributes();
+    java.util.Map
+    getSearchAttributes();
     /**
-     *
-     *
      * 
      * SearchAttributes fields - equivalent to indexed_fields on api. Key = search index, Value =
      * value
@@ -35967,10 +33838,9 @@ public interface UpsertSearchAttributesActionOrBuilder
      *
      * map<string, .temporal.api.common.v1.Payload> search_attributes = 1;
      */
-    java.util.Map getSearchAttributesMap();
+    java.util.Map
+    getSearchAttributesMap();
     /**
-     *
-     *
      * 
      * SearchAttributes fields - equivalent to indexed_fields on api. Key = search index, Value =
      * value
@@ -35979,13 +33849,11 @@ public interface UpsertSearchAttributesActionOrBuilder
      * map<string, .temporal.api.common.v1.Payload> search_attributes = 1;
      */
     /* nullable */
-    io.temporal.api.common.v1.Payload getSearchAttributesOrDefault(
+io.temporal.api.common.v1.Payload getSearchAttributesOrDefault(
         java.lang.String key,
         /* nullable */
-        io.temporal.api.common.v1.Payload defaultValue);
+io.temporal.api.common.v1.Payload defaultValue);
     /**
-     *
-     *
      * 
      * SearchAttributes fields - equivalent to indexed_fields on api. Key = search index, Value =
      * value
@@ -35993,32 +33861,34 @@ io.temporal.api.common.v1.Payload getSearchAttributesOrDefault(
      *
      * map<string, .temporal.api.common.v1.Payload> search_attributes = 1;
      */
-    io.temporal.api.common.v1.Payload getSearchAttributesOrThrow(java.lang.String key);
+    io.temporal.api.common.v1.Payload getSearchAttributesOrThrow(
+        java.lang.String key);
   }
-  /** Protobuf type {@code temporal.omes.kitchen_sink.UpsertSearchAttributesAction} */
-  public static final class UpsertSearchAttributesAction
-      extends com.google.protobuf.GeneratedMessageV3
-      implements
+  /**
+   * Protobuf type {@code temporal.omes.kitchen_sink.UpsertSearchAttributesAction}
+   */
+  public static final class UpsertSearchAttributesAction extends
+      com.google.protobuf.GeneratedMessageV3 implements
       // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.UpsertSearchAttributesAction)
       UpsertSearchAttributesActionOrBuilder {
-    private static final long serialVersionUID = 0L;
+  private static final long serialVersionUID = 0L;
     // Use UpsertSearchAttributesAction.newBuilder() to construct.
-    private UpsertSearchAttributesAction(
-        com.google.protobuf.GeneratedMessageV3.Builder builder) {
+    private UpsertSearchAttributesAction(com.google.protobuf.GeneratedMessageV3.Builder builder) {
       super(builder);
     }
-
-    private UpsertSearchAttributesAction() {}
+    private UpsertSearchAttributesAction() {
+    }
 
     @java.lang.Override
     @SuppressWarnings({"unused"})
-    protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
+    protected java.lang.Object newInstance(
+        UnusedPrivateParameter unused) {
       return new UpsertSearchAttributesAction();
     }
 
-    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
-      return io.temporal.omes.KitchenSink
-          .internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_descriptor;
+    public static final com.google.protobuf.Descriptors.Descriptor
+        getDescriptor() {
+      return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_descriptor;
     }
 
     @SuppressWarnings({"rawtypes"})
@@ -36029,54 +33899,45 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMapFieldRefl
         case 1:
           return internalGetSearchAttributes();
         default:
-          throw new RuntimeException("Invalid map field number: " + number);
+          throw new RuntimeException(
+              "Invalid map field number: " + number);
       }
     }
-
     @java.lang.Override
     protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
         internalGetFieldAccessorTable() {
-      return io.temporal.omes.KitchenSink
-          .internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_fieldAccessorTable
+      return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_fieldAccessorTable
           .ensureFieldAccessorsInitialized(
-              io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.class,
-              io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.Builder.class);
+              io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.class, io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.Builder.class);
     }
 
     public static final int SEARCH_ATTRIBUTES_FIELD_NUMBER = 1;
-
     private static final class SearchAttributesDefaultEntryHolder {
-      static final com.google.protobuf.MapEntry
-          defaultEntry =
+      static final com.google.protobuf.MapEntry<
+          java.lang.String, io.temporal.api.common.v1.Payload> defaultEntry =
               com.google.protobuf.MapEntry
-                  .newDefaultInstance(
-                      io.temporal.omes.KitchenSink
-                          .internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_SearchAttributesEntry_descriptor,
-                      com.google.protobuf.WireFormat.FieldType.STRING,
-                      "",
-                      com.google.protobuf.WireFormat.FieldType.MESSAGE,
-                      io.temporal.api.common.v1.Payload.getDefaultInstance());
+              .newDefaultInstance(
+                  io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_SearchAttributesEntry_descriptor, 
+                  com.google.protobuf.WireFormat.FieldType.STRING,
+                  "",
+                  com.google.protobuf.WireFormat.FieldType.MESSAGE,
+                  io.temporal.api.common.v1.Payload.getDefaultInstance());
     }
-
     @SuppressWarnings("serial")
+    private com.google.protobuf.MapField<
+        java.lang.String, io.temporal.api.common.v1.Payload> searchAttributes_;
     private com.google.protobuf.MapField
-        searchAttributes_;
-
-    private com.google.protobuf.MapField
-        internalGetSearchAttributes() {
+    internalGetSearchAttributes() {
       if (searchAttributes_ == null) {
         return com.google.protobuf.MapField.emptyMapField(
             SearchAttributesDefaultEntryHolder.defaultEntry);
       }
       return searchAttributes_;
     }
-
     public int getSearchAttributesCount() {
       return internalGetSearchAttributes().getMap().size();
     }
     /**
-     *
-     *
      * 
      * SearchAttributes fields - equivalent to indexed_fields on api. Key = search index, Value =
      * value
@@ -36085,22 +33946,20 @@ public int getSearchAttributesCount() {
      * map<string, .temporal.api.common.v1.Payload> search_attributes = 1;
      */
     @java.lang.Override
-    public boolean containsSearchAttributes(java.lang.String key) {
-      if (key == null) {
-        throw new NullPointerException("map key");
-      }
+    public boolean containsSearchAttributes(
+        java.lang.String key) {
+      if (key == null) { throw new NullPointerException("map key"); }
       return internalGetSearchAttributes().getMap().containsKey(key);
     }
-    /** Use {@link #getSearchAttributesMap()} instead. */
+    /**
+     * Use {@link #getSearchAttributesMap()} instead.
+     */
     @java.lang.Override
     @java.lang.Deprecated
-    public java.util.Map
-        getSearchAttributes() {
+    public java.util.Map getSearchAttributes() {
       return getSearchAttributesMap();
     }
     /**
-     *
-     *
      * 
      * SearchAttributes fields - equivalent to indexed_fields on api. Key = search index, Value =
      * value
@@ -36109,13 +33968,10 @@ public boolean containsSearchAttributes(java.lang.String key) {
      * map<string, .temporal.api.common.v1.Payload> search_attributes = 1;
      */
     @java.lang.Override
-    public java.util.Map
-        getSearchAttributesMap() {
+    public java.util.Map getSearchAttributesMap() {
       return internalGetSearchAttributes().getMap();
     }
     /**
-     *
-     *
      * 
      * SearchAttributes fields - equivalent to indexed_fields on api. Key = search index, Value =
      * value
@@ -36124,20 +33980,17 @@ public boolean containsSearchAttributes(java.lang.String key) {
      * map<string, .temporal.api.common.v1.Payload> search_attributes = 1;
      */
     @java.lang.Override
-    public /* nullable */ io.temporal.api.common.v1.Payload getSearchAttributesOrDefault(
+    public /* nullable */
+io.temporal.api.common.v1.Payload getSearchAttributesOrDefault(
         java.lang.String key,
         /* nullable */
-        io.temporal.api.common.v1.Payload defaultValue) {
-      if (key == null) {
-        throw new NullPointerException("map key");
-      }
+io.temporal.api.common.v1.Payload defaultValue) {
+      if (key == null) { throw new NullPointerException("map key"); }
       java.util.Map map =
           internalGetSearchAttributes().getMap();
       return map.containsKey(key) ? map.get(key) : defaultValue;
     }
     /**
-     *
-     *
      * 
      * SearchAttributes fields - equivalent to indexed_fields on api. Key = search index, Value =
      * value
@@ -36146,10 +33999,9 @@ public boolean containsSearchAttributes(java.lang.String key) {
      * map<string, .temporal.api.common.v1.Payload> search_attributes = 1;
      */
     @java.lang.Override
-    public io.temporal.api.common.v1.Payload getSearchAttributesOrThrow(java.lang.String key) {
-      if (key == null) {
-        throw new NullPointerException("map key");
-      }
+    public io.temporal.api.common.v1.Payload getSearchAttributesOrThrow(
+        java.lang.String key) {
+      if (key == null) { throw new NullPointerException("map key"); }
       java.util.Map map =
           internalGetSearchAttributes().getMap();
       if (!map.containsKey(key)) {
@@ -36159,7 +34011,6 @@ public io.temporal.api.common.v1.Payload getSearchAttributesOrThrow(java.lang.St
     }
 
     private byte memoizedIsInitialized = -1;
-
     @java.lang.Override
     public final boolean isInitialized() {
       byte isInitialized = memoizedIsInitialized;
@@ -36171,8 +34022,10 @@ public final boolean isInitialized() {
     }
 
     @java.lang.Override
-    public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
-      com.google.protobuf.GeneratedMessageV3.serializeStringMapTo(
+    public void writeTo(com.google.protobuf.CodedOutputStream output)
+                        throws java.io.IOException {
+      com.google.protobuf.GeneratedMessageV3
+        .serializeStringMapTo(
           output,
           internalGetSearchAttributes(),
           SearchAttributesDefaultEntryHolder.defaultEntry,
@@ -36186,16 +34039,15 @@ public int getSerializedSize() {
       if (size != -1) return size;
 
       size = 0;
-      for (java.util.Map.Entry entry :
-          internalGetSearchAttributes().getMap().entrySet()) {
+      for (java.util.Map.Entry entry
+           : internalGetSearchAttributes().getMap().entrySet()) {
         com.google.protobuf.MapEntry
-            searchAttributes__ =
-                SearchAttributesDefaultEntryHolder.defaultEntry
-                    .newBuilderForType()
-                    .setKey(entry.getKey())
-                    .setValue(entry.getValue())
-                    .build();
-        size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, searchAttributes__);
+        searchAttributes__ = SearchAttributesDefaultEntryHolder.defaultEntry.newBuilderForType()
+            .setKey(entry.getKey())
+            .setValue(entry.getValue())
+            .build();
+        size += com.google.protobuf.CodedOutputStream
+            .computeMessageSize(1, searchAttributes__);
       }
       size += getUnknownFields().getSerializedSize();
       memoizedSize = size;
@@ -36205,15 +34057,15 @@ public int getSerializedSize() {
     @java.lang.Override
     public boolean equals(final java.lang.Object obj) {
       if (obj == this) {
-        return true;
+       return true;
       }
       if (!(obj instanceof io.temporal.omes.KitchenSink.UpsertSearchAttributesAction)) {
         return super.equals(obj);
       }
-      io.temporal.omes.KitchenSink.UpsertSearchAttributesAction other =
-          (io.temporal.omes.KitchenSink.UpsertSearchAttributesAction) obj;
+      io.temporal.omes.KitchenSink.UpsertSearchAttributesAction other = (io.temporal.omes.KitchenSink.UpsertSearchAttributesAction) obj;
 
-      if (!internalGetSearchAttributes().equals(other.internalGetSearchAttributes())) return false;
+      if (!internalGetSearchAttributes().equals(
+          other.internalGetSearchAttributes())) return false;
       if (!getUnknownFields().equals(other.getUnknownFields())) return false;
       return true;
     }
@@ -36235,94 +34087,89 @@ public int hashCode() {
     }
 
     public static io.temporal.omes.KitchenSink.UpsertSearchAttributesAction parseFrom(
-        java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
+        java.nio.ByteBuffer data)
+        throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data);
     }
-
     public static io.temporal.omes.KitchenSink.UpsertSearchAttributesAction parseFrom(
-        java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        java.nio.ByteBuffer data,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.UpsertSearchAttributesAction parseFrom(
         com.google.protobuf.ByteString data)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data);
     }
-
     public static io.temporal.omes.KitchenSink.UpsertSearchAttributesAction parseFrom(
         com.google.protobuf.ByteString data,
         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.UpsertSearchAttributesAction parseFrom(byte[] data)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data);
     }
-
     public static io.temporal.omes.KitchenSink.UpsertSearchAttributesAction parseFrom(
-        byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        byte[] data,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data, extensionRegistry);
     }
-
-    public static io.temporal.omes.KitchenSink.UpsertSearchAttributesAction parseFrom(
-        java.io.InputStream input) throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
+    public static io.temporal.omes.KitchenSink.UpsertSearchAttributesAction parseFrom(java.io.InputStream input)
+        throws java.io.IOException {
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input);
     }
-
     public static io.temporal.omes.KitchenSink.UpsertSearchAttributesAction parseFrom(
-        java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        java.io.InputStream input,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
-          PARSER, input, extensionRegistry);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input, extensionRegistry);
     }
 
-    public static io.temporal.omes.KitchenSink.UpsertSearchAttributesAction parseDelimitedFrom(
-        java.io.InputStream input) throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
+    public static io.temporal.omes.KitchenSink.UpsertSearchAttributesAction parseDelimitedFrom(java.io.InputStream input)
+        throws java.io.IOException {
+      return com.google.protobuf.GeneratedMessageV3
+          .parseDelimitedWithIOException(PARSER, input);
     }
 
     public static io.temporal.omes.KitchenSink.UpsertSearchAttributesAction parseDelimitedFrom(
-        java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        java.io.InputStream input,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
-          PARSER, input, extensionRegistry);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseDelimitedWithIOException(PARSER, input, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.UpsertSearchAttributesAction parseFrom(
-        com.google.protobuf.CodedInputStream input) throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
+        com.google.protobuf.CodedInputStream input)
+        throws java.io.IOException {
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input);
     }
-
     public static io.temporal.omes.KitchenSink.UpsertSearchAttributesAction parseFrom(
         com.google.protobuf.CodedInputStream input,
         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
-          PARSER, input, extensionRegistry);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input, extensionRegistry);
     }
 
     @java.lang.Override
-    public Builder newBuilderForType() {
-      return newBuilder();
-    }
-
+    public Builder newBuilderForType() { return newBuilder(); }
     public static Builder newBuilder() {
       return DEFAULT_INSTANCE.toBuilder();
     }
-
-    public static Builder newBuilder(
-        io.temporal.omes.KitchenSink.UpsertSearchAttributesAction prototype) {
+    public static Builder newBuilder(io.temporal.omes.KitchenSink.UpsertSearchAttributesAction prototype) {
       return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
     }
-
     @java.lang.Override
     public Builder toBuilder() {
-      return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
+      return this == DEFAULT_INSTANCE
+          ? new Builder() : new Builder().mergeFrom(this);
     }
 
     @java.lang.Override
@@ -36331,15 +34178,16 @@ protected Builder newBuilderForType(
       Builder builder = new Builder(parent);
       return builder;
     }
-    /** Protobuf type {@code temporal.omes.kitchen_sink.UpsertSearchAttributesAction} */
-    public static final class Builder
-        extends com.google.protobuf.GeneratedMessageV3.Builder
-        implements
+    /**
+     * Protobuf type {@code temporal.omes.kitchen_sink.UpsertSearchAttributesAction}
+     */
+    public static final class Builder extends
+        com.google.protobuf.GeneratedMessageV3.Builder implements
         // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.UpsertSearchAttributesAction)
         io.temporal.omes.KitchenSink.UpsertSearchAttributesActionOrBuilder {
-      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_descriptor;
+      public static final com.google.protobuf.Descriptors.Descriptor
+          getDescriptor() {
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_descriptor;
       }
 
       @SuppressWarnings({"rawtypes"})
@@ -36349,10 +34197,10 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMapFieldRefl
           case 1:
             return internalGetSearchAttributes();
           default:
-            throw new RuntimeException("Invalid map field number: " + number);
+            throw new RuntimeException(
+                "Invalid map field number: " + number);
         }
       }
-
       @SuppressWarnings({"rawtypes"})
       protected com.google.protobuf.MapFieldReflectionAccessor internalGetMutableMapFieldReflection(
           int number) {
@@ -36360,27 +34208,28 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMutableMapFi
           case 1:
             return internalGetMutableSearchAttributes();
           default:
-            throw new RuntimeException("Invalid map field number: " + number);
+            throw new RuntimeException(
+                "Invalid map field number: " + number);
         }
       }
-
       @java.lang.Override
       protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
           internalGetFieldAccessorTable() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_fieldAccessorTable
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_fieldAccessorTable
             .ensureFieldAccessorsInitialized(
-                io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.class,
-                io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.Builder.class);
+                io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.class, io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.Builder.class);
       }
 
       // Construct using io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.newBuilder()
-      private Builder() {}
+      private Builder() {
 
-      private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
-        super(parent);
       }
 
+      private Builder(
+          com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
+        super(parent);
+
+      }
       @java.lang.Override
       public Builder clear() {
         super.clear();
@@ -36390,9 +34239,9 @@ public Builder clear() {
       }
 
       @java.lang.Override
-      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_descriptor;
+      public com.google.protobuf.Descriptors.Descriptor
+          getDescriptorForType() {
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_descriptor;
       }
 
       @java.lang.Override
@@ -36411,11 +34260,8 @@ public io.temporal.omes.KitchenSink.UpsertSearchAttributesAction build() {
 
       @java.lang.Override
       public io.temporal.omes.KitchenSink.UpsertSearchAttributesAction buildPartial() {
-        io.temporal.omes.KitchenSink.UpsertSearchAttributesAction result =
-            new io.temporal.omes.KitchenSink.UpsertSearchAttributesAction(this);
-        if (bitField0_ != 0) {
-          buildPartial0(result);
-        }
+        io.temporal.omes.KitchenSink.UpsertSearchAttributesAction result = new io.temporal.omes.KitchenSink.UpsertSearchAttributesAction(this);
+        if (bitField0_ != 0) { buildPartial0(result); }
         onBuilt();
         return result;
       }
@@ -36423,8 +34269,7 @@ public io.temporal.omes.KitchenSink.UpsertSearchAttributesAction buildPartial()
       private void buildPartial0(io.temporal.omes.KitchenSink.UpsertSearchAttributesAction result) {
         int from_bitField0_ = bitField0_;
         if (((from_bitField0_ & 0x00000001) != 0)) {
-          result.searchAttributes_ =
-              internalGetSearchAttributes().build(SearchAttributesDefaultEntryHolder.defaultEntry);
+          result.searchAttributes_ = internalGetSearchAttributes().build(SearchAttributesDefaultEntryHolder.defaultEntry);
         }
       }
 
@@ -36432,41 +34277,38 @@ private void buildPartial0(io.temporal.omes.KitchenSink.UpsertSearchAttributesAc
       public Builder clone() {
         return super.clone();
       }
-
       @java.lang.Override
       public Builder setField(
-          com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
+          com.google.protobuf.Descriptors.FieldDescriptor field,
+          java.lang.Object value) {
         return super.setField(field, value);
       }
-
       @java.lang.Override
-      public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
+      public Builder clearField(
+          com.google.protobuf.Descriptors.FieldDescriptor field) {
         return super.clearField(field);
       }
-
       @java.lang.Override
-      public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
+      public Builder clearOneof(
+          com.google.protobuf.Descriptors.OneofDescriptor oneof) {
         return super.clearOneof(oneof);
       }
-
       @java.lang.Override
       public Builder setRepeatedField(
           com.google.protobuf.Descriptors.FieldDescriptor field,
-          int index,
-          java.lang.Object value) {
+          int index, java.lang.Object value) {
         return super.setRepeatedField(field, index, value);
       }
-
       @java.lang.Override
       public Builder addRepeatedField(
-          com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
+          com.google.protobuf.Descriptors.FieldDescriptor field,
+          java.lang.Object value) {
         return super.addRepeatedField(field, value);
       }
-
       @java.lang.Override
       public Builder mergeFrom(com.google.protobuf.Message other) {
         if (other instanceof io.temporal.omes.KitchenSink.UpsertSearchAttributesAction) {
-          return mergeFrom((io.temporal.omes.KitchenSink.UpsertSearchAttributesAction) other);
+          return mergeFrom((io.temporal.omes.KitchenSink.UpsertSearchAttributesAction)other);
         } else {
           super.mergeFrom(other);
           return this;
@@ -36474,9 +34316,9 @@ public Builder mergeFrom(com.google.protobuf.Message other) {
       }
 
       public Builder mergeFrom(io.temporal.omes.KitchenSink.UpsertSearchAttributesAction other) {
-        if (other == io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.getDefaultInstance())
-          return this;
-        internalGetMutableSearchAttributes().mergeFrom(other.internalGetSearchAttributes());
+        if (other == io.temporal.omes.KitchenSink.UpsertSearchAttributesAction.getDefaultInstance()) return this;
+        internalGetMutableSearchAttributes().mergeFrom(
+            other.internalGetSearchAttributes());
         bitField0_ |= 0x00000001;
         this.mergeUnknownFields(other.getUnknownFields());
         onChanged();
@@ -36504,26 +34346,21 @@ public Builder mergeFrom(
               case 0:
                 done = true;
                 break;
-              case 10:
-                {
-                  com.google.protobuf.MapEntry
-                      searchAttributes__ =
-                          input.readMessage(
-                              SearchAttributesDefaultEntryHolder.defaultEntry.getParserForType(),
-                              extensionRegistry);
-                  internalGetMutableSearchAttributes()
-                      .ensureBuilderMap()
-                      .put(searchAttributes__.getKey(), searchAttributes__.getValue());
-                  bitField0_ |= 0x00000001;
-                  break;
-                } // case 10
-              default:
-                {
-                  if (!super.parseUnknownField(input, extensionRegistry, tag)) {
-                    done = true; // was an endgroup tag
-                  }
-                  break;
-                } // default:
+              case 10: {
+                com.google.protobuf.MapEntry
+                searchAttributes__ = input.readMessage(
+                    SearchAttributesDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry);
+                internalGetMutableSearchAttributes().ensureBuilderMap().put(
+                    searchAttributes__.getKey(), searchAttributes__.getValue());
+                bitField0_ |= 0x00000001;
+                break;
+              } // case 10
+              default: {
+                if (!super.parseUnknownField(input, extensionRegistry, tag)) {
+                  done = true; // was an endgroup tag
+                }
+                break;
+              } // default:
             } // switch (tag)
           } // while (!done)
         } catch (com.google.protobuf.InvalidProtocolBufferException e) {
@@ -36533,58 +34370,32 @@ public Builder mergeFrom(
         } // finally
         return this;
       }
-
       private int bitField0_;
 
-      private static final class SearchAttributesConverter
-          implements com.google.protobuf.MapFieldBuilder.Converter<
-              java.lang.String,
-              io.temporal.api.common.v1.PayloadOrBuilder,
-              io.temporal.api.common.v1.Payload> {
+      private static final class SearchAttributesConverter implements com.google.protobuf.MapFieldBuilder.Converter {
         @java.lang.Override
-        public io.temporal.api.common.v1.Payload build(
-            io.temporal.api.common.v1.PayloadOrBuilder val) {
-          if (val instanceof io.temporal.api.common.v1.Payload) {
-            return (io.temporal.api.common.v1.Payload) val;
-          }
+        public io.temporal.api.common.v1.Payload build(io.temporal.api.common.v1.PayloadOrBuilder val) {
+          if (val instanceof io.temporal.api.common.v1.Payload) { return (io.temporal.api.common.v1.Payload) val; }
           return ((io.temporal.api.common.v1.Payload.Builder) val).build();
         }
 
         @java.lang.Override
-        public com.google.protobuf.MapEntry
-            defaultEntry() {
+        public com.google.protobuf.MapEntry defaultEntry() {
           return SearchAttributesDefaultEntryHolder.defaultEntry;
         }
-      }
-      ;
-
-      private static final SearchAttributesConverter searchAttributesConverter =
-          new SearchAttributesConverter();
-
-      private com.google.protobuf.MapFieldBuilder<
-              java.lang.String,
-              io.temporal.api.common.v1.PayloadOrBuilder,
-              io.temporal.api.common.v1.Payload,
-              io.temporal.api.common.v1.Payload.Builder>
-          searchAttributes_;
+      };
+      private static final SearchAttributesConverter searchAttributesConverter = new SearchAttributesConverter();
 
       private com.google.protobuf.MapFieldBuilder<
-              java.lang.String,
-              io.temporal.api.common.v1.PayloadOrBuilder,
-              io.temporal.api.common.v1.Payload,
-              io.temporal.api.common.v1.Payload.Builder>
+          java.lang.String, io.temporal.api.common.v1.PayloadOrBuilder, io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder> searchAttributes_;
+      private com.google.protobuf.MapFieldBuilder
           internalGetSearchAttributes() {
         if (searchAttributes_ == null) {
           return new com.google.protobuf.MapFieldBuilder<>(searchAttributesConverter);
         }
         return searchAttributes_;
       }
-
-      private com.google.protobuf.MapFieldBuilder<
-              java.lang.String,
-              io.temporal.api.common.v1.PayloadOrBuilder,
-              io.temporal.api.common.v1.Payload,
-              io.temporal.api.common.v1.Payload.Builder>
+      private com.google.protobuf.MapFieldBuilder
           internalGetMutableSearchAttributes() {
         if (searchAttributes_ == null) {
           searchAttributes_ = new com.google.protobuf.MapFieldBuilder<>(searchAttributesConverter);
@@ -36593,13 +34404,10 @@ public io.temporal.api.common.v1.Payload build(
         onChanged();
         return searchAttributes_;
       }
-
       public int getSearchAttributesCount() {
         return internalGetSearchAttributes().ensureBuilderMap().size();
       }
       /**
-       *
-       *
        * 
        * SearchAttributes fields - equivalent to indexed_fields on api. Key = search index, Value =
        * value
@@ -36608,22 +34416,20 @@ public int getSearchAttributesCount() {
        * map<string, .temporal.api.common.v1.Payload> search_attributes = 1;
        */
       @java.lang.Override
-      public boolean containsSearchAttributes(java.lang.String key) {
-        if (key == null) {
-          throw new NullPointerException("map key");
-        }
+      public boolean containsSearchAttributes(
+          java.lang.String key) {
+        if (key == null) { throw new NullPointerException("map key"); }
         return internalGetSearchAttributes().ensureBuilderMap().containsKey(key);
       }
-      /** Use {@link #getSearchAttributesMap()} instead. */
+      /**
+       * Use {@link #getSearchAttributesMap()} instead.
+       */
       @java.lang.Override
       @java.lang.Deprecated
-      public java.util.Map
-          getSearchAttributes() {
+      public java.util.Map getSearchAttributes() {
         return getSearchAttributesMap();
       }
       /**
-       *
-       *
        * 
        * SearchAttributes fields - equivalent to indexed_fields on api. Key = search index, Value =
        * value
@@ -36632,13 +34438,10 @@ public boolean containsSearchAttributes(java.lang.String key) {
        * map<string, .temporal.api.common.v1.Payload> search_attributes = 1;
        */
       @java.lang.Override
-      public java.util.Map
-          getSearchAttributesMap() {
+      public java.util.Map getSearchAttributesMap() {
         return internalGetSearchAttributes().getImmutableMap();
       }
       /**
-       *
-       *
        * 
        * SearchAttributes fields - equivalent to indexed_fields on api. Key = search index, Value =
        * value
@@ -36647,20 +34450,16 @@ public boolean containsSearchAttributes(java.lang.String key) {
        * map<string, .temporal.api.common.v1.Payload> search_attributes = 1;
        */
       @java.lang.Override
-      public /* nullable */ io.temporal.api.common.v1.Payload getSearchAttributesOrDefault(
+      public /* nullable */
+io.temporal.api.common.v1.Payload getSearchAttributesOrDefault(
           java.lang.String key,
           /* nullable */
-          io.temporal.api.common.v1.Payload defaultValue) {
-        if (key == null) {
-          throw new NullPointerException("map key");
-        }
-        java.util.Map map =
-            internalGetMutableSearchAttributes().ensureBuilderMap();
+io.temporal.api.common.v1.Payload defaultValue) {
+        if (key == null) { throw new NullPointerException("map key"); }
+        java.util.Map map = internalGetMutableSearchAttributes().ensureBuilderMap();
         return map.containsKey(key) ? searchAttributesConverter.build(map.get(key)) : defaultValue;
       }
       /**
-       *
-       *
        * 
        * SearchAttributes fields - equivalent to indexed_fields on api. Key = search index, Value =
        * value
@@ -36669,26 +34468,21 @@ public boolean containsSearchAttributes(java.lang.String key) {
        * map<string, .temporal.api.common.v1.Payload> search_attributes = 1;
        */
       @java.lang.Override
-      public io.temporal.api.common.v1.Payload getSearchAttributesOrThrow(java.lang.String key) {
-        if (key == null) {
-          throw new NullPointerException("map key");
-        }
-        java.util.Map map =
-            internalGetMutableSearchAttributes().ensureBuilderMap();
+      public io.temporal.api.common.v1.Payload getSearchAttributesOrThrow(
+          java.lang.String key) {
+        if (key == null) { throw new NullPointerException("map key"); }
+        java.util.Map map = internalGetMutableSearchAttributes().ensureBuilderMap();
         if (!map.containsKey(key)) {
           throw new java.lang.IllegalArgumentException();
         }
         return searchAttributesConverter.build(map.get(key));
       }
-
       public Builder clearSearchAttributes() {
         bitField0_ = (bitField0_ & ~0x00000001);
         internalGetMutableSearchAttributes().clear();
         return this;
       }
       /**
-       *
-       *
        * 
        * SearchAttributes fields - equivalent to indexed_fields on api. Key = search index, Value =
        * value
@@ -36696,14 +34490,16 @@ public Builder clearSearchAttributes() {
        *
        * map<string, .temporal.api.common.v1.Payload> search_attributes = 1;
        */
-      public Builder removeSearchAttributes(java.lang.String key) {
-        if (key == null) {
-          throw new NullPointerException("map key");
-        }
-        internalGetMutableSearchAttributes().ensureBuilderMap().remove(key);
+      public Builder removeSearchAttributes(
+          java.lang.String key) {
+        if (key == null) { throw new NullPointerException("map key"); }
+        internalGetMutableSearchAttributes().ensureBuilderMap()
+            .remove(key);
         return this;
       }
-      /** Use alternate mutation accessors instead. */
+      /**
+       * Use alternate mutation accessors instead.
+       */
       @java.lang.Deprecated
       public java.util.Map
           getMutableSearchAttributes() {
@@ -36711,8 +34507,6 @@ public Builder removeSearchAttributes(java.lang.String key) {
         return internalGetMutableSearchAttributes().ensureMessageMap();
       }
       /**
-       *
-       *
        * 
        * SearchAttributes fields - equivalent to indexed_fields on api. Key = search index, Value =
        * value
@@ -36721,20 +34515,16 @@ public Builder removeSearchAttributes(java.lang.String key) {
        * map<string, .temporal.api.common.v1.Payload> search_attributes = 1;
        */
       public Builder putSearchAttributes(
-          java.lang.String key, io.temporal.api.common.v1.Payload value) {
-        if (key == null) {
-          throw new NullPointerException("map key");
-        }
-        if (value == null) {
-          throw new NullPointerException("map value");
-        }
-        internalGetMutableSearchAttributes().ensureBuilderMap().put(key, value);
+          java.lang.String key,
+          io.temporal.api.common.v1.Payload value) {
+        if (key == null) { throw new NullPointerException("map key"); }
+        if (value == null) { throw new NullPointerException("map value"); }
+        internalGetMutableSearchAttributes().ensureBuilderMap()
+            .put(key, value);
         bitField0_ |= 0x00000001;
         return this;
       }
       /**
-       *
-       *
        * 
        * SearchAttributes fields - equivalent to indexed_fields on api. Key = search index, Value =
        * value
@@ -36744,19 +34534,17 @@ public Builder putSearchAttributes(
        */
       public Builder putAllSearchAttributes(
           java.util.Map values) {
-        for (java.util.Map.Entry e :
-            values.entrySet()) {
+        for (java.util.Map.Entry e : values.entrySet()) {
           if (e.getKey() == null || e.getValue() == null) {
             throw new NullPointerException();
           }
         }
-        internalGetMutableSearchAttributes().ensureBuilderMap().putAll(values);
+        internalGetMutableSearchAttributes().ensureBuilderMap()
+            .putAll(values);
         bitField0_ |= 0x00000001;
         return this;
       }
       /**
-       *
-       *
        * 
        * SearchAttributes fields - equivalent to indexed_fields on api. Key = search index, Value =
        * value
@@ -36766,8 +34554,7 @@ public Builder putAllSearchAttributes(
        */
       public io.temporal.api.common.v1.Payload.Builder putSearchAttributesBuilderIfAbsent(
           java.lang.String key) {
-        java.util.Map builderMap =
-            internalGetMutableSearchAttributes().ensureBuilderMap();
+        java.util.Map builderMap = internalGetMutableSearchAttributes().ensureBuilderMap();
         io.temporal.api.common.v1.PayloadOrBuilder entry = builderMap.get(key);
         if (entry == null) {
           entry = io.temporal.api.common.v1.Payload.newBuilder();
@@ -36779,7 +34566,6 @@ public io.temporal.api.common.v1.Payload.Builder putSearchAttributesBuilderIfAbs
         }
         return (io.temporal.api.common.v1.Payload.Builder) entry;
       }
-
       @java.lang.Override
       public final Builder setUnknownFields(
           final com.google.protobuf.UnknownFieldSet unknownFields) {
@@ -36792,12 +34578,12 @@ public final Builder mergeUnknownFields(
         return super.mergeUnknownFields(unknownFields);
       }
 
+
       // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.UpsertSearchAttributesAction)
     }
 
     // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.UpsertSearchAttributesAction)
     private static final io.temporal.omes.KitchenSink.UpsertSearchAttributesAction DEFAULT_INSTANCE;
-
     static {
       DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.UpsertSearchAttributesAction();
     }
@@ -36806,28 +34592,27 @@ public static io.temporal.omes.KitchenSink.UpsertSearchAttributesAction getDefau
       return DEFAULT_INSTANCE;
     }
 
-    private static final com.google.protobuf.Parser PARSER =
-        new com.google.protobuf.AbstractParser() {
-          @java.lang.Override
-          public UpsertSearchAttributesAction parsePartialFrom(
-              com.google.protobuf.CodedInputStream input,
-              com.google.protobuf.ExtensionRegistryLite extensionRegistry)
-              throws com.google.protobuf.InvalidProtocolBufferException {
-            Builder builder = newBuilder();
-            try {
-              builder.mergeFrom(input, extensionRegistry);
-            } catch (com.google.protobuf.InvalidProtocolBufferException e) {
-              throw e.setUnfinishedMessage(builder.buildPartial());
-            } catch (com.google.protobuf.UninitializedMessageException e) {
-              throw e.asInvalidProtocolBufferException()
-                  .setUnfinishedMessage(builder.buildPartial());
-            } catch (java.io.IOException e) {
-              throw new com.google.protobuf.InvalidProtocolBufferException(e)
-                  .setUnfinishedMessage(builder.buildPartial());
-            }
-            return builder.buildPartial();
-          }
-        };
+    private static final com.google.protobuf.Parser
+        PARSER = new com.google.protobuf.AbstractParser() {
+      @java.lang.Override
+      public UpsertSearchAttributesAction parsePartialFrom(
+          com.google.protobuf.CodedInputStream input,
+          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+          throws com.google.protobuf.InvalidProtocolBufferException {
+        Builder builder = newBuilder();
+        try {
+          builder.mergeFrom(input, extensionRegistry);
+        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
+          throw e.setUnfinishedMessage(builder.buildPartial());
+        } catch (com.google.protobuf.UninitializedMessageException e) {
+          throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
+        } catch (java.io.IOException e) {
+          throw new com.google.protobuf.InvalidProtocolBufferException(e)
+              .setUnfinishedMessage(builder.buildPartial());
+        }
+        return builder.buildPartial();
+      }
+    };
 
     public static com.google.protobuf.Parser parser() {
       return PARSER;
@@ -36842,16 +34627,14 @@ public com.google.protobuf.Parser getParserForType
     public io.temporal.omes.KitchenSink.UpsertSearchAttributesAction getDefaultInstanceForType() {
       return DEFAULT_INSTANCE;
     }
+
   }
 
-  public interface UpsertMemoActionOrBuilder
-      extends
+  public interface UpsertMemoActionOrBuilder extends
       // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.UpsertMemoAction)
       com.google.protobuf.MessageOrBuilder {
 
     /**
-     *
-     *
      * 
      * Update the workflow memo with the provided values. The values will be merged with
      * the existing memo. If the user wants to delete values, a default/empty Payload should be
@@ -36859,13 +34642,10 @@ public interface UpsertMemoActionOrBuilder
      * 
* * .temporal.api.common.v1.Memo upserted_memo = 1; - * * @return Whether the upsertedMemo field is set. */ boolean hasUpsertedMemo(); /** - * - * *
      * Update the workflow memo with the provided values. The values will be merged with
      * the existing memo. If the user wants to delete values, a default/empty Payload should be
@@ -36873,13 +34653,10 @@ public interface UpsertMemoActionOrBuilder
      * 
* * .temporal.api.common.v1.Memo upserted_memo = 1; - * * @return The upsertedMemo. */ io.temporal.api.common.v1.Memo getUpsertedMemo(); /** - * - * *
      * Update the workflow memo with the provided values. The values will be merged with
      * the existing memo. If the user wants to delete values, a default/empty Payload should be
@@ -36890,46 +34667,45 @@ public interface UpsertMemoActionOrBuilder
      */
     io.temporal.api.common.v1.MemoOrBuilder getUpsertedMemoOrBuilder();
   }
-  /** Protobuf type {@code temporal.omes.kitchen_sink.UpsertMemoAction} */
-  public static final class UpsertMemoAction extends com.google.protobuf.GeneratedMessageV3
-      implements
+  /**
+   * Protobuf type {@code temporal.omes.kitchen_sink.UpsertMemoAction}
+   */
+  public static final class UpsertMemoAction extends
+      com.google.protobuf.GeneratedMessageV3 implements
       // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.UpsertMemoAction)
       UpsertMemoActionOrBuilder {
-    private static final long serialVersionUID = 0L;
+  private static final long serialVersionUID = 0L;
     // Use UpsertMemoAction.newBuilder() to construct.
     private UpsertMemoAction(com.google.protobuf.GeneratedMessageV3.Builder builder) {
       super(builder);
     }
-
-    private UpsertMemoAction() {}
+    private UpsertMemoAction() {
+    }
 
     @java.lang.Override
     @SuppressWarnings({"unused"})
-    protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
+    protected java.lang.Object newInstance(
+        UnusedPrivateParameter unused) {
       return new UpsertMemoAction();
     }
 
-    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
-      return io.temporal.omes.KitchenSink
-          .internal_static_temporal_omes_kitchen_sink_UpsertMemoAction_descriptor;
+    public static final com.google.protobuf.Descriptors.Descriptor
+        getDescriptor() {
+      return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_UpsertMemoAction_descriptor;
     }
 
     @java.lang.Override
     protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
         internalGetFieldAccessorTable() {
-      return io.temporal.omes.KitchenSink
-          .internal_static_temporal_omes_kitchen_sink_UpsertMemoAction_fieldAccessorTable
+      return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_UpsertMemoAction_fieldAccessorTable
           .ensureFieldAccessorsInitialized(
-              io.temporal.omes.KitchenSink.UpsertMemoAction.class,
-              io.temporal.omes.KitchenSink.UpsertMemoAction.Builder.class);
+              io.temporal.omes.KitchenSink.UpsertMemoAction.class, io.temporal.omes.KitchenSink.UpsertMemoAction.Builder.class);
     }
 
     private int bitField0_;
     public static final int UPSERTED_MEMO_FIELD_NUMBER = 1;
     private io.temporal.api.common.v1.Memo upsertedMemo_;
     /**
-     *
-     *
      * 
      * Update the workflow memo with the provided values. The values will be merged with
      * the existing memo. If the user wants to delete values, a default/empty Payload should be
@@ -36937,7 +34713,6 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
      * 
* * .temporal.api.common.v1.Memo upserted_memo = 1; - * * @return Whether the upsertedMemo field is set. */ @java.lang.Override @@ -36945,8 +34720,6 @@ public boolean hasUpsertedMemo() { return ((bitField0_ & 0x00000001) != 0); } /** - * - * *
      * Update the workflow memo with the provided values. The values will be merged with
      * the existing memo. If the user wants to delete values, a default/empty Payload should be
@@ -36954,18 +34727,13 @@ public boolean hasUpsertedMemo() {
      * 
* * .temporal.api.common.v1.Memo upserted_memo = 1; - * * @return The upsertedMemo. */ @java.lang.Override public io.temporal.api.common.v1.Memo getUpsertedMemo() { - return upsertedMemo_ == null - ? io.temporal.api.common.v1.Memo.getDefaultInstance() - : upsertedMemo_; + return upsertedMemo_ == null ? io.temporal.api.common.v1.Memo.getDefaultInstance() : upsertedMemo_; } /** - * - * *
      * Update the workflow memo with the provided values. The values will be merged with
      * the existing memo. If the user wants to delete values, a default/empty Payload should be
@@ -36976,13 +34744,10 @@ public io.temporal.api.common.v1.Memo getUpsertedMemo() {
      */
     @java.lang.Override
     public io.temporal.api.common.v1.MemoOrBuilder getUpsertedMemoOrBuilder() {
-      return upsertedMemo_ == null
-          ? io.temporal.api.common.v1.Memo.getDefaultInstance()
-          : upsertedMemo_;
+      return upsertedMemo_ == null ? io.temporal.api.common.v1.Memo.getDefaultInstance() : upsertedMemo_;
     }
 
     private byte memoizedIsInitialized = -1;
-
     @java.lang.Override
     public final boolean isInitialized() {
       byte isInitialized = memoizedIsInitialized;
@@ -36994,7 +34759,8 @@ public final boolean isInitialized() {
     }
 
     @java.lang.Override
-    public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
+    public void writeTo(com.google.protobuf.CodedOutputStream output)
+                        throws java.io.IOException {
       if (((bitField0_ & 0x00000001) != 0)) {
         output.writeMessage(1, getUpsertedMemo());
       }
@@ -37008,7 +34774,8 @@ public int getSerializedSize() {
 
       size = 0;
       if (((bitField0_ & 0x00000001) != 0)) {
-        size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, getUpsertedMemo());
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(1, getUpsertedMemo());
       }
       size += getUnknownFields().getSerializedSize();
       memoizedSize = size;
@@ -37018,17 +34785,17 @@ public int getSerializedSize() {
     @java.lang.Override
     public boolean equals(final java.lang.Object obj) {
       if (obj == this) {
-        return true;
+       return true;
       }
       if (!(obj instanceof io.temporal.omes.KitchenSink.UpsertMemoAction)) {
         return super.equals(obj);
       }
-      io.temporal.omes.KitchenSink.UpsertMemoAction other =
-          (io.temporal.omes.KitchenSink.UpsertMemoAction) obj;
+      io.temporal.omes.KitchenSink.UpsertMemoAction other = (io.temporal.omes.KitchenSink.UpsertMemoAction) obj;
 
       if (hasUpsertedMemo() != other.hasUpsertedMemo()) return false;
       if (hasUpsertedMemo()) {
-        if (!getUpsertedMemo().equals(other.getUpsertedMemo())) return false;
+        if (!getUpsertedMemo()
+            .equals(other.getUpsertedMemo())) return false;
       }
       if (!getUnknownFields().equals(other.getUnknownFields())) return false;
       return true;
@@ -37050,94 +34817,90 @@ public int hashCode() {
       return hash;
     }
 
-    public static io.temporal.omes.KitchenSink.UpsertMemoAction parseFrom(java.nio.ByteBuffer data)
+    public static io.temporal.omes.KitchenSink.UpsertMemoAction parseFrom(
+        java.nio.ByteBuffer data)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data);
     }
-
     public static io.temporal.omes.KitchenSink.UpsertMemoAction parseFrom(
-        java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        java.nio.ByteBuffer data,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.UpsertMemoAction parseFrom(
         com.google.protobuf.ByteString data)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data);
     }
-
     public static io.temporal.omes.KitchenSink.UpsertMemoAction parseFrom(
         com.google.protobuf.ByteString data,
         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.UpsertMemoAction parseFrom(byte[] data)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data);
     }
-
     public static io.temporal.omes.KitchenSink.UpsertMemoAction parseFrom(
-        byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        byte[] data,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.UpsertMemoAction parseFrom(java.io.InputStream input)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input);
     }
-
     public static io.temporal.omes.KitchenSink.UpsertMemoAction parseFrom(
-        java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        java.io.InputStream input,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
-          PARSER, input, extensionRegistry);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input, extensionRegistry);
     }
 
-    public static io.temporal.omes.KitchenSink.UpsertMemoAction parseDelimitedFrom(
-        java.io.InputStream input) throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
+    public static io.temporal.omes.KitchenSink.UpsertMemoAction parseDelimitedFrom(java.io.InputStream input)
+        throws java.io.IOException {
+      return com.google.protobuf.GeneratedMessageV3
+          .parseDelimitedWithIOException(PARSER, input);
     }
 
     public static io.temporal.omes.KitchenSink.UpsertMemoAction parseDelimitedFrom(
-        java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        java.io.InputStream input,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
-          PARSER, input, extensionRegistry);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseDelimitedWithIOException(PARSER, input, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.UpsertMemoAction parseFrom(
-        com.google.protobuf.CodedInputStream input) throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
+        com.google.protobuf.CodedInputStream input)
+        throws java.io.IOException {
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input);
     }
-
     public static io.temporal.omes.KitchenSink.UpsertMemoAction parseFrom(
         com.google.protobuf.CodedInputStream input,
         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
-          PARSER, input, extensionRegistry);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input, extensionRegistry);
     }
 
     @java.lang.Override
-    public Builder newBuilderForType() {
-      return newBuilder();
-    }
-
+    public Builder newBuilderForType() { return newBuilder(); }
     public static Builder newBuilder() {
       return DEFAULT_INSTANCE.toBuilder();
     }
-
     public static Builder newBuilder(io.temporal.omes.KitchenSink.UpsertMemoAction prototype) {
       return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
     }
-
     @java.lang.Override
     public Builder toBuilder() {
-      return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
+      return this == DEFAULT_INSTANCE
+          ? new Builder() : new Builder().mergeFrom(this);
     }
 
     @java.lang.Override
@@ -37146,25 +34909,24 @@ protected Builder newBuilderForType(
       Builder builder = new Builder(parent);
       return builder;
     }
-    /** Protobuf type {@code temporal.omes.kitchen_sink.UpsertMemoAction} */
-    public static final class Builder
-        extends com.google.protobuf.GeneratedMessageV3.Builder
-        implements
+    /**
+     * Protobuf type {@code temporal.omes.kitchen_sink.UpsertMemoAction}
+     */
+    public static final class Builder extends
+        com.google.protobuf.GeneratedMessageV3.Builder implements
         // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.UpsertMemoAction)
         io.temporal.omes.KitchenSink.UpsertMemoActionOrBuilder {
-      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_UpsertMemoAction_descriptor;
+      public static final com.google.protobuf.Descriptors.Descriptor
+          getDescriptor() {
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_UpsertMemoAction_descriptor;
       }
 
       @java.lang.Override
       protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
           internalGetFieldAccessorTable() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_UpsertMemoAction_fieldAccessorTable
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_UpsertMemoAction_fieldAccessorTable
             .ensureFieldAccessorsInitialized(
-                io.temporal.omes.KitchenSink.UpsertMemoAction.class,
-                io.temporal.omes.KitchenSink.UpsertMemoAction.Builder.class);
+                io.temporal.omes.KitchenSink.UpsertMemoAction.class, io.temporal.omes.KitchenSink.UpsertMemoAction.Builder.class);
       }
 
       // Construct using io.temporal.omes.KitchenSink.UpsertMemoAction.newBuilder()
@@ -37172,17 +34934,17 @@ private Builder() {
         maybeForceBuilderInitialization();
       }
 
-      private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
+      private Builder(
+          com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
         super(parent);
         maybeForceBuilderInitialization();
       }
-
       private void maybeForceBuilderInitialization() {
-        if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
+        if (com.google.protobuf.GeneratedMessageV3
+                .alwaysUseFieldBuilders) {
           getUpsertedMemoFieldBuilder();
         }
       }
-
       @java.lang.Override
       public Builder clear() {
         super.clear();
@@ -37196,9 +34958,9 @@ public Builder clear() {
       }
 
       @java.lang.Override
-      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_UpsertMemoAction_descriptor;
+      public com.google.protobuf.Descriptors.Descriptor
+          getDescriptorForType() {
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_UpsertMemoAction_descriptor;
       }
 
       @java.lang.Override
@@ -37217,11 +34979,8 @@ public io.temporal.omes.KitchenSink.UpsertMemoAction build() {
 
       @java.lang.Override
       public io.temporal.omes.KitchenSink.UpsertMemoAction buildPartial() {
-        io.temporal.omes.KitchenSink.UpsertMemoAction result =
-            new io.temporal.omes.KitchenSink.UpsertMemoAction(this);
-        if (bitField0_ != 0) {
-          buildPartial0(result);
-        }
+        io.temporal.omes.KitchenSink.UpsertMemoAction result = new io.temporal.omes.KitchenSink.UpsertMemoAction(this);
+        if (bitField0_ != 0) { buildPartial0(result); }
         onBuilt();
         return result;
       }
@@ -37230,8 +34989,9 @@ private void buildPartial0(io.temporal.omes.KitchenSink.UpsertMemoAction result)
         int from_bitField0_ = bitField0_;
         int to_bitField0_ = 0;
         if (((from_bitField0_ & 0x00000001) != 0)) {
-          result.upsertedMemo_ =
-              upsertedMemoBuilder_ == null ? upsertedMemo_ : upsertedMemoBuilder_.build();
+          result.upsertedMemo_ = upsertedMemoBuilder_ == null
+              ? upsertedMemo_
+              : upsertedMemoBuilder_.build();
           to_bitField0_ |= 0x00000001;
         }
         result.bitField0_ |= to_bitField0_;
@@ -37241,41 +35001,38 @@ private void buildPartial0(io.temporal.omes.KitchenSink.UpsertMemoAction result)
       public Builder clone() {
         return super.clone();
       }
-
       @java.lang.Override
       public Builder setField(
-          com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
+          com.google.protobuf.Descriptors.FieldDescriptor field,
+          java.lang.Object value) {
         return super.setField(field, value);
       }
-
       @java.lang.Override
-      public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
+      public Builder clearField(
+          com.google.protobuf.Descriptors.FieldDescriptor field) {
         return super.clearField(field);
       }
-
       @java.lang.Override
-      public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
+      public Builder clearOneof(
+          com.google.protobuf.Descriptors.OneofDescriptor oneof) {
         return super.clearOneof(oneof);
       }
-
       @java.lang.Override
       public Builder setRepeatedField(
           com.google.protobuf.Descriptors.FieldDescriptor field,
-          int index,
-          java.lang.Object value) {
+          int index, java.lang.Object value) {
         return super.setRepeatedField(field, index, value);
       }
-
       @java.lang.Override
       public Builder addRepeatedField(
-          com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
+          com.google.protobuf.Descriptors.FieldDescriptor field,
+          java.lang.Object value) {
         return super.addRepeatedField(field, value);
       }
-
       @java.lang.Override
       public Builder mergeFrom(com.google.protobuf.Message other) {
         if (other instanceof io.temporal.omes.KitchenSink.UpsertMemoAction) {
-          return mergeFrom((io.temporal.omes.KitchenSink.UpsertMemoAction) other);
+          return mergeFrom((io.temporal.omes.KitchenSink.UpsertMemoAction)other);
         } else {
           super.mergeFrom(other);
           return this;
@@ -37283,8 +35040,7 @@ public Builder mergeFrom(com.google.protobuf.Message other) {
       }
 
       public Builder mergeFrom(io.temporal.omes.KitchenSink.UpsertMemoAction other) {
-        if (other == io.temporal.omes.KitchenSink.UpsertMemoAction.getDefaultInstance())
-          return this;
+        if (other == io.temporal.omes.KitchenSink.UpsertMemoAction.getDefaultInstance()) return this;
         if (other.hasUpsertedMemo()) {
           mergeUpsertedMemo(other.getUpsertedMemo());
         }
@@ -37314,19 +35070,19 @@ public Builder mergeFrom(
               case 0:
                 done = true;
                 break;
-              case 10:
-                {
-                  input.readMessage(getUpsertedMemoFieldBuilder().getBuilder(), extensionRegistry);
-                  bitField0_ |= 0x00000001;
-                  break;
-                } // case 10
-              default:
-                {
-                  if (!super.parseUnknownField(input, extensionRegistry, tag)) {
-                    done = true; // was an endgroup tag
-                  }
-                  break;
-                } // default:
+              case 10: {
+                input.readMessage(
+                    getUpsertedMemoFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                bitField0_ |= 0x00000001;
+                break;
+              } // case 10
+              default: {
+                if (!super.parseUnknownField(input, extensionRegistry, tag)) {
+                  done = true; // was an endgroup tag
+                }
+                break;
+              } // default:
             } // switch (tag)
           } // while (!done)
         } catch (com.google.protobuf.InvalidProtocolBufferException e) {
@@ -37336,18 +35092,12 @@ public Builder mergeFrom(
         } // finally
         return this;
       }
-
       private int bitField0_;
 
       private io.temporal.api.common.v1.Memo upsertedMemo_;
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.api.common.v1.Memo,
-              io.temporal.api.common.v1.Memo.Builder,
-              io.temporal.api.common.v1.MemoOrBuilder>
-          upsertedMemoBuilder_;
+          io.temporal.api.common.v1.Memo, io.temporal.api.common.v1.Memo.Builder, io.temporal.api.common.v1.MemoOrBuilder> upsertedMemoBuilder_;
       /**
-       *
-       *
        * 
        * Update the workflow memo with the provided values. The values will be merged with
        * the existing memo. If the user wants to delete values, a default/empty Payload should be
@@ -37355,15 +35105,12 @@ public Builder mergeFrom(
        * 
* * .temporal.api.common.v1.Memo upserted_memo = 1; - * * @return Whether the upsertedMemo field is set. */ public boolean hasUpsertedMemo() { return ((bitField0_ & 0x00000001) != 0); } /** - * - * *
        * Update the workflow memo with the provided values. The values will be merged with
        * the existing memo. If the user wants to delete values, a default/empty Payload should be
@@ -37371,21 +35118,16 @@ public boolean hasUpsertedMemo() {
        * 
* * .temporal.api.common.v1.Memo upserted_memo = 1; - * * @return The upsertedMemo. */ public io.temporal.api.common.v1.Memo getUpsertedMemo() { if (upsertedMemoBuilder_ == null) { - return upsertedMemo_ == null - ? io.temporal.api.common.v1.Memo.getDefaultInstance() - : upsertedMemo_; + return upsertedMemo_ == null ? io.temporal.api.common.v1.Memo.getDefaultInstance() : upsertedMemo_; } else { return upsertedMemoBuilder_.getMessage(); } } /** - * - * *
        * Update the workflow memo with the provided values. The values will be merged with
        * the existing memo. If the user wants to delete values, a default/empty Payload should be
@@ -37408,8 +35150,6 @@ public Builder setUpsertedMemo(io.temporal.api.common.v1.Memo value) {
         return this;
       }
       /**
-       *
-       *
        * 
        * Update the workflow memo with the provided values. The values will be merged with
        * the existing memo. If the user wants to delete values, a default/empty Payload should be
@@ -37418,7 +35158,8 @@ public Builder setUpsertedMemo(io.temporal.api.common.v1.Memo value) {
        *
        * .temporal.api.common.v1.Memo upserted_memo = 1;
        */
-      public Builder setUpsertedMemo(io.temporal.api.common.v1.Memo.Builder builderForValue) {
+      public Builder setUpsertedMemo(
+          io.temporal.api.common.v1.Memo.Builder builderForValue) {
         if (upsertedMemoBuilder_ == null) {
           upsertedMemo_ = builderForValue.build();
         } else {
@@ -37429,8 +35170,6 @@ public Builder setUpsertedMemo(io.temporal.api.common.v1.Memo.Builder builderFor
         return this;
       }
       /**
-       *
-       *
        * 
        * Update the workflow memo with the provided values. The values will be merged with
        * the existing memo. If the user wants to delete values, a default/empty Payload should be
@@ -37441,9 +35180,9 @@ public Builder setUpsertedMemo(io.temporal.api.common.v1.Memo.Builder builderFor
        */
       public Builder mergeUpsertedMemo(io.temporal.api.common.v1.Memo value) {
         if (upsertedMemoBuilder_ == null) {
-          if (((bitField0_ & 0x00000001) != 0)
-              && upsertedMemo_ != null
-              && upsertedMemo_ != io.temporal.api.common.v1.Memo.getDefaultInstance()) {
+          if (((bitField0_ & 0x00000001) != 0) &&
+            upsertedMemo_ != null &&
+            upsertedMemo_ != io.temporal.api.common.v1.Memo.getDefaultInstance()) {
             getUpsertedMemoBuilder().mergeFrom(value);
           } else {
             upsertedMemo_ = value;
@@ -37458,8 +35197,6 @@ public Builder mergeUpsertedMemo(io.temporal.api.common.v1.Memo value) {
         return this;
       }
       /**
-       *
-       *
        * 
        * Update the workflow memo with the provided values. The values will be merged with
        * the existing memo. If the user wants to delete values, a default/empty Payload should be
@@ -37479,8 +35216,6 @@ public Builder clearUpsertedMemo() {
         return this;
       }
       /**
-       *
-       *
        * 
        * Update the workflow memo with the provided values. The values will be merged with
        * the existing memo. If the user wants to delete values, a default/empty Payload should be
@@ -37495,8 +35230,6 @@ public io.temporal.api.common.v1.Memo.Builder getUpsertedMemoBuilder() {
         return getUpsertedMemoFieldBuilder().getBuilder();
       }
       /**
-       *
-       *
        * 
        * Update the workflow memo with the provided values. The values will be merged with
        * the existing memo. If the user wants to delete values, a default/empty Payload should be
@@ -37509,14 +35242,11 @@ public io.temporal.api.common.v1.MemoOrBuilder getUpsertedMemoOrBuilder() {
         if (upsertedMemoBuilder_ != null) {
           return upsertedMemoBuilder_.getMessageOrBuilder();
         } else {
-          return upsertedMemo_ == null
-              ? io.temporal.api.common.v1.Memo.getDefaultInstance()
-              : upsertedMemo_;
+          return upsertedMemo_ == null ?
+              io.temporal.api.common.v1.Memo.getDefaultInstance() : upsertedMemo_;
         }
       }
       /**
-       *
-       *
        * 
        * Update the workflow memo with the provided values. The values will be merged with
        * the existing memo. If the user wants to delete values, a default/empty Payload should be
@@ -37526,22 +35256,18 @@ public io.temporal.api.common.v1.MemoOrBuilder getUpsertedMemoOrBuilder() {
        * .temporal.api.common.v1.Memo upserted_memo = 1;
        */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.api.common.v1.Memo,
-              io.temporal.api.common.v1.Memo.Builder,
-              io.temporal.api.common.v1.MemoOrBuilder>
+          io.temporal.api.common.v1.Memo, io.temporal.api.common.v1.Memo.Builder, io.temporal.api.common.v1.MemoOrBuilder> 
           getUpsertedMemoFieldBuilder() {
         if (upsertedMemoBuilder_ == null) {
-          upsertedMemoBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.api.common.v1.Memo,
-                  io.temporal.api.common.v1.Memo.Builder,
-                  io.temporal.api.common.v1.MemoOrBuilder>(
-                  getUpsertedMemo(), getParentForChildren(), isClean());
+          upsertedMemoBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.api.common.v1.Memo, io.temporal.api.common.v1.Memo.Builder, io.temporal.api.common.v1.MemoOrBuilder>(
+                  getUpsertedMemo(),
+                  getParentForChildren(),
+                  isClean());
           upsertedMemo_ = null;
         }
         return upsertedMemoBuilder_;
       }
-
       @java.lang.Override
       public final Builder setUnknownFields(
           final com.google.protobuf.UnknownFieldSet unknownFields) {
@@ -37554,12 +35280,12 @@ public final Builder mergeUnknownFields(
         return super.mergeUnknownFields(unknownFields);
       }
 
+
       // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.UpsertMemoAction)
     }
 
     // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.UpsertMemoAction)
     private static final io.temporal.omes.KitchenSink.UpsertMemoAction DEFAULT_INSTANCE;
-
     static {
       DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.UpsertMemoAction();
     }
@@ -37568,28 +35294,27 @@ public static io.temporal.omes.KitchenSink.UpsertMemoAction getDefaultInstance()
       return DEFAULT_INSTANCE;
     }
 
-    private static final com.google.protobuf.Parser PARSER =
-        new com.google.protobuf.AbstractParser() {
-          @java.lang.Override
-          public UpsertMemoAction parsePartialFrom(
-              com.google.protobuf.CodedInputStream input,
-              com.google.protobuf.ExtensionRegistryLite extensionRegistry)
-              throws com.google.protobuf.InvalidProtocolBufferException {
-            Builder builder = newBuilder();
-            try {
-              builder.mergeFrom(input, extensionRegistry);
-            } catch (com.google.protobuf.InvalidProtocolBufferException e) {
-              throw e.setUnfinishedMessage(builder.buildPartial());
-            } catch (com.google.protobuf.UninitializedMessageException e) {
-              throw e.asInvalidProtocolBufferException()
-                  .setUnfinishedMessage(builder.buildPartial());
-            } catch (java.io.IOException e) {
-              throw new com.google.protobuf.InvalidProtocolBufferException(e)
-                  .setUnfinishedMessage(builder.buildPartial());
-            }
-            return builder.buildPartial();
-          }
-        };
+    private static final com.google.protobuf.Parser
+        PARSER = new com.google.protobuf.AbstractParser() {
+      @java.lang.Override
+      public UpsertMemoAction parsePartialFrom(
+          com.google.protobuf.CodedInputStream input,
+          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+          throws com.google.protobuf.InvalidProtocolBufferException {
+        Builder builder = newBuilder();
+        try {
+          builder.mergeFrom(input, extensionRegistry);
+        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
+          throw e.setUnfinishedMessage(builder.buildPartial());
+        } catch (com.google.protobuf.UninitializedMessageException e) {
+          throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
+        } catch (java.io.IOException e) {
+          throw new com.google.protobuf.InvalidProtocolBufferException(e)
+              .setUnfinishedMessage(builder.buildPartial());
+        }
+        return builder.buildPartial();
+      }
+    };
 
     public static com.google.protobuf.Parser parser() {
       return PARSER;
@@ -37604,60 +35329,61 @@ public com.google.protobuf.Parser getParserForType() {
     public io.temporal.omes.KitchenSink.UpsertMemoAction getDefaultInstanceForType() {
       return DEFAULT_INSTANCE;
     }
+
   }
 
-  public interface ReturnResultActionOrBuilder
-      extends
+  public interface ReturnResultActionOrBuilder extends
       // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.ReturnResultAction)
       com.google.protobuf.MessageOrBuilder {
 
     /**
      * .temporal.api.common.v1.Payload return_this = 1;
-     *
      * @return Whether the returnThis field is set.
      */
     boolean hasReturnThis();
     /**
      * .temporal.api.common.v1.Payload return_this = 1;
-     *
      * @return The returnThis.
      */
     io.temporal.api.common.v1.Payload getReturnThis();
-    /** .temporal.api.common.v1.Payload return_this = 1; */
+    /**
+     * .temporal.api.common.v1.Payload return_this = 1;
+     */
     io.temporal.api.common.v1.PayloadOrBuilder getReturnThisOrBuilder();
   }
-  /** Protobuf type {@code temporal.omes.kitchen_sink.ReturnResultAction} */
-  public static final class ReturnResultAction extends com.google.protobuf.GeneratedMessageV3
-      implements
+  /**
+   * Protobuf type {@code temporal.omes.kitchen_sink.ReturnResultAction}
+   */
+  public static final class ReturnResultAction extends
+      com.google.protobuf.GeneratedMessageV3 implements
       // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.ReturnResultAction)
       ReturnResultActionOrBuilder {
-    private static final long serialVersionUID = 0L;
+  private static final long serialVersionUID = 0L;
     // Use ReturnResultAction.newBuilder() to construct.
     private ReturnResultAction(com.google.protobuf.GeneratedMessageV3.Builder builder) {
       super(builder);
     }
-
-    private ReturnResultAction() {}
+    private ReturnResultAction() {
+    }
 
     @java.lang.Override
     @SuppressWarnings({"unused"})
-    protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
+    protected java.lang.Object newInstance(
+        UnusedPrivateParameter unused) {
       return new ReturnResultAction();
     }
 
-    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
-      return io.temporal.omes.KitchenSink
-          .internal_static_temporal_omes_kitchen_sink_ReturnResultAction_descriptor;
+    public static final com.google.protobuf.Descriptors.Descriptor
+        getDescriptor() {
+      return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ReturnResultAction_descriptor;
     }
 
     @java.lang.Override
     protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
         internalGetFieldAccessorTable() {
-      return io.temporal.omes.KitchenSink
-          .internal_static_temporal_omes_kitchen_sink_ReturnResultAction_fieldAccessorTable
+      return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ReturnResultAction_fieldAccessorTable
           .ensureFieldAccessorsInitialized(
-              io.temporal.omes.KitchenSink.ReturnResultAction.class,
-              io.temporal.omes.KitchenSink.ReturnResultAction.Builder.class);
+              io.temporal.omes.KitchenSink.ReturnResultAction.class, io.temporal.omes.KitchenSink.ReturnResultAction.Builder.class);
     }
 
     private int bitField0_;
@@ -37665,7 +35391,6 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
     private io.temporal.api.common.v1.Payload returnThis_;
     /**
      * .temporal.api.common.v1.Payload return_this = 1;
-     *
      * @return Whether the returnThis field is set.
      */
     @java.lang.Override
@@ -37674,25 +35399,21 @@ public boolean hasReturnThis() {
     }
     /**
      * .temporal.api.common.v1.Payload return_this = 1;
-     *
      * @return The returnThis.
      */
     @java.lang.Override
     public io.temporal.api.common.v1.Payload getReturnThis() {
-      return returnThis_ == null
-          ? io.temporal.api.common.v1.Payload.getDefaultInstance()
-          : returnThis_;
+      return returnThis_ == null ? io.temporal.api.common.v1.Payload.getDefaultInstance() : returnThis_;
     }
-    /** .temporal.api.common.v1.Payload return_this = 1; */
+    /**
+     * .temporal.api.common.v1.Payload return_this = 1;
+     */
     @java.lang.Override
     public io.temporal.api.common.v1.PayloadOrBuilder getReturnThisOrBuilder() {
-      return returnThis_ == null
-          ? io.temporal.api.common.v1.Payload.getDefaultInstance()
-          : returnThis_;
+      return returnThis_ == null ? io.temporal.api.common.v1.Payload.getDefaultInstance() : returnThis_;
     }
 
     private byte memoizedIsInitialized = -1;
-
     @java.lang.Override
     public final boolean isInitialized() {
       byte isInitialized = memoizedIsInitialized;
@@ -37704,7 +35425,8 @@ public final boolean isInitialized() {
     }
 
     @java.lang.Override
-    public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
+    public void writeTo(com.google.protobuf.CodedOutputStream output)
+                        throws java.io.IOException {
       if (((bitField0_ & 0x00000001) != 0)) {
         output.writeMessage(1, getReturnThis());
       }
@@ -37718,7 +35440,8 @@ public int getSerializedSize() {
 
       size = 0;
       if (((bitField0_ & 0x00000001) != 0)) {
-        size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, getReturnThis());
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(1, getReturnThis());
       }
       size += getUnknownFields().getSerializedSize();
       memoizedSize = size;
@@ -37728,17 +35451,17 @@ public int getSerializedSize() {
     @java.lang.Override
     public boolean equals(final java.lang.Object obj) {
       if (obj == this) {
-        return true;
+       return true;
       }
       if (!(obj instanceof io.temporal.omes.KitchenSink.ReturnResultAction)) {
         return super.equals(obj);
       }
-      io.temporal.omes.KitchenSink.ReturnResultAction other =
-          (io.temporal.omes.KitchenSink.ReturnResultAction) obj;
+      io.temporal.omes.KitchenSink.ReturnResultAction other = (io.temporal.omes.KitchenSink.ReturnResultAction) obj;
 
       if (hasReturnThis() != other.hasReturnThis()) return false;
       if (hasReturnThis()) {
-        if (!getReturnThis().equals(other.getReturnThis())) return false;
+        if (!getReturnThis()
+            .equals(other.getReturnThis())) return false;
       }
       if (!getUnknownFields().equals(other.getUnknownFields())) return false;
       return true;
@@ -37761,93 +35484,89 @@ public int hashCode() {
     }
 
     public static io.temporal.omes.KitchenSink.ReturnResultAction parseFrom(
-        java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
+        java.nio.ByteBuffer data)
+        throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data);
     }
-
     public static io.temporal.omes.KitchenSink.ReturnResultAction parseFrom(
-        java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        java.nio.ByteBuffer data,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.ReturnResultAction parseFrom(
         com.google.protobuf.ByteString data)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data);
     }
-
     public static io.temporal.omes.KitchenSink.ReturnResultAction parseFrom(
         com.google.protobuf.ByteString data,
         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.ReturnResultAction parseFrom(byte[] data)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data);
     }
-
     public static io.temporal.omes.KitchenSink.ReturnResultAction parseFrom(
-        byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        byte[] data,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data, extensionRegistry);
     }
-
-    public static io.temporal.omes.KitchenSink.ReturnResultAction parseFrom(
-        java.io.InputStream input) throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
+    public static io.temporal.omes.KitchenSink.ReturnResultAction parseFrom(java.io.InputStream input)
+        throws java.io.IOException {
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input);
     }
-
     public static io.temporal.omes.KitchenSink.ReturnResultAction parseFrom(
-        java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        java.io.InputStream input,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
-          PARSER, input, extensionRegistry);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input, extensionRegistry);
     }
 
-    public static io.temporal.omes.KitchenSink.ReturnResultAction parseDelimitedFrom(
-        java.io.InputStream input) throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
+    public static io.temporal.omes.KitchenSink.ReturnResultAction parseDelimitedFrom(java.io.InputStream input)
+        throws java.io.IOException {
+      return com.google.protobuf.GeneratedMessageV3
+          .parseDelimitedWithIOException(PARSER, input);
     }
 
     public static io.temporal.omes.KitchenSink.ReturnResultAction parseDelimitedFrom(
-        java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        java.io.InputStream input,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
-          PARSER, input, extensionRegistry);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseDelimitedWithIOException(PARSER, input, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.ReturnResultAction parseFrom(
-        com.google.protobuf.CodedInputStream input) throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
+        com.google.protobuf.CodedInputStream input)
+        throws java.io.IOException {
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input);
     }
-
     public static io.temporal.omes.KitchenSink.ReturnResultAction parseFrom(
         com.google.protobuf.CodedInputStream input,
         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
-          PARSER, input, extensionRegistry);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input, extensionRegistry);
     }
 
     @java.lang.Override
-    public Builder newBuilderForType() {
-      return newBuilder();
-    }
-
+    public Builder newBuilderForType() { return newBuilder(); }
     public static Builder newBuilder() {
       return DEFAULT_INSTANCE.toBuilder();
     }
-
     public static Builder newBuilder(io.temporal.omes.KitchenSink.ReturnResultAction prototype) {
       return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
     }
-
     @java.lang.Override
     public Builder toBuilder() {
-      return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
+      return this == DEFAULT_INSTANCE
+          ? new Builder() : new Builder().mergeFrom(this);
     }
 
     @java.lang.Override
@@ -37856,25 +35575,24 @@ protected Builder newBuilderForType(
       Builder builder = new Builder(parent);
       return builder;
     }
-    /** Protobuf type {@code temporal.omes.kitchen_sink.ReturnResultAction} */
-    public static final class Builder
-        extends com.google.protobuf.GeneratedMessageV3.Builder
-        implements
+    /**
+     * Protobuf type {@code temporal.omes.kitchen_sink.ReturnResultAction}
+     */
+    public static final class Builder extends
+        com.google.protobuf.GeneratedMessageV3.Builder implements
         // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.ReturnResultAction)
         io.temporal.omes.KitchenSink.ReturnResultActionOrBuilder {
-      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_ReturnResultAction_descriptor;
+      public static final com.google.protobuf.Descriptors.Descriptor
+          getDescriptor() {
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ReturnResultAction_descriptor;
       }
 
       @java.lang.Override
       protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
           internalGetFieldAccessorTable() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_ReturnResultAction_fieldAccessorTable
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ReturnResultAction_fieldAccessorTable
             .ensureFieldAccessorsInitialized(
-                io.temporal.omes.KitchenSink.ReturnResultAction.class,
-                io.temporal.omes.KitchenSink.ReturnResultAction.Builder.class);
+                io.temporal.omes.KitchenSink.ReturnResultAction.class, io.temporal.omes.KitchenSink.ReturnResultAction.Builder.class);
       }
 
       // Construct using io.temporal.omes.KitchenSink.ReturnResultAction.newBuilder()
@@ -37882,17 +35600,17 @@ private Builder() {
         maybeForceBuilderInitialization();
       }
 
-      private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
+      private Builder(
+          com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
         super(parent);
         maybeForceBuilderInitialization();
       }
-
       private void maybeForceBuilderInitialization() {
-        if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
+        if (com.google.protobuf.GeneratedMessageV3
+                .alwaysUseFieldBuilders) {
           getReturnThisFieldBuilder();
         }
       }
-
       @java.lang.Override
       public Builder clear() {
         super.clear();
@@ -37906,9 +35624,9 @@ public Builder clear() {
       }
 
       @java.lang.Override
-      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_ReturnResultAction_descriptor;
+      public com.google.protobuf.Descriptors.Descriptor
+          getDescriptorForType() {
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ReturnResultAction_descriptor;
       }
 
       @java.lang.Override
@@ -37927,11 +35645,8 @@ public io.temporal.omes.KitchenSink.ReturnResultAction build() {
 
       @java.lang.Override
       public io.temporal.omes.KitchenSink.ReturnResultAction buildPartial() {
-        io.temporal.omes.KitchenSink.ReturnResultAction result =
-            new io.temporal.omes.KitchenSink.ReturnResultAction(this);
-        if (bitField0_ != 0) {
-          buildPartial0(result);
-        }
+        io.temporal.omes.KitchenSink.ReturnResultAction result = new io.temporal.omes.KitchenSink.ReturnResultAction(this);
+        if (bitField0_ != 0) { buildPartial0(result); }
         onBuilt();
         return result;
       }
@@ -37940,8 +35655,9 @@ private void buildPartial0(io.temporal.omes.KitchenSink.ReturnResultAction resul
         int from_bitField0_ = bitField0_;
         int to_bitField0_ = 0;
         if (((from_bitField0_ & 0x00000001) != 0)) {
-          result.returnThis_ =
-              returnThisBuilder_ == null ? returnThis_ : returnThisBuilder_.build();
+          result.returnThis_ = returnThisBuilder_ == null
+              ? returnThis_
+              : returnThisBuilder_.build();
           to_bitField0_ |= 0x00000001;
         }
         result.bitField0_ |= to_bitField0_;
@@ -37951,41 +35667,38 @@ private void buildPartial0(io.temporal.omes.KitchenSink.ReturnResultAction resul
       public Builder clone() {
         return super.clone();
       }
-
       @java.lang.Override
       public Builder setField(
-          com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
+          com.google.protobuf.Descriptors.FieldDescriptor field,
+          java.lang.Object value) {
         return super.setField(field, value);
       }
-
       @java.lang.Override
-      public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
+      public Builder clearField(
+          com.google.protobuf.Descriptors.FieldDescriptor field) {
         return super.clearField(field);
       }
-
       @java.lang.Override
-      public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
+      public Builder clearOneof(
+          com.google.protobuf.Descriptors.OneofDescriptor oneof) {
         return super.clearOneof(oneof);
       }
-
       @java.lang.Override
       public Builder setRepeatedField(
           com.google.protobuf.Descriptors.FieldDescriptor field,
-          int index,
-          java.lang.Object value) {
+          int index, java.lang.Object value) {
         return super.setRepeatedField(field, index, value);
       }
-
       @java.lang.Override
       public Builder addRepeatedField(
-          com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
+          com.google.protobuf.Descriptors.FieldDescriptor field,
+          java.lang.Object value) {
         return super.addRepeatedField(field, value);
       }
-
       @java.lang.Override
       public Builder mergeFrom(com.google.protobuf.Message other) {
         if (other instanceof io.temporal.omes.KitchenSink.ReturnResultAction) {
-          return mergeFrom((io.temporal.omes.KitchenSink.ReturnResultAction) other);
+          return mergeFrom((io.temporal.omes.KitchenSink.ReturnResultAction)other);
         } else {
           super.mergeFrom(other);
           return this;
@@ -37993,8 +35706,7 @@ public Builder mergeFrom(com.google.protobuf.Message other) {
       }
 
       public Builder mergeFrom(io.temporal.omes.KitchenSink.ReturnResultAction other) {
-        if (other == io.temporal.omes.KitchenSink.ReturnResultAction.getDefaultInstance())
-          return this;
+        if (other == io.temporal.omes.KitchenSink.ReturnResultAction.getDefaultInstance()) return this;
         if (other.hasReturnThis()) {
           mergeReturnThis(other.getReturnThis());
         }
@@ -38024,19 +35736,19 @@ public Builder mergeFrom(
               case 0:
                 done = true;
                 break;
-              case 10:
-                {
-                  input.readMessage(getReturnThisFieldBuilder().getBuilder(), extensionRegistry);
-                  bitField0_ |= 0x00000001;
-                  break;
-                } // case 10
-              default:
-                {
-                  if (!super.parseUnknownField(input, extensionRegistry, tag)) {
-                    done = true; // was an endgroup tag
-                  }
-                  break;
-                } // default:
+              case 10: {
+                input.readMessage(
+                    getReturnThisFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                bitField0_ |= 0x00000001;
+                break;
+              } // case 10
+              default: {
+                if (!super.parseUnknownField(input, extensionRegistry, tag)) {
+                  done = true; // was an endgroup tag
+                }
+                break;
+              } // default:
             } // switch (tag)
           } // while (!done)
         } catch (com.google.protobuf.InvalidProtocolBufferException e) {
@@ -38046,18 +35758,13 @@ public Builder mergeFrom(
         } // finally
         return this;
       }
-
       private int bitField0_;
 
       private io.temporal.api.common.v1.Payload returnThis_;
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.api.common.v1.Payload,
-              io.temporal.api.common.v1.Payload.Builder,
-              io.temporal.api.common.v1.PayloadOrBuilder>
-          returnThisBuilder_;
+          io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder, io.temporal.api.common.v1.PayloadOrBuilder> returnThisBuilder_;
       /**
        * .temporal.api.common.v1.Payload return_this = 1;
-       *
        * @return Whether the returnThis field is set.
        */
       public boolean hasReturnThis() {
@@ -38065,19 +35772,18 @@ public boolean hasReturnThis() {
       }
       /**
        * .temporal.api.common.v1.Payload return_this = 1;
-       *
        * @return The returnThis.
        */
       public io.temporal.api.common.v1.Payload getReturnThis() {
         if (returnThisBuilder_ == null) {
-          return returnThis_ == null
-              ? io.temporal.api.common.v1.Payload.getDefaultInstance()
-              : returnThis_;
+          return returnThis_ == null ? io.temporal.api.common.v1.Payload.getDefaultInstance() : returnThis_;
         } else {
           return returnThisBuilder_.getMessage();
         }
       }
-      /** .temporal.api.common.v1.Payload return_this = 1; */
+      /**
+       * .temporal.api.common.v1.Payload return_this = 1;
+       */
       public Builder setReturnThis(io.temporal.api.common.v1.Payload value) {
         if (returnThisBuilder_ == null) {
           if (value == null) {
@@ -38091,8 +35797,11 @@ public Builder setReturnThis(io.temporal.api.common.v1.Payload value) {
         onChanged();
         return this;
       }
-      /** .temporal.api.common.v1.Payload return_this = 1; */
-      public Builder setReturnThis(io.temporal.api.common.v1.Payload.Builder builderForValue) {
+      /**
+       * .temporal.api.common.v1.Payload return_this = 1;
+       */
+      public Builder setReturnThis(
+          io.temporal.api.common.v1.Payload.Builder builderForValue) {
         if (returnThisBuilder_ == null) {
           returnThis_ = builderForValue.build();
         } else {
@@ -38102,12 +35811,14 @@ public Builder setReturnThis(io.temporal.api.common.v1.Payload.Builder builderFo
         onChanged();
         return this;
       }
-      /** .temporal.api.common.v1.Payload return_this = 1; */
+      /**
+       * .temporal.api.common.v1.Payload return_this = 1;
+       */
       public Builder mergeReturnThis(io.temporal.api.common.v1.Payload value) {
         if (returnThisBuilder_ == null) {
-          if (((bitField0_ & 0x00000001) != 0)
-              && returnThis_ != null
-              && returnThis_ != io.temporal.api.common.v1.Payload.getDefaultInstance()) {
+          if (((bitField0_ & 0x00000001) != 0) &&
+            returnThis_ != null &&
+            returnThis_ != io.temporal.api.common.v1.Payload.getDefaultInstance()) {
             getReturnThisBuilder().mergeFrom(value);
           } else {
             returnThis_ = value;
@@ -38121,7 +35832,9 @@ public Builder mergeReturnThis(io.temporal.api.common.v1.Payload value) {
         }
         return this;
       }
-      /** .temporal.api.common.v1.Payload return_this = 1; */
+      /**
+       * .temporal.api.common.v1.Payload return_this = 1;
+       */
       public Builder clearReturnThis() {
         bitField0_ = (bitField0_ & ~0x00000001);
         returnThis_ = null;
@@ -38132,40 +35845,41 @@ public Builder clearReturnThis() {
         onChanged();
         return this;
       }
-      /** .temporal.api.common.v1.Payload return_this = 1; */
+      /**
+       * .temporal.api.common.v1.Payload return_this = 1;
+       */
       public io.temporal.api.common.v1.Payload.Builder getReturnThisBuilder() {
         bitField0_ |= 0x00000001;
         onChanged();
         return getReturnThisFieldBuilder().getBuilder();
       }
-      /** .temporal.api.common.v1.Payload return_this = 1; */
+      /**
+       * .temporal.api.common.v1.Payload return_this = 1;
+       */
       public io.temporal.api.common.v1.PayloadOrBuilder getReturnThisOrBuilder() {
         if (returnThisBuilder_ != null) {
           return returnThisBuilder_.getMessageOrBuilder();
         } else {
-          return returnThis_ == null
-              ? io.temporal.api.common.v1.Payload.getDefaultInstance()
-              : returnThis_;
+          return returnThis_ == null ?
+              io.temporal.api.common.v1.Payload.getDefaultInstance() : returnThis_;
         }
       }
-      /** .temporal.api.common.v1.Payload return_this = 1; */
+      /**
+       * .temporal.api.common.v1.Payload return_this = 1;
+       */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.api.common.v1.Payload,
-              io.temporal.api.common.v1.Payload.Builder,
-              io.temporal.api.common.v1.PayloadOrBuilder>
+          io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder, io.temporal.api.common.v1.PayloadOrBuilder> 
           getReturnThisFieldBuilder() {
         if (returnThisBuilder_ == null) {
-          returnThisBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.api.common.v1.Payload,
-                  io.temporal.api.common.v1.Payload.Builder,
-                  io.temporal.api.common.v1.PayloadOrBuilder>(
-                  getReturnThis(), getParentForChildren(), isClean());
+          returnThisBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder, io.temporal.api.common.v1.PayloadOrBuilder>(
+                  getReturnThis(),
+                  getParentForChildren(),
+                  isClean());
           returnThis_ = null;
         }
         return returnThisBuilder_;
       }
-
       @java.lang.Override
       public final Builder setUnknownFields(
           final com.google.protobuf.UnknownFieldSet unknownFields) {
@@ -38178,12 +35892,12 @@ public final Builder mergeUnknownFields(
         return super.mergeUnknownFields(unknownFields);
       }
 
+
       // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.ReturnResultAction)
     }
 
     // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.ReturnResultAction)
     private static final io.temporal.omes.KitchenSink.ReturnResultAction DEFAULT_INSTANCE;
-
     static {
       DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.ReturnResultAction();
     }
@@ -38192,28 +35906,27 @@ public static io.temporal.omes.KitchenSink.ReturnResultAction getDefaultInstance
       return DEFAULT_INSTANCE;
     }
 
-    private static final com.google.protobuf.Parser PARSER =
-        new com.google.protobuf.AbstractParser() {
-          @java.lang.Override
-          public ReturnResultAction parsePartialFrom(
-              com.google.protobuf.CodedInputStream input,
-              com.google.protobuf.ExtensionRegistryLite extensionRegistry)
-              throws com.google.protobuf.InvalidProtocolBufferException {
-            Builder builder = newBuilder();
-            try {
-              builder.mergeFrom(input, extensionRegistry);
-            } catch (com.google.protobuf.InvalidProtocolBufferException e) {
-              throw e.setUnfinishedMessage(builder.buildPartial());
-            } catch (com.google.protobuf.UninitializedMessageException e) {
-              throw e.asInvalidProtocolBufferException()
-                  .setUnfinishedMessage(builder.buildPartial());
-            } catch (java.io.IOException e) {
-              throw new com.google.protobuf.InvalidProtocolBufferException(e)
-                  .setUnfinishedMessage(builder.buildPartial());
-            }
-            return builder.buildPartial();
-          }
-        };
+    private static final com.google.protobuf.Parser
+        PARSER = new com.google.protobuf.AbstractParser() {
+      @java.lang.Override
+      public ReturnResultAction parsePartialFrom(
+          com.google.protobuf.CodedInputStream input,
+          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+          throws com.google.protobuf.InvalidProtocolBufferException {
+        Builder builder = newBuilder();
+        try {
+          builder.mergeFrom(input, extensionRegistry);
+        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
+          throw e.setUnfinishedMessage(builder.buildPartial());
+        } catch (com.google.protobuf.UninitializedMessageException e) {
+          throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
+        } catch (java.io.IOException e) {
+          throw new com.google.protobuf.InvalidProtocolBufferException(e)
+              .setUnfinishedMessage(builder.buildPartial());
+        }
+        return builder.buildPartial();
+      }
+    };
 
     public static com.google.protobuf.Parser parser() {
       return PARSER;
@@ -38228,60 +35941,61 @@ public com.google.protobuf.Parser getParserForType() {
     public io.temporal.omes.KitchenSink.ReturnResultAction getDefaultInstanceForType() {
       return DEFAULT_INSTANCE;
     }
+
   }
 
-  public interface ReturnErrorActionOrBuilder
-      extends
+  public interface ReturnErrorActionOrBuilder extends
       // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.ReturnErrorAction)
       com.google.protobuf.MessageOrBuilder {
 
     /**
      * .temporal.api.failure.v1.Failure failure = 1;
-     *
      * @return Whether the failure field is set.
      */
     boolean hasFailure();
     /**
      * .temporal.api.failure.v1.Failure failure = 1;
-     *
      * @return The failure.
      */
     io.temporal.api.failure.v1.Failure getFailure();
-    /** .temporal.api.failure.v1.Failure failure = 1; */
+    /**
+     * .temporal.api.failure.v1.Failure failure = 1;
+     */
     io.temporal.api.failure.v1.FailureOrBuilder getFailureOrBuilder();
   }
-  /** Protobuf type {@code temporal.omes.kitchen_sink.ReturnErrorAction} */
-  public static final class ReturnErrorAction extends com.google.protobuf.GeneratedMessageV3
-      implements
+  /**
+   * Protobuf type {@code temporal.omes.kitchen_sink.ReturnErrorAction}
+   */
+  public static final class ReturnErrorAction extends
+      com.google.protobuf.GeneratedMessageV3 implements
       // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.ReturnErrorAction)
       ReturnErrorActionOrBuilder {
-    private static final long serialVersionUID = 0L;
+  private static final long serialVersionUID = 0L;
     // Use ReturnErrorAction.newBuilder() to construct.
     private ReturnErrorAction(com.google.protobuf.GeneratedMessageV3.Builder builder) {
       super(builder);
     }
-
-    private ReturnErrorAction() {}
+    private ReturnErrorAction() {
+    }
 
     @java.lang.Override
     @SuppressWarnings({"unused"})
-    protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
+    protected java.lang.Object newInstance(
+        UnusedPrivateParameter unused) {
       return new ReturnErrorAction();
     }
 
-    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
-      return io.temporal.omes.KitchenSink
-          .internal_static_temporal_omes_kitchen_sink_ReturnErrorAction_descriptor;
+    public static final com.google.protobuf.Descriptors.Descriptor
+        getDescriptor() {
+      return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ReturnErrorAction_descriptor;
     }
 
     @java.lang.Override
     protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
         internalGetFieldAccessorTable() {
-      return io.temporal.omes.KitchenSink
-          .internal_static_temporal_omes_kitchen_sink_ReturnErrorAction_fieldAccessorTable
+      return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ReturnErrorAction_fieldAccessorTable
           .ensureFieldAccessorsInitialized(
-              io.temporal.omes.KitchenSink.ReturnErrorAction.class,
-              io.temporal.omes.KitchenSink.ReturnErrorAction.Builder.class);
+              io.temporal.omes.KitchenSink.ReturnErrorAction.class, io.temporal.omes.KitchenSink.ReturnErrorAction.Builder.class);
     }
 
     private int bitField0_;
@@ -38289,7 +36003,6 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
     private io.temporal.api.failure.v1.Failure failure_;
     /**
      * .temporal.api.failure.v1.Failure failure = 1;
-     *
      * @return Whether the failure field is set.
      */
     @java.lang.Override
@@ -38298,21 +36011,21 @@ public boolean hasFailure() {
     }
     /**
      * .temporal.api.failure.v1.Failure failure = 1;
-     *
      * @return The failure.
      */
     @java.lang.Override
     public io.temporal.api.failure.v1.Failure getFailure() {
       return failure_ == null ? io.temporal.api.failure.v1.Failure.getDefaultInstance() : failure_;
     }
-    /** .temporal.api.failure.v1.Failure failure = 1; */
+    /**
+     * .temporal.api.failure.v1.Failure failure = 1;
+     */
     @java.lang.Override
     public io.temporal.api.failure.v1.FailureOrBuilder getFailureOrBuilder() {
       return failure_ == null ? io.temporal.api.failure.v1.Failure.getDefaultInstance() : failure_;
     }
 
     private byte memoizedIsInitialized = -1;
-
     @java.lang.Override
     public final boolean isInitialized() {
       byte isInitialized = memoizedIsInitialized;
@@ -38324,7 +36037,8 @@ public final boolean isInitialized() {
     }
 
     @java.lang.Override
-    public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
+    public void writeTo(com.google.protobuf.CodedOutputStream output)
+                        throws java.io.IOException {
       if (((bitField0_ & 0x00000001) != 0)) {
         output.writeMessage(1, getFailure());
       }
@@ -38338,7 +36052,8 @@ public int getSerializedSize() {
 
       size = 0;
       if (((bitField0_ & 0x00000001) != 0)) {
-        size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, getFailure());
+        size += com.google.protobuf.CodedOutputStream
+          .computeMessageSize(1, getFailure());
       }
       size += getUnknownFields().getSerializedSize();
       memoizedSize = size;
@@ -38348,17 +36063,17 @@ public int getSerializedSize() {
     @java.lang.Override
     public boolean equals(final java.lang.Object obj) {
       if (obj == this) {
-        return true;
+       return true;
       }
       if (!(obj instanceof io.temporal.omes.KitchenSink.ReturnErrorAction)) {
         return super.equals(obj);
       }
-      io.temporal.omes.KitchenSink.ReturnErrorAction other =
-          (io.temporal.omes.KitchenSink.ReturnErrorAction) obj;
+      io.temporal.omes.KitchenSink.ReturnErrorAction other = (io.temporal.omes.KitchenSink.ReturnErrorAction) obj;
 
       if (hasFailure() != other.hasFailure()) return false;
       if (hasFailure()) {
-        if (!getFailure().equals(other.getFailure())) return false;
+        if (!getFailure()
+            .equals(other.getFailure())) return false;
       }
       if (!getUnknownFields().equals(other.getUnknownFields())) return false;
       return true;
@@ -38380,94 +36095,90 @@ public int hashCode() {
       return hash;
     }
 
-    public static io.temporal.omes.KitchenSink.ReturnErrorAction parseFrom(java.nio.ByteBuffer data)
+    public static io.temporal.omes.KitchenSink.ReturnErrorAction parseFrom(
+        java.nio.ByteBuffer data)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data);
     }
-
     public static io.temporal.omes.KitchenSink.ReturnErrorAction parseFrom(
-        java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        java.nio.ByteBuffer data,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.ReturnErrorAction parseFrom(
         com.google.protobuf.ByteString data)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data);
     }
-
     public static io.temporal.omes.KitchenSink.ReturnErrorAction parseFrom(
         com.google.protobuf.ByteString data,
         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.ReturnErrorAction parseFrom(byte[] data)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data);
     }
-
     public static io.temporal.omes.KitchenSink.ReturnErrorAction parseFrom(
-        byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        byte[] data,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws com.google.protobuf.InvalidProtocolBufferException {
       return PARSER.parseFrom(data, extensionRegistry);
     }
-
-    public static io.temporal.omes.KitchenSink.ReturnErrorAction parseFrom(
-        java.io.InputStream input) throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
+    public static io.temporal.omes.KitchenSink.ReturnErrorAction parseFrom(java.io.InputStream input)
+        throws java.io.IOException {
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input);
     }
-
     public static io.temporal.omes.KitchenSink.ReturnErrorAction parseFrom(
-        java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        java.io.InputStream input,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
-          PARSER, input, extensionRegistry);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input, extensionRegistry);
     }
 
-    public static io.temporal.omes.KitchenSink.ReturnErrorAction parseDelimitedFrom(
-        java.io.InputStream input) throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
+    public static io.temporal.omes.KitchenSink.ReturnErrorAction parseDelimitedFrom(java.io.InputStream input)
+        throws java.io.IOException {
+      return com.google.protobuf.GeneratedMessageV3
+          .parseDelimitedWithIOException(PARSER, input);
     }
 
     public static io.temporal.omes.KitchenSink.ReturnErrorAction parseDelimitedFrom(
-        java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+        java.io.InputStream input,
+        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
-          PARSER, input, extensionRegistry);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseDelimitedWithIOException(PARSER, input, extensionRegistry);
     }
-
     public static io.temporal.omes.KitchenSink.ReturnErrorAction parseFrom(
-        com.google.protobuf.CodedInputStream input) throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
+        com.google.protobuf.CodedInputStream input)
+        throws java.io.IOException {
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input);
     }
-
     public static io.temporal.omes.KitchenSink.ReturnErrorAction parseFrom(
         com.google.protobuf.CodedInputStream input,
         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
         throws java.io.IOException {
-      return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
-          PARSER, input, extensionRegistry);
+      return com.google.protobuf.GeneratedMessageV3
+          .parseWithIOException(PARSER, input, extensionRegistry);
     }
 
     @java.lang.Override
-    public Builder newBuilderForType() {
-      return newBuilder();
-    }
-
+    public Builder newBuilderForType() { return newBuilder(); }
     public static Builder newBuilder() {
       return DEFAULT_INSTANCE.toBuilder();
     }
-
     public static Builder newBuilder(io.temporal.omes.KitchenSink.ReturnErrorAction prototype) {
       return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
     }
-
     @java.lang.Override
     public Builder toBuilder() {
-      return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
+      return this == DEFAULT_INSTANCE
+          ? new Builder() : new Builder().mergeFrom(this);
     }
 
     @java.lang.Override
@@ -38476,25 +36187,24 @@ protected Builder newBuilderForType(
       Builder builder = new Builder(parent);
       return builder;
     }
-    /** Protobuf type {@code temporal.omes.kitchen_sink.ReturnErrorAction} */
-    public static final class Builder
-        extends com.google.protobuf.GeneratedMessageV3.Builder
-        implements
+    /**
+     * Protobuf type {@code temporal.omes.kitchen_sink.ReturnErrorAction}
+     */
+    public static final class Builder extends
+        com.google.protobuf.GeneratedMessageV3.Builder implements
         // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.ReturnErrorAction)
         io.temporal.omes.KitchenSink.ReturnErrorActionOrBuilder {
-      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_ReturnErrorAction_descriptor;
+      public static final com.google.protobuf.Descriptors.Descriptor
+          getDescriptor() {
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ReturnErrorAction_descriptor;
       }
 
       @java.lang.Override
       protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
           internalGetFieldAccessorTable() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_ReturnErrorAction_fieldAccessorTable
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ReturnErrorAction_fieldAccessorTable
             .ensureFieldAccessorsInitialized(
-                io.temporal.omes.KitchenSink.ReturnErrorAction.class,
-                io.temporal.omes.KitchenSink.ReturnErrorAction.Builder.class);
+                io.temporal.omes.KitchenSink.ReturnErrorAction.class, io.temporal.omes.KitchenSink.ReturnErrorAction.Builder.class);
       }
 
       // Construct using io.temporal.omes.KitchenSink.ReturnErrorAction.newBuilder()
@@ -38502,17 +36212,17 @@ private Builder() {
         maybeForceBuilderInitialization();
       }
 
-      private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
+      private Builder(
+          com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
         super(parent);
         maybeForceBuilderInitialization();
       }
-
       private void maybeForceBuilderInitialization() {
-        if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
+        if (com.google.protobuf.GeneratedMessageV3
+                .alwaysUseFieldBuilders) {
           getFailureFieldBuilder();
         }
       }
-
       @java.lang.Override
       public Builder clear() {
         super.clear();
@@ -38526,9 +36236,9 @@ public Builder clear() {
       }
 
       @java.lang.Override
-      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
-        return io.temporal.omes.KitchenSink
-            .internal_static_temporal_omes_kitchen_sink_ReturnErrorAction_descriptor;
+      public com.google.protobuf.Descriptors.Descriptor
+          getDescriptorForType() {
+        return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ReturnErrorAction_descriptor;
       }
 
       @java.lang.Override
@@ -38547,11 +36257,8 @@ public io.temporal.omes.KitchenSink.ReturnErrorAction build() {
 
       @java.lang.Override
       public io.temporal.omes.KitchenSink.ReturnErrorAction buildPartial() {
-        io.temporal.omes.KitchenSink.ReturnErrorAction result =
-            new io.temporal.omes.KitchenSink.ReturnErrorAction(this);
-        if (bitField0_ != 0) {
-          buildPartial0(result);
-        }
+        io.temporal.omes.KitchenSink.ReturnErrorAction result = new io.temporal.omes.KitchenSink.ReturnErrorAction(this);
+        if (bitField0_ != 0) { buildPartial0(result); }
         onBuilt();
         return result;
       }
@@ -38560,7 +36267,9 @@ private void buildPartial0(io.temporal.omes.KitchenSink.ReturnErrorAction result
         int from_bitField0_ = bitField0_;
         int to_bitField0_ = 0;
         if (((from_bitField0_ & 0x00000001) != 0)) {
-          result.failure_ = failureBuilder_ == null ? failure_ : failureBuilder_.build();
+          result.failure_ = failureBuilder_ == null
+              ? failure_
+              : failureBuilder_.build();
           to_bitField0_ |= 0x00000001;
         }
         result.bitField0_ |= to_bitField0_;
@@ -38570,41 +36279,38 @@ private void buildPartial0(io.temporal.omes.KitchenSink.ReturnErrorAction result
       public Builder clone() {
         return super.clone();
       }
-
       @java.lang.Override
       public Builder setField(
-          com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
+          com.google.protobuf.Descriptors.FieldDescriptor field,
+          java.lang.Object value) {
         return super.setField(field, value);
       }
-
       @java.lang.Override
-      public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
+      public Builder clearField(
+          com.google.protobuf.Descriptors.FieldDescriptor field) {
         return super.clearField(field);
       }
-
       @java.lang.Override
-      public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
+      public Builder clearOneof(
+          com.google.protobuf.Descriptors.OneofDescriptor oneof) {
         return super.clearOneof(oneof);
       }
-
       @java.lang.Override
       public Builder setRepeatedField(
           com.google.protobuf.Descriptors.FieldDescriptor field,
-          int index,
-          java.lang.Object value) {
+          int index, java.lang.Object value) {
         return super.setRepeatedField(field, index, value);
       }
-
       @java.lang.Override
       public Builder addRepeatedField(
-          com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
+          com.google.protobuf.Descriptors.FieldDescriptor field,
+          java.lang.Object value) {
         return super.addRepeatedField(field, value);
       }
-
       @java.lang.Override
       public Builder mergeFrom(com.google.protobuf.Message other) {
         if (other instanceof io.temporal.omes.KitchenSink.ReturnErrorAction) {
-          return mergeFrom((io.temporal.omes.KitchenSink.ReturnErrorAction) other);
+          return mergeFrom((io.temporal.omes.KitchenSink.ReturnErrorAction)other);
         } else {
           super.mergeFrom(other);
           return this;
@@ -38612,8 +36318,7 @@ public Builder mergeFrom(com.google.protobuf.Message other) {
       }
 
       public Builder mergeFrom(io.temporal.omes.KitchenSink.ReturnErrorAction other) {
-        if (other == io.temporal.omes.KitchenSink.ReturnErrorAction.getDefaultInstance())
-          return this;
+        if (other == io.temporal.omes.KitchenSink.ReturnErrorAction.getDefaultInstance()) return this;
         if (other.hasFailure()) {
           mergeFailure(other.getFailure());
         }
@@ -38643,19 +36348,19 @@ public Builder mergeFrom(
               case 0:
                 done = true;
                 break;
-              case 10:
-                {
-                  input.readMessage(getFailureFieldBuilder().getBuilder(), extensionRegistry);
-                  bitField0_ |= 0x00000001;
-                  break;
-                } // case 10
-              default:
-                {
-                  if (!super.parseUnknownField(input, extensionRegistry, tag)) {
-                    done = true; // was an endgroup tag
-                  }
-                  break;
-                } // default:
+              case 10: {
+                input.readMessage(
+                    getFailureFieldBuilder().getBuilder(),
+                    extensionRegistry);
+                bitField0_ |= 0x00000001;
+                break;
+              } // case 10
+              default: {
+                if (!super.parseUnknownField(input, extensionRegistry, tag)) {
+                  done = true; // was an endgroup tag
+                }
+                break;
+              } // default:
             } // switch (tag)
           } // while (!done)
         } catch (com.google.protobuf.InvalidProtocolBufferException e) {
@@ -38665,18 +36370,13 @@ public Builder mergeFrom(
         } // finally
         return this;
       }
-
       private int bitField0_;
 
       private io.temporal.api.failure.v1.Failure failure_;
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.api.failure.v1.Failure,
-              io.temporal.api.failure.v1.Failure.Builder,
-              io.temporal.api.failure.v1.FailureOrBuilder>
-          failureBuilder_;
+          io.temporal.api.failure.v1.Failure, io.temporal.api.failure.v1.Failure.Builder, io.temporal.api.failure.v1.FailureOrBuilder> failureBuilder_;
       /**
        * .temporal.api.failure.v1.Failure failure = 1;
-       *
        * @return Whether the failure field is set.
        */
       public boolean hasFailure() {
@@ -38684,19 +36384,18 @@ public boolean hasFailure() {
       }
       /**
        * .temporal.api.failure.v1.Failure failure = 1;
-       *
        * @return The failure.
        */
       public io.temporal.api.failure.v1.Failure getFailure() {
         if (failureBuilder_ == null) {
-          return failure_ == null
-              ? io.temporal.api.failure.v1.Failure.getDefaultInstance()
-              : failure_;
+          return failure_ == null ? io.temporal.api.failure.v1.Failure.getDefaultInstance() : failure_;
         } else {
           return failureBuilder_.getMessage();
         }
       }
-      /** .temporal.api.failure.v1.Failure failure = 1; */
+      /**
+       * .temporal.api.failure.v1.Failure failure = 1;
+       */
       public Builder setFailure(io.temporal.api.failure.v1.Failure value) {
         if (failureBuilder_ == null) {
           if (value == null) {
@@ -38710,8 +36409,11 @@ public Builder setFailure(io.temporal.api.failure.v1.Failure value) {
         onChanged();
         return this;
       }
-      /** .temporal.api.failure.v1.Failure failure = 1; */
-      public Builder setFailure(io.temporal.api.failure.v1.Failure.Builder builderForValue) {
+      /**
+       * .temporal.api.failure.v1.Failure failure = 1;
+       */
+      public Builder setFailure(
+          io.temporal.api.failure.v1.Failure.Builder builderForValue) {
         if (failureBuilder_ == null) {
           failure_ = builderForValue.build();
         } else {
@@ -38721,12 +36423,14 @@ public Builder setFailure(io.temporal.api.failure.v1.Failure.Builder builderForV
         onChanged();
         return this;
       }
-      /** .temporal.api.failure.v1.Failure failure = 1; */
+      /**
+       * .temporal.api.failure.v1.Failure failure = 1;
+       */
       public Builder mergeFailure(io.temporal.api.failure.v1.Failure value) {
         if (failureBuilder_ == null) {
-          if (((bitField0_ & 0x00000001) != 0)
-              && failure_ != null
-              && failure_ != io.temporal.api.failure.v1.Failure.getDefaultInstance()) {
+          if (((bitField0_ & 0x00000001) != 0) &&
+            failure_ != null &&
+            failure_ != io.temporal.api.failure.v1.Failure.getDefaultInstance()) {
             getFailureBuilder().mergeFrom(value);
           } else {
             failure_ = value;
@@ -38740,7 +36444,9 @@ public Builder mergeFailure(io.temporal.api.failure.v1.Failure value) {
         }
         return this;
       }
-      /** .temporal.api.failure.v1.Failure failure = 1; */
+      /**
+       * .temporal.api.failure.v1.Failure failure = 1;
+       */
       public Builder clearFailure() {
         bitField0_ = (bitField0_ & ~0x00000001);
         failure_ = null;
@@ -38751,40 +36457,41 @@ public Builder clearFailure() {
         onChanged();
         return this;
       }
-      /** .temporal.api.failure.v1.Failure failure = 1; */
+      /**
+       * .temporal.api.failure.v1.Failure failure = 1;
+       */
       public io.temporal.api.failure.v1.Failure.Builder getFailureBuilder() {
         bitField0_ |= 0x00000001;
         onChanged();
         return getFailureFieldBuilder().getBuilder();
       }
-      /** .temporal.api.failure.v1.Failure failure = 1; */
+      /**
+       * .temporal.api.failure.v1.Failure failure = 1;
+       */
       public io.temporal.api.failure.v1.FailureOrBuilder getFailureOrBuilder() {
         if (failureBuilder_ != null) {
           return failureBuilder_.getMessageOrBuilder();
         } else {
-          return failure_ == null
-              ? io.temporal.api.failure.v1.Failure.getDefaultInstance()
-              : failure_;
+          return failure_ == null ?
+              io.temporal.api.failure.v1.Failure.getDefaultInstance() : failure_;
         }
       }
-      /** .temporal.api.failure.v1.Failure failure = 1; */
+      /**
+       * .temporal.api.failure.v1.Failure failure = 1;
+       */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.api.failure.v1.Failure,
-              io.temporal.api.failure.v1.Failure.Builder,
-              io.temporal.api.failure.v1.FailureOrBuilder>
+          io.temporal.api.failure.v1.Failure, io.temporal.api.failure.v1.Failure.Builder, io.temporal.api.failure.v1.FailureOrBuilder> 
           getFailureFieldBuilder() {
         if (failureBuilder_ == null) {
-          failureBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.api.failure.v1.Failure,
-                  io.temporal.api.failure.v1.Failure.Builder,
-                  io.temporal.api.failure.v1.FailureOrBuilder>(
-                  getFailure(), getParentForChildren(), isClean());
+          failureBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.api.failure.v1.Failure, io.temporal.api.failure.v1.Failure.Builder, io.temporal.api.failure.v1.FailureOrBuilder>(
+                  getFailure(),
+                  getParentForChildren(),
+                  isClean());
           failure_ = null;
         }
         return failureBuilder_;
       }
-
       @java.lang.Override
       public final Builder setUnknownFields(
           final com.google.protobuf.UnknownFieldSet unknownFields) {
@@ -38797,12 +36504,12 @@ public final Builder mergeUnknownFields(
         return super.mergeUnknownFields(unknownFields);
       }
 
+
       // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.ReturnErrorAction)
     }
 
     // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.ReturnErrorAction)
     private static final io.temporal.omes.KitchenSink.ReturnErrorAction DEFAULT_INSTANCE;
-
     static {
       DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.ReturnErrorAction();
     }
@@ -38811,28 +36518,27 @@ public static io.temporal.omes.KitchenSink.ReturnErrorAction getDefaultInstance(
       return DEFAULT_INSTANCE;
     }
 
-    private static final com.google.protobuf.Parser PARSER =
-        new com.google.protobuf.AbstractParser() {
-          @java.lang.Override
-          public ReturnErrorAction parsePartialFrom(
-              com.google.protobuf.CodedInputStream input,
-              com.google.protobuf.ExtensionRegistryLite extensionRegistry)
-              throws com.google.protobuf.InvalidProtocolBufferException {
-            Builder builder = newBuilder();
-            try {
-              builder.mergeFrom(input, extensionRegistry);
-            } catch (com.google.protobuf.InvalidProtocolBufferException e) {
-              throw e.setUnfinishedMessage(builder.buildPartial());
-            } catch (com.google.protobuf.UninitializedMessageException e) {
-              throw e.asInvalidProtocolBufferException()
-                  .setUnfinishedMessage(builder.buildPartial());
-            } catch (java.io.IOException e) {
-              throw new com.google.protobuf.InvalidProtocolBufferException(e)
-                  .setUnfinishedMessage(builder.buildPartial());
-            }
-            return builder.buildPartial();
-          }
-        };
+    private static final com.google.protobuf.Parser
+        PARSER = new com.google.protobuf.AbstractParser() {
+      @java.lang.Override
+      public ReturnErrorAction parsePartialFrom(
+          com.google.protobuf.CodedInputStream input,
+          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+          throws com.google.protobuf.InvalidProtocolBufferException {
+        Builder builder = newBuilder();
+        try {
+          builder.mergeFrom(input, extensionRegistry);
+        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
+          throw e.setUnfinishedMessage(builder.buildPartial());
+        } catch (com.google.protobuf.UninitializedMessageException e) {
+          throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
+        } catch (java.io.IOException e) {
+          throw new com.google.protobuf.InvalidProtocolBufferException(e)
+              .setUnfinishedMessage(builder.buildPartial());
+        }
+        return builder.buildPartial();
+      }
+    };
 
     public static com.google.protobuf.Parser parser() {
       return PARSER;
@@ -38847,66 +36553,54 @@ public com.google.protobuf.Parser getParserForType() {
     public io.temporal.omes.KitchenSink.ReturnErrorAction getDefaultInstanceForType() {
       return DEFAULT_INSTANCE;
     }
+
   }
 
-  public interface ContinueAsNewActionOrBuilder
-      extends
+  public interface ContinueAsNewActionOrBuilder extends
       // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.ContinueAsNewAction)
       com.google.protobuf.MessageOrBuilder {
 
     /**
-     *
-     *
      * 
      * The identifier the lang-specific sdk uses to execute workflow code
      * 
* * string workflow_type = 1; - * * @return The workflowType. */ java.lang.String getWorkflowType(); /** - * - * *
      * The identifier the lang-specific sdk uses to execute workflow code
      * 
* * string workflow_type = 1; - * * @return The bytes for workflowType. */ - com.google.protobuf.ByteString getWorkflowTypeBytes(); + com.google.protobuf.ByteString + getWorkflowTypeBytes(); /** - * - * *
      * Task queue for the new workflow execution
      * 
* * string task_queue = 2; - * * @return The taskQueue. */ java.lang.String getTaskQueue(); /** - * - * *
      * Task queue for the new workflow execution
      * 
* * string task_queue = 2; - * * @return The bytes for taskQueue. */ - com.google.protobuf.ByteString getTaskQueueBytes(); + com.google.protobuf.ByteString + getTaskQueueBytes(); /** - * - * *
      * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
      * typically wouldn't make any sense.
@@ -38914,10 +36608,9 @@ public interface ContinueAsNewActionOrBuilder
      *
      * repeated .temporal.api.common.v1.Payload arguments = 3;
      */
-    java.util.List getArgumentsList();
+    java.util.List 
+        getArgumentsList();
     /**
-     *
-     *
      * 
      * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
      * typically wouldn't make any sense.
@@ -38927,8 +36620,6 @@ public interface ContinueAsNewActionOrBuilder
      */
     io.temporal.api.common.v1.Payload getArguments(int index);
     /**
-     *
-     *
      * 
      * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
      * typically wouldn't make any sense.
@@ -38938,8 +36629,6 @@ public interface ContinueAsNewActionOrBuilder
      */
     int getArgumentsCount();
     /**
-     *
-     *
      * 
      * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
      * typically wouldn't make any sense.
@@ -38947,11 +36636,9 @@ public interface ContinueAsNewActionOrBuilder
      *
      * repeated .temporal.api.common.v1.Payload arguments = 3;
      */
-    java.util.List
+    java.util.List 
         getArgumentsOrBuilderList();
     /**
-     *
-     *
      * 
      * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
      * typically wouldn't make any sense.
@@ -38959,35 +36646,28 @@ public interface ContinueAsNewActionOrBuilder
      *
      * repeated .temporal.api.common.v1.Payload arguments = 3;
      */
-    io.temporal.api.common.v1.PayloadOrBuilder getArgumentsOrBuilder(int index);
+    io.temporal.api.common.v1.PayloadOrBuilder getArgumentsOrBuilder(
+        int index);
 
     /**
-     *
-     *
      * 
      * Timeout for a single run of the new workflow. Will not re-use current workflow's value.
      * 
* * .google.protobuf.Duration workflow_run_timeout = 4; - * * @return Whether the workflowRunTimeout field is set. */ boolean hasWorkflowRunTimeout(); /** - * - * *
      * Timeout for a single run of the new workflow. Will not re-use current workflow's value.
      * 
* * .google.protobuf.Duration workflow_run_timeout = 4; - * * @return The workflowRunTimeout. */ com.google.protobuf.Duration getWorkflowRunTimeout(); /** - * - * *
      * Timeout for a single run of the new workflow. Will not re-use current workflow's value.
      * 
@@ -38997,32 +36677,24 @@ public interface ContinueAsNewActionOrBuilder com.google.protobuf.DurationOrBuilder getWorkflowRunTimeoutOrBuilder(); /** - * - * *
      * Timeout of a single workflow task. Will not re-use current workflow's value.
      * 
* * .google.protobuf.Duration workflow_task_timeout = 5; - * * @return Whether the workflowTaskTimeout field is set. */ boolean hasWorkflowTaskTimeout(); /** - * - * *
      * Timeout of a single workflow task. Will not re-use current workflow's value.
      * 
* * .google.protobuf.Duration workflow_task_timeout = 5; - * * @return The workflowTaskTimeout. */ com.google.protobuf.Duration getWorkflowTaskTimeout(); /** - * - * *
      * Timeout of a single workflow task. Will not re-use current workflow's value.
      * 
@@ -39032,8 +36704,6 @@ public interface ContinueAsNewActionOrBuilder com.google.protobuf.DurationOrBuilder getWorkflowTaskTimeoutOrBuilder(); /** - * - * *
      * If set, the new workflow will have this memo. If unset, re-uses the current workflow's memo
      * 
@@ -39042,31 +36712,30 @@ public interface ContinueAsNewActionOrBuilder */ int getMemoCount(); /** - * - * *
      * If set, the new workflow will have this memo. If unset, re-uses the current workflow's memo
      * 
* * map<string, .temporal.api.common.v1.Payload> memo = 6; */ - boolean containsMemo(java.lang.String key); - /** Use {@link #getMemoMap()} instead. */ + boolean containsMemo( + java.lang.String key); + /** + * Use {@link #getMemoMap()} instead. + */ @java.lang.Deprecated - java.util.Map getMemo(); + java.util.Map + getMemo(); /** - * - * *
      * If set, the new workflow will have this memo. If unset, re-uses the current workflow's memo
      * 
* * map<string, .temporal.api.common.v1.Payload> memo = 6; */ - java.util.Map getMemoMap(); + java.util.Map + getMemoMap(); /** - * - * *
      * If set, the new workflow will have this memo. If unset, re-uses the current workflow's memo
      * 
@@ -39074,24 +36743,21 @@ public interface ContinueAsNewActionOrBuilder * map<string, .temporal.api.common.v1.Payload> memo = 6; */ /* nullable */ - io.temporal.api.common.v1.Payload getMemoOrDefault( +io.temporal.api.common.v1.Payload getMemoOrDefault( java.lang.String key, /* nullable */ - io.temporal.api.common.v1.Payload defaultValue); +io.temporal.api.common.v1.Payload defaultValue); /** - * - * *
      * If set, the new workflow will have this memo. If unset, re-uses the current workflow's memo
      * 
* * map<string, .temporal.api.common.v1.Payload> memo = 6; */ - io.temporal.api.common.v1.Payload getMemoOrThrow(java.lang.String key); + io.temporal.api.common.v1.Payload getMemoOrThrow( + java.lang.String key); /** - * - * *
      * If set, the new workflow will have these headers. Will *not* re-use current workflow's
      * headers otherwise.
@@ -39101,8 +36767,6 @@ io.temporal.api.common.v1.Payload getMemoOrDefault(
      */
     int getHeadersCount();
     /**
-     *
-     *
      * 
      * If set, the new workflow will have these headers. Will *not* re-use current workflow's
      * headers otherwise.
@@ -39110,13 +36774,15 @@ io.temporal.api.common.v1.Payload getMemoOrDefault(
      *
      * map<string, .temporal.api.common.v1.Payload> headers = 7;
      */
-    boolean containsHeaders(java.lang.String key);
-    /** Use {@link #getHeadersMap()} instead. */
+    boolean containsHeaders(
+        java.lang.String key);
+    /**
+     * Use {@link #getHeadersMap()} instead.
+     */
     @java.lang.Deprecated
-    java.util.Map getHeaders();
+    java.util.Map
+    getHeaders();
     /**
-     *
-     *
      * 
      * If set, the new workflow will have these headers. Will *not* re-use current workflow's
      * headers otherwise.
@@ -39124,10 +36790,9 @@ io.temporal.api.common.v1.Payload getMemoOrDefault(
      *
      * map<string, .temporal.api.common.v1.Payload> headers = 7;
      */
-    java.util.Map getHeadersMap();
+    java.util.Map
+    getHeadersMap();
     /**
-     *
-     *
      * 
      * If set, the new workflow will have these headers. Will *not* re-use current workflow's
      * headers otherwise.
@@ -39136,13 +36801,11 @@ io.temporal.api.common.v1.Payload getMemoOrDefault(
      * map<string, .temporal.api.common.v1.Payload> headers = 7;
      */
     /* nullable */
-    io.temporal.api.common.v1.Payload getHeadersOrDefault(
+io.temporal.api.common.v1.Payload getHeadersOrDefault(
         java.lang.String key,
         /* nullable */
-        io.temporal.api.common.v1.Payload defaultValue);
+io.temporal.api.common.v1.Payload defaultValue);
     /**
-     *
-     *
      * 
      * If set, the new workflow will have these headers. Will *not* re-use current workflow's
      * headers otherwise.
@@ -39150,11 +36813,10 @@ io.temporal.api.common.v1.Payload getHeadersOrDefault(
      *
      * map<string, .temporal.api.common.v1.Payload> headers = 7;
      */
-    io.temporal.api.common.v1.Payload getHeadersOrThrow(java.lang.String key);
+    io.temporal.api.common.v1.Payload getHeadersOrThrow(
+        java.lang.String key);
 
     /**
-     *
-     *
      * 
      * If set, the new workflow will have these search attributes. If unset, re-uses the current
      * workflow's search attributes.
@@ -39164,8 +36826,6 @@ io.temporal.api.common.v1.Payload getHeadersOrDefault(
      */
     int getSearchAttributesCount();
     /**
-     *
-     *
      * 
      * If set, the new workflow will have these search attributes. If unset, re-uses the current
      * workflow's search attributes.
@@ -39173,13 +36833,15 @@ io.temporal.api.common.v1.Payload getHeadersOrDefault(
      *
      * map<string, .temporal.api.common.v1.Payload> search_attributes = 8;
      */
-    boolean containsSearchAttributes(java.lang.String key);
-    /** Use {@link #getSearchAttributesMap()} instead. */
+    boolean containsSearchAttributes(
+        java.lang.String key);
+    /**
+     * Use {@link #getSearchAttributesMap()} instead.
+     */
     @java.lang.Deprecated
-    java.util.Map getSearchAttributes();
+    java.util.Map
+    getSearchAttributes();
     /**
-     *
-     *
      * 
      * If set, the new workflow will have these search attributes. If unset, re-uses the current
      * workflow's search attributes.
@@ -39187,10 +36849,9 @@ io.temporal.api.common.v1.Payload getHeadersOrDefault(
      *
      * map<string, .temporal.api.common.v1.Payload> search_attributes = 8;
      */
-    java.util.Map getSearchAttributesMap();
+    java.util.Map
+    getSearchAttributesMap();
     /**
-     *
-     *
      * 
      * If set, the new workflow will have these search attributes. If unset, re-uses the current
      * workflow's search attributes.
@@ -39199,13 +36860,11 @@ io.temporal.api.common.v1.Payload getHeadersOrDefault(
      * map<string, .temporal.api.common.v1.Payload> search_attributes = 8;
      */
     /* nullable */
-    io.temporal.api.common.v1.Payload getSearchAttributesOrDefault(
+io.temporal.api.common.v1.Payload getSearchAttributesOrDefault(
         java.lang.String key,
         /* nullable */
-        io.temporal.api.common.v1.Payload defaultValue);
+io.temporal.api.common.v1.Payload defaultValue);
     /**
-     *
-     *
      * 
      * If set, the new workflow will have these search attributes. If unset, re-uses the current
      * workflow's search attributes.
@@ -39213,37 +36872,30 @@ io.temporal.api.common.v1.Payload getSearchAttributesOrDefault(
      *
      * map<string, .temporal.api.common.v1.Payload> search_attributes = 8;
      */
-    io.temporal.api.common.v1.Payload getSearchAttributesOrThrow(java.lang.String key);
+    io.temporal.api.common.v1.Payload getSearchAttributesOrThrow(
+        java.lang.String key);
 
     /**
-     *
-     *
      * 
      * If set, the new workflow will have this retry policy. If unset, re-uses the current
      * workflow's retry policy.
      * 
* * .temporal.api.common.v1.RetryPolicy retry_policy = 9; - * * @return Whether the retryPolicy field is set. */ boolean hasRetryPolicy(); /** - * - * *
      * If set, the new workflow will have this retry policy. If unset, re-uses the current
      * workflow's retry policy.
      * 
* * .temporal.api.common.v1.RetryPolicy retry_policy = 9; - * * @return The retryPolicy. */ io.temporal.api.common.v1.RetryPolicy getRetryPolicy(); /** - * - * *
      * If set, the new workflow will have this retry policy. If unset, re-uses the current
      * workflow's retry policy.
@@ -39254,41 +36906,36 @@ io.temporal.api.common.v1.Payload getSearchAttributesOrDefault(
     io.temporal.api.common.v1.RetryPolicyOrBuilder getRetryPolicyOrBuilder();
 
     /**
-     *
-     *
      * 
      * Whether the continued workflow should run on a worker with a compatible build id or not.
      * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 10; - * * @return The enum numeric value on the wire for versioningIntent. */ int getVersioningIntentValue(); /** - * - * *
      * Whether the continued workflow should run on a worker with a compatible build id or not.
      * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 10; - * * @return The versioningIntent. */ io.temporal.omes.KitchenSink.VersioningIntent getVersioningIntent(); } - /** Protobuf type {@code temporal.omes.kitchen_sink.ContinueAsNewAction} */ - public static final class ContinueAsNewAction extends com.google.protobuf.GeneratedMessageV3 - implements + /** + * Protobuf type {@code temporal.omes.kitchen_sink.ContinueAsNewAction} + */ + public static final class ContinueAsNewAction extends + com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.ContinueAsNewAction) ContinueAsNewActionOrBuilder { - private static final long serialVersionUID = 0L; + private static final long serialVersionUID = 0L; // Use ContinueAsNewAction.newBuilder() to construct. private ContinueAsNewAction(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } - private ContinueAsNewAction() { workflowType_ = ""; taskQueue_ = ""; @@ -39298,13 +36945,14 @@ private ContinueAsNewAction() { @java.lang.Override @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { return new ContinueAsNewAction(); } - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_descriptor; } @SuppressWarnings({"rawtypes"}) @@ -39319,34 +36967,28 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMapFieldRefl case 8: return internalGetSearchAttributes(); default: - throw new RuntimeException("Invalid map field number: " + number); + throw new RuntimeException( + "Invalid map field number: " + number); } } - @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.ContinueAsNewAction.class, - io.temporal.omes.KitchenSink.ContinueAsNewAction.Builder.class); + io.temporal.omes.KitchenSink.ContinueAsNewAction.class, io.temporal.omes.KitchenSink.ContinueAsNewAction.Builder.class); } private int bitField0_; public static final int WORKFLOW_TYPE_FIELD_NUMBER = 1; - @SuppressWarnings("serial") private volatile java.lang.Object workflowType_ = ""; /** - * - * *
      * The identifier the lang-specific sdk uses to execute workflow code
      * 
* * string workflow_type = 1; - * * @return The workflowType. */ @java.lang.Override @@ -39355,29 +36997,29 @@ public java.lang.String getWorkflowType() { if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); workflowType_ = s; return s; } } /** - * - * *
      * The identifier the lang-specific sdk uses to execute workflow code
      * 
* * string workflow_type = 1; - * * @return The bytes for workflowType. */ @java.lang.Override - public com.google.protobuf.ByteString getWorkflowTypeBytes() { + public com.google.protobuf.ByteString + getWorkflowTypeBytes() { java.lang.Object ref = workflowType_; if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); workflowType_ = b; return b; } else { @@ -39386,18 +37028,14 @@ public com.google.protobuf.ByteString getWorkflowTypeBytes() { } public static final int TASK_QUEUE_FIELD_NUMBER = 2; - @SuppressWarnings("serial") private volatile java.lang.Object taskQueue_ = ""; /** - * - * *
      * Task queue for the new workflow execution
      * 
* * string task_queue = 2; - * * @return The taskQueue. */ @java.lang.Override @@ -39406,29 +37044,29 @@ public java.lang.String getTaskQueue() { if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); taskQueue_ = s; return s; } } /** - * - * *
      * Task queue for the new workflow execution
      * 
* * string task_queue = 2; - * * @return The bytes for taskQueue. */ @java.lang.Override - public com.google.protobuf.ByteString getTaskQueueBytes() { + public com.google.protobuf.ByteString + getTaskQueueBytes() { java.lang.Object ref = taskQueue_; if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); taskQueue_ = b; return b; } else { @@ -39437,12 +37075,9 @@ public com.google.protobuf.ByteString getTaskQueueBytes() { } public static final int ARGUMENTS_FIELD_NUMBER = 3; - @SuppressWarnings("serial") private java.util.List arguments_; /** - * - * *
      * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
      * typically wouldn't make any sense.
@@ -39455,8 +37090,6 @@ public java.util.List getArgumentsList() {
       return arguments_;
     }
     /**
-     *
-     *
      * 
      * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
      * typically wouldn't make any sense.
@@ -39465,13 +37098,11 @@ public java.util.List getArgumentsList() {
      * repeated .temporal.api.common.v1.Payload arguments = 3;
      */
     @java.lang.Override
-    public java.util.List
+    public java.util.List 
         getArgumentsOrBuilderList() {
       return arguments_;
     }
     /**
-     *
-     *
      * 
      * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
      * typically wouldn't make any sense.
@@ -39484,8 +37115,6 @@ public int getArgumentsCount() {
       return arguments_.size();
     }
     /**
-     *
-     *
      * 
      * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
      * typically wouldn't make any sense.
@@ -39498,8 +37127,6 @@ public io.temporal.api.common.v1.Payload getArguments(int index) {
       return arguments_.get(index);
     }
     /**
-     *
-     *
      * 
      * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
      * typically wouldn't make any sense.
@@ -39508,21 +37135,19 @@ public io.temporal.api.common.v1.Payload getArguments(int index) {
      * repeated .temporal.api.common.v1.Payload arguments = 3;
      */
     @java.lang.Override
-    public io.temporal.api.common.v1.PayloadOrBuilder getArgumentsOrBuilder(int index) {
+    public io.temporal.api.common.v1.PayloadOrBuilder getArgumentsOrBuilder(
+        int index) {
       return arguments_.get(index);
     }
 
     public static final int WORKFLOW_RUN_TIMEOUT_FIELD_NUMBER = 4;
     private com.google.protobuf.Duration workflowRunTimeout_;
     /**
-     *
-     *
      * 
      * Timeout for a single run of the new workflow. Will not re-use current workflow's value.
      * 
* * .google.protobuf.Duration workflow_run_timeout = 4; - * * @return Whether the workflowRunTimeout field is set. */ @java.lang.Override @@ -39530,25 +37155,18 @@ public boolean hasWorkflowRunTimeout() { return ((bitField0_ & 0x00000001) != 0); } /** - * - * *
      * Timeout for a single run of the new workflow. Will not re-use current workflow's value.
      * 
* * .google.protobuf.Duration workflow_run_timeout = 4; - * * @return The workflowRunTimeout. */ @java.lang.Override public com.google.protobuf.Duration getWorkflowRunTimeout() { - return workflowRunTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : workflowRunTimeout_; + return workflowRunTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : workflowRunTimeout_; } /** - * - * *
      * Timeout for a single run of the new workflow. Will not re-use current workflow's value.
      * 
@@ -39557,22 +37175,17 @@ public com.google.protobuf.Duration getWorkflowRunTimeout() { */ @java.lang.Override public com.google.protobuf.DurationOrBuilder getWorkflowRunTimeoutOrBuilder() { - return workflowRunTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : workflowRunTimeout_; + return workflowRunTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : workflowRunTimeout_; } public static final int WORKFLOW_TASK_TIMEOUT_FIELD_NUMBER = 5; private com.google.protobuf.Duration workflowTaskTimeout_; /** - * - * *
      * Timeout of a single workflow task. Will not re-use current workflow's value.
      * 
* * .google.protobuf.Duration workflow_task_timeout = 5; - * * @return Whether the workflowTaskTimeout field is set. */ @java.lang.Override @@ -39580,25 +37193,18 @@ public boolean hasWorkflowTaskTimeout() { return ((bitField0_ & 0x00000002) != 0); } /** - * - * *
      * Timeout of a single workflow task. Will not re-use current workflow's value.
      * 
* * .google.protobuf.Duration workflow_task_timeout = 5; - * * @return The workflowTaskTimeout. */ @java.lang.Override public com.google.protobuf.Duration getWorkflowTaskTimeout() { - return workflowTaskTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : workflowTaskTimeout_; + return workflowTaskTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : workflowTaskTimeout_; } /** - * - * *
      * Timeout of a single workflow task. Will not re-use current workflow's value.
      * 
@@ -39607,43 +37213,36 @@ public com.google.protobuf.Duration getWorkflowTaskTimeout() { */ @java.lang.Override public com.google.protobuf.DurationOrBuilder getWorkflowTaskTimeoutOrBuilder() { - return workflowTaskTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : workflowTaskTimeout_; + return workflowTaskTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : workflowTaskTimeout_; } public static final int MEMO_FIELD_NUMBER = 6; - private static final class MemoDefaultEntryHolder { - static final com.google.protobuf.MapEntry - defaultEntry = + static final com.google.protobuf.MapEntry< + java.lang.String, io.temporal.api.common.v1.Payload> defaultEntry = com.google.protobuf.MapEntry - .newDefaultInstance( - io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_MemoEntry_descriptor, - com.google.protobuf.WireFormat.FieldType.STRING, - "", - com.google.protobuf.WireFormat.FieldType.MESSAGE, - io.temporal.api.common.v1.Payload.getDefaultInstance()); + .newDefaultInstance( + io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_MemoEntry_descriptor, + com.google.protobuf.WireFormat.FieldType.STRING, + "", + com.google.protobuf.WireFormat.FieldType.MESSAGE, + io.temporal.api.common.v1.Payload.getDefaultInstance()); } - @SuppressWarnings("serial") - private com.google.protobuf.MapField memo_; - + private com.google.protobuf.MapField< + java.lang.String, io.temporal.api.common.v1.Payload> memo_; private com.google.protobuf.MapField - internalGetMemo() { + internalGetMemo() { if (memo_ == null) { - return com.google.protobuf.MapField.emptyMapField(MemoDefaultEntryHolder.defaultEntry); + return com.google.protobuf.MapField.emptyMapField( + MemoDefaultEntryHolder.defaultEntry); } return memo_; } - public int getMemoCount() { return internalGetMemo().getMap().size(); } /** - * - * *
      * If set, the new workflow will have this memo. If unset, re-uses the current workflow's memo
      * 
@@ -39651,21 +37250,20 @@ public int getMemoCount() { * map<string, .temporal.api.common.v1.Payload> memo = 6; */ @java.lang.Override - public boolean containsMemo(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } + public boolean containsMemo( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } return internalGetMemo().getMap().containsKey(key); } - /** Use {@link #getMemoMap()} instead. */ + /** + * Use {@link #getMemoMap()} instead. + */ @java.lang.Override @java.lang.Deprecated public java.util.Map getMemo() { return getMemoMap(); } /** - * - * *
      * If set, the new workflow will have this memo. If unset, re-uses the current workflow's memo
      * 
@@ -39677,8 +37275,6 @@ public java.util.Map getMem return internalGetMemo().getMap(); } /** - * - * *
      * If set, the new workflow will have this memo. If unset, re-uses the current workflow's memo
      * 
@@ -39686,20 +37282,17 @@ public java.util.Map getMem * map<string, .temporal.api.common.v1.Payload> memo = 6; */ @java.lang.Override - public /* nullable */ io.temporal.api.common.v1.Payload getMemoOrDefault( + public /* nullable */ +io.temporal.api.common.v1.Payload getMemoOrDefault( java.lang.String key, /* nullable */ - io.temporal.api.common.v1.Payload defaultValue) { - if (key == null) { - throw new NullPointerException("map key"); - } +io.temporal.api.common.v1.Payload defaultValue) { + if (key == null) { throw new NullPointerException("map key"); } java.util.Map map = internalGetMemo().getMap(); return map.containsKey(key) ? map.get(key) : defaultValue; } /** - * - * *
      * If set, the new workflow will have this memo. If unset, re-uses the current workflow's memo
      * 
@@ -39707,10 +37300,9 @@ public java.util.Map getMem * map<string, .temporal.api.common.v1.Payload> memo = 6; */ @java.lang.Override - public io.temporal.api.common.v1.Payload getMemoOrThrow(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } + public io.temporal.api.common.v1.Payload getMemoOrThrow( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } java.util.Map map = internalGetMemo().getMap(); if (!map.containsKey(key)) { @@ -39720,38 +37312,32 @@ public io.temporal.api.common.v1.Payload getMemoOrThrow(java.lang.String key) { } public static final int HEADERS_FIELD_NUMBER = 7; - private static final class HeadersDefaultEntryHolder { - static final com.google.protobuf.MapEntry - defaultEntry = + static final com.google.protobuf.MapEntry< + java.lang.String, io.temporal.api.common.v1.Payload> defaultEntry = com.google.protobuf.MapEntry - .newDefaultInstance( - io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_HeadersEntry_descriptor, - com.google.protobuf.WireFormat.FieldType.STRING, - "", - com.google.protobuf.WireFormat.FieldType.MESSAGE, - io.temporal.api.common.v1.Payload.getDefaultInstance()); + .newDefaultInstance( + io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_HeadersEntry_descriptor, + com.google.protobuf.WireFormat.FieldType.STRING, + "", + com.google.protobuf.WireFormat.FieldType.MESSAGE, + io.temporal.api.common.v1.Payload.getDefaultInstance()); } - @SuppressWarnings("serial") + private com.google.protobuf.MapField< + java.lang.String, io.temporal.api.common.v1.Payload> headers_; private com.google.protobuf.MapField - headers_; - - private com.google.protobuf.MapField - internalGetHeaders() { + internalGetHeaders() { if (headers_ == null) { - return com.google.protobuf.MapField.emptyMapField(HeadersDefaultEntryHolder.defaultEntry); + return com.google.protobuf.MapField.emptyMapField( + HeadersDefaultEntryHolder.defaultEntry); } return headers_; } - public int getHeadersCount() { return internalGetHeaders().getMap().size(); } /** - * - * *
      * If set, the new workflow will have these headers. Will *not* re-use current workflow's
      * headers otherwise.
@@ -39760,21 +37346,20 @@ public int getHeadersCount() {
      * map<string, .temporal.api.common.v1.Payload> headers = 7;
      */
     @java.lang.Override
-    public boolean containsHeaders(java.lang.String key) {
-      if (key == null) {
-        throw new NullPointerException("map key");
-      }
+    public boolean containsHeaders(
+        java.lang.String key) {
+      if (key == null) { throw new NullPointerException("map key"); }
       return internalGetHeaders().getMap().containsKey(key);
     }
-    /** Use {@link #getHeadersMap()} instead. */
+    /**
+     * Use {@link #getHeadersMap()} instead.
+     */
     @java.lang.Override
     @java.lang.Deprecated
     public java.util.Map getHeaders() {
       return getHeadersMap();
     }
     /**
-     *
-     *
      * 
      * If set, the new workflow will have these headers. Will *not* re-use current workflow's
      * headers otherwise.
@@ -39787,8 +37372,6 @@ public java.util.Map getHea
       return internalGetHeaders().getMap();
     }
     /**
-     *
-     *
      * 
      * If set, the new workflow will have these headers. Will *not* re-use current workflow's
      * headers otherwise.
@@ -39797,20 +37380,17 @@ public java.util.Map getHea
      * map<string, .temporal.api.common.v1.Payload> headers = 7;
      */
     @java.lang.Override
-    public /* nullable */ io.temporal.api.common.v1.Payload getHeadersOrDefault(
+    public /* nullable */
+io.temporal.api.common.v1.Payload getHeadersOrDefault(
         java.lang.String key,
         /* nullable */
-        io.temporal.api.common.v1.Payload defaultValue) {
-      if (key == null) {
-        throw new NullPointerException("map key");
-      }
+io.temporal.api.common.v1.Payload defaultValue) {
+      if (key == null) { throw new NullPointerException("map key"); }
       java.util.Map map =
           internalGetHeaders().getMap();
       return map.containsKey(key) ? map.get(key) : defaultValue;
     }
     /**
-     *
-     *
      * 
      * If set, the new workflow will have these headers. Will *not* re-use current workflow's
      * headers otherwise.
@@ -39819,10 +37399,9 @@ public java.util.Map getHea
      * map<string, .temporal.api.common.v1.Payload> headers = 7;
      */
     @java.lang.Override
-    public io.temporal.api.common.v1.Payload getHeadersOrThrow(java.lang.String key) {
-      if (key == null) {
-        throw new NullPointerException("map key");
-      }
+    public io.temporal.api.common.v1.Payload getHeadersOrThrow(
+        java.lang.String key) {
+      if (key == null) { throw new NullPointerException("map key"); }
       java.util.Map map =
           internalGetHeaders().getMap();
       if (!map.containsKey(key)) {
@@ -39832,39 +37411,32 @@ public io.temporal.api.common.v1.Payload getHeadersOrThrow(java.lang.String key)
     }
 
     public static final int SEARCH_ATTRIBUTES_FIELD_NUMBER = 8;
-
     private static final class SearchAttributesDefaultEntryHolder {
-      static final com.google.protobuf.MapEntry
-          defaultEntry =
+      static final com.google.protobuf.MapEntry<
+          java.lang.String, io.temporal.api.common.v1.Payload> defaultEntry =
               com.google.protobuf.MapEntry
-                  .newDefaultInstance(
-                      io.temporal.omes.KitchenSink
-                          .internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_SearchAttributesEntry_descriptor,
-                      com.google.protobuf.WireFormat.FieldType.STRING,
-                      "",
-                      com.google.protobuf.WireFormat.FieldType.MESSAGE,
-                      io.temporal.api.common.v1.Payload.getDefaultInstance());
+              .newDefaultInstance(
+                  io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_SearchAttributesEntry_descriptor, 
+                  com.google.protobuf.WireFormat.FieldType.STRING,
+                  "",
+                  com.google.protobuf.WireFormat.FieldType.MESSAGE,
+                  io.temporal.api.common.v1.Payload.getDefaultInstance());
     }
-
     @SuppressWarnings("serial")
+    private com.google.protobuf.MapField<
+        java.lang.String, io.temporal.api.common.v1.Payload> searchAttributes_;
     private com.google.protobuf.MapField
-        searchAttributes_;
-
-    private com.google.protobuf.MapField
-        internalGetSearchAttributes() {
+    internalGetSearchAttributes() {
       if (searchAttributes_ == null) {
         return com.google.protobuf.MapField.emptyMapField(
             SearchAttributesDefaultEntryHolder.defaultEntry);
       }
       return searchAttributes_;
     }
-
     public int getSearchAttributesCount() {
       return internalGetSearchAttributes().getMap().size();
     }
     /**
-     *
-     *
      * 
      * If set, the new workflow will have these search attributes. If unset, re-uses the current
      * workflow's search attributes.
@@ -39873,22 +37445,20 @@ public int getSearchAttributesCount() {
      * map<string, .temporal.api.common.v1.Payload> search_attributes = 8;
      */
     @java.lang.Override
-    public boolean containsSearchAttributes(java.lang.String key) {
-      if (key == null) {
-        throw new NullPointerException("map key");
-      }
+    public boolean containsSearchAttributes(
+        java.lang.String key) {
+      if (key == null) { throw new NullPointerException("map key"); }
       return internalGetSearchAttributes().getMap().containsKey(key);
     }
-    /** Use {@link #getSearchAttributesMap()} instead. */
+    /**
+     * Use {@link #getSearchAttributesMap()} instead.
+     */
     @java.lang.Override
     @java.lang.Deprecated
-    public java.util.Map
-        getSearchAttributes() {
+    public java.util.Map getSearchAttributes() {
       return getSearchAttributesMap();
     }
     /**
-     *
-     *
      * 
      * If set, the new workflow will have these search attributes. If unset, re-uses the current
      * workflow's search attributes.
@@ -39897,13 +37467,10 @@ public boolean containsSearchAttributes(java.lang.String key) {
      * map<string, .temporal.api.common.v1.Payload> search_attributes = 8;
      */
     @java.lang.Override
-    public java.util.Map
-        getSearchAttributesMap() {
+    public java.util.Map getSearchAttributesMap() {
       return internalGetSearchAttributes().getMap();
     }
     /**
-     *
-     *
      * 
      * If set, the new workflow will have these search attributes. If unset, re-uses the current
      * workflow's search attributes.
@@ -39912,20 +37479,17 @@ public boolean containsSearchAttributes(java.lang.String key) {
      * map<string, .temporal.api.common.v1.Payload> search_attributes = 8;
      */
     @java.lang.Override
-    public /* nullable */ io.temporal.api.common.v1.Payload getSearchAttributesOrDefault(
+    public /* nullable */
+io.temporal.api.common.v1.Payload getSearchAttributesOrDefault(
         java.lang.String key,
         /* nullable */
-        io.temporal.api.common.v1.Payload defaultValue) {
-      if (key == null) {
-        throw new NullPointerException("map key");
-      }
+io.temporal.api.common.v1.Payload defaultValue) {
+      if (key == null) { throw new NullPointerException("map key"); }
       java.util.Map map =
           internalGetSearchAttributes().getMap();
       return map.containsKey(key) ? map.get(key) : defaultValue;
     }
     /**
-     *
-     *
      * 
      * If set, the new workflow will have these search attributes. If unset, re-uses the current
      * workflow's search attributes.
@@ -39934,10 +37498,9 @@ public boolean containsSearchAttributes(java.lang.String key) {
      * map<string, .temporal.api.common.v1.Payload> search_attributes = 8;
      */
     @java.lang.Override
-    public io.temporal.api.common.v1.Payload getSearchAttributesOrThrow(java.lang.String key) {
-      if (key == null) {
-        throw new NullPointerException("map key");
-      }
+    public io.temporal.api.common.v1.Payload getSearchAttributesOrThrow(
+        java.lang.String key) {
+      if (key == null) { throw new NullPointerException("map key"); }
       java.util.Map map =
           internalGetSearchAttributes().getMap();
       if (!map.containsKey(key)) {
@@ -39949,15 +37512,12 @@ public io.temporal.api.common.v1.Payload getSearchAttributesOrThrow(java.lang.St
     public static final int RETRY_POLICY_FIELD_NUMBER = 9;
     private io.temporal.api.common.v1.RetryPolicy retryPolicy_;
     /**
-     *
-     *
      * 
      * If set, the new workflow will have this retry policy. If unset, re-uses the current
      * workflow's retry policy.
      * 
* * .temporal.api.common.v1.RetryPolicy retry_policy = 9; - * * @return Whether the retryPolicy field is set. */ @java.lang.Override @@ -39965,26 +37525,19 @@ public boolean hasRetryPolicy() { return ((bitField0_ & 0x00000004) != 0); } /** - * - * *
      * If set, the new workflow will have this retry policy. If unset, re-uses the current
      * workflow's retry policy.
      * 
* * .temporal.api.common.v1.RetryPolicy retry_policy = 9; - * * @return The retryPolicy. */ @java.lang.Override public io.temporal.api.common.v1.RetryPolicy getRetryPolicy() { - return retryPolicy_ == null - ? io.temporal.api.common.v1.RetryPolicy.getDefaultInstance() - : retryPolicy_; + return retryPolicy_ == null ? io.temporal.api.common.v1.RetryPolicy.getDefaultInstance() : retryPolicy_; } /** - * - * *
      * If set, the new workflow will have this retry policy. If unset, re-uses the current
      * workflow's retry policy.
@@ -39994,48 +37547,36 @@ public io.temporal.api.common.v1.RetryPolicy getRetryPolicy() {
      */
     @java.lang.Override
     public io.temporal.api.common.v1.RetryPolicyOrBuilder getRetryPolicyOrBuilder() {
-      return retryPolicy_ == null
-          ? io.temporal.api.common.v1.RetryPolicy.getDefaultInstance()
-          : retryPolicy_;
+      return retryPolicy_ == null ? io.temporal.api.common.v1.RetryPolicy.getDefaultInstance() : retryPolicy_;
     }
 
     public static final int VERSIONING_INTENT_FIELD_NUMBER = 10;
     private int versioningIntent_ = 0;
     /**
-     *
-     *
      * 
      * Whether the continued workflow should run on a worker with a compatible build id or not.
      * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 10; - * * @return The enum numeric value on the wire for versioningIntent. */ - @java.lang.Override - public int getVersioningIntentValue() { + @java.lang.Override public int getVersioningIntentValue() { return versioningIntent_; } /** - * - * *
      * Whether the continued workflow should run on a worker with a compatible build id or not.
      * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 10; - * * @return The versioningIntent. */ - @java.lang.Override - public io.temporal.omes.KitchenSink.VersioningIntent getVersioningIntent() { - io.temporal.omes.KitchenSink.VersioningIntent result = - io.temporal.omes.KitchenSink.VersioningIntent.forNumber(versioningIntent_); + @java.lang.Override public io.temporal.omes.KitchenSink.VersioningIntent getVersioningIntent() { + io.temporal.omes.KitchenSink.VersioningIntent result = io.temporal.omes.KitchenSink.VersioningIntent.forNumber(versioningIntent_); return result == null ? io.temporal.omes.KitchenSink.VersioningIntent.UNRECOGNIZED : result; } private byte memoizedIsInitialized = -1; - @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; @@ -40047,7 +37588,8 @@ public final boolean isInitialized() { } @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(workflowType_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, workflowType_); } @@ -40063,11 +37605,20 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (((bitField0_ & 0x00000002) != 0)) { output.writeMessage(5, getWorkflowTaskTimeout()); } - com.google.protobuf.GeneratedMessageV3.serializeStringMapTo( - output, internalGetMemo(), MemoDefaultEntryHolder.defaultEntry, 6); - com.google.protobuf.GeneratedMessageV3.serializeStringMapTo( - output, internalGetHeaders(), HeadersDefaultEntryHolder.defaultEntry, 7); - com.google.protobuf.GeneratedMessageV3.serializeStringMapTo( + com.google.protobuf.GeneratedMessageV3 + .serializeStringMapTo( + output, + internalGetMemo(), + MemoDefaultEntryHolder.defaultEntry, + 6); + com.google.protobuf.GeneratedMessageV3 + .serializeStringMapTo( + output, + internalGetHeaders(), + HeadersDefaultEntryHolder.defaultEntry, + 7); + com.google.protobuf.GeneratedMessageV3 + .serializeStringMapTo( output, internalGetSearchAttributes(), SearchAttributesDefaultEntryHolder.defaultEntry, @@ -40075,8 +37626,7 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (((bitField0_ & 0x00000004) != 0)) { output.writeMessage(9, getRetryPolicy()); } - if (versioningIntent_ - != io.temporal.omes.KitchenSink.VersioningIntent.UNSPECIFIED.getNumber()) { + if (versioningIntent_ != io.temporal.omes.KitchenSink.VersioningIntent.UNSPECIFIED.getNumber()) { output.writeEnum(10, versioningIntent_); } getUnknownFields().writeTo(output); @@ -40095,54 +37645,54 @@ public int getSerializedSize() { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, taskQueue_); } for (int i = 0; i < arguments_.size(); i++) { - size += com.google.protobuf.CodedOutputStream.computeMessageSize(3, arguments_.get(i)); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(3, arguments_.get(i)); } if (((bitField0_ & 0x00000001) != 0)) { - size += - com.google.protobuf.CodedOutputStream.computeMessageSize(4, getWorkflowRunTimeout()); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(4, getWorkflowRunTimeout()); } if (((bitField0_ & 0x00000002) != 0)) { - size += - com.google.protobuf.CodedOutputStream.computeMessageSize(5, getWorkflowTaskTimeout()); - } - for (java.util.Map.Entry entry : - internalGetMemo().getMap().entrySet()) { - com.google.protobuf.MapEntry memo__ = - MemoDefaultEntryHolder.defaultEntry - .newBuilderForType() - .setKey(entry.getKey()) - .setValue(entry.getValue()) - .build(); - size += com.google.protobuf.CodedOutputStream.computeMessageSize(6, memo__); - } - for (java.util.Map.Entry entry : - internalGetHeaders().getMap().entrySet()) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(5, getWorkflowTaskTimeout()); + } + for (java.util.Map.Entry entry + : internalGetMemo().getMap().entrySet()) { + com.google.protobuf.MapEntry + memo__ = MemoDefaultEntryHolder.defaultEntry.newBuilderForType() + .setKey(entry.getKey()) + .setValue(entry.getValue()) + .build(); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(6, memo__); + } + for (java.util.Map.Entry entry + : internalGetHeaders().getMap().entrySet()) { com.google.protobuf.MapEntry - headers__ = - HeadersDefaultEntryHolder.defaultEntry - .newBuilderForType() - .setKey(entry.getKey()) - .setValue(entry.getValue()) - .build(); - size += com.google.protobuf.CodedOutputStream.computeMessageSize(7, headers__); - } - for (java.util.Map.Entry entry : - internalGetSearchAttributes().getMap().entrySet()) { + headers__ = HeadersDefaultEntryHolder.defaultEntry.newBuilderForType() + .setKey(entry.getKey()) + .setValue(entry.getValue()) + .build(); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(7, headers__); + } + for (java.util.Map.Entry entry + : internalGetSearchAttributes().getMap().entrySet()) { com.google.protobuf.MapEntry - searchAttributes__ = - SearchAttributesDefaultEntryHolder.defaultEntry - .newBuilderForType() - .setKey(entry.getKey()) - .setValue(entry.getValue()) - .build(); - size += com.google.protobuf.CodedOutputStream.computeMessageSize(8, searchAttributes__); + searchAttributes__ = SearchAttributesDefaultEntryHolder.defaultEntry.newBuilderForType() + .setKey(entry.getKey()) + .setValue(entry.getValue()) + .build(); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(8, searchAttributes__); } if (((bitField0_ & 0x00000004) != 0)) { - size += com.google.protobuf.CodedOutputStream.computeMessageSize(9, getRetryPolicy()); + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(9, getRetryPolicy()); } - if (versioningIntent_ - != io.temporal.omes.KitchenSink.VersioningIntent.UNSPECIFIED.getNumber()) { - size += com.google.protobuf.CodedOutputStream.computeEnumSize(10, versioningIntent_); + if (versioningIntent_ != io.temporal.omes.KitchenSink.VersioningIntent.UNSPECIFIED.getNumber()) { + size += com.google.protobuf.CodedOutputStream + .computeEnumSize(10, versioningIntent_); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; @@ -40152,31 +37702,39 @@ public int getSerializedSize() { @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { - return true; + return true; } if (!(obj instanceof io.temporal.omes.KitchenSink.ContinueAsNewAction)) { return super.equals(obj); } - io.temporal.omes.KitchenSink.ContinueAsNewAction other = - (io.temporal.omes.KitchenSink.ContinueAsNewAction) obj; + io.temporal.omes.KitchenSink.ContinueAsNewAction other = (io.temporal.omes.KitchenSink.ContinueAsNewAction) obj; - if (!getWorkflowType().equals(other.getWorkflowType())) return false; - if (!getTaskQueue().equals(other.getTaskQueue())) return false; - if (!getArgumentsList().equals(other.getArgumentsList())) return false; + if (!getWorkflowType() + .equals(other.getWorkflowType())) return false; + if (!getTaskQueue() + .equals(other.getTaskQueue())) return false; + if (!getArgumentsList() + .equals(other.getArgumentsList())) return false; if (hasWorkflowRunTimeout() != other.hasWorkflowRunTimeout()) return false; if (hasWorkflowRunTimeout()) { - if (!getWorkflowRunTimeout().equals(other.getWorkflowRunTimeout())) return false; + if (!getWorkflowRunTimeout() + .equals(other.getWorkflowRunTimeout())) return false; } if (hasWorkflowTaskTimeout() != other.hasWorkflowTaskTimeout()) return false; if (hasWorkflowTaskTimeout()) { - if (!getWorkflowTaskTimeout().equals(other.getWorkflowTaskTimeout())) return false; - } - if (!internalGetMemo().equals(other.internalGetMemo())) return false; - if (!internalGetHeaders().equals(other.internalGetHeaders())) return false; - if (!internalGetSearchAttributes().equals(other.internalGetSearchAttributes())) return false; + if (!getWorkflowTaskTimeout() + .equals(other.getWorkflowTaskTimeout())) return false; + } + if (!internalGetMemo().equals( + other.internalGetMemo())) return false; + if (!internalGetHeaders().equals( + other.internalGetHeaders())) return false; + if (!internalGetSearchAttributes().equals( + other.internalGetSearchAttributes())) return false; if (hasRetryPolicy() != other.hasRetryPolicy()) return false; if (hasRetryPolicy()) { - if (!getRetryPolicy().equals(other.getRetryPolicy())) return false; + if (!getRetryPolicy() + .equals(other.getRetryPolicy())) return false; } if (versioningIntent_ != other.versioningIntent_) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; @@ -40230,93 +37788,89 @@ public int hashCode() { } public static io.temporal.omes.KitchenSink.ContinueAsNewAction parseFrom( - java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.ContinueAsNewAction parseFrom( - java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.ContinueAsNewAction parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.ContinueAsNewAction parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.ContinueAsNewAction parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.ContinueAsNewAction parseFrom( - byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - - public static io.temporal.omes.KitchenSink.ContinueAsNewAction parseFrom( - java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + public static io.temporal.omes.KitchenSink.ContinueAsNewAction parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.ContinueAsNewAction parseFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.ContinueAsNewAction parseDelimitedFrom( - java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + public static io.temporal.omes.KitchenSink.ContinueAsNewAction parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); } public static io.temporal.omes.KitchenSink.ContinueAsNewAction parseDelimitedFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.ContinueAsNewAction parseFrom( - com.google.protobuf.CodedInputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.ContinueAsNewAction parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override - public Builder newBuilderForType() { - return newBuilder(); - } - + public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(io.temporal.omes.KitchenSink.ContinueAsNewAction prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } - @java.lang.Override public Builder toBuilder() { - return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override @@ -40325,15 +37879,16 @@ protected Builder newBuilderForType( Builder builder = new Builder(parent); return builder; } - /** Protobuf type {@code temporal.omes.kitchen_sink.ContinueAsNewAction} */ - public static final class Builder - extends com.google.protobuf.GeneratedMessageV3.Builder - implements + /** + * Protobuf type {@code temporal.omes.kitchen_sink.ContinueAsNewAction} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.ContinueAsNewAction) io.temporal.omes.KitchenSink.ContinueAsNewActionOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_descriptor; } @SuppressWarnings({"rawtypes"}) @@ -40347,10 +37902,10 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMapFieldRefl case 8: return internalGetSearchAttributes(); default: - throw new RuntimeException("Invalid map field number: " + number); + throw new RuntimeException( + "Invalid map field number: " + number); } } - @SuppressWarnings({"rawtypes"}) protected com.google.protobuf.MapFieldReflectionAccessor internalGetMutableMapFieldReflection( int number) { @@ -40362,18 +37917,16 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMutableMapFi case 8: return internalGetMutableSearchAttributes(); default: - throw new RuntimeException("Invalid map field number: " + number); + throw new RuntimeException( + "Invalid map field number: " + number); } } - @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.ContinueAsNewAction.class, - io.temporal.omes.KitchenSink.ContinueAsNewAction.Builder.class); + io.temporal.omes.KitchenSink.ContinueAsNewAction.class, io.temporal.omes.KitchenSink.ContinueAsNewAction.Builder.class); } // Construct using io.temporal.omes.KitchenSink.ContinueAsNewAction.newBuilder() @@ -40381,20 +37934,20 @@ private Builder() { maybeForceBuilderInitialization(); } - private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { getArgumentsFieldBuilder(); getWorkflowRunTimeoutFieldBuilder(); getWorkflowTaskTimeoutFieldBuilder(); getRetryPolicyFieldBuilder(); } } - @java.lang.Override public Builder clear() { super.clear(); @@ -40431,9 +37984,9 @@ public Builder clear() { } @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_descriptor; + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_descriptor; } @java.lang.Override @@ -40452,18 +38005,14 @@ public io.temporal.omes.KitchenSink.ContinueAsNewAction build() { @java.lang.Override public io.temporal.omes.KitchenSink.ContinueAsNewAction buildPartial() { - io.temporal.omes.KitchenSink.ContinueAsNewAction result = - new io.temporal.omes.KitchenSink.ContinueAsNewAction(this); + io.temporal.omes.KitchenSink.ContinueAsNewAction result = new io.temporal.omes.KitchenSink.ContinueAsNewAction(this); buildPartialRepeatedFields(result); - if (bitField0_ != 0) { - buildPartial0(result); - } + if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } - private void buildPartialRepeatedFields( - io.temporal.omes.KitchenSink.ContinueAsNewAction result) { + private void buildPartialRepeatedFields(io.temporal.omes.KitchenSink.ContinueAsNewAction result) { if (argumentsBuilder_ == null) { if (((bitField0_ & 0x00000004) != 0)) { arguments_ = java.util.Collections.unmodifiableList(arguments_); @@ -40485,17 +38034,15 @@ private void buildPartial0(io.temporal.omes.KitchenSink.ContinueAsNewAction resu } int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000008) != 0)) { - result.workflowRunTimeout_ = - workflowRunTimeoutBuilder_ == null - ? workflowRunTimeout_ - : workflowRunTimeoutBuilder_.build(); + result.workflowRunTimeout_ = workflowRunTimeoutBuilder_ == null + ? workflowRunTimeout_ + : workflowRunTimeoutBuilder_.build(); to_bitField0_ |= 0x00000001; } if (((from_bitField0_ & 0x00000010) != 0)) { - result.workflowTaskTimeout_ = - workflowTaskTimeoutBuilder_ == null - ? workflowTaskTimeout_ - : workflowTaskTimeoutBuilder_.build(); + result.workflowTaskTimeout_ = workflowTaskTimeoutBuilder_ == null + ? workflowTaskTimeout_ + : workflowTaskTimeoutBuilder_.build(); to_bitField0_ |= 0x00000002; } if (((from_bitField0_ & 0x00000020) != 0)) { @@ -40505,12 +38052,12 @@ private void buildPartial0(io.temporal.omes.KitchenSink.ContinueAsNewAction resu result.headers_ = internalGetHeaders().build(HeadersDefaultEntryHolder.defaultEntry); } if (((from_bitField0_ & 0x00000080) != 0)) { - result.searchAttributes_ = - internalGetSearchAttributes().build(SearchAttributesDefaultEntryHolder.defaultEntry); + result.searchAttributes_ = internalGetSearchAttributes().build(SearchAttributesDefaultEntryHolder.defaultEntry); } if (((from_bitField0_ & 0x00000100) != 0)) { - result.retryPolicy_ = - retryPolicyBuilder_ == null ? retryPolicy_ : retryPolicyBuilder_.build(); + result.retryPolicy_ = retryPolicyBuilder_ == null + ? retryPolicy_ + : retryPolicyBuilder_.build(); to_bitField0_ |= 0x00000004; } if (((from_bitField0_ & 0x00000200) != 0)) { @@ -40523,41 +38070,38 @@ private void buildPartial0(io.temporal.omes.KitchenSink.ContinueAsNewAction resu public Builder clone() { return super.clone(); } - @java.lang.Override public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.setField(field, value); } - @java.lang.Override - public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } - @java.lang.Override - public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } - @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, - int index, - java.lang.Object value) { + int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } - @java.lang.Override public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.addRepeatedField(field, value); } - @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.temporal.omes.KitchenSink.ContinueAsNewAction) { - return mergeFrom((io.temporal.omes.KitchenSink.ContinueAsNewAction) other); + return mergeFrom((io.temporal.omes.KitchenSink.ContinueAsNewAction)other); } else { super.mergeFrom(other); return this; @@ -40565,8 +38109,7 @@ public Builder mergeFrom(com.google.protobuf.Message other) { } public Builder mergeFrom(io.temporal.omes.KitchenSink.ContinueAsNewAction other) { - if (other == io.temporal.omes.KitchenSink.ContinueAsNewAction.getDefaultInstance()) - return this; + if (other == io.temporal.omes.KitchenSink.ContinueAsNewAction.getDefaultInstance()) return this; if (!other.getWorkflowType().isEmpty()) { workflowType_ = other.workflowType_; bitField0_ |= 0x00000001; @@ -40595,10 +38138,9 @@ public Builder mergeFrom(io.temporal.omes.KitchenSink.ContinueAsNewAction other) argumentsBuilder_ = null; arguments_ = other.arguments_; bitField0_ = (bitField0_ & ~0x00000004); - argumentsBuilder_ = - com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders - ? getArgumentsFieldBuilder() - : null; + argumentsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getArgumentsFieldBuilder() : null; } else { argumentsBuilder_.addAllMessages(other.arguments_); } @@ -40610,11 +38152,14 @@ public Builder mergeFrom(io.temporal.omes.KitchenSink.ContinueAsNewAction other) if (other.hasWorkflowTaskTimeout()) { mergeWorkflowTaskTimeout(other.getWorkflowTaskTimeout()); } - internalGetMutableMemo().mergeFrom(other.internalGetMemo()); + internalGetMutableMemo().mergeFrom( + other.internalGetMemo()); bitField0_ |= 0x00000020; - internalGetMutableHeaders().mergeFrom(other.internalGetHeaders()); + internalGetMutableHeaders().mergeFrom( + other.internalGetHeaders()); bitField0_ |= 0x00000040; - internalGetMutableSearchAttributes().mergeFrom(other.internalGetSearchAttributes()); + internalGetMutableSearchAttributes().mergeFrom( + other.internalGetSearchAttributes()); bitField0_ |= 0x00000080; if (other.hasRetryPolicy()) { mergeRetryPolicy(other.getRetryPolicy()); @@ -40648,103 +38193,88 @@ public Builder mergeFrom( case 0: done = true; break; - case 10: - { - workflowType_ = input.readStringRequireUtf8(); - bitField0_ |= 0x00000001; - break; - } // case 10 - case 18: - { - taskQueue_ = input.readStringRequireUtf8(); - bitField0_ |= 0x00000002; - break; - } // case 18 - case 26: - { - io.temporal.api.common.v1.Payload m = - input.readMessage( - io.temporal.api.common.v1.Payload.parser(), extensionRegistry); - if (argumentsBuilder_ == null) { - ensureArgumentsIsMutable(); - arguments_.add(m); - } else { - argumentsBuilder_.addMessage(m); - } - break; - } // case 26 - case 34: - { - input.readMessage( - getWorkflowRunTimeoutFieldBuilder().getBuilder(), extensionRegistry); - bitField0_ |= 0x00000008; - break; - } // case 34 - case 42: - { - input.readMessage( - getWorkflowTaskTimeoutFieldBuilder().getBuilder(), extensionRegistry); - bitField0_ |= 0x00000010; - break; - } // case 42 - case 50: - { - com.google.protobuf.MapEntry - memo__ = - input.readMessage( - MemoDefaultEntryHolder.defaultEntry.getParserForType(), - extensionRegistry); - internalGetMutableMemo() - .ensureBuilderMap() - .put(memo__.getKey(), memo__.getValue()); - bitField0_ |= 0x00000020; - break; - } // case 50 - case 58: - { - com.google.protobuf.MapEntry - headers__ = - input.readMessage( - HeadersDefaultEntryHolder.defaultEntry.getParserForType(), - extensionRegistry); - internalGetMutableHeaders() - .ensureBuilderMap() - .put(headers__.getKey(), headers__.getValue()); - bitField0_ |= 0x00000040; - break; - } // case 58 - case 66: - { - com.google.protobuf.MapEntry - searchAttributes__ = - input.readMessage( - SearchAttributesDefaultEntryHolder.defaultEntry.getParserForType(), - extensionRegistry); - internalGetMutableSearchAttributes() - .ensureBuilderMap() - .put(searchAttributes__.getKey(), searchAttributes__.getValue()); - bitField0_ |= 0x00000080; - break; - } // case 66 - case 74: - { - input.readMessage(getRetryPolicyFieldBuilder().getBuilder(), extensionRegistry); - bitField0_ |= 0x00000100; - break; - } // case 74 - case 80: - { - versioningIntent_ = input.readEnum(); - bitField0_ |= 0x00000200; - break; - } // case 80 - default: - { - if (!super.parseUnknownField(input, extensionRegistry, tag)) { - done = true; // was an endgroup tag - } - break; - } // default: + case 10: { + workflowType_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000001; + break; + } // case 10 + case 18: { + taskQueue_ = input.readStringRequireUtf8(); + bitField0_ |= 0x00000002; + break; + } // case 18 + case 26: { + io.temporal.api.common.v1.Payload m = + input.readMessage( + io.temporal.api.common.v1.Payload.parser(), + extensionRegistry); + if (argumentsBuilder_ == null) { + ensureArgumentsIsMutable(); + arguments_.add(m); + } else { + argumentsBuilder_.addMessage(m); + } + break; + } // case 26 + case 34: { + input.readMessage( + getWorkflowRunTimeoutFieldBuilder().getBuilder(), + extensionRegistry); + bitField0_ |= 0x00000008; + break; + } // case 34 + case 42: { + input.readMessage( + getWorkflowTaskTimeoutFieldBuilder().getBuilder(), + extensionRegistry); + bitField0_ |= 0x00000010; + break; + } // case 42 + case 50: { + com.google.protobuf.MapEntry + memo__ = input.readMessage( + MemoDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry); + internalGetMutableMemo().ensureBuilderMap().put( + memo__.getKey(), memo__.getValue()); + bitField0_ |= 0x00000020; + break; + } // case 50 + case 58: { + com.google.protobuf.MapEntry + headers__ = input.readMessage( + HeadersDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry); + internalGetMutableHeaders().ensureBuilderMap().put( + headers__.getKey(), headers__.getValue()); + bitField0_ |= 0x00000040; + break; + } // case 58 + case 66: { + com.google.protobuf.MapEntry + searchAttributes__ = input.readMessage( + SearchAttributesDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry); + internalGetMutableSearchAttributes().ensureBuilderMap().put( + searchAttributes__.getKey(), searchAttributes__.getValue()); + bitField0_ |= 0x00000080; + break; + } // case 66 + case 74: { + input.readMessage( + getRetryPolicyFieldBuilder().getBuilder(), + extensionRegistry); + bitField0_ |= 0x00000100; + break; + } // case 74 + case 80: { + versioningIntent_ = input.readEnum(); + bitField0_ |= 0x00000200; + break; + } // case 80 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -40754,25 +38284,22 @@ public Builder mergeFrom( } // finally return this; } - private int bitField0_; private java.lang.Object workflowType_ = ""; /** - * - * *
        * The identifier the lang-specific sdk uses to execute workflow code
        * 
* * string workflow_type = 1; - * * @return The workflowType. */ public java.lang.String getWorkflowType() { java.lang.Object ref = workflowType_; if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); workflowType_ = s; return s; @@ -40781,21 +38308,20 @@ public java.lang.String getWorkflowType() { } } /** - * - * *
        * The identifier the lang-specific sdk uses to execute workflow code
        * 
* * string workflow_type = 1; - * * @return The bytes for workflowType. */ - public com.google.protobuf.ByteString getWorkflowTypeBytes() { + public com.google.protobuf.ByteString + getWorkflowTypeBytes() { java.lang.Object ref = workflowType_; if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); workflowType_ = b; return b; } else { @@ -40803,35 +38329,28 @@ public com.google.protobuf.ByteString getWorkflowTypeBytes() { } } /** - * - * *
        * The identifier the lang-specific sdk uses to execute workflow code
        * 
* * string workflow_type = 1; - * * @param value The workflowType to set. * @return This builder for chaining. */ - public Builder setWorkflowType(java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setWorkflowType( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } workflowType_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** - * - * *
        * The identifier the lang-specific sdk uses to execute workflow code
        * 
* * string workflow_type = 1; - * * @return This builder for chaining. */ public Builder clearWorkflowType() { @@ -40841,21 +38360,17 @@ public Builder clearWorkflowType() { return this; } /** - * - * *
        * The identifier the lang-specific sdk uses to execute workflow code
        * 
* * string workflow_type = 1; - * * @param value The bytes for workflowType to set. * @return This builder for chaining. */ - public Builder setWorkflowTypeBytes(com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setWorkflowTypeBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); workflowType_ = value; bitField0_ |= 0x00000001; @@ -40865,20 +38380,18 @@ public Builder setWorkflowTypeBytes(com.google.protobuf.ByteString value) { private java.lang.Object taskQueue_ = ""; /** - * - * *
        * Task queue for the new workflow execution
        * 
* * string task_queue = 2; - * * @return The taskQueue. */ public java.lang.String getTaskQueue() { java.lang.Object ref = taskQueue_; if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); taskQueue_ = s; return s; @@ -40887,21 +38400,20 @@ public java.lang.String getTaskQueue() { } } /** - * - * *
        * Task queue for the new workflow execution
        * 
* * string task_queue = 2; - * * @return The bytes for taskQueue. */ - public com.google.protobuf.ByteString getTaskQueueBytes() { + public com.google.protobuf.ByteString + getTaskQueueBytes() { java.lang.Object ref = taskQueue_; if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); taskQueue_ = b; return b; } else { @@ -40909,35 +38421,28 @@ public com.google.protobuf.ByteString getTaskQueueBytes() { } } /** - * - * *
        * Task queue for the new workflow execution
        * 
* * string task_queue = 2; - * * @param value The taskQueue to set. * @return This builder for chaining. */ - public Builder setTaskQueue(java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setTaskQueue( + java.lang.String value) { + if (value == null) { throw new NullPointerException(); } taskQueue_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } /** - * - * *
        * Task queue for the new workflow execution
        * 
* * string task_queue = 2; - * * @return This builder for chaining. */ public Builder clearTaskQueue() { @@ -40947,21 +38452,17 @@ public Builder clearTaskQueue() { return this; } /** - * - * *
        * Task queue for the new workflow execution
        * 
* * string task_queue = 2; - * * @param value The bytes for taskQueue to set. * @return This builder for chaining. */ - public Builder setTaskQueueBytes(com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } + public Builder setTaskQueueBytes( + com.google.protobuf.ByteString value) { + if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); taskQueue_ = value; bitField0_ |= 0x00000002; @@ -40970,24 +38471,18 @@ public Builder setTaskQueueBytes(com.google.protobuf.ByteString value) { } private java.util.List arguments_ = - java.util.Collections.emptyList(); - + java.util.Collections.emptyList(); private void ensureArgumentsIsMutable() { if (!((bitField0_ & 0x00000004) != 0)) { arguments_ = new java.util.ArrayList(arguments_); bitField0_ |= 0x00000004; - } + } } private com.google.protobuf.RepeatedFieldBuilderV3< - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder, - io.temporal.api.common.v1.PayloadOrBuilder> - argumentsBuilder_; + io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder, io.temporal.api.common.v1.PayloadOrBuilder> argumentsBuilder_; /** - * - * *
        * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
        * typically wouldn't make any sense.
@@ -41003,8 +38498,6 @@ public java.util.List getArgumentsList() {
         }
       }
       /**
-       *
-       *
        * 
        * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
        * typically wouldn't make any sense.
@@ -41020,8 +38513,6 @@ public int getArgumentsCount() {
         }
       }
       /**
-       *
-       *
        * 
        * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
        * typically wouldn't make any sense.
@@ -41037,8 +38528,6 @@ public io.temporal.api.common.v1.Payload getArguments(int index) {
         }
       }
       /**
-       *
-       *
        * 
        * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
        * typically wouldn't make any sense.
@@ -41046,7 +38535,8 @@ public io.temporal.api.common.v1.Payload getArguments(int index) {
        *
        * repeated .temporal.api.common.v1.Payload arguments = 3;
        */
-      public Builder setArguments(int index, io.temporal.api.common.v1.Payload value) {
+      public Builder setArguments(
+          int index, io.temporal.api.common.v1.Payload value) {
         if (argumentsBuilder_ == null) {
           if (value == null) {
             throw new NullPointerException();
@@ -41060,8 +38550,6 @@ public Builder setArguments(int index, io.temporal.api.common.v1.Payload value)
         return this;
       }
       /**
-       *
-       *
        * 
        * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
        * typically wouldn't make any sense.
@@ -41081,8 +38569,6 @@ public Builder setArguments(
         return this;
       }
       /**
-       *
-       *
        * 
        * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
        * typically wouldn't make any sense.
@@ -41104,8 +38590,6 @@ public Builder addArguments(io.temporal.api.common.v1.Payload value) {
         return this;
       }
       /**
-       *
-       *
        * 
        * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
        * typically wouldn't make any sense.
@@ -41113,7 +38597,8 @@ public Builder addArguments(io.temporal.api.common.v1.Payload value) {
        *
        * repeated .temporal.api.common.v1.Payload arguments = 3;
        */
-      public Builder addArguments(int index, io.temporal.api.common.v1.Payload value) {
+      public Builder addArguments(
+          int index, io.temporal.api.common.v1.Payload value) {
         if (argumentsBuilder_ == null) {
           if (value == null) {
             throw new NullPointerException();
@@ -41127,8 +38612,6 @@ public Builder addArguments(int index, io.temporal.api.common.v1.Payload value)
         return this;
       }
       /**
-       *
-       *
        * 
        * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
        * typically wouldn't make any sense.
@@ -41136,7 +38619,8 @@ public Builder addArguments(int index, io.temporal.api.common.v1.Payload value)
        *
        * repeated .temporal.api.common.v1.Payload arguments = 3;
        */
-      public Builder addArguments(io.temporal.api.common.v1.Payload.Builder builderForValue) {
+      public Builder addArguments(
+          io.temporal.api.common.v1.Payload.Builder builderForValue) {
         if (argumentsBuilder_ == null) {
           ensureArgumentsIsMutable();
           arguments_.add(builderForValue.build());
@@ -41147,8 +38631,6 @@ public Builder addArguments(io.temporal.api.common.v1.Payload.Builder builderFor
         return this;
       }
       /**
-       *
-       *
        * 
        * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
        * typically wouldn't make any sense.
@@ -41168,8 +38650,6 @@ public Builder addArguments(
         return this;
       }
       /**
-       *
-       *
        * 
        * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
        * typically wouldn't make any sense.
@@ -41181,7 +38661,8 @@ public Builder addAllArguments(
           java.lang.Iterable values) {
         if (argumentsBuilder_ == null) {
           ensureArgumentsIsMutable();
-          com.google.protobuf.AbstractMessageLite.Builder.addAll(values, arguments_);
+          com.google.protobuf.AbstractMessageLite.Builder.addAll(
+              values, arguments_);
           onChanged();
         } else {
           argumentsBuilder_.addAllMessages(values);
@@ -41189,8 +38670,6 @@ public Builder addAllArguments(
         return this;
       }
       /**
-       *
-       *
        * 
        * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
        * typically wouldn't make any sense.
@@ -41209,8 +38688,6 @@ public Builder clearArguments() {
         return this;
       }
       /**
-       *
-       *
        * 
        * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
        * typically wouldn't make any sense.
@@ -41229,8 +38706,6 @@ public Builder removeArguments(int index) {
         return this;
       }
       /**
-       *
-       *
        * 
        * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
        * typically wouldn't make any sense.
@@ -41238,12 +38713,11 @@ public Builder removeArguments(int index) {
        *
        * repeated .temporal.api.common.v1.Payload arguments = 3;
        */
-      public io.temporal.api.common.v1.Payload.Builder getArgumentsBuilder(int index) {
+      public io.temporal.api.common.v1.Payload.Builder getArgumentsBuilder(
+          int index) {
         return getArgumentsFieldBuilder().getBuilder(index);
       }
       /**
-       *
-       *
        * 
        * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
        * typically wouldn't make any sense.
@@ -41251,16 +38725,14 @@ public io.temporal.api.common.v1.Payload.Builder getArgumentsBuilder(int index)
        *
        * repeated .temporal.api.common.v1.Payload arguments = 3;
        */
-      public io.temporal.api.common.v1.PayloadOrBuilder getArgumentsOrBuilder(int index) {
+      public io.temporal.api.common.v1.PayloadOrBuilder getArgumentsOrBuilder(
+          int index) {
         if (argumentsBuilder_ == null) {
-          return arguments_.get(index);
-        } else {
+          return arguments_.get(index);  } else {
           return argumentsBuilder_.getMessageOrBuilder(index);
         }
       }
       /**
-       *
-       *
        * 
        * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
        * typically wouldn't make any sense.
@@ -41268,8 +38740,8 @@ public io.temporal.api.common.v1.PayloadOrBuilder getArgumentsOrBuilder(int inde
        *
        * repeated .temporal.api.common.v1.Payload arguments = 3;
        */
-      public java.util.List
-          getArgumentsOrBuilderList() {
+      public java.util.List 
+           getArgumentsOrBuilderList() {
         if (argumentsBuilder_ != null) {
           return argumentsBuilder_.getMessageOrBuilderList();
         } else {
@@ -41277,8 +38749,6 @@ public io.temporal.api.common.v1.PayloadOrBuilder getArgumentsOrBuilder(int inde
         }
       }
       /**
-       *
-       *
        * 
        * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
        * typically wouldn't make any sense.
@@ -41287,12 +38757,10 @@ public io.temporal.api.common.v1.PayloadOrBuilder getArgumentsOrBuilder(int inde
        * repeated .temporal.api.common.v1.Payload arguments = 3;
        */
       public io.temporal.api.common.v1.Payload.Builder addArgumentsBuilder() {
-        return getArgumentsFieldBuilder()
-            .addBuilder(io.temporal.api.common.v1.Payload.getDefaultInstance());
+        return getArgumentsFieldBuilder().addBuilder(
+            io.temporal.api.common.v1.Payload.getDefaultInstance());
       }
       /**
-       *
-       *
        * 
        * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
        * typically wouldn't make any sense.
@@ -41300,13 +38768,12 @@ public io.temporal.api.common.v1.Payload.Builder addArgumentsBuilder() {
        *
        * repeated .temporal.api.common.v1.Payload arguments = 3;
        */
-      public io.temporal.api.common.v1.Payload.Builder addArgumentsBuilder(int index) {
-        return getArgumentsFieldBuilder()
-            .addBuilder(index, io.temporal.api.common.v1.Payload.getDefaultInstance());
+      public io.temporal.api.common.v1.Payload.Builder addArgumentsBuilder(
+          int index) {
+        return getArgumentsFieldBuilder().addBuilder(
+            index, io.temporal.api.common.v1.Payload.getDefaultInstance());
       }
       /**
-       *
-       *
        * 
        * Inputs to the workflow code. Should be specified. Will not re-use old arguments, as that
        * typically wouldn't make any sense.
@@ -41314,22 +38781,20 @@ public io.temporal.api.common.v1.Payload.Builder addArgumentsBuilder(int index)
        *
        * repeated .temporal.api.common.v1.Payload arguments = 3;
        */
-      public java.util.List getArgumentsBuilderList() {
+      public java.util.List 
+           getArgumentsBuilderList() {
         return getArgumentsFieldBuilder().getBuilderList();
       }
-
       private com.google.protobuf.RepeatedFieldBuilderV3<
-              io.temporal.api.common.v1.Payload,
-              io.temporal.api.common.v1.Payload.Builder,
-              io.temporal.api.common.v1.PayloadOrBuilder>
+          io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder, io.temporal.api.common.v1.PayloadOrBuilder> 
           getArgumentsFieldBuilder() {
         if (argumentsBuilder_ == null) {
-          argumentsBuilder_ =
-              new com.google.protobuf.RepeatedFieldBuilderV3<
-                  io.temporal.api.common.v1.Payload,
-                  io.temporal.api.common.v1.Payload.Builder,
-                  io.temporal.api.common.v1.PayloadOrBuilder>(
-                  arguments_, ((bitField0_ & 0x00000004) != 0), getParentForChildren(), isClean());
+          argumentsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
+              io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder, io.temporal.api.common.v1.PayloadOrBuilder>(
+                  arguments_,
+                  ((bitField0_ & 0x00000004) != 0),
+                  getParentForChildren(),
+                  isClean());
           arguments_ = null;
         }
         return argumentsBuilder_;
@@ -41337,47 +38802,34 @@ public java.util.List getArgumentsBui
 
       private com.google.protobuf.Duration workflowRunTimeout_;
       private com.google.protobuf.SingleFieldBuilderV3<
-              com.google.protobuf.Duration,
-              com.google.protobuf.Duration.Builder,
-              com.google.protobuf.DurationOrBuilder>
-          workflowRunTimeoutBuilder_;
+          com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> workflowRunTimeoutBuilder_;
       /**
-       *
-       *
        * 
        * Timeout for a single run of the new workflow. Will not re-use current workflow's value.
        * 
* * .google.protobuf.Duration workflow_run_timeout = 4; - * * @return Whether the workflowRunTimeout field is set. */ public boolean hasWorkflowRunTimeout() { return ((bitField0_ & 0x00000008) != 0); } /** - * - * *
        * Timeout for a single run of the new workflow. Will not re-use current workflow's value.
        * 
* * .google.protobuf.Duration workflow_run_timeout = 4; - * * @return The workflowRunTimeout. */ public com.google.protobuf.Duration getWorkflowRunTimeout() { if (workflowRunTimeoutBuilder_ == null) { - return workflowRunTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : workflowRunTimeout_; + return workflowRunTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : workflowRunTimeout_; } else { return workflowRunTimeoutBuilder_.getMessage(); } } /** - * - * *
        * Timeout for a single run of the new workflow. Will not re-use current workflow's value.
        * 
@@ -41398,15 +38850,14 @@ public Builder setWorkflowRunTimeout(com.google.protobuf.Duration value) { return this; } /** - * - * *
        * Timeout for a single run of the new workflow. Will not re-use current workflow's value.
        * 
* * .google.protobuf.Duration workflow_run_timeout = 4; */ - public Builder setWorkflowRunTimeout(com.google.protobuf.Duration.Builder builderForValue) { + public Builder setWorkflowRunTimeout( + com.google.protobuf.Duration.Builder builderForValue) { if (workflowRunTimeoutBuilder_ == null) { workflowRunTimeout_ = builderForValue.build(); } else { @@ -41417,8 +38868,6 @@ public Builder setWorkflowRunTimeout(com.google.protobuf.Duration.Builder builde return this; } /** - * - * *
        * Timeout for a single run of the new workflow. Will not re-use current workflow's value.
        * 
@@ -41427,9 +38876,9 @@ public Builder setWorkflowRunTimeout(com.google.protobuf.Duration.Builder builde */ public Builder mergeWorkflowRunTimeout(com.google.protobuf.Duration value) { if (workflowRunTimeoutBuilder_ == null) { - if (((bitField0_ & 0x00000008) != 0) - && workflowRunTimeout_ != null - && workflowRunTimeout_ != com.google.protobuf.Duration.getDefaultInstance()) { + if (((bitField0_ & 0x00000008) != 0) && + workflowRunTimeout_ != null && + workflowRunTimeout_ != com.google.protobuf.Duration.getDefaultInstance()) { getWorkflowRunTimeoutBuilder().mergeFrom(value); } else { workflowRunTimeout_ = value; @@ -41444,8 +38893,6 @@ public Builder mergeWorkflowRunTimeout(com.google.protobuf.Duration value) { return this; } /** - * - * *
        * Timeout for a single run of the new workflow. Will not re-use current workflow's value.
        * 
@@ -41463,8 +38910,6 @@ public Builder clearWorkflowRunTimeout() { return this; } /** - * - * *
        * Timeout for a single run of the new workflow. Will not re-use current workflow's value.
        * 
@@ -41477,8 +38922,6 @@ public com.google.protobuf.Duration.Builder getWorkflowRunTimeoutBuilder() { return getWorkflowRunTimeoutFieldBuilder().getBuilder(); } /** - * - * *
        * Timeout for a single run of the new workflow. Will not re-use current workflow's value.
        * 
@@ -41489,14 +38932,11 @@ public com.google.protobuf.DurationOrBuilder getWorkflowRunTimeoutOrBuilder() { if (workflowRunTimeoutBuilder_ != null) { return workflowRunTimeoutBuilder_.getMessageOrBuilder(); } else { - return workflowRunTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : workflowRunTimeout_; + return workflowRunTimeout_ == null ? + com.google.protobuf.Duration.getDefaultInstance() : workflowRunTimeout_; } } /** - * - * *
        * Timeout for a single run of the new workflow. Will not re-use current workflow's value.
        * 
@@ -41504,17 +38944,14 @@ public com.google.protobuf.DurationOrBuilder getWorkflowRunTimeoutOrBuilder() { * .google.protobuf.Duration workflow_run_timeout = 4; */ private com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Duration, - com.google.protobuf.Duration.Builder, - com.google.protobuf.DurationOrBuilder> + com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> getWorkflowRunTimeoutFieldBuilder() { if (workflowRunTimeoutBuilder_ == null) { - workflowRunTimeoutBuilder_ = - new com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Duration, - com.google.protobuf.Duration.Builder, - com.google.protobuf.DurationOrBuilder>( - getWorkflowRunTimeout(), getParentForChildren(), isClean()); + workflowRunTimeoutBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder>( + getWorkflowRunTimeout(), + getParentForChildren(), + isClean()); workflowRunTimeout_ = null; } return workflowRunTimeoutBuilder_; @@ -41522,47 +38959,34 @@ public com.google.protobuf.DurationOrBuilder getWorkflowRunTimeoutOrBuilder() { private com.google.protobuf.Duration workflowTaskTimeout_; private com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Duration, - com.google.protobuf.Duration.Builder, - com.google.protobuf.DurationOrBuilder> - workflowTaskTimeoutBuilder_; + com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> workflowTaskTimeoutBuilder_; /** - * - * *
        * Timeout of a single workflow task. Will not re-use current workflow's value.
        * 
* * .google.protobuf.Duration workflow_task_timeout = 5; - * * @return Whether the workflowTaskTimeout field is set. */ public boolean hasWorkflowTaskTimeout() { return ((bitField0_ & 0x00000010) != 0); } /** - * - * *
        * Timeout of a single workflow task. Will not re-use current workflow's value.
        * 
* * .google.protobuf.Duration workflow_task_timeout = 5; - * * @return The workflowTaskTimeout. */ public com.google.protobuf.Duration getWorkflowTaskTimeout() { if (workflowTaskTimeoutBuilder_ == null) { - return workflowTaskTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : workflowTaskTimeout_; + return workflowTaskTimeout_ == null ? com.google.protobuf.Duration.getDefaultInstance() : workflowTaskTimeout_; } else { return workflowTaskTimeoutBuilder_.getMessage(); } } /** - * - * *
        * Timeout of a single workflow task. Will not re-use current workflow's value.
        * 
@@ -41583,15 +39007,14 @@ public Builder setWorkflowTaskTimeout(com.google.protobuf.Duration value) { return this; } /** - * - * *
        * Timeout of a single workflow task. Will not re-use current workflow's value.
        * 
* * .google.protobuf.Duration workflow_task_timeout = 5; */ - public Builder setWorkflowTaskTimeout(com.google.protobuf.Duration.Builder builderForValue) { + public Builder setWorkflowTaskTimeout( + com.google.protobuf.Duration.Builder builderForValue) { if (workflowTaskTimeoutBuilder_ == null) { workflowTaskTimeout_ = builderForValue.build(); } else { @@ -41602,8 +39025,6 @@ public Builder setWorkflowTaskTimeout(com.google.protobuf.Duration.Builder build return this; } /** - * - * *
        * Timeout of a single workflow task. Will not re-use current workflow's value.
        * 
@@ -41612,9 +39033,9 @@ public Builder setWorkflowTaskTimeout(com.google.protobuf.Duration.Builder build */ public Builder mergeWorkflowTaskTimeout(com.google.protobuf.Duration value) { if (workflowTaskTimeoutBuilder_ == null) { - if (((bitField0_ & 0x00000010) != 0) - && workflowTaskTimeout_ != null - && workflowTaskTimeout_ != com.google.protobuf.Duration.getDefaultInstance()) { + if (((bitField0_ & 0x00000010) != 0) && + workflowTaskTimeout_ != null && + workflowTaskTimeout_ != com.google.protobuf.Duration.getDefaultInstance()) { getWorkflowTaskTimeoutBuilder().mergeFrom(value); } else { workflowTaskTimeout_ = value; @@ -41629,8 +39050,6 @@ public Builder mergeWorkflowTaskTimeout(com.google.protobuf.Duration value) { return this; } /** - * - * *
        * Timeout of a single workflow task. Will not re-use current workflow's value.
        * 
@@ -41648,8 +39067,6 @@ public Builder clearWorkflowTaskTimeout() { return this; } /** - * - * *
        * Timeout of a single workflow task. Will not re-use current workflow's value.
        * 
@@ -41662,8 +39079,6 @@ public com.google.protobuf.Duration.Builder getWorkflowTaskTimeoutBuilder() { return getWorkflowTaskTimeoutFieldBuilder().getBuilder(); } /** - * - * *
        * Timeout of a single workflow task. Will not re-use current workflow's value.
        * 
@@ -41674,14 +39089,11 @@ public com.google.protobuf.DurationOrBuilder getWorkflowTaskTimeoutOrBuilder() { if (workflowTaskTimeoutBuilder_ != null) { return workflowTaskTimeoutBuilder_.getMessageOrBuilder(); } else { - return workflowTaskTimeout_ == null - ? com.google.protobuf.Duration.getDefaultInstance() - : workflowTaskTimeout_; + return workflowTaskTimeout_ == null ? + com.google.protobuf.Duration.getDefaultInstance() : workflowTaskTimeout_; } } /** - * - * *
        * Timeout of a single workflow task. Will not re-use current workflow's value.
        * 
@@ -41689,70 +39101,43 @@ public com.google.protobuf.DurationOrBuilder getWorkflowTaskTimeoutOrBuilder() { * .google.protobuf.Duration workflow_task_timeout = 5; */ private com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Duration, - com.google.protobuf.Duration.Builder, - com.google.protobuf.DurationOrBuilder> + com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> getWorkflowTaskTimeoutFieldBuilder() { if (workflowTaskTimeoutBuilder_ == null) { - workflowTaskTimeoutBuilder_ = - new com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Duration, - com.google.protobuf.Duration.Builder, - com.google.protobuf.DurationOrBuilder>( - getWorkflowTaskTimeout(), getParentForChildren(), isClean()); + workflowTaskTimeoutBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder>( + getWorkflowTaskTimeout(), + getParentForChildren(), + isClean()); workflowTaskTimeout_ = null; } return workflowTaskTimeoutBuilder_; } - private static final class MemoConverter - implements com.google.protobuf.MapFieldBuilder.Converter< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload> { + private static final class MemoConverter implements com.google.protobuf.MapFieldBuilder.Converter { @java.lang.Override - public io.temporal.api.common.v1.Payload build( - io.temporal.api.common.v1.PayloadOrBuilder val) { - if (val instanceof io.temporal.api.common.v1.Payload) { - return (io.temporal.api.common.v1.Payload) val; - } + public io.temporal.api.common.v1.Payload build(io.temporal.api.common.v1.PayloadOrBuilder val) { + if (val instanceof io.temporal.api.common.v1.Payload) { return (io.temporal.api.common.v1.Payload) val; } return ((io.temporal.api.common.v1.Payload.Builder) val).build(); } @java.lang.Override - public com.google.protobuf.MapEntry - defaultEntry() { + public com.google.protobuf.MapEntry defaultEntry() { return MemoDefaultEntryHolder.defaultEntry; } - } - ; - + }; private static final MemoConverter memoConverter = new MemoConverter(); private com.google.protobuf.MapFieldBuilder< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder> - memo_; - - private com.google.protobuf.MapFieldBuilder< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder> + java.lang.String, io.temporal.api.common.v1.PayloadOrBuilder, io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder> memo_; + private com.google.protobuf.MapFieldBuilder internalGetMemo() { if (memo_ == null) { return new com.google.protobuf.MapFieldBuilder<>(memoConverter); } return memo_; } - - private com.google.protobuf.MapFieldBuilder< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder> + private com.google.protobuf.MapFieldBuilder internalGetMutableMemo() { if (memo_ == null) { memo_ = new com.google.protobuf.MapFieldBuilder<>(memoConverter); @@ -41761,13 +39146,10 @@ public io.temporal.api.common.v1.Payload build( onChanged(); return memo_; } - public int getMemoCount() { return internalGetMemo().ensureBuilderMap().size(); } /** - * - * *
        * If set, the new workflow will have this memo. If unset, re-uses the current workflow's memo
        * 
@@ -41775,21 +39157,20 @@ public int getMemoCount() { * map<string, .temporal.api.common.v1.Payload> memo = 6; */ @java.lang.Override - public boolean containsMemo(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } + public boolean containsMemo( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } return internalGetMemo().ensureBuilderMap().containsKey(key); } - /** Use {@link #getMemoMap()} instead. */ + /** + * Use {@link #getMemoMap()} instead. + */ @java.lang.Override @java.lang.Deprecated public java.util.Map getMemo() { return getMemoMap(); } /** - * - * *
        * If set, the new workflow will have this memo. If unset, re-uses the current workflow's memo
        * 
@@ -41801,8 +39182,6 @@ public java.util.Map getMem return internalGetMemo().getImmutableMap(); } /** - * - * *
        * If set, the new workflow will have this memo. If unset, re-uses the current workflow's memo
        * 
@@ -41810,20 +39189,16 @@ public java.util.Map getMem * map<string, .temporal.api.common.v1.Payload> memo = 6; */ @java.lang.Override - public /* nullable */ io.temporal.api.common.v1.Payload getMemoOrDefault( + public /* nullable */ +io.temporal.api.common.v1.Payload getMemoOrDefault( java.lang.String key, /* nullable */ - io.temporal.api.common.v1.Payload defaultValue) { - if (key == null) { - throw new NullPointerException("map key"); - } - java.util.Map map = - internalGetMutableMemo().ensureBuilderMap(); +io.temporal.api.common.v1.Payload defaultValue) { + if (key == null) { throw new NullPointerException("map key"); } + java.util.Map map = internalGetMutableMemo().ensureBuilderMap(); return map.containsKey(key) ? memoConverter.build(map.get(key)) : defaultValue; } /** - * - * *
        * If set, the new workflow will have this memo. If unset, re-uses the current workflow's memo
        * 
@@ -41831,68 +39206,61 @@ public java.util.Map getMem * map<string, .temporal.api.common.v1.Payload> memo = 6; */ @java.lang.Override - public io.temporal.api.common.v1.Payload getMemoOrThrow(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } - java.util.Map map = - internalGetMutableMemo().ensureBuilderMap(); + public io.temporal.api.common.v1.Payload getMemoOrThrow( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } + java.util.Map map = internalGetMutableMemo().ensureBuilderMap(); if (!map.containsKey(key)) { throw new java.lang.IllegalArgumentException(); } return memoConverter.build(map.get(key)); } - public Builder clearMemo() { bitField0_ = (bitField0_ & ~0x00000020); internalGetMutableMemo().clear(); return this; } /** - * - * *
        * If set, the new workflow will have this memo. If unset, re-uses the current workflow's memo
        * 
* * map<string, .temporal.api.common.v1.Payload> memo = 6; */ - public Builder removeMemo(java.lang.String key) { - if (key == null) { - throw new NullPointerException("map key"); - } - internalGetMutableMemo().ensureBuilderMap().remove(key); + public Builder removeMemo( + java.lang.String key) { + if (key == null) { throw new NullPointerException("map key"); } + internalGetMutableMemo().ensureBuilderMap() + .remove(key); return this; } - /** Use alternate mutation accessors instead. */ + /** + * Use alternate mutation accessors instead. + */ @java.lang.Deprecated - public java.util.Map getMutableMemo() { + public java.util.Map + getMutableMemo() { bitField0_ |= 0x00000020; return internalGetMutableMemo().ensureMessageMap(); } /** - * - * *
        * If set, the new workflow will have this memo. If unset, re-uses the current workflow's memo
        * 
* * map<string, .temporal.api.common.v1.Payload> memo = 6; */ - public Builder putMemo(java.lang.String key, io.temporal.api.common.v1.Payload value) { - if (key == null) { - throw new NullPointerException("map key"); - } - if (value == null) { - throw new NullPointerException("map value"); - } - internalGetMutableMemo().ensureBuilderMap().put(key, value); + public Builder putMemo( + java.lang.String key, + io.temporal.api.common.v1.Payload value) { + if (key == null) { throw new NullPointerException("map key"); } + if (value == null) { throw new NullPointerException("map value"); } + internalGetMutableMemo().ensureBuilderMap() + .put(key, value); bitField0_ |= 0x00000020; return this; } /** - * - * *
        * If set, the new workflow will have this memo. If unset, re-uses the current workflow's memo
        * 
@@ -41901,19 +39269,17 @@ public Builder putMemo(java.lang.String key, io.temporal.api.common.v1.Payload v */ public Builder putAllMemo( java.util.Map values) { - for (java.util.Map.Entry e : - values.entrySet()) { + for (java.util.Map.Entry e : values.entrySet()) { if (e.getKey() == null || e.getValue() == null) { throw new NullPointerException(); } } - internalGetMutableMemo().ensureBuilderMap().putAll(values); + internalGetMutableMemo().ensureBuilderMap() + .putAll(values); bitField0_ |= 0x00000020; return this; } /** - * - * *
        * If set, the new workflow will have this memo. If unset, re-uses the current workflow's memo
        * 
@@ -41922,8 +39288,7 @@ public Builder putAllMemo( */ public io.temporal.api.common.v1.Payload.Builder putMemoBuilderIfAbsent( java.lang.String key) { - java.util.Map builderMap = - internalGetMutableMemo().ensureBuilderMap(); + java.util.Map builderMap = internalGetMutableMemo().ensureBuilderMap(); io.temporal.api.common.v1.PayloadOrBuilder entry = builderMap.get(key); if (entry == null) { entry = io.temporal.api.common.v1.Payload.newBuilder(); @@ -41936,54 +39301,30 @@ public io.temporal.api.common.v1.Payload.Builder putMemoBuilderIfAbsent( return (io.temporal.api.common.v1.Payload.Builder) entry; } - private static final class HeadersConverter - implements com.google.protobuf.MapFieldBuilder.Converter< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload> { + private static final class HeadersConverter implements com.google.protobuf.MapFieldBuilder.Converter { @java.lang.Override - public io.temporal.api.common.v1.Payload build( - io.temporal.api.common.v1.PayloadOrBuilder val) { - if (val instanceof io.temporal.api.common.v1.Payload) { - return (io.temporal.api.common.v1.Payload) val; - } + public io.temporal.api.common.v1.Payload build(io.temporal.api.common.v1.PayloadOrBuilder val) { + if (val instanceof io.temporal.api.common.v1.Payload) { return (io.temporal.api.common.v1.Payload) val; } return ((io.temporal.api.common.v1.Payload.Builder) val).build(); } @java.lang.Override - public com.google.protobuf.MapEntry - defaultEntry() { + public com.google.protobuf.MapEntry defaultEntry() { return HeadersDefaultEntryHolder.defaultEntry; } - } - ; - + }; private static final HeadersConverter headersConverter = new HeadersConverter(); private com.google.protobuf.MapFieldBuilder< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder> - headers_; - - private com.google.protobuf.MapFieldBuilder< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder> + java.lang.String, io.temporal.api.common.v1.PayloadOrBuilder, io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder> headers_; + private com.google.protobuf.MapFieldBuilder internalGetHeaders() { if (headers_ == null) { return new com.google.protobuf.MapFieldBuilder<>(headersConverter); } return headers_; } - - private com.google.protobuf.MapFieldBuilder< - java.lang.String, - io.temporal.api.common.v1.PayloadOrBuilder, - io.temporal.api.common.v1.Payload, - io.temporal.api.common.v1.Payload.Builder> + private com.google.protobuf.MapFieldBuilder internalGetMutableHeaders() { if (headers_ == null) { headers_ = new com.google.protobuf.MapFieldBuilder<>(headersConverter); @@ -41992,13 +39333,10 @@ public io.temporal.api.common.v1.Payload build( onChanged(); return headers_; } - public int getHeadersCount() { return internalGetHeaders().ensureBuilderMap().size(); } /** - * - * *
        * If set, the new workflow will have these headers. Will *not* re-use current workflow's
        * headers otherwise.
@@ -42007,21 +39345,20 @@ public int getHeadersCount() {
        * map<string, .temporal.api.common.v1.Payload> headers = 7;
        */
       @java.lang.Override
-      public boolean containsHeaders(java.lang.String key) {
-        if (key == null) {
-          throw new NullPointerException("map key");
-        }
+      public boolean containsHeaders(
+          java.lang.String key) {
+        if (key == null) { throw new NullPointerException("map key"); }
         return internalGetHeaders().ensureBuilderMap().containsKey(key);
       }
-      /** Use {@link #getHeadersMap()} instead. */
+      /**
+       * Use {@link #getHeadersMap()} instead.
+       */
       @java.lang.Override
       @java.lang.Deprecated
       public java.util.Map getHeaders() {
         return getHeadersMap();
       }
       /**
-       *
-       *
        * 
        * If set, the new workflow will have these headers. Will *not* re-use current workflow's
        * headers otherwise.
@@ -42034,8 +39371,6 @@ public java.util.Map getHea
         return internalGetHeaders().getImmutableMap();
       }
       /**
-       *
-       *
        * 
        * If set, the new workflow will have these headers. Will *not* re-use current workflow's
        * headers otherwise.
@@ -42044,20 +39379,16 @@ public java.util.Map getHea
        * map<string, .temporal.api.common.v1.Payload> headers = 7;
        */
       @java.lang.Override
-      public /* nullable */ io.temporal.api.common.v1.Payload getHeadersOrDefault(
+      public /* nullable */
+io.temporal.api.common.v1.Payload getHeadersOrDefault(
           java.lang.String key,
           /* nullable */
-          io.temporal.api.common.v1.Payload defaultValue) {
-        if (key == null) {
-          throw new NullPointerException("map key");
-        }
-        java.util.Map map =
-            internalGetMutableHeaders().ensureBuilderMap();
+io.temporal.api.common.v1.Payload defaultValue) {
+        if (key == null) { throw new NullPointerException("map key"); }
+        java.util.Map map = internalGetMutableHeaders().ensureBuilderMap();
         return map.containsKey(key) ? headersConverter.build(map.get(key)) : defaultValue;
       }
       /**
-       *
-       *
        * 
        * If set, the new workflow will have these headers. Will *not* re-use current workflow's
        * headers otherwise.
@@ -42066,26 +39397,21 @@ public java.util.Map getHea
        * map<string, .temporal.api.common.v1.Payload> headers = 7;
        */
       @java.lang.Override
-      public io.temporal.api.common.v1.Payload getHeadersOrThrow(java.lang.String key) {
-        if (key == null) {
-          throw new NullPointerException("map key");
-        }
-        java.util.Map map =
-            internalGetMutableHeaders().ensureBuilderMap();
+      public io.temporal.api.common.v1.Payload getHeadersOrThrow(
+          java.lang.String key) {
+        if (key == null) { throw new NullPointerException("map key"); }
+        java.util.Map map = internalGetMutableHeaders().ensureBuilderMap();
         if (!map.containsKey(key)) {
           throw new java.lang.IllegalArgumentException();
         }
         return headersConverter.build(map.get(key));
       }
-
       public Builder clearHeaders() {
         bitField0_ = (bitField0_ & ~0x00000040);
         internalGetMutableHeaders().clear();
         return this;
       }
       /**
-       *
-       *
        * 
        * If set, the new workflow will have these headers. Will *not* re-use current workflow's
        * headers otherwise.
@@ -42093,14 +39419,16 @@ public Builder clearHeaders() {
        *
        * map<string, .temporal.api.common.v1.Payload> headers = 7;
        */
-      public Builder removeHeaders(java.lang.String key) {
-        if (key == null) {
-          throw new NullPointerException("map key");
-        }
-        internalGetMutableHeaders().ensureBuilderMap().remove(key);
+      public Builder removeHeaders(
+          java.lang.String key) {
+        if (key == null) { throw new NullPointerException("map key"); }
+        internalGetMutableHeaders().ensureBuilderMap()
+            .remove(key);
         return this;
       }
-      /** Use alternate mutation accessors instead. */
+      /**
+       * Use alternate mutation accessors instead.
+       */
       @java.lang.Deprecated
       public java.util.Map
           getMutableHeaders() {
@@ -42108,8 +39436,6 @@ public Builder removeHeaders(java.lang.String key) {
         return internalGetMutableHeaders().ensureMessageMap();
       }
       /**
-       *
-       *
        * 
        * If set, the new workflow will have these headers. Will *not* re-use current workflow's
        * headers otherwise.
@@ -42117,20 +39443,17 @@ public Builder removeHeaders(java.lang.String key) {
        *
        * map<string, .temporal.api.common.v1.Payload> headers = 7;
        */
-      public Builder putHeaders(java.lang.String key, io.temporal.api.common.v1.Payload value) {
-        if (key == null) {
-          throw new NullPointerException("map key");
-        }
-        if (value == null) {
-          throw new NullPointerException("map value");
-        }
-        internalGetMutableHeaders().ensureBuilderMap().put(key, value);
+      public Builder putHeaders(
+          java.lang.String key,
+          io.temporal.api.common.v1.Payload value) {
+        if (key == null) { throw new NullPointerException("map key"); }
+        if (value == null) { throw new NullPointerException("map value"); }
+        internalGetMutableHeaders().ensureBuilderMap()
+            .put(key, value);
         bitField0_ |= 0x00000040;
         return this;
       }
       /**
-       *
-       *
        * 
        * If set, the new workflow will have these headers. Will *not* re-use current workflow's
        * headers otherwise.
@@ -42140,19 +39463,17 @@ public Builder putHeaders(java.lang.String key, io.temporal.api.common.v1.Payloa
        */
       public Builder putAllHeaders(
           java.util.Map values) {
-        for (java.util.Map.Entry e :
-            values.entrySet()) {
+        for (java.util.Map.Entry e : values.entrySet()) {
           if (e.getKey() == null || e.getValue() == null) {
             throw new NullPointerException();
           }
         }
-        internalGetMutableHeaders().ensureBuilderMap().putAll(values);
+        internalGetMutableHeaders().ensureBuilderMap()
+            .putAll(values);
         bitField0_ |= 0x00000040;
         return this;
       }
       /**
-       *
-       *
        * 
        * If set, the new workflow will have these headers. Will *not* re-use current workflow's
        * headers otherwise.
@@ -42162,8 +39483,7 @@ public Builder putAllHeaders(
        */
       public io.temporal.api.common.v1.Payload.Builder putHeadersBuilderIfAbsent(
           java.lang.String key) {
-        java.util.Map builderMap =
-            internalGetMutableHeaders().ensureBuilderMap();
+        java.util.Map builderMap = internalGetMutableHeaders().ensureBuilderMap();
         io.temporal.api.common.v1.PayloadOrBuilder entry = builderMap.get(key);
         if (entry == null) {
           entry = io.temporal.api.common.v1.Payload.newBuilder();
@@ -42176,55 +39496,30 @@ public io.temporal.api.common.v1.Payload.Builder putHeadersBuilderIfAbsent(
         return (io.temporal.api.common.v1.Payload.Builder) entry;
       }
 
-      private static final class SearchAttributesConverter
-          implements com.google.protobuf.MapFieldBuilder.Converter<
-              java.lang.String,
-              io.temporal.api.common.v1.PayloadOrBuilder,
-              io.temporal.api.common.v1.Payload> {
+      private static final class SearchAttributesConverter implements com.google.protobuf.MapFieldBuilder.Converter {
         @java.lang.Override
-        public io.temporal.api.common.v1.Payload build(
-            io.temporal.api.common.v1.PayloadOrBuilder val) {
-          if (val instanceof io.temporal.api.common.v1.Payload) {
-            return (io.temporal.api.common.v1.Payload) val;
-          }
+        public io.temporal.api.common.v1.Payload build(io.temporal.api.common.v1.PayloadOrBuilder val) {
+          if (val instanceof io.temporal.api.common.v1.Payload) { return (io.temporal.api.common.v1.Payload) val; }
           return ((io.temporal.api.common.v1.Payload.Builder) val).build();
         }
 
         @java.lang.Override
-        public com.google.protobuf.MapEntry
-            defaultEntry() {
+        public com.google.protobuf.MapEntry defaultEntry() {
           return SearchAttributesDefaultEntryHolder.defaultEntry;
         }
-      }
-      ;
-
-      private static final SearchAttributesConverter searchAttributesConverter =
-          new SearchAttributesConverter();
-
-      private com.google.protobuf.MapFieldBuilder<
-              java.lang.String,
-              io.temporal.api.common.v1.PayloadOrBuilder,
-              io.temporal.api.common.v1.Payload,
-              io.temporal.api.common.v1.Payload.Builder>
-          searchAttributes_;
+      };
+      private static final SearchAttributesConverter searchAttributesConverter = new SearchAttributesConverter();
 
       private com.google.protobuf.MapFieldBuilder<
-              java.lang.String,
-              io.temporal.api.common.v1.PayloadOrBuilder,
-              io.temporal.api.common.v1.Payload,
-              io.temporal.api.common.v1.Payload.Builder>
+          java.lang.String, io.temporal.api.common.v1.PayloadOrBuilder, io.temporal.api.common.v1.Payload, io.temporal.api.common.v1.Payload.Builder> searchAttributes_;
+      private com.google.protobuf.MapFieldBuilder
           internalGetSearchAttributes() {
         if (searchAttributes_ == null) {
           return new com.google.protobuf.MapFieldBuilder<>(searchAttributesConverter);
         }
         return searchAttributes_;
       }
-
-      private com.google.protobuf.MapFieldBuilder<
-              java.lang.String,
-              io.temporal.api.common.v1.PayloadOrBuilder,
-              io.temporal.api.common.v1.Payload,
-              io.temporal.api.common.v1.Payload.Builder>
+      private com.google.protobuf.MapFieldBuilder
           internalGetMutableSearchAttributes() {
         if (searchAttributes_ == null) {
           searchAttributes_ = new com.google.protobuf.MapFieldBuilder<>(searchAttributesConverter);
@@ -42233,13 +39528,10 @@ public io.temporal.api.common.v1.Payload build(
         onChanged();
         return searchAttributes_;
       }
-
       public int getSearchAttributesCount() {
         return internalGetSearchAttributes().ensureBuilderMap().size();
       }
       /**
-       *
-       *
        * 
        * If set, the new workflow will have these search attributes. If unset, re-uses the current
        * workflow's search attributes.
@@ -42248,22 +39540,20 @@ public int getSearchAttributesCount() {
        * map<string, .temporal.api.common.v1.Payload> search_attributes = 8;
        */
       @java.lang.Override
-      public boolean containsSearchAttributes(java.lang.String key) {
-        if (key == null) {
-          throw new NullPointerException("map key");
-        }
+      public boolean containsSearchAttributes(
+          java.lang.String key) {
+        if (key == null) { throw new NullPointerException("map key"); }
         return internalGetSearchAttributes().ensureBuilderMap().containsKey(key);
       }
-      /** Use {@link #getSearchAttributesMap()} instead. */
+      /**
+       * Use {@link #getSearchAttributesMap()} instead.
+       */
       @java.lang.Override
       @java.lang.Deprecated
-      public java.util.Map
-          getSearchAttributes() {
+      public java.util.Map getSearchAttributes() {
         return getSearchAttributesMap();
       }
       /**
-       *
-       *
        * 
        * If set, the new workflow will have these search attributes. If unset, re-uses the current
        * workflow's search attributes.
@@ -42272,13 +39562,10 @@ public boolean containsSearchAttributes(java.lang.String key) {
        * map<string, .temporal.api.common.v1.Payload> search_attributes = 8;
        */
       @java.lang.Override
-      public java.util.Map
-          getSearchAttributesMap() {
+      public java.util.Map getSearchAttributesMap() {
         return internalGetSearchAttributes().getImmutableMap();
       }
       /**
-       *
-       *
        * 
        * If set, the new workflow will have these search attributes. If unset, re-uses the current
        * workflow's search attributes.
@@ -42287,20 +39574,16 @@ public boolean containsSearchAttributes(java.lang.String key) {
        * map<string, .temporal.api.common.v1.Payload> search_attributes = 8;
        */
       @java.lang.Override
-      public /* nullable */ io.temporal.api.common.v1.Payload getSearchAttributesOrDefault(
+      public /* nullable */
+io.temporal.api.common.v1.Payload getSearchAttributesOrDefault(
           java.lang.String key,
           /* nullable */
-          io.temporal.api.common.v1.Payload defaultValue) {
-        if (key == null) {
-          throw new NullPointerException("map key");
-        }
-        java.util.Map map =
-            internalGetMutableSearchAttributes().ensureBuilderMap();
+io.temporal.api.common.v1.Payload defaultValue) {
+        if (key == null) { throw new NullPointerException("map key"); }
+        java.util.Map map = internalGetMutableSearchAttributes().ensureBuilderMap();
         return map.containsKey(key) ? searchAttributesConverter.build(map.get(key)) : defaultValue;
       }
       /**
-       *
-       *
        * 
        * If set, the new workflow will have these search attributes. If unset, re-uses the current
        * workflow's search attributes.
@@ -42309,26 +39592,21 @@ public boolean containsSearchAttributes(java.lang.String key) {
        * map<string, .temporal.api.common.v1.Payload> search_attributes = 8;
        */
       @java.lang.Override
-      public io.temporal.api.common.v1.Payload getSearchAttributesOrThrow(java.lang.String key) {
-        if (key == null) {
-          throw new NullPointerException("map key");
-        }
-        java.util.Map map =
-            internalGetMutableSearchAttributes().ensureBuilderMap();
+      public io.temporal.api.common.v1.Payload getSearchAttributesOrThrow(
+          java.lang.String key) {
+        if (key == null) { throw new NullPointerException("map key"); }
+        java.util.Map map = internalGetMutableSearchAttributes().ensureBuilderMap();
         if (!map.containsKey(key)) {
           throw new java.lang.IllegalArgumentException();
         }
         return searchAttributesConverter.build(map.get(key));
       }
-
       public Builder clearSearchAttributes() {
         bitField0_ = (bitField0_ & ~0x00000080);
         internalGetMutableSearchAttributes().clear();
         return this;
       }
       /**
-       *
-       *
        * 
        * If set, the new workflow will have these search attributes. If unset, re-uses the current
        * workflow's search attributes.
@@ -42336,14 +39614,16 @@ public Builder clearSearchAttributes() {
        *
        * map<string, .temporal.api.common.v1.Payload> search_attributes = 8;
        */
-      public Builder removeSearchAttributes(java.lang.String key) {
-        if (key == null) {
-          throw new NullPointerException("map key");
-        }
-        internalGetMutableSearchAttributes().ensureBuilderMap().remove(key);
+      public Builder removeSearchAttributes(
+          java.lang.String key) {
+        if (key == null) { throw new NullPointerException("map key"); }
+        internalGetMutableSearchAttributes().ensureBuilderMap()
+            .remove(key);
         return this;
       }
-      /** Use alternate mutation accessors instead. */
+      /**
+       * Use alternate mutation accessors instead.
+       */
       @java.lang.Deprecated
       public java.util.Map
           getMutableSearchAttributes() {
@@ -42351,8 +39631,6 @@ public Builder removeSearchAttributes(java.lang.String key) {
         return internalGetMutableSearchAttributes().ensureMessageMap();
       }
       /**
-       *
-       *
        * 
        * If set, the new workflow will have these search attributes. If unset, re-uses the current
        * workflow's search attributes.
@@ -42361,20 +39639,16 @@ public Builder removeSearchAttributes(java.lang.String key) {
        * map<string, .temporal.api.common.v1.Payload> search_attributes = 8;
        */
       public Builder putSearchAttributes(
-          java.lang.String key, io.temporal.api.common.v1.Payload value) {
-        if (key == null) {
-          throw new NullPointerException("map key");
-        }
-        if (value == null) {
-          throw new NullPointerException("map value");
-        }
-        internalGetMutableSearchAttributes().ensureBuilderMap().put(key, value);
+          java.lang.String key,
+          io.temporal.api.common.v1.Payload value) {
+        if (key == null) { throw new NullPointerException("map key"); }
+        if (value == null) { throw new NullPointerException("map value"); }
+        internalGetMutableSearchAttributes().ensureBuilderMap()
+            .put(key, value);
         bitField0_ |= 0x00000080;
         return this;
       }
       /**
-       *
-       *
        * 
        * If set, the new workflow will have these search attributes. If unset, re-uses the current
        * workflow's search attributes.
@@ -42384,19 +39658,17 @@ public Builder putSearchAttributes(
        */
       public Builder putAllSearchAttributes(
           java.util.Map values) {
-        for (java.util.Map.Entry e :
-            values.entrySet()) {
+        for (java.util.Map.Entry e : values.entrySet()) {
           if (e.getKey() == null || e.getValue() == null) {
             throw new NullPointerException();
           }
         }
-        internalGetMutableSearchAttributes().ensureBuilderMap().putAll(values);
+        internalGetMutableSearchAttributes().ensureBuilderMap()
+            .putAll(values);
         bitField0_ |= 0x00000080;
         return this;
       }
       /**
-       *
-       *
        * 
        * If set, the new workflow will have these search attributes. If unset, re-uses the current
        * workflow's search attributes.
@@ -42406,8 +39678,7 @@ public Builder putAllSearchAttributes(
        */
       public io.temporal.api.common.v1.Payload.Builder putSearchAttributesBuilderIfAbsent(
           java.lang.String key) {
-        java.util.Map builderMap =
-            internalGetMutableSearchAttributes().ensureBuilderMap();
+        java.util.Map builderMap = internalGetMutableSearchAttributes().ensureBuilderMap();
         io.temporal.api.common.v1.PayloadOrBuilder entry = builderMap.get(key);
         if (entry == null) {
           entry = io.temporal.api.common.v1.Payload.newBuilder();
@@ -42422,49 +39693,36 @@ public io.temporal.api.common.v1.Payload.Builder putSearchAttributesBuilderIfAbs
 
       private io.temporal.api.common.v1.RetryPolicy retryPolicy_;
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.api.common.v1.RetryPolicy,
-              io.temporal.api.common.v1.RetryPolicy.Builder,
-              io.temporal.api.common.v1.RetryPolicyOrBuilder>
-          retryPolicyBuilder_;
+          io.temporal.api.common.v1.RetryPolicy, io.temporal.api.common.v1.RetryPolicy.Builder, io.temporal.api.common.v1.RetryPolicyOrBuilder> retryPolicyBuilder_;
       /**
-       *
-       *
        * 
        * If set, the new workflow will have this retry policy. If unset, re-uses the current
        * workflow's retry policy.
        * 
* * .temporal.api.common.v1.RetryPolicy retry_policy = 9; - * * @return Whether the retryPolicy field is set. */ public boolean hasRetryPolicy() { return ((bitField0_ & 0x00000100) != 0); } /** - * - * *
        * If set, the new workflow will have this retry policy. If unset, re-uses the current
        * workflow's retry policy.
        * 
* * .temporal.api.common.v1.RetryPolicy retry_policy = 9; - * * @return The retryPolicy. */ public io.temporal.api.common.v1.RetryPolicy getRetryPolicy() { if (retryPolicyBuilder_ == null) { - return retryPolicy_ == null - ? io.temporal.api.common.v1.RetryPolicy.getDefaultInstance() - : retryPolicy_; + return retryPolicy_ == null ? io.temporal.api.common.v1.RetryPolicy.getDefaultInstance() : retryPolicy_; } else { return retryPolicyBuilder_.getMessage(); } } /** - * - * *
        * If set, the new workflow will have this retry policy. If unset, re-uses the current
        * workflow's retry policy.
@@ -42486,8 +39744,6 @@ public Builder setRetryPolicy(io.temporal.api.common.v1.RetryPolicy value) {
         return this;
       }
       /**
-       *
-       *
        * 
        * If set, the new workflow will have this retry policy. If unset, re-uses the current
        * workflow's retry policy.
@@ -42495,7 +39751,8 @@ public Builder setRetryPolicy(io.temporal.api.common.v1.RetryPolicy value) {
        *
        * .temporal.api.common.v1.RetryPolicy retry_policy = 9;
        */
-      public Builder setRetryPolicy(io.temporal.api.common.v1.RetryPolicy.Builder builderForValue) {
+      public Builder setRetryPolicy(
+          io.temporal.api.common.v1.RetryPolicy.Builder builderForValue) {
         if (retryPolicyBuilder_ == null) {
           retryPolicy_ = builderForValue.build();
         } else {
@@ -42506,8 +39763,6 @@ public Builder setRetryPolicy(io.temporal.api.common.v1.RetryPolicy.Builder buil
         return this;
       }
       /**
-       *
-       *
        * 
        * If set, the new workflow will have this retry policy. If unset, re-uses the current
        * workflow's retry policy.
@@ -42517,9 +39772,9 @@ public Builder setRetryPolicy(io.temporal.api.common.v1.RetryPolicy.Builder buil
        */
       public Builder mergeRetryPolicy(io.temporal.api.common.v1.RetryPolicy value) {
         if (retryPolicyBuilder_ == null) {
-          if (((bitField0_ & 0x00000100) != 0)
-              && retryPolicy_ != null
-              && retryPolicy_ != io.temporal.api.common.v1.RetryPolicy.getDefaultInstance()) {
+          if (((bitField0_ & 0x00000100) != 0) &&
+            retryPolicy_ != null &&
+            retryPolicy_ != io.temporal.api.common.v1.RetryPolicy.getDefaultInstance()) {
             getRetryPolicyBuilder().mergeFrom(value);
           } else {
             retryPolicy_ = value;
@@ -42534,8 +39789,6 @@ public Builder mergeRetryPolicy(io.temporal.api.common.v1.RetryPolicy value) {
         return this;
       }
       /**
-       *
-       *
        * 
        * If set, the new workflow will have this retry policy. If unset, re-uses the current
        * workflow's retry policy.
@@ -42554,8 +39807,6 @@ public Builder clearRetryPolicy() {
         return this;
       }
       /**
-       *
-       *
        * 
        * If set, the new workflow will have this retry policy. If unset, re-uses the current
        * workflow's retry policy.
@@ -42569,8 +39820,6 @@ public io.temporal.api.common.v1.RetryPolicy.Builder getRetryPolicyBuilder() {
         return getRetryPolicyFieldBuilder().getBuilder();
       }
       /**
-       *
-       *
        * 
        * If set, the new workflow will have this retry policy. If unset, re-uses the current
        * workflow's retry policy.
@@ -42582,14 +39831,11 @@ public io.temporal.api.common.v1.RetryPolicyOrBuilder getRetryPolicyOrBuilder()
         if (retryPolicyBuilder_ != null) {
           return retryPolicyBuilder_.getMessageOrBuilder();
         } else {
-          return retryPolicy_ == null
-              ? io.temporal.api.common.v1.RetryPolicy.getDefaultInstance()
-              : retryPolicy_;
+          return retryPolicy_ == null ?
+              io.temporal.api.common.v1.RetryPolicy.getDefaultInstance() : retryPolicy_;
         }
       }
       /**
-       *
-       *
        * 
        * If set, the new workflow will have this retry policy. If unset, re-uses the current
        * workflow's retry policy.
@@ -42598,17 +39844,14 @@ public io.temporal.api.common.v1.RetryPolicyOrBuilder getRetryPolicyOrBuilder()
        * .temporal.api.common.v1.RetryPolicy retry_policy = 9;
        */
       private com.google.protobuf.SingleFieldBuilderV3<
-              io.temporal.api.common.v1.RetryPolicy,
-              io.temporal.api.common.v1.RetryPolicy.Builder,
-              io.temporal.api.common.v1.RetryPolicyOrBuilder>
+          io.temporal.api.common.v1.RetryPolicy, io.temporal.api.common.v1.RetryPolicy.Builder, io.temporal.api.common.v1.RetryPolicyOrBuilder> 
           getRetryPolicyFieldBuilder() {
         if (retryPolicyBuilder_ == null) {
-          retryPolicyBuilder_ =
-              new com.google.protobuf.SingleFieldBuilderV3<
-                  io.temporal.api.common.v1.RetryPolicy,
-                  io.temporal.api.common.v1.RetryPolicy.Builder,
-                  io.temporal.api.common.v1.RetryPolicyOrBuilder>(
-                  getRetryPolicy(), getParentForChildren(), isClean());
+          retryPolicyBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
+              io.temporal.api.common.v1.RetryPolicy, io.temporal.api.common.v1.RetryPolicy.Builder, io.temporal.api.common.v1.RetryPolicyOrBuilder>(
+                  getRetryPolicy(),
+                  getParentForChildren(),
+                  isClean());
           retryPolicy_ = null;
         }
         return retryPolicyBuilder_;
@@ -42616,29 +39859,22 @@ public io.temporal.api.common.v1.RetryPolicyOrBuilder getRetryPolicyOrBuilder()
 
       private int versioningIntent_ = 0;
       /**
-       *
-       *
        * 
        * Whether the continued workflow should run on a worker with a compatible build id or not.
        * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 10; - * * @return The enum numeric value on the wire for versioningIntent. */ - @java.lang.Override - public int getVersioningIntentValue() { + @java.lang.Override public int getVersioningIntentValue() { return versioningIntent_; } /** - * - * *
        * Whether the continued workflow should run on a worker with a compatible build id or not.
        * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 10; - * * @param value The enum numeric value on the wire for versioningIntent to set. * @return This builder for chaining. */ @@ -42649,31 +39885,24 @@ public Builder setVersioningIntentValue(int value) { return this; } /** - * - * *
        * Whether the continued workflow should run on a worker with a compatible build id or not.
        * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 10; - * * @return The versioningIntent. */ @java.lang.Override public io.temporal.omes.KitchenSink.VersioningIntent getVersioningIntent() { - io.temporal.omes.KitchenSink.VersioningIntent result = - io.temporal.omes.KitchenSink.VersioningIntent.forNumber(versioningIntent_); + io.temporal.omes.KitchenSink.VersioningIntent result = io.temporal.omes.KitchenSink.VersioningIntent.forNumber(versioningIntent_); return result == null ? io.temporal.omes.KitchenSink.VersioningIntent.UNRECOGNIZED : result; } /** - * - * *
        * Whether the continued workflow should run on a worker with a compatible build id or not.
        * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 10; - * * @param value The versioningIntent to set. * @return This builder for chaining. */ @@ -42687,14 +39916,11 @@ public Builder setVersioningIntent(io.temporal.omes.KitchenSink.VersioningIntent return this; } /** - * - * *
        * Whether the continued workflow should run on a worker with a compatible build id or not.
        * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 10; - * * @return This builder for chaining. */ public Builder clearVersioningIntent() { @@ -42703,7 +39929,6 @@ public Builder clearVersioningIntent() { onChanged(); return this; } - @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -42716,12 +39941,12 @@ public final Builder mergeUnknownFields( return super.mergeUnknownFields(unknownFields); } + // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.ContinueAsNewAction) } // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.ContinueAsNewAction) private static final io.temporal.omes.KitchenSink.ContinueAsNewAction DEFAULT_INSTANCE; - static { DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.ContinueAsNewAction(); } @@ -42730,28 +39955,27 @@ public static io.temporal.omes.KitchenSink.ContinueAsNewAction getDefaultInstanc return DEFAULT_INSTANCE; } - private static final com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser() { - @java.lang.Override - public ContinueAsNewAction parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException() - .setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public ContinueAsNewAction parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; public static com.google.protobuf.Parser parser() { return PARSER; @@ -42766,41 +39990,33 @@ public com.google.protobuf.Parser getParserForType() { public io.temporal.omes.KitchenSink.ContinueAsNewAction getDefaultInstanceForType() { return DEFAULT_INSTANCE; } + } - public interface RemoteActivityOptionsOrBuilder - extends + public interface RemoteActivityOptionsOrBuilder extends // @@protoc_insertion_point(interface_extends:temporal.omes.kitchen_sink.RemoteActivityOptions) com.google.protobuf.MessageOrBuilder { /** - * - * *
      * Defines how the workflow will wait (or not) for cancellation of the activity to be confirmed
      * 
* * .temporal.omes.kitchen_sink.ActivityCancellationType cancellation_type = 1; - * * @return The enum numeric value on the wire for cancellationType. */ int getCancellationTypeValue(); /** - * - * *
      * Defines how the workflow will wait (or not) for cancellation of the activity to be confirmed
      * 
* * .temporal.omes.kitchen_sink.ActivityCancellationType cancellation_type = 1; - * * @return The cancellationType. */ io.temporal.omes.KitchenSink.ActivityCancellationType getCancellationType(); /** - * - * *
      * If set, the worker will not tell the service that it can immediately start executing this
      * activity. When unset/default, workers will always attempt to do so if activity execution
@@ -42808,47 +40024,41 @@ public interface RemoteActivityOptionsOrBuilder
      * 
* * bool do_not_eagerly_execute = 2; - * * @return The doNotEagerlyExecute. */ boolean getDoNotEagerlyExecute(); /** - * - * *
      * Whether this activity should run on a worker with a compatible build id or not.
      * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 3; - * * @return The enum numeric value on the wire for versioningIntent. */ int getVersioningIntentValue(); /** - * - * *
      * Whether this activity should run on a worker with a compatible build id or not.
      * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 3; - * * @return The versioningIntent. */ io.temporal.omes.KitchenSink.VersioningIntent getVersioningIntent(); } - /** Protobuf type {@code temporal.omes.kitchen_sink.RemoteActivityOptions} */ - public static final class RemoteActivityOptions extends com.google.protobuf.GeneratedMessageV3 - implements + /** + * Protobuf type {@code temporal.omes.kitchen_sink.RemoteActivityOptions} + */ + public static final class RemoteActivityOptions extends + com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:temporal.omes.kitchen_sink.RemoteActivityOptions) RemoteActivityOptionsOrBuilder { - private static final long serialVersionUID = 0L; + private static final long serialVersionUID = 0L; // Use RemoteActivityOptions.newBuilder() to construct. private RemoteActivityOptions(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } - private RemoteActivityOptions() { cancellationType_ = 0; versioningIntent_ = 0; @@ -42856,67 +40066,53 @@ private RemoteActivityOptions() { @java.lang.Override @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance(UnusedPrivateParameter unused) { + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { return new RemoteActivityOptions(); } - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_RemoteActivityOptions_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_RemoteActivityOptions_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_RemoteActivityOptions_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_RemoteActivityOptions_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.RemoteActivityOptions.class, - io.temporal.omes.KitchenSink.RemoteActivityOptions.Builder.class); + io.temporal.omes.KitchenSink.RemoteActivityOptions.class, io.temporal.omes.KitchenSink.RemoteActivityOptions.Builder.class); } public static final int CANCELLATION_TYPE_FIELD_NUMBER = 1; private int cancellationType_ = 0; /** - * - * *
      * Defines how the workflow will wait (or not) for cancellation of the activity to be confirmed
      * 
* * .temporal.omes.kitchen_sink.ActivityCancellationType cancellation_type = 1; - * * @return The enum numeric value on the wire for cancellationType. */ - @java.lang.Override - public int getCancellationTypeValue() { + @java.lang.Override public int getCancellationTypeValue() { return cancellationType_; } /** - * - * *
      * Defines how the workflow will wait (or not) for cancellation of the activity to be confirmed
      * 
* * .temporal.omes.kitchen_sink.ActivityCancellationType cancellation_type = 1; - * * @return The cancellationType. */ - @java.lang.Override - public io.temporal.omes.KitchenSink.ActivityCancellationType getCancellationType() { - io.temporal.omes.KitchenSink.ActivityCancellationType result = - io.temporal.omes.KitchenSink.ActivityCancellationType.forNumber(cancellationType_); - return result == null - ? io.temporal.omes.KitchenSink.ActivityCancellationType.UNRECOGNIZED - : result; + @java.lang.Override public io.temporal.omes.KitchenSink.ActivityCancellationType getCancellationType() { + io.temporal.omes.KitchenSink.ActivityCancellationType result = io.temporal.omes.KitchenSink.ActivityCancellationType.forNumber(cancellationType_); + return result == null ? io.temporal.omes.KitchenSink.ActivityCancellationType.UNRECOGNIZED : result; } public static final int DO_NOT_EAGERLY_EXECUTE_FIELD_NUMBER = 2; private boolean doNotEagerlyExecute_ = false; /** - * - * *
      * If set, the worker will not tell the service that it can immediately start executing this
      * activity. When unset/default, workers will always attempt to do so if activity execution
@@ -42924,7 +40120,6 @@ public io.temporal.omes.KitchenSink.ActivityCancellationType getCancellationType
      * 
* * bool do_not_eagerly_execute = 2; - * * @return The doNotEagerlyExecute. */ @java.lang.Override @@ -42935,40 +40130,30 @@ public boolean getDoNotEagerlyExecute() { public static final int VERSIONING_INTENT_FIELD_NUMBER = 3; private int versioningIntent_ = 0; /** - * - * *
      * Whether this activity should run on a worker with a compatible build id or not.
      * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 3; - * * @return The enum numeric value on the wire for versioningIntent. */ - @java.lang.Override - public int getVersioningIntentValue() { + @java.lang.Override public int getVersioningIntentValue() { return versioningIntent_; } /** - * - * *
      * Whether this activity should run on a worker with a compatible build id or not.
      * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 3; - * * @return The versioningIntent. */ - @java.lang.Override - public io.temporal.omes.KitchenSink.VersioningIntent getVersioningIntent() { - io.temporal.omes.KitchenSink.VersioningIntent result = - io.temporal.omes.KitchenSink.VersioningIntent.forNumber(versioningIntent_); + @java.lang.Override public io.temporal.omes.KitchenSink.VersioningIntent getVersioningIntent() { + io.temporal.omes.KitchenSink.VersioningIntent result = io.temporal.omes.KitchenSink.VersioningIntent.forNumber(versioningIntent_); return result == null ? io.temporal.omes.KitchenSink.VersioningIntent.UNRECOGNIZED : result; } private byte memoizedIsInitialized = -1; - @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; @@ -42980,16 +40165,15 @@ public final boolean isInitialized() { } @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { - if (cancellationType_ - != io.temporal.omes.KitchenSink.ActivityCancellationType.TRY_CANCEL.getNumber()) { + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (cancellationType_ != io.temporal.omes.KitchenSink.ActivityCancellationType.TRY_CANCEL.getNumber()) { output.writeEnum(1, cancellationType_); } if (doNotEagerlyExecute_ != false) { output.writeBool(2, doNotEagerlyExecute_); } - if (versioningIntent_ - != io.temporal.omes.KitchenSink.VersioningIntent.UNSPECIFIED.getNumber()) { + if (versioningIntent_ != io.temporal.omes.KitchenSink.VersioningIntent.UNSPECIFIED.getNumber()) { output.writeEnum(3, versioningIntent_); } getUnknownFields().writeTo(output); @@ -43001,16 +40185,17 @@ public int getSerializedSize() { if (size != -1) return size; size = 0; - if (cancellationType_ - != io.temporal.omes.KitchenSink.ActivityCancellationType.TRY_CANCEL.getNumber()) { - size += com.google.protobuf.CodedOutputStream.computeEnumSize(1, cancellationType_); + if (cancellationType_ != io.temporal.omes.KitchenSink.ActivityCancellationType.TRY_CANCEL.getNumber()) { + size += com.google.protobuf.CodedOutputStream + .computeEnumSize(1, cancellationType_); } if (doNotEagerlyExecute_ != false) { - size += com.google.protobuf.CodedOutputStream.computeBoolSize(2, doNotEagerlyExecute_); + size += com.google.protobuf.CodedOutputStream + .computeBoolSize(2, doNotEagerlyExecute_); } - if (versioningIntent_ - != io.temporal.omes.KitchenSink.VersioningIntent.UNSPECIFIED.getNumber()) { - size += com.google.protobuf.CodedOutputStream.computeEnumSize(3, versioningIntent_); + if (versioningIntent_ != io.temporal.omes.KitchenSink.VersioningIntent.UNSPECIFIED.getNumber()) { + size += com.google.protobuf.CodedOutputStream + .computeEnumSize(3, versioningIntent_); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; @@ -43020,16 +40205,16 @@ public int getSerializedSize() { @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { - return true; + return true; } if (!(obj instanceof io.temporal.omes.KitchenSink.RemoteActivityOptions)) { return super.equals(obj); } - io.temporal.omes.KitchenSink.RemoteActivityOptions other = - (io.temporal.omes.KitchenSink.RemoteActivityOptions) obj; + io.temporal.omes.KitchenSink.RemoteActivityOptions other = (io.temporal.omes.KitchenSink.RemoteActivityOptions) obj; if (cancellationType_ != other.cancellationType_) return false; - if (getDoNotEagerlyExecute() != other.getDoNotEagerlyExecute()) return false; + if (getDoNotEagerlyExecute() + != other.getDoNotEagerlyExecute()) return false; if (versioningIntent_ != other.versioningIntent_) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; @@ -43045,7 +40230,8 @@ public int hashCode() { hash = (37 * hash) + CANCELLATION_TYPE_FIELD_NUMBER; hash = (53 * hash) + cancellationType_; hash = (37 * hash) + DO_NOT_EAGERLY_EXECUTE_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getDoNotEagerlyExecute()); + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( + getDoNotEagerlyExecute()); hash = (37 * hash) + VERSIONING_INTENT_FIELD_NUMBER; hash = (53 * hash) + versioningIntent_; hash = (29 * hash) + getUnknownFields().hashCode(); @@ -43054,93 +40240,89 @@ public int hashCode() { } public static io.temporal.omes.KitchenSink.RemoteActivityOptions parseFrom( - java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.RemoteActivityOptions parseFrom( - java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.RemoteActivityOptions parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.RemoteActivityOptions parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static io.temporal.omes.KitchenSink.RemoteActivityOptions parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static io.temporal.omes.KitchenSink.RemoteActivityOptions parseFrom( - byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - - public static io.temporal.omes.KitchenSink.RemoteActivityOptions parseFrom( - java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + public static io.temporal.omes.KitchenSink.RemoteActivityOptions parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.RemoteActivityOptions parseFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.RemoteActivityOptions parseDelimitedFrom( - java.io.InputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + public static io.temporal.omes.KitchenSink.RemoteActivityOptions parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); } public static io.temporal.omes.KitchenSink.RemoteActivityOptions parseDelimitedFrom( - java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } - public static io.temporal.omes.KitchenSink.RemoteActivityOptions parseFrom( - com.google.protobuf.CodedInputStream input) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); } - public static io.temporal.omes.KitchenSink.RemoteActivityOptions parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException( - PARSER, input, extensionRegistry); + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override - public Builder newBuilderForType() { - return newBuilder(); - } - + public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(io.temporal.omes.KitchenSink.RemoteActivityOptions prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } - @java.lang.Override public Builder toBuilder() { - return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override @@ -43149,34 +40331,36 @@ protected Builder newBuilderForType( Builder builder = new Builder(parent); return builder; } - /** Protobuf type {@code temporal.omes.kitchen_sink.RemoteActivityOptions} */ - public static final class Builder - extends com.google.protobuf.GeneratedMessageV3.Builder - implements + /** + * Protobuf type {@code temporal.omes.kitchen_sink.RemoteActivityOptions} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:temporal.omes.kitchen_sink.RemoteActivityOptions) io.temporal.omes.KitchenSink.RemoteActivityOptionsOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_RemoteActivityOptions_descriptor; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_RemoteActivityOptions_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_RemoteActivityOptions_fieldAccessorTable + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_RemoteActivityOptions_fieldAccessorTable .ensureFieldAccessorsInitialized( - io.temporal.omes.KitchenSink.RemoteActivityOptions.class, - io.temporal.omes.KitchenSink.RemoteActivityOptions.Builder.class); + io.temporal.omes.KitchenSink.RemoteActivityOptions.class, io.temporal.omes.KitchenSink.RemoteActivityOptions.Builder.class); } // Construct using io.temporal.omes.KitchenSink.RemoteActivityOptions.newBuilder() - private Builder() {} + private Builder() { - private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); } + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + + } @java.lang.Override public Builder clear() { super.clear(); @@ -43188,9 +40372,9 @@ public Builder clear() { } @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return io.temporal.omes.KitchenSink - .internal_static_temporal_omes_kitchen_sink_RemoteActivityOptions_descriptor; + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return io.temporal.omes.KitchenSink.internal_static_temporal_omes_kitchen_sink_RemoteActivityOptions_descriptor; } @java.lang.Override @@ -43209,11 +40393,8 @@ public io.temporal.omes.KitchenSink.RemoteActivityOptions build() { @java.lang.Override public io.temporal.omes.KitchenSink.RemoteActivityOptions buildPartial() { - io.temporal.omes.KitchenSink.RemoteActivityOptions result = - new io.temporal.omes.KitchenSink.RemoteActivityOptions(this); - if (bitField0_ != 0) { - buildPartial0(result); - } + io.temporal.omes.KitchenSink.RemoteActivityOptions result = new io.temporal.omes.KitchenSink.RemoteActivityOptions(this); + if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } @@ -43235,41 +40416,38 @@ private void buildPartial0(io.temporal.omes.KitchenSink.RemoteActivityOptions re public Builder clone() { return super.clone(); } - @java.lang.Override public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.setField(field, value); } - @java.lang.Override - public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } - @java.lang.Override - public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } - @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, - int index, - java.lang.Object value) { + int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } - @java.lang.Override public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { return super.addRepeatedField(field, value); } - @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.temporal.omes.KitchenSink.RemoteActivityOptions) { - return mergeFrom((io.temporal.omes.KitchenSink.RemoteActivityOptions) other); + return mergeFrom((io.temporal.omes.KitchenSink.RemoteActivityOptions)other); } else { super.mergeFrom(other); return this; @@ -43277,8 +40455,7 @@ public Builder mergeFrom(com.google.protobuf.Message other) { } public Builder mergeFrom(io.temporal.omes.KitchenSink.RemoteActivityOptions other) { - if (other == io.temporal.omes.KitchenSink.RemoteActivityOptions.getDefaultInstance()) - return this; + if (other == io.temporal.omes.KitchenSink.RemoteActivityOptions.getDefaultInstance()) return this; if (other.cancellationType_ != 0) { setCancellationTypeValue(other.getCancellationTypeValue()); } @@ -43314,31 +40491,27 @@ public Builder mergeFrom( case 0: done = true; break; - case 8: - { - cancellationType_ = input.readEnum(); - bitField0_ |= 0x00000001; - break; - } // case 8 - case 16: - { - doNotEagerlyExecute_ = input.readBool(); - bitField0_ |= 0x00000002; - break; - } // case 16 - case 24: - { - versioningIntent_ = input.readEnum(); - bitField0_ |= 0x00000004; - break; - } // case 24 - default: - { - if (!super.parseUnknownField(input, extensionRegistry, tag)) { - done = true; // was an endgroup tag - } - break; - } // default: + case 8: { + cancellationType_ = input.readEnum(); + bitField0_ |= 0x00000001; + break; + } // case 8 + case 16: { + doNotEagerlyExecute_ = input.readBool(); + bitField0_ |= 0x00000002; + break; + } // case 16 + case 24: { + versioningIntent_ = input.readEnum(); + bitField0_ |= 0x00000004; + break; + } // case 24 + default: { + if (!super.parseUnknownField(input, extensionRegistry, tag)) { + done = true; // was an endgroup tag + } + break; + } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -43348,34 +40521,26 @@ public Builder mergeFrom( } // finally return this; } - private int bitField0_; private int cancellationType_ = 0; /** - * - * *
        * Defines how the workflow will wait (or not) for cancellation of the activity to be confirmed
        * 
* * .temporal.omes.kitchen_sink.ActivityCancellationType cancellation_type = 1; - * * @return The enum numeric value on the wire for cancellationType. */ - @java.lang.Override - public int getCancellationTypeValue() { + @java.lang.Override public int getCancellationTypeValue() { return cancellationType_; } /** - * - * *
        * Defines how the workflow will wait (or not) for cancellation of the activity to be confirmed
        * 
* * .temporal.omes.kitchen_sink.ActivityCancellationType cancellation_type = 1; - * * @param value The enum numeric value on the wire for cancellationType to set. * @return This builder for chaining. */ @@ -43386,38 +40551,28 @@ public Builder setCancellationTypeValue(int value) { return this; } /** - * - * *
        * Defines how the workflow will wait (or not) for cancellation of the activity to be confirmed
        * 
* * .temporal.omes.kitchen_sink.ActivityCancellationType cancellation_type = 1; - * * @return The cancellationType. */ @java.lang.Override public io.temporal.omes.KitchenSink.ActivityCancellationType getCancellationType() { - io.temporal.omes.KitchenSink.ActivityCancellationType result = - io.temporal.omes.KitchenSink.ActivityCancellationType.forNumber(cancellationType_); - return result == null - ? io.temporal.omes.KitchenSink.ActivityCancellationType.UNRECOGNIZED - : result; + io.temporal.omes.KitchenSink.ActivityCancellationType result = io.temporal.omes.KitchenSink.ActivityCancellationType.forNumber(cancellationType_); + return result == null ? io.temporal.omes.KitchenSink.ActivityCancellationType.UNRECOGNIZED : result; } /** - * - * *
        * Defines how the workflow will wait (or not) for cancellation of the activity to be confirmed
        * 
* * .temporal.omes.kitchen_sink.ActivityCancellationType cancellation_type = 1; - * * @param value The cancellationType to set. * @return This builder for chaining. */ - public Builder setCancellationType( - io.temporal.omes.KitchenSink.ActivityCancellationType value) { + public Builder setCancellationType(io.temporal.omes.KitchenSink.ActivityCancellationType value) { if (value == null) { throw new NullPointerException(); } @@ -43427,14 +40582,11 @@ public Builder setCancellationType( return this; } /** - * - * *
        * Defines how the workflow will wait (or not) for cancellation of the activity to be confirmed
        * 
* * .temporal.omes.kitchen_sink.ActivityCancellationType cancellation_type = 1; - * * @return This builder for chaining. */ public Builder clearCancellationType() { @@ -43444,10 +40596,8 @@ public Builder clearCancellationType() { return this; } - private boolean doNotEagerlyExecute_; + private boolean doNotEagerlyExecute_ ; /** - * - * *
        * If set, the worker will not tell the service that it can immediately start executing this
        * activity. When unset/default, workers will always attempt to do so if activity execution
@@ -43455,7 +40605,6 @@ public Builder clearCancellationType() {
        * 
* * bool do_not_eagerly_execute = 2; - * * @return The doNotEagerlyExecute. */ @java.lang.Override @@ -43463,8 +40612,6 @@ public boolean getDoNotEagerlyExecute() { return doNotEagerlyExecute_; } /** - * - * *
        * If set, the worker will not tell the service that it can immediately start executing this
        * activity. When unset/default, workers will always attempt to do so if activity execution
@@ -43472,7 +40619,6 @@ public boolean getDoNotEagerlyExecute() {
        * 
* * bool do_not_eagerly_execute = 2; - * * @param value The doNotEagerlyExecute to set. * @return This builder for chaining. */ @@ -43484,8 +40630,6 @@ public Builder setDoNotEagerlyExecute(boolean value) { return this; } /** - * - * *
        * If set, the worker will not tell the service that it can immediately start executing this
        * activity. When unset/default, workers will always attempt to do so if activity execution
@@ -43493,7 +40637,6 @@ public Builder setDoNotEagerlyExecute(boolean value) {
        * 
* * bool do_not_eagerly_execute = 2; - * * @return This builder for chaining. */ public Builder clearDoNotEagerlyExecute() { @@ -43505,29 +40648,22 @@ public Builder clearDoNotEagerlyExecute() { private int versioningIntent_ = 0; /** - * - * *
        * Whether this activity should run on a worker with a compatible build id or not.
        * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 3; - * * @return The enum numeric value on the wire for versioningIntent. */ - @java.lang.Override - public int getVersioningIntentValue() { + @java.lang.Override public int getVersioningIntentValue() { return versioningIntent_; } /** - * - * *
        * Whether this activity should run on a worker with a compatible build id or not.
        * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 3; - * * @param value The enum numeric value on the wire for versioningIntent to set. * @return This builder for chaining. */ @@ -43538,31 +40674,24 @@ public Builder setVersioningIntentValue(int value) { return this; } /** - * - * *
        * Whether this activity should run on a worker with a compatible build id or not.
        * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 3; - * * @return The versioningIntent. */ @java.lang.Override public io.temporal.omes.KitchenSink.VersioningIntent getVersioningIntent() { - io.temporal.omes.KitchenSink.VersioningIntent result = - io.temporal.omes.KitchenSink.VersioningIntent.forNumber(versioningIntent_); + io.temporal.omes.KitchenSink.VersioningIntent result = io.temporal.omes.KitchenSink.VersioningIntent.forNumber(versioningIntent_); return result == null ? io.temporal.omes.KitchenSink.VersioningIntent.UNRECOGNIZED : result; } /** - * - * *
        * Whether this activity should run on a worker with a compatible build id or not.
        * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 3; - * * @param value The versioningIntent to set. * @return This builder for chaining. */ @@ -43576,14 +40705,11 @@ public Builder setVersioningIntent(io.temporal.omes.KitchenSink.VersioningIntent return this; } /** - * - * *
        * Whether this activity should run on a worker with a compatible build id or not.
        * 
* * .temporal.omes.kitchen_sink.VersioningIntent versioning_intent = 3; - * * @return This builder for chaining. */ public Builder clearVersioningIntent() { @@ -43592,7 +40718,6 @@ public Builder clearVersioningIntent() { onChanged(); return this; } - @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -43605,12 +40730,12 @@ public final Builder mergeUnknownFields( return super.mergeUnknownFields(unknownFields); } + // @@protoc_insertion_point(builder_scope:temporal.omes.kitchen_sink.RemoteActivityOptions) } // @@protoc_insertion_point(class_scope:temporal.omes.kitchen_sink.RemoteActivityOptions) private static final io.temporal.omes.KitchenSink.RemoteActivityOptions DEFAULT_INSTANCE; - static { DEFAULT_INSTANCE = new io.temporal.omes.KitchenSink.RemoteActivityOptions(); } @@ -43619,28 +40744,27 @@ public static io.temporal.omes.KitchenSink.RemoteActivityOptions getDefaultInsta return DEFAULT_INSTANCE; } - private static final com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser() { - @java.lang.Override - public RemoteActivityOptions parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException() - .setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public RemoteActivityOptions parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + Builder builder = newBuilder(); + try { + builder.mergeFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(builder.buildPartial()); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e) + .setUnfinishedMessage(builder.buildPartial()); + } + return builder.buildPartial(); + } + }; public static com.google.protobuf.Parser parser() { return PARSER; @@ -43655,790 +40779,672 @@ public com.google.protobuf.Parser getParserForType() { public io.temporal.omes.KitchenSink.RemoteActivityOptions getDefaultInstanceForType() { return DEFAULT_INSTANCE; } + } private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_TestInput_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_TestInput_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_TestInput_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_ClientSequence_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_ClientSequence_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_ClientSequence_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_ClientActionSet_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_ClientActionSet_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_ClientActionSet_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_ClientAction_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_ClientAction_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_ClientAction_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_DoSignal_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_DoSignal_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_DoSignal_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_DoSignal_DoSignalActions_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_DoSignal_DoSignalActions_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_DoSignal_DoSignalActions_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_DoQuery_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_DoQuery_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_DoQuery_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_DoUpdate_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_DoUpdate_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_DoUpdate_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_DoActionsUpdate_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_DoActionsUpdate_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_DoActionsUpdate_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_HandlerInvocation_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_HandlerInvocation_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_HandlerInvocation_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_WorkflowState_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_WorkflowState_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_WorkflowState_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_WorkflowState_KvsEntry_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_WorkflowState_KvsEntry_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_WorkflowState_KvsEntry_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_WorkflowInput_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_WorkflowInput_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_WorkflowInput_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_ActionSet_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_ActionSet_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_ActionSet_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_Action_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_Action_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_Action_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_AwaitableChoice_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_AwaitableChoice_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_AwaitableChoice_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_TimerAction_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_TimerAction_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_TimerAction_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_GenericActivity_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_GenericActivity_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_GenericActivity_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_HeadersEntry_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_HeadersEntry_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_HeadersEntry_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_HeadersEntry_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_HeadersEntry_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_HeadersEntry_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_MemoEntry_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_MemoEntry_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_MemoEntry_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_SearchAttributesEntry_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_SearchAttributesEntry_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_SearchAttributesEntry_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_AwaitWorkflowState_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_AwaitWorkflowState_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_AwaitWorkflowState_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_SendSignalAction_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_SendSignalAction_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_SendSignalAction_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_SendSignalAction_HeadersEntry_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_SendSignalAction_HeadersEntry_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_SendSignalAction_HeadersEntry_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_CancelWorkflowAction_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_CancelWorkflowAction_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_CancelWorkflowAction_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_SetPatchMarkerAction_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_SetPatchMarkerAction_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_SetPatchMarkerAction_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_SearchAttributesEntry_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_SearchAttributesEntry_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_SearchAttributesEntry_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_UpsertMemoAction_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_UpsertMemoAction_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_UpsertMemoAction_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_ReturnResultAction_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_ReturnResultAction_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_ReturnResultAction_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_ReturnErrorAction_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_ReturnErrorAction_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_ReturnErrorAction_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_MemoEntry_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_MemoEntry_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_MemoEntry_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_HeadersEntry_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_HeadersEntry_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_HeadersEntry_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_SearchAttributesEntry_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_SearchAttributesEntry_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_SearchAttributesEntry_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor - internal_static_temporal_omes_kitchen_sink_RemoteActivityOptions_descriptor; - private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_temporal_omes_kitchen_sink_RemoteActivityOptions_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_temporal_omes_kitchen_sink_RemoteActivityOptions_fieldAccessorTable; - public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + public static com.google.protobuf.Descriptors.FileDescriptor + getDescriptor() { return descriptor; } - - private static com.google.protobuf.Descriptors.FileDescriptor descriptor; - + private static com.google.protobuf.Descriptors.FileDescriptor + descriptor; static { java.lang.String[] descriptorData = { - "\n\022kitchen_sink.proto\022\032temporal.omes.kitc" - + "hen_sink\032\036google/protobuf/duration.proto" - + "\032\033google/protobuf/empty.proto\032$temporal/" - + "api/common/v1/message.proto\032%temporal/ap" - + "i/failure/v1/message.proto\032$temporal/api" - + "/enums/v1/workflow.proto\"\223\001\n\tTestInput\022A" - + "\n\016workflow_input\030\001 \001(\0132).temporal.omes.k" - + "itchen_sink.WorkflowInput\022C\n\017client_sequ" - + "ence\030\002 \001(\0132*.temporal.omes.kitchen_sink." - + "ClientSequence\"R\n\016ClientSequence\022@\n\013acti" - + "on_sets\030\001 \003(\0132+.temporal.omes.kitchen_si" - + "nk.ClientActionSet\"\277\001\n\017ClientActionSet\0229" - + "\n\007actions\030\001 \003(\0132(.temporal.omes.kitchen_" - + "sink.ClientAction\022\022\n\nconcurrent\030\002 \001(\010\022.\n" - + "\013wait_at_end\030\003 \001(\0132\031.google.protobuf.Dur" - + "ation\022-\n%wait_for_current_run_to_finish_" - + "at_end\030\004 \001(\010\"\217\002\n\014ClientAction\0229\n\tdo_sign" - + "al\030\001 \001(\0132$.temporal.omes.kitchen_sink.Do" - + "SignalH\000\0227\n\010do_query\030\002 \001(\0132#.temporal.om" - + "es.kitchen_sink.DoQueryH\000\0229\n\tdo_update\030\003" - + " \001(\0132$.temporal.omes.kitchen_sink.DoUpda" - + "teH\000\022E\n\016nested_actions\030\004 \001(\0132+.temporal." - + "omes.kitchen_sink.ClientActionSetH\000B\t\n\007v" - + "ariant\"\312\002\n\010DoSignal\022Q\n\021do_signal_actions" - + "\030\001 \001(\01324.temporal.omes.kitchen_sink.DoSi" - + "gnal.DoSignalActionsH\000\022?\n\006custom\030\002 \001(\0132-" - + ".temporal.omes.kitchen_sink.HandlerInvoc" - + "ationH\000\032\236\001\n\017DoSignalActions\022;\n\ndo_action" - + "s\030\001 \001(\0132%.temporal.omes.kitchen_sink.Act" - + "ionSetH\000\022C\n\022do_actions_in_main\030\002 \001(\0132%.t" - + "emporal.omes.kitchen_sink.ActionSetH\000B\t\n" - + "\007variantB\t\n\007variant\"\251\001\n\007DoQuery\0228\n\014repor" - + "t_state\030\001 \001(\0132 .temporal.api.common.v1.P" - + "ayloadsH\000\022?\n\006custom\030\002 \001(\0132-.temporal.ome" - + "s.kitchen_sink.HandlerInvocationH\000\022\030\n\020fa" - + "ilure_expected\030\n \001(\010B\t\n\007variant\"\263\001\n\010DoUp" - + "date\022A\n\ndo_actions\030\001 \001(\0132+.temporal.omes" - + ".kitchen_sink.DoActionsUpdateH\000\022?\n\006custo" - + "m\030\002 \001(\0132-.temporal.omes.kitchen_sink.Han" - + "dlerInvocationH\000\022\030\n\020failure_expected\030\n \001" - + "(\010B\t\n\007variant\"\206\001\n\017DoActionsUpdate\022;\n\ndo_" - + "actions\030\001 \001(\0132%.temporal.omes.kitchen_si" - + "nk.ActionSetH\000\022+\n\treject_me\030\002 \001(\0132\026.goog" - + "le.protobuf.EmptyH\000B\t\n\007variant\"P\n\021Handle" - + "rInvocation\022\014\n\004name\030\001 \001(\t\022-\n\004args\030\002 \003(\0132" - + "\037.temporal.api.common.v1.Payload\"|\n\rWork" - + "flowState\022?\n\003kvs\030\001 \003(\01322.temporal.omes.k" - + "itchen_sink.WorkflowState.KvsEntry\032*\n\010Kv" - + "sEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"O" - + "\n\rWorkflowInput\022>\n\017initial_actions\030\001 \003(\013" - + "2%.temporal.omes.kitchen_sink.ActionSet\"" - + "T\n\tActionSet\0223\n\007actions\030\001 \003(\0132\".temporal" - + ".omes.kitchen_sink.Action\022\022\n\nconcurrent\030" - + "\002 \001(\010\"\254\010\n\006Action\0228\n\005timer\030\001 \001(\0132\'.tempor" - + "al.omes.kitchen_sink.TimerActionH\000\022J\n\rex" - + "ec_activity\030\002 \001(\01321.temporal.omes.kitche" - + "n_sink.ExecuteActivityActionH\000\022U\n\023exec_c" - + "hild_workflow\030\003 \001(\01326.temporal.omes.kitc" - + "hen_sink.ExecuteChildWorkflowActionH\000\022N\n" - + "\024await_workflow_state\030\004 \001(\0132..temporal.o" - + "mes.kitchen_sink.AwaitWorkflowStateH\000\022C\n" - + "\013send_signal\030\005 \001(\0132,.temporal.omes.kitch" - + "en_sink.SendSignalActionH\000\022K\n\017cancel_wor" - + "kflow\030\006 \001(\01320.temporal.omes.kitchen_sink" - + ".CancelWorkflowActionH\000\022L\n\020set_patch_mar" - + "ker\030\007 \001(\01320.temporal.omes.kitchen_sink.S" - + "etPatchMarkerActionH\000\022\\\n\030upsert_search_a" - + "ttributes\030\010 \001(\01328.temporal.omes.kitchen_" - + "sink.UpsertSearchAttributesActionH\000\022C\n\013u" - + "psert_memo\030\t \001(\0132,.temporal.omes.kitchen" - + "_sink.UpsertMemoActionH\000\022G\n\022set_workflow" - + "_state\030\n \001(\0132).temporal.omes.kitchen_sin" - + "k.WorkflowStateH\000\022G\n\rreturn_result\030\013 \001(\013" - + "2..temporal.omes.kitchen_sink.ReturnResu" - + "ltActionH\000\022E\n\014return_error\030\014 \001(\0132-.tempo" - + "ral.omes.kitchen_sink.ReturnErrorActionH" - + "\000\022J\n\017continue_as_new\030\r \001(\0132/.temporal.om" - + "es.kitchen_sink.ContinueAsNewActionH\000\022B\n" - + "\021nested_action_set\030\016 \001(\0132%.temporal.omes" - + ".kitchen_sink.ActionSetH\000B\t\n\007variant\"\243\002\n" - + "\017AwaitableChoice\022-\n\013wait_finish\030\001 \001(\0132\026." - + "google.protobuf.EmptyH\000\022)\n\007abandon\030\002 \001(\013" - + "2\026.google.protobuf.EmptyH\000\0227\n\025cancel_bef" - + "ore_started\030\003 \001(\0132\026.google.protobuf.Empt" - + "yH\000\0226\n\024cancel_after_started\030\004 \001(\0132\026.goog" - + "le.protobuf.EmptyH\000\0228\n\026cancel_after_comp" - + "leted\030\005 \001(\0132\026.google.protobuf.EmptyH\000B\013\n" - + "\tcondition\"j\n\013TimerAction\022\024\n\014millisecond" - + "s\030\001 \001(\004\022E\n\020awaitable_choice\030\002 \001(\0132+.temp" - + "oral.omes.kitchen_sink.AwaitableChoice\"\311" - + "\007\n\025ExecuteActivityAction\022T\n\007generic\030\001 \001(" - + "\0132A.temporal.omes.kitchen_sink.ExecuteAc" - + "tivityAction.GenericActivityH\000\022*\n\005delay\030" - + "\002 \001(\0132\031.google.protobuf.DurationH\000\022&\n\004no" - + "op\030\003 \001(\0132\026.google.protobuf.EmptyH\000\022\022\n\nta" - + "sk_queue\030\004 \001(\t\022O\n\007headers\030\005 \003(\0132>.tempor" - + "al.omes.kitchen_sink.ExecuteActivityActi" - + "on.HeadersEntry\022<\n\031schedule_to_close_tim" - + "eout\030\006 \001(\0132\031.google.protobuf.Duration\022<\n" - + "\031schedule_to_start_timeout\030\007 \001(\0132\031.googl" - + "e.protobuf.Duration\0229\n\026start_to_close_ti" - + "meout\030\010 \001(\0132\031.google.protobuf.Duration\0224" - + "\n\021heartbeat_timeout\030\t \001(\0132\031.google.proto" - + "buf.Duration\0229\n\014retry_policy\030\n \001(\0132#.tem" - + "poral.api.common.v1.RetryPolicy\022*\n\010is_lo" - + "cal\030\013 \001(\0132\026.google.protobuf.EmptyH\001\022C\n\006r" - + "emote\030\014 \001(\01321.temporal.omes.kitchen_sink" - + ".RemoteActivityOptionsH\001\022E\n\020awaitable_ch" - + "oice\030\r \001(\0132+.temporal.omes.kitchen_sink." - + "AwaitableChoice\032S\n\017GenericActivity\022\014\n\004ty" - + "pe\030\001 \001(\t\0222\n\targuments\030\002 \003(\0132\037.temporal.a" - + "pi.common.v1.Payload\032O\n\014HeadersEntry\022\013\n\003" - + "key\030\001 \001(\t\022.\n\005value\030\002 \001(\0132\037.temporal.api." - + "common.v1.Payload:\0028\001B\017\n\ractivity_typeB\n" - + "\n\010locality\"\255\n\n\032ExecuteChildWorkflowActio" - + "n\022\021\n\tnamespace\030\002 \001(\t\022\023\n\013workflow_id\030\003 \001(" - + "\t\022\025\n\rworkflow_type\030\004 \001(\t\022\022\n\ntask_queue\030\005" - + " \001(\t\022.\n\005input\030\006 \003(\0132\037.temporal.api.commo" - + "n.v1.Payload\022=\n\032workflow_execution_timeo" - + "ut\030\007 \001(\0132\031.google.protobuf.Duration\0227\n\024w" - + "orkflow_run_timeout\030\010 \001(\0132\031.google.proto" - + "buf.Duration\0228\n\025workflow_task_timeout\030\t " - + "\001(\0132\031.google.protobuf.Duration\022J\n\023parent" - + "_close_policy\030\n \001(\0162-.temporal.omes.kitc" - + "hen_sink.ParentClosePolicy\022N\n\030workflow_i" - + "d_reuse_policy\030\014 \001(\0162,.temporal.api.enum" - + "s.v1.WorkflowIdReusePolicy\0229\n\014retry_poli" - + "cy\030\r \001(\0132#.temporal.api.common.v1.RetryP" - + "olicy\022\025\n\rcron_schedule\030\016 \001(\t\022T\n\007headers\030" - + "\017 \003(\0132C.temporal.omes.kitchen_sink.Execu" - + "teChildWorkflowAction.HeadersEntry\022N\n\004me" - + "mo\030\020 \003(\0132@.temporal.omes.kitchen_sink.Ex" - + "ecuteChildWorkflowAction.MemoEntry\022g\n\021se" - + "arch_attributes\030\021 \003(\0132L.temporal.omes.ki" - + "tchen_sink.ExecuteChildWorkflowAction.Se" - + "archAttributesEntry\022T\n\021cancellation_type" - + "\030\022 \001(\01629.temporal.omes.kitchen_sink.Chil" - + "dWorkflowCancellationType\022G\n\021versioning_" - + "intent\030\023 \001(\0162,.temporal.omes.kitchen_sin" - + "k.VersioningIntent\022E\n\020awaitable_choice\030\024" - + " \001(\0132+.temporal.omes.kitchen_sink.Awaita" - + "bleChoice\032O\n\014HeadersEntry\022\013\n\003key\030\001 \001(\t\022." - + "\n\005value\030\002 \001(\0132\037.temporal.api.common.v1.P" - + "ayload:\0028\001\032L\n\tMemoEntry\022\013\n\003key\030\001 \001(\t\022.\n\005" - + "value\030\002 \001(\0132\037.temporal.api.common.v1.Pay" - + "load:\0028\001\032X\n\025SearchAttributesEntry\022\013\n\003key" - + "\030\001 \001(\t\022.\n\005value\030\002 \001(\0132\037.temporal.api.com" - + "mon.v1.Payload:\0028\001\"0\n\022AwaitWorkflowState" - + "\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t\"\337\002\n\020SendSig" - + "nalAction\022\023\n\013workflow_id\030\001 \001(\t\022\016\n\006run_id" - + "\030\002 \001(\t\022\023\n\013signal_name\030\003 \001(\t\022-\n\004args\030\004 \003(" - + "\0132\037.temporal.api.common.v1.Payload\022J\n\007he" - + "aders\030\005 \003(\01329.temporal.omes.kitchen_sink" - + ".SendSignalAction.HeadersEntry\022E\n\020awaita" - + "ble_choice\030\006 \001(\0132+.temporal.omes.kitchen" - + "_sink.AwaitableChoice\032O\n\014HeadersEntry\022\013\n" - + "\003key\030\001 \001(\t\022.\n\005value\030\002 \001(\0132\037.temporal.api" - + ".common.v1.Payload:\0028\001\";\n\024CancelWorkflow" - + "Action\022\023\n\013workflow_id\030\001 \001(\t\022\016\n\006run_id\030\002 " - + "\001(\t\"v\n\024SetPatchMarkerAction\022\020\n\010patch_id\030" - + "\001 \001(\t\022\022\n\ndeprecated\030\002 \001(\010\0228\n\014inner_actio" - + "n\030\003 \001(\0132\".temporal.omes.kitchen_sink.Act" - + "ion\"\343\001\n\034UpsertSearchAttributesAction\022i\n\021" - + "search_attributes\030\001 \003(\0132N.temporal.omes." - + "kitchen_sink.UpsertSearchAttributesActio" - + "n.SearchAttributesEntry\032X\n\025SearchAttribu" - + "tesEntry\022\013\n\003key\030\001 \001(\t\022.\n\005value\030\002 \001(\0132\037.t" - + "emporal.api.common.v1.Payload:\0028\001\"G\n\020Ups" - + "ertMemoAction\0223\n\rupserted_memo\030\001 \001(\0132\034.t" - + "emporal.api.common.v1.Memo\"J\n\022ReturnResu" - + "ltAction\0224\n\013return_this\030\001 \001(\0132\037.temporal" - + ".api.common.v1.Payload\"F\n\021ReturnErrorAct" - + "ion\0221\n\007failure\030\001 \001(\0132 .temporal.api.fail" - + "ure.v1.Failure\"\336\006\n\023ContinueAsNewAction\022\025" - + "\n\rworkflow_type\030\001 \001(\t\022\022\n\ntask_queue\030\002 \001(" - + "\t\0222\n\targuments\030\003 \003(\0132\037.temporal.api.comm" - + "on.v1.Payload\0227\n\024workflow_run_timeout\030\004 " - + "\001(\0132\031.google.protobuf.Duration\0228\n\025workfl" - + "ow_task_timeout\030\005 \001(\0132\031.google.protobuf." - + "Duration\022G\n\004memo\030\006 \003(\01329.temporal.omes.k" - + "itchen_sink.ContinueAsNewAction.MemoEntr" - + "y\022M\n\007headers\030\007 \003(\0132<.temporal.omes.kitch" - + "en_sink.ContinueAsNewAction.HeadersEntry" - + "\022`\n\021search_attributes\030\010 \003(\0132E.temporal.o" - + "mes.kitchen_sink.ContinueAsNewAction.Sea" - + "rchAttributesEntry\0229\n\014retry_policy\030\t \001(\013" - + "2#.temporal.api.common.v1.RetryPolicy\022G\n" - + "\021versioning_intent\030\n \001(\0162,.temporal.omes" - + ".kitchen_sink.VersioningIntent\032L\n\tMemoEn" - + "try\022\013\n\003key\030\001 \001(\t\022.\n\005value\030\002 \001(\0132\037.tempor" - + "al.api.common.v1.Payload:\0028\001\032O\n\014HeadersE" - + "ntry\022\013\n\003key\030\001 \001(\t\022.\n\005value\030\002 \001(\0132\037.tempo" - + "ral.api.common.v1.Payload:\0028\001\032X\n\025SearchA" - + "ttributesEntry\022\013\n\003key\030\001 \001(\t\022.\n\005value\030\002 \001" - + "(\0132\037.temporal.api.common.v1.Payload:\0028\001\"" - + "\321\001\n\025RemoteActivityOptions\022O\n\021cancellatio" - + "n_type\030\001 \001(\01624.temporal.omes.kitchen_sin" - + "k.ActivityCancellationType\022\036\n\026do_not_eag" - + "erly_execute\030\002 \001(\010\022G\n\021versioning_intent\030" - + "\003 \001(\0162,.temporal.omes.kitchen_sink.Versi" - + "oningIntent*\244\001\n\021ParentClosePolicy\022#\n\037PAR" - + "ENT_CLOSE_POLICY_UNSPECIFIED\020\000\022!\n\035PARENT" - + "_CLOSE_POLICY_TERMINATE\020\001\022\037\n\033PARENT_CLOS" - + "E_POLICY_ABANDON\020\002\022&\n\"PARENT_CLOSE_POLIC" - + "Y_REQUEST_CANCEL\020\003*@\n\020VersioningIntent\022\017" - + "\n\013UNSPECIFIED\020\000\022\016\n\nCOMPATIBLE\020\001\022\013\n\007DEFAU" - + "LT\020\002*\242\001\n\035ChildWorkflowCancellationType\022\024" - + "\n\020CHILD_WF_ABANDON\020\000\022\027\n\023CHILD_WF_TRY_CAN" - + "CEL\020\001\022(\n$CHILD_WF_WAIT_CANCELLATION_COMP" - + "LETED\020\002\022(\n$CHILD_WF_WAIT_CANCELLATION_RE" - + "QUESTED\020\003*X\n\030ActivityCancellationType\022\016\n" - + "\nTRY_CANCEL\020\000\022\037\n\033WAIT_CANCELLATION_COMPL" - + "ETED\020\001\022\013\n\007ABANDON\020\002BB\n\020io.temporal.omesZ" - + ".github.com/temporalio/omes/loadgen/kitc" - + "hensinkb\006proto3" + "\n\022kitchen_sink.proto\022\032temporal.omes.kitc" + + "hen_sink\032\036google/protobuf/duration.proto" + + "\032\033google/protobuf/empty.proto\032$temporal/" + + "api/common/v1/message.proto\032%temporal/ap" + + "i/failure/v1/message.proto\032$temporal/api" + + "/enums/v1/workflow.proto\"\223\001\n\tTestInput\022A" + + "\n\016workflow_input\030\001 \001(\0132).temporal.omes.k" + + "itchen_sink.WorkflowInput\022C\n\017client_sequ" + + "ence\030\002 \001(\0132*.temporal.omes.kitchen_sink." + + "ClientSequence\"R\n\016ClientSequence\022@\n\013acti" + + "on_sets\030\001 \003(\0132+.temporal.omes.kitchen_si" + + "nk.ClientActionSet\"\277\001\n\017ClientActionSet\0229" + + "\n\007actions\030\001 \003(\0132(.temporal.omes.kitchen_" + + "sink.ClientAction\022\022\n\nconcurrent\030\002 \001(\010\022.\n" + + "\013wait_at_end\030\003 \001(\0132\031.google.protobuf.Dur" + + "ation\022-\n%wait_for_current_run_to_finish_" + + "at_end\030\004 \001(\010\"\217\002\n\014ClientAction\0229\n\tdo_sign" + + "al\030\001 \001(\0132$.temporal.omes.kitchen_sink.Do" + + "SignalH\000\0227\n\010do_query\030\002 \001(\0132#.temporal.om" + + "es.kitchen_sink.DoQueryH\000\0229\n\tdo_update\030\003" + + " \001(\0132$.temporal.omes.kitchen_sink.DoUpda" + + "teH\000\022E\n\016nested_actions\030\004 \001(\0132+.temporal." + + "omes.kitchen_sink.ClientActionSetH\000B\t\n\007v" + + "ariant\"\312\002\n\010DoSignal\022Q\n\021do_signal_actions" + + "\030\001 \001(\01324.temporal.omes.kitchen_sink.DoSi" + + "gnal.DoSignalActionsH\000\022?\n\006custom\030\002 \001(\0132-" + + ".temporal.omes.kitchen_sink.HandlerInvoc" + + "ationH\000\032\236\001\n\017DoSignalActions\022;\n\ndo_action" + + "s\030\001 \001(\0132%.temporal.omes.kitchen_sink.Act" + + "ionSetH\000\022C\n\022do_actions_in_main\030\002 \001(\0132%.t" + + "emporal.omes.kitchen_sink.ActionSetH\000B\t\n" + + "\007variantB\t\n\007variant\"\251\001\n\007DoQuery\0228\n\014repor" + + "t_state\030\001 \001(\0132 .temporal.api.common.v1.P" + + "ayloadsH\000\022?\n\006custom\030\002 \001(\0132-.temporal.ome" + + "s.kitchen_sink.HandlerInvocationH\000\022\030\n\020fa" + + "ilure_expected\030\n \001(\010B\t\n\007variant\"\263\001\n\010DoUp" + + "date\022A\n\ndo_actions\030\001 \001(\0132+.temporal.omes" + + ".kitchen_sink.DoActionsUpdateH\000\022?\n\006custo" + + "m\030\002 \001(\0132-.temporal.omes.kitchen_sink.Han" + + "dlerInvocationH\000\022\030\n\020failure_expected\030\n \001" + + "(\010B\t\n\007variant\"\206\001\n\017DoActionsUpdate\022;\n\ndo_" + + "actions\030\001 \001(\0132%.temporal.omes.kitchen_si" + + "nk.ActionSetH\000\022+\n\treject_me\030\002 \001(\0132\026.goog" + + "le.protobuf.EmptyH\000B\t\n\007variant\"P\n\021Handle" + + "rInvocation\022\014\n\004name\030\001 \001(\t\022-\n\004args\030\002 \003(\0132" + + "\037.temporal.api.common.v1.Payload\"|\n\rWork" + + "flowState\022?\n\003kvs\030\001 \003(\01322.temporal.omes.k" + + "itchen_sink.WorkflowState.KvsEntry\032*\n\010Kv" + + "sEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"O" + + "\n\rWorkflowInput\022>\n\017initial_actions\030\001 \003(\013" + + "2%.temporal.omes.kitchen_sink.ActionSet\"" + + "T\n\tActionSet\0223\n\007actions\030\001 \003(\0132\".temporal" + + ".omes.kitchen_sink.Action\022\022\n\nconcurrent\030" + + "\002 \001(\010\"\254\010\n\006Action\0228\n\005timer\030\001 \001(\0132\'.tempor" + + "al.omes.kitchen_sink.TimerActionH\000\022J\n\rex" + + "ec_activity\030\002 \001(\01321.temporal.omes.kitche" + + "n_sink.ExecuteActivityActionH\000\022U\n\023exec_c" + + "hild_workflow\030\003 \001(\01326.temporal.omes.kitc" + + "hen_sink.ExecuteChildWorkflowActionH\000\022N\n" + + "\024await_workflow_state\030\004 \001(\0132..temporal.o" + + "mes.kitchen_sink.AwaitWorkflowStateH\000\022C\n" + + "\013send_signal\030\005 \001(\0132,.temporal.omes.kitch" + + "en_sink.SendSignalActionH\000\022K\n\017cancel_wor" + + "kflow\030\006 \001(\01320.temporal.omes.kitchen_sink" + + ".CancelWorkflowActionH\000\022L\n\020set_patch_mar" + + "ker\030\007 \001(\01320.temporal.omes.kitchen_sink.S" + + "etPatchMarkerActionH\000\022\\\n\030upsert_search_a" + + "ttributes\030\010 \001(\01328.temporal.omes.kitchen_" + + "sink.UpsertSearchAttributesActionH\000\022C\n\013u" + + "psert_memo\030\t \001(\0132,.temporal.omes.kitchen" + + "_sink.UpsertMemoActionH\000\022G\n\022set_workflow" + + "_state\030\n \001(\0132).temporal.omes.kitchen_sin" + + "k.WorkflowStateH\000\022G\n\rreturn_result\030\013 \001(\013" + + "2..temporal.omes.kitchen_sink.ReturnResu" + + "ltActionH\000\022E\n\014return_error\030\014 \001(\0132-.tempo" + + "ral.omes.kitchen_sink.ReturnErrorActionH" + + "\000\022J\n\017continue_as_new\030\r \001(\0132/.temporal.om" + + "es.kitchen_sink.ContinueAsNewActionH\000\022B\n" + + "\021nested_action_set\030\016 \001(\0132%.temporal.omes" + + ".kitchen_sink.ActionSetH\000B\t\n\007variant\"\243\002\n" + + "\017AwaitableChoice\022-\n\013wait_finish\030\001 \001(\0132\026." + + "google.protobuf.EmptyH\000\022)\n\007abandon\030\002 \001(\013" + + "2\026.google.protobuf.EmptyH\000\0227\n\025cancel_bef" + + "ore_started\030\003 \001(\0132\026.google.protobuf.Empt" + + "yH\000\0226\n\024cancel_after_started\030\004 \001(\0132\026.goog" + + "le.protobuf.EmptyH\000\0228\n\026cancel_after_comp" + + "leted\030\005 \001(\0132\026.google.protobuf.EmptyH\000B\013\n" + + "\tcondition\"j\n\013TimerAction\022\024\n\014millisecond" + + "s\030\001 \001(\004\022E\n\020awaitable_choice\030\002 \001(\0132+.temp" + + "oral.omes.kitchen_sink.AwaitableChoice\"\311" + + "\007\n\025ExecuteActivityAction\022T\n\007generic\030\001 \001(" + + "\0132A.temporal.omes.kitchen_sink.ExecuteAc" + + "tivityAction.GenericActivityH\000\022*\n\005delay\030" + + "\002 \001(\0132\031.google.protobuf.DurationH\000\022&\n\004no" + + "op\030\003 \001(\0132\026.google.protobuf.EmptyH\000\022\022\n\nta" + + "sk_queue\030\004 \001(\t\022O\n\007headers\030\005 \003(\0132>.tempor" + + "al.omes.kitchen_sink.ExecuteActivityActi" + + "on.HeadersEntry\022<\n\031schedule_to_close_tim" + + "eout\030\006 \001(\0132\031.google.protobuf.Duration\022<\n" + + "\031schedule_to_start_timeout\030\007 \001(\0132\031.googl" + + "e.protobuf.Duration\0229\n\026start_to_close_ti" + + "meout\030\010 \001(\0132\031.google.protobuf.Duration\0224" + + "\n\021heartbeat_timeout\030\t \001(\0132\031.google.proto" + + "buf.Duration\0229\n\014retry_policy\030\n \001(\0132#.tem" + + "poral.api.common.v1.RetryPolicy\022*\n\010is_lo" + + "cal\030\013 \001(\0132\026.google.protobuf.EmptyH\001\022C\n\006r" + + "emote\030\014 \001(\01321.temporal.omes.kitchen_sink" + + ".RemoteActivityOptionsH\001\022E\n\020awaitable_ch" + + "oice\030\r \001(\0132+.temporal.omes.kitchen_sink." + + "AwaitableChoice\032S\n\017GenericActivity\022\014\n\004ty" + + "pe\030\001 \001(\t\0222\n\targuments\030\002 \003(\0132\037.temporal.a" + + "pi.common.v1.Payload\032O\n\014HeadersEntry\022\013\n\003" + + "key\030\001 \001(\t\022.\n\005value\030\002 \001(\0132\037.temporal.api." + + "common.v1.Payload:\0028\001B\017\n\ractivity_typeB\n" + + "\n\010locality\"\255\n\n\032ExecuteChildWorkflowActio" + + "n\022\021\n\tnamespace\030\002 \001(\t\022\023\n\013workflow_id\030\003 \001(" + + "\t\022\025\n\rworkflow_type\030\004 \001(\t\022\022\n\ntask_queue\030\005" + + " \001(\t\022.\n\005input\030\006 \003(\0132\037.temporal.api.commo" + + "n.v1.Payload\022=\n\032workflow_execution_timeo" + + "ut\030\007 \001(\0132\031.google.protobuf.Duration\0227\n\024w" + + "orkflow_run_timeout\030\010 \001(\0132\031.google.proto" + + "buf.Duration\0228\n\025workflow_task_timeout\030\t " + + "\001(\0132\031.google.protobuf.Duration\022J\n\023parent" + + "_close_policy\030\n \001(\0162-.temporal.omes.kitc" + + "hen_sink.ParentClosePolicy\022N\n\030workflow_i" + + "d_reuse_policy\030\014 \001(\0162,.temporal.api.enum" + + "s.v1.WorkflowIdReusePolicy\0229\n\014retry_poli" + + "cy\030\r \001(\0132#.temporal.api.common.v1.RetryP" + + "olicy\022\025\n\rcron_schedule\030\016 \001(\t\022T\n\007headers\030" + + "\017 \003(\0132C.temporal.omes.kitchen_sink.Execu" + + "teChildWorkflowAction.HeadersEntry\022N\n\004me" + + "mo\030\020 \003(\0132@.temporal.omes.kitchen_sink.Ex" + + "ecuteChildWorkflowAction.MemoEntry\022g\n\021se" + + "arch_attributes\030\021 \003(\0132L.temporal.omes.ki" + + "tchen_sink.ExecuteChildWorkflowAction.Se" + + "archAttributesEntry\022T\n\021cancellation_type" + + "\030\022 \001(\01629.temporal.omes.kitchen_sink.Chil" + + "dWorkflowCancellationType\022G\n\021versioning_" + + "intent\030\023 \001(\0162,.temporal.omes.kitchen_sin" + + "k.VersioningIntent\022E\n\020awaitable_choice\030\024" + + " \001(\0132+.temporal.omes.kitchen_sink.Awaita" + + "bleChoice\032O\n\014HeadersEntry\022\013\n\003key\030\001 \001(\t\022." + + "\n\005value\030\002 \001(\0132\037.temporal.api.common.v1.P" + + "ayload:\0028\001\032L\n\tMemoEntry\022\013\n\003key\030\001 \001(\t\022.\n\005" + + "value\030\002 \001(\0132\037.temporal.api.common.v1.Pay" + + "load:\0028\001\032X\n\025SearchAttributesEntry\022\013\n\003key" + + "\030\001 \001(\t\022.\n\005value\030\002 \001(\0132\037.temporal.api.com" + + "mon.v1.Payload:\0028\001\"0\n\022AwaitWorkflowState" + + "\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t\"\337\002\n\020SendSig" + + "nalAction\022\023\n\013workflow_id\030\001 \001(\t\022\016\n\006run_id" + + "\030\002 \001(\t\022\023\n\013signal_name\030\003 \001(\t\022-\n\004args\030\004 \003(" + + "\0132\037.temporal.api.common.v1.Payload\022J\n\007he" + + "aders\030\005 \003(\01329.temporal.omes.kitchen_sink" + + ".SendSignalAction.HeadersEntry\022E\n\020awaita" + + "ble_choice\030\006 \001(\0132+.temporal.omes.kitchen" + + "_sink.AwaitableChoice\032O\n\014HeadersEntry\022\013\n" + + "\003key\030\001 \001(\t\022.\n\005value\030\002 \001(\0132\037.temporal.api" + + ".common.v1.Payload:\0028\001\";\n\024CancelWorkflow" + + "Action\022\023\n\013workflow_id\030\001 \001(\t\022\016\n\006run_id\030\002 " + + "\001(\t\"v\n\024SetPatchMarkerAction\022\020\n\010patch_id\030" + + "\001 \001(\t\022\022\n\ndeprecated\030\002 \001(\010\0228\n\014inner_actio" + + "n\030\003 \001(\0132\".temporal.omes.kitchen_sink.Act" + + "ion\"\343\001\n\034UpsertSearchAttributesAction\022i\n\021" + + "search_attributes\030\001 \003(\0132N.temporal.omes." + + "kitchen_sink.UpsertSearchAttributesActio" + + "n.SearchAttributesEntry\032X\n\025SearchAttribu" + + "tesEntry\022\013\n\003key\030\001 \001(\t\022.\n\005value\030\002 \001(\0132\037.t" + + "emporal.api.common.v1.Payload:\0028\001\"G\n\020Ups" + + "ertMemoAction\0223\n\rupserted_memo\030\001 \001(\0132\034.t" + + "emporal.api.common.v1.Memo\"J\n\022ReturnResu" + + "ltAction\0224\n\013return_this\030\001 \001(\0132\037.temporal" + + ".api.common.v1.Payload\"F\n\021ReturnErrorAct" + + "ion\0221\n\007failure\030\001 \001(\0132 .temporal.api.fail" + + "ure.v1.Failure\"\336\006\n\023ContinueAsNewAction\022\025" + + "\n\rworkflow_type\030\001 \001(\t\022\022\n\ntask_queue\030\002 \001(" + + "\t\0222\n\targuments\030\003 \003(\0132\037.temporal.api.comm" + + "on.v1.Payload\0227\n\024workflow_run_timeout\030\004 " + + "\001(\0132\031.google.protobuf.Duration\0228\n\025workfl" + + "ow_task_timeout\030\005 \001(\0132\031.google.protobuf." + + "Duration\022G\n\004memo\030\006 \003(\01329.temporal.omes.k" + + "itchen_sink.ContinueAsNewAction.MemoEntr" + + "y\022M\n\007headers\030\007 \003(\0132<.temporal.omes.kitch" + + "en_sink.ContinueAsNewAction.HeadersEntry" + + "\022`\n\021search_attributes\030\010 \003(\0132E.temporal.o" + + "mes.kitchen_sink.ContinueAsNewAction.Sea" + + "rchAttributesEntry\0229\n\014retry_policy\030\t \001(\013" + + "2#.temporal.api.common.v1.RetryPolicy\022G\n" + + "\021versioning_intent\030\n \001(\0162,.temporal.omes" + + ".kitchen_sink.VersioningIntent\032L\n\tMemoEn" + + "try\022\013\n\003key\030\001 \001(\t\022.\n\005value\030\002 \001(\0132\037.tempor" + + "al.api.common.v1.Payload:\0028\001\032O\n\014HeadersE" + + "ntry\022\013\n\003key\030\001 \001(\t\022.\n\005value\030\002 \001(\0132\037.tempo" + + "ral.api.common.v1.Payload:\0028\001\032X\n\025SearchA" + + "ttributesEntry\022\013\n\003key\030\001 \001(\t\022.\n\005value\030\002 \001" + + "(\0132\037.temporal.api.common.v1.Payload:\0028\001\"" + + "\321\001\n\025RemoteActivityOptions\022O\n\021cancellatio" + + "n_type\030\001 \001(\01624.temporal.omes.kitchen_sin" + + "k.ActivityCancellationType\022\036\n\026do_not_eag" + + "erly_execute\030\002 \001(\010\022G\n\021versioning_intent\030" + + "\003 \001(\0162,.temporal.omes.kitchen_sink.Versi" + + "oningIntent*\244\001\n\021ParentClosePolicy\022#\n\037PAR" + + "ENT_CLOSE_POLICY_UNSPECIFIED\020\000\022!\n\035PARENT" + + "_CLOSE_POLICY_TERMINATE\020\001\022\037\n\033PARENT_CLOS" + + "E_POLICY_ABANDON\020\002\022&\n\"PARENT_CLOSE_POLIC" + + "Y_REQUEST_CANCEL\020\003*@\n\020VersioningIntent\022\017" + + "\n\013UNSPECIFIED\020\000\022\016\n\nCOMPATIBLE\020\001\022\013\n\007DEFAU" + + "LT\020\002*\242\001\n\035ChildWorkflowCancellationType\022\024" + + "\n\020CHILD_WF_ABANDON\020\000\022\027\n\023CHILD_WF_TRY_CAN" + + "CEL\020\001\022(\n$CHILD_WF_WAIT_CANCELLATION_COMP" + + "LETED\020\002\022(\n$CHILD_WF_WAIT_CANCELLATION_RE" + + "QUESTED\020\003*X\n\030ActivityCancellationType\022\016\n" + + "\nTRY_CANCEL\020\000\022\037\n\033WAIT_CANCELLATION_COMPL" + + "ETED\020\001\022\013\n\007ABANDON\020\002BB\n\020io.temporal.omesZ" + + ".github.com/temporalio/omes/loadgen/kitc" + + "hensinkb\006proto3" }; - descriptor = - com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( - descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - com.google.protobuf.DurationProto.getDescriptor(), - com.google.protobuf.EmptyProto.getDescriptor(), - io.temporal.api.common.v1.MessageProto.getDescriptor(), - io.temporal.api.failure.v1.MessageProto.getDescriptor(), - io.temporal.api.enums.v1.WorkflowProto.getDescriptor(), - }); + descriptor = com.google.protobuf.Descriptors.FileDescriptor + .internalBuildGeneratedFileFrom(descriptorData, + new com.google.protobuf.Descriptors.FileDescriptor[] { + com.google.protobuf.DurationProto.getDescriptor(), + com.google.protobuf.EmptyProto.getDescriptor(), + io.temporal.api.common.v1.MessageProto.getDescriptor(), + io.temporal.api.failure.v1.MessageProto.getDescriptor(), + io.temporal.api.enums.v1.WorkflowProto.getDescriptor(), + }); internal_static_temporal_omes_kitchen_sink_TestInput_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_temporal_omes_kitchen_sink_TestInput_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_TestInput_descriptor, - new java.lang.String[] { - "WorkflowInput", "ClientSequence", - }); + getDescriptor().getMessageTypes().get(0); + internal_static_temporal_omes_kitchen_sink_TestInput_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_TestInput_descriptor, + new java.lang.String[] { "WorkflowInput", "ClientSequence", }); internal_static_temporal_omes_kitchen_sink_ClientSequence_descriptor = - getDescriptor().getMessageTypes().get(1); - internal_static_temporal_omes_kitchen_sink_ClientSequence_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_ClientSequence_descriptor, - new java.lang.String[] { - "ActionSets", - }); + getDescriptor().getMessageTypes().get(1); + internal_static_temporal_omes_kitchen_sink_ClientSequence_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_ClientSequence_descriptor, + new java.lang.String[] { "ActionSets", }); internal_static_temporal_omes_kitchen_sink_ClientActionSet_descriptor = - getDescriptor().getMessageTypes().get(2); - internal_static_temporal_omes_kitchen_sink_ClientActionSet_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_ClientActionSet_descriptor, - new java.lang.String[] { - "Actions", "Concurrent", "WaitAtEnd", "WaitForCurrentRunToFinishAtEnd", - }); + getDescriptor().getMessageTypes().get(2); + internal_static_temporal_omes_kitchen_sink_ClientActionSet_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_ClientActionSet_descriptor, + new java.lang.String[] { "Actions", "Concurrent", "WaitAtEnd", "WaitForCurrentRunToFinishAtEnd", }); internal_static_temporal_omes_kitchen_sink_ClientAction_descriptor = - getDescriptor().getMessageTypes().get(3); - internal_static_temporal_omes_kitchen_sink_ClientAction_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_ClientAction_descriptor, - new java.lang.String[] { - "DoSignal", "DoQuery", "DoUpdate", "NestedActions", "Variant", - }); + getDescriptor().getMessageTypes().get(3); + internal_static_temporal_omes_kitchen_sink_ClientAction_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_ClientAction_descriptor, + new java.lang.String[] { "DoSignal", "DoQuery", "DoUpdate", "NestedActions", "Variant", }); internal_static_temporal_omes_kitchen_sink_DoSignal_descriptor = - getDescriptor().getMessageTypes().get(4); - internal_static_temporal_omes_kitchen_sink_DoSignal_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_DoSignal_descriptor, - new java.lang.String[] { - "DoSignalActions", "Custom", "Variant", - }); + getDescriptor().getMessageTypes().get(4); + internal_static_temporal_omes_kitchen_sink_DoSignal_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_DoSignal_descriptor, + new java.lang.String[] { "DoSignalActions", "Custom", "Variant", }); internal_static_temporal_omes_kitchen_sink_DoSignal_DoSignalActions_descriptor = - internal_static_temporal_omes_kitchen_sink_DoSignal_descriptor.getNestedTypes().get(0); - internal_static_temporal_omes_kitchen_sink_DoSignal_DoSignalActions_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_DoSignal_DoSignalActions_descriptor, - new java.lang.String[] { - "DoActions", "DoActionsInMain", "Variant", - }); + internal_static_temporal_omes_kitchen_sink_DoSignal_descriptor.getNestedTypes().get(0); + internal_static_temporal_omes_kitchen_sink_DoSignal_DoSignalActions_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_DoSignal_DoSignalActions_descriptor, + new java.lang.String[] { "DoActions", "DoActionsInMain", "Variant", }); internal_static_temporal_omes_kitchen_sink_DoQuery_descriptor = - getDescriptor().getMessageTypes().get(5); - internal_static_temporal_omes_kitchen_sink_DoQuery_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_DoQuery_descriptor, - new java.lang.String[] { - "ReportState", "Custom", "FailureExpected", "Variant", - }); + getDescriptor().getMessageTypes().get(5); + internal_static_temporal_omes_kitchen_sink_DoQuery_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_DoQuery_descriptor, + new java.lang.String[] { "ReportState", "Custom", "FailureExpected", "Variant", }); internal_static_temporal_omes_kitchen_sink_DoUpdate_descriptor = - getDescriptor().getMessageTypes().get(6); - internal_static_temporal_omes_kitchen_sink_DoUpdate_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_DoUpdate_descriptor, - new java.lang.String[] { - "DoActions", "Custom", "FailureExpected", "Variant", - }); + getDescriptor().getMessageTypes().get(6); + internal_static_temporal_omes_kitchen_sink_DoUpdate_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_DoUpdate_descriptor, + new java.lang.String[] { "DoActions", "Custom", "FailureExpected", "Variant", }); internal_static_temporal_omes_kitchen_sink_DoActionsUpdate_descriptor = - getDescriptor().getMessageTypes().get(7); - internal_static_temporal_omes_kitchen_sink_DoActionsUpdate_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_DoActionsUpdate_descriptor, - new java.lang.String[] { - "DoActions", "RejectMe", "Variant", - }); + getDescriptor().getMessageTypes().get(7); + internal_static_temporal_omes_kitchen_sink_DoActionsUpdate_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_DoActionsUpdate_descriptor, + new java.lang.String[] { "DoActions", "RejectMe", "Variant", }); internal_static_temporal_omes_kitchen_sink_HandlerInvocation_descriptor = - getDescriptor().getMessageTypes().get(8); - internal_static_temporal_omes_kitchen_sink_HandlerInvocation_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_HandlerInvocation_descriptor, - new java.lang.String[] { - "Name", "Args", - }); + getDescriptor().getMessageTypes().get(8); + internal_static_temporal_omes_kitchen_sink_HandlerInvocation_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_HandlerInvocation_descriptor, + new java.lang.String[] { "Name", "Args", }); internal_static_temporal_omes_kitchen_sink_WorkflowState_descriptor = - getDescriptor().getMessageTypes().get(9); - internal_static_temporal_omes_kitchen_sink_WorkflowState_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_WorkflowState_descriptor, - new java.lang.String[] { - "Kvs", - }); + getDescriptor().getMessageTypes().get(9); + internal_static_temporal_omes_kitchen_sink_WorkflowState_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_WorkflowState_descriptor, + new java.lang.String[] { "Kvs", }); internal_static_temporal_omes_kitchen_sink_WorkflowState_KvsEntry_descriptor = - internal_static_temporal_omes_kitchen_sink_WorkflowState_descriptor.getNestedTypes().get(0); - internal_static_temporal_omes_kitchen_sink_WorkflowState_KvsEntry_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_WorkflowState_KvsEntry_descriptor, - new java.lang.String[] { - "Key", "Value", - }); + internal_static_temporal_omes_kitchen_sink_WorkflowState_descriptor.getNestedTypes().get(0); + internal_static_temporal_omes_kitchen_sink_WorkflowState_KvsEntry_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_WorkflowState_KvsEntry_descriptor, + new java.lang.String[] { "Key", "Value", }); internal_static_temporal_omes_kitchen_sink_WorkflowInput_descriptor = - getDescriptor().getMessageTypes().get(10); - internal_static_temporal_omes_kitchen_sink_WorkflowInput_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_WorkflowInput_descriptor, - new java.lang.String[] { - "InitialActions", - }); + getDescriptor().getMessageTypes().get(10); + internal_static_temporal_omes_kitchen_sink_WorkflowInput_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_WorkflowInput_descriptor, + new java.lang.String[] { "InitialActions", }); internal_static_temporal_omes_kitchen_sink_ActionSet_descriptor = - getDescriptor().getMessageTypes().get(11); - internal_static_temporal_omes_kitchen_sink_ActionSet_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_ActionSet_descriptor, - new java.lang.String[] { - "Actions", "Concurrent", - }); + getDescriptor().getMessageTypes().get(11); + internal_static_temporal_omes_kitchen_sink_ActionSet_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_ActionSet_descriptor, + new java.lang.String[] { "Actions", "Concurrent", }); internal_static_temporal_omes_kitchen_sink_Action_descriptor = - getDescriptor().getMessageTypes().get(12); - internal_static_temporal_omes_kitchen_sink_Action_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_Action_descriptor, - new java.lang.String[] { - "Timer", - "ExecActivity", - "ExecChildWorkflow", - "AwaitWorkflowState", - "SendSignal", - "CancelWorkflow", - "SetPatchMarker", - "UpsertSearchAttributes", - "UpsertMemo", - "SetWorkflowState", - "ReturnResult", - "ReturnError", - "ContinueAsNew", - "NestedActionSet", - "Variant", - }); + getDescriptor().getMessageTypes().get(12); + internal_static_temporal_omes_kitchen_sink_Action_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_Action_descriptor, + new java.lang.String[] { "Timer", "ExecActivity", "ExecChildWorkflow", "AwaitWorkflowState", "SendSignal", "CancelWorkflow", "SetPatchMarker", "UpsertSearchAttributes", "UpsertMemo", "SetWorkflowState", "ReturnResult", "ReturnError", "ContinueAsNew", "NestedActionSet", "Variant", }); internal_static_temporal_omes_kitchen_sink_AwaitableChoice_descriptor = - getDescriptor().getMessageTypes().get(13); - internal_static_temporal_omes_kitchen_sink_AwaitableChoice_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_AwaitableChoice_descriptor, - new java.lang.String[] { - "WaitFinish", - "Abandon", - "CancelBeforeStarted", - "CancelAfterStarted", - "CancelAfterCompleted", - "Condition", - }); + getDescriptor().getMessageTypes().get(13); + internal_static_temporal_omes_kitchen_sink_AwaitableChoice_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_AwaitableChoice_descriptor, + new java.lang.String[] { "WaitFinish", "Abandon", "CancelBeforeStarted", "CancelAfterStarted", "CancelAfterCompleted", "Condition", }); internal_static_temporal_omes_kitchen_sink_TimerAction_descriptor = - getDescriptor().getMessageTypes().get(14); - internal_static_temporal_omes_kitchen_sink_TimerAction_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_TimerAction_descriptor, - new java.lang.String[] { - "Milliseconds", "AwaitableChoice", - }); + getDescriptor().getMessageTypes().get(14); + internal_static_temporal_omes_kitchen_sink_TimerAction_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_TimerAction_descriptor, + new java.lang.String[] { "Milliseconds", "AwaitableChoice", }); internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_descriptor = - getDescriptor().getMessageTypes().get(15); - internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_descriptor, - new java.lang.String[] { - "Generic", - "Delay", - "Noop", - "TaskQueue", - "Headers", - "ScheduleToCloseTimeout", - "ScheduleToStartTimeout", - "StartToCloseTimeout", - "HeartbeatTimeout", - "RetryPolicy", - "IsLocal", - "Remote", - "AwaitableChoice", - "ActivityType", - "Locality", - }); + getDescriptor().getMessageTypes().get(15); + internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_descriptor, + new java.lang.String[] { "Generic", "Delay", "Noop", "TaskQueue", "Headers", "ScheduleToCloseTimeout", "ScheduleToStartTimeout", "StartToCloseTimeout", "HeartbeatTimeout", "RetryPolicy", "IsLocal", "Remote", "AwaitableChoice", "ActivityType", "Locality", }); internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_GenericActivity_descriptor = - internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_descriptor - .getNestedTypes() - .get(0); - internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_GenericActivity_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_GenericActivity_descriptor, - new java.lang.String[] { - "Type", "Arguments", - }); + internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_descriptor.getNestedTypes().get(0); + internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_GenericActivity_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_GenericActivity_descriptor, + new java.lang.String[] { "Type", "Arguments", }); internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_HeadersEntry_descriptor = - internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_descriptor - .getNestedTypes() - .get(1); - internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_HeadersEntry_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_HeadersEntry_descriptor, - new java.lang.String[] { - "Key", "Value", - }); + internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_descriptor.getNestedTypes().get(1); + internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_HeadersEntry_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_ExecuteActivityAction_HeadersEntry_descriptor, + new java.lang.String[] { "Key", "Value", }); internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_descriptor = - getDescriptor().getMessageTypes().get(16); - internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_descriptor, - new java.lang.String[] { - "Namespace", - "WorkflowId", - "WorkflowType", - "TaskQueue", - "Input", - "WorkflowExecutionTimeout", - "WorkflowRunTimeout", - "WorkflowTaskTimeout", - "ParentClosePolicy", - "WorkflowIdReusePolicy", - "RetryPolicy", - "CronSchedule", - "Headers", - "Memo", - "SearchAttributes", - "CancellationType", - "VersioningIntent", - "AwaitableChoice", - }); + getDescriptor().getMessageTypes().get(16); + internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_descriptor, + new java.lang.String[] { "Namespace", "WorkflowId", "WorkflowType", "TaskQueue", "Input", "WorkflowExecutionTimeout", "WorkflowRunTimeout", "WorkflowTaskTimeout", "ParentClosePolicy", "WorkflowIdReusePolicy", "RetryPolicy", "CronSchedule", "Headers", "Memo", "SearchAttributes", "CancellationType", "VersioningIntent", "AwaitableChoice", }); internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_HeadersEntry_descriptor = - internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_descriptor - .getNestedTypes() - .get(0); - internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_HeadersEntry_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_HeadersEntry_descriptor, - new java.lang.String[] { - "Key", "Value", - }); + internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_descriptor.getNestedTypes().get(0); + internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_HeadersEntry_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_HeadersEntry_descriptor, + new java.lang.String[] { "Key", "Value", }); internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_MemoEntry_descriptor = - internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_descriptor - .getNestedTypes() - .get(1); - internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_MemoEntry_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_MemoEntry_descriptor, - new java.lang.String[] { - "Key", "Value", - }); + internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_descriptor.getNestedTypes().get(1); + internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_MemoEntry_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_MemoEntry_descriptor, + new java.lang.String[] { "Key", "Value", }); internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_SearchAttributesEntry_descriptor = - internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_descriptor - .getNestedTypes() - .get(2); - internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_SearchAttributesEntry_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_SearchAttributesEntry_descriptor, - new java.lang.String[] { - "Key", "Value", - }); + internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_descriptor.getNestedTypes().get(2); + internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_SearchAttributesEntry_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_ExecuteChildWorkflowAction_SearchAttributesEntry_descriptor, + new java.lang.String[] { "Key", "Value", }); internal_static_temporal_omes_kitchen_sink_AwaitWorkflowState_descriptor = - getDescriptor().getMessageTypes().get(17); - internal_static_temporal_omes_kitchen_sink_AwaitWorkflowState_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_AwaitWorkflowState_descriptor, - new java.lang.String[] { - "Key", "Value", - }); + getDescriptor().getMessageTypes().get(17); + internal_static_temporal_omes_kitchen_sink_AwaitWorkflowState_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_AwaitWorkflowState_descriptor, + new java.lang.String[] { "Key", "Value", }); internal_static_temporal_omes_kitchen_sink_SendSignalAction_descriptor = - getDescriptor().getMessageTypes().get(18); - internal_static_temporal_omes_kitchen_sink_SendSignalAction_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_SendSignalAction_descriptor, - new java.lang.String[] { - "WorkflowId", "RunId", "SignalName", "Args", "Headers", "AwaitableChoice", - }); + getDescriptor().getMessageTypes().get(18); + internal_static_temporal_omes_kitchen_sink_SendSignalAction_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_SendSignalAction_descriptor, + new java.lang.String[] { "WorkflowId", "RunId", "SignalName", "Args", "Headers", "AwaitableChoice", }); internal_static_temporal_omes_kitchen_sink_SendSignalAction_HeadersEntry_descriptor = - internal_static_temporal_omes_kitchen_sink_SendSignalAction_descriptor - .getNestedTypes() - .get(0); - internal_static_temporal_omes_kitchen_sink_SendSignalAction_HeadersEntry_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_SendSignalAction_HeadersEntry_descriptor, - new java.lang.String[] { - "Key", "Value", - }); + internal_static_temporal_omes_kitchen_sink_SendSignalAction_descriptor.getNestedTypes().get(0); + internal_static_temporal_omes_kitchen_sink_SendSignalAction_HeadersEntry_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_SendSignalAction_HeadersEntry_descriptor, + new java.lang.String[] { "Key", "Value", }); internal_static_temporal_omes_kitchen_sink_CancelWorkflowAction_descriptor = - getDescriptor().getMessageTypes().get(19); - internal_static_temporal_omes_kitchen_sink_CancelWorkflowAction_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_CancelWorkflowAction_descriptor, - new java.lang.String[] { - "WorkflowId", "RunId", - }); + getDescriptor().getMessageTypes().get(19); + internal_static_temporal_omes_kitchen_sink_CancelWorkflowAction_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_CancelWorkflowAction_descriptor, + new java.lang.String[] { "WorkflowId", "RunId", }); internal_static_temporal_omes_kitchen_sink_SetPatchMarkerAction_descriptor = - getDescriptor().getMessageTypes().get(20); - internal_static_temporal_omes_kitchen_sink_SetPatchMarkerAction_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_SetPatchMarkerAction_descriptor, - new java.lang.String[] { - "PatchId", "Deprecated", "InnerAction", - }); + getDescriptor().getMessageTypes().get(20); + internal_static_temporal_omes_kitchen_sink_SetPatchMarkerAction_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_SetPatchMarkerAction_descriptor, + new java.lang.String[] { "PatchId", "Deprecated", "InnerAction", }); internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_descriptor = - getDescriptor().getMessageTypes().get(21); - internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_descriptor, - new java.lang.String[] { - "SearchAttributes", - }); + getDescriptor().getMessageTypes().get(21); + internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_descriptor, + new java.lang.String[] { "SearchAttributes", }); internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_SearchAttributesEntry_descriptor = - internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_descriptor - .getNestedTypes() - .get(0); - internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_SearchAttributesEntry_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_SearchAttributesEntry_descriptor, - new java.lang.String[] { - "Key", "Value", - }); + internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_descriptor.getNestedTypes().get(0); + internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_SearchAttributesEntry_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_UpsertSearchAttributesAction_SearchAttributesEntry_descriptor, + new java.lang.String[] { "Key", "Value", }); internal_static_temporal_omes_kitchen_sink_UpsertMemoAction_descriptor = - getDescriptor().getMessageTypes().get(22); - internal_static_temporal_omes_kitchen_sink_UpsertMemoAction_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_UpsertMemoAction_descriptor, - new java.lang.String[] { - "UpsertedMemo", - }); + getDescriptor().getMessageTypes().get(22); + internal_static_temporal_omes_kitchen_sink_UpsertMemoAction_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_UpsertMemoAction_descriptor, + new java.lang.String[] { "UpsertedMemo", }); internal_static_temporal_omes_kitchen_sink_ReturnResultAction_descriptor = - getDescriptor().getMessageTypes().get(23); - internal_static_temporal_omes_kitchen_sink_ReturnResultAction_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_ReturnResultAction_descriptor, - new java.lang.String[] { - "ReturnThis", - }); + getDescriptor().getMessageTypes().get(23); + internal_static_temporal_omes_kitchen_sink_ReturnResultAction_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_ReturnResultAction_descriptor, + new java.lang.String[] { "ReturnThis", }); internal_static_temporal_omes_kitchen_sink_ReturnErrorAction_descriptor = - getDescriptor().getMessageTypes().get(24); - internal_static_temporal_omes_kitchen_sink_ReturnErrorAction_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_ReturnErrorAction_descriptor, - new java.lang.String[] { - "Failure", - }); + getDescriptor().getMessageTypes().get(24); + internal_static_temporal_omes_kitchen_sink_ReturnErrorAction_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_ReturnErrorAction_descriptor, + new java.lang.String[] { "Failure", }); internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_descriptor = - getDescriptor().getMessageTypes().get(25); - internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_descriptor, - new java.lang.String[] { - "WorkflowType", - "TaskQueue", - "Arguments", - "WorkflowRunTimeout", - "WorkflowTaskTimeout", - "Memo", - "Headers", - "SearchAttributes", - "RetryPolicy", - "VersioningIntent", - }); + getDescriptor().getMessageTypes().get(25); + internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_descriptor, + new java.lang.String[] { "WorkflowType", "TaskQueue", "Arguments", "WorkflowRunTimeout", "WorkflowTaskTimeout", "Memo", "Headers", "SearchAttributes", "RetryPolicy", "VersioningIntent", }); internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_MemoEntry_descriptor = - internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_descriptor - .getNestedTypes() - .get(0); - internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_MemoEntry_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_MemoEntry_descriptor, - new java.lang.String[] { - "Key", "Value", - }); + internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_descriptor.getNestedTypes().get(0); + internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_MemoEntry_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_MemoEntry_descriptor, + new java.lang.String[] { "Key", "Value", }); internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_HeadersEntry_descriptor = - internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_descriptor - .getNestedTypes() - .get(1); - internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_HeadersEntry_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_HeadersEntry_descriptor, - new java.lang.String[] { - "Key", "Value", - }); + internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_descriptor.getNestedTypes().get(1); + internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_HeadersEntry_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_HeadersEntry_descriptor, + new java.lang.String[] { "Key", "Value", }); internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_SearchAttributesEntry_descriptor = - internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_descriptor - .getNestedTypes() - .get(2); - internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_SearchAttributesEntry_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_SearchAttributesEntry_descriptor, - new java.lang.String[] { - "Key", "Value", - }); + internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_descriptor.getNestedTypes().get(2); + internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_SearchAttributesEntry_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_ContinueAsNewAction_SearchAttributesEntry_descriptor, + new java.lang.String[] { "Key", "Value", }); internal_static_temporal_omes_kitchen_sink_RemoteActivityOptions_descriptor = - getDescriptor().getMessageTypes().get(26); - internal_static_temporal_omes_kitchen_sink_RemoteActivityOptions_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_temporal_omes_kitchen_sink_RemoteActivityOptions_descriptor, - new java.lang.String[] { - "CancellationType", "DoNotEagerlyExecute", "VersioningIntent", - }); + getDescriptor().getMessageTypes().get(26); + internal_static_temporal_omes_kitchen_sink_RemoteActivityOptions_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_temporal_omes_kitchen_sink_RemoteActivityOptions_descriptor, + new java.lang.String[] { "CancellationType", "DoNotEagerlyExecute", "VersioningIntent", }); com.google.protobuf.DurationProto.getDescriptor(); com.google.protobuf.EmptyProto.getDescriptor(); io.temporal.api.common.v1.MessageProto.getDescriptor(); diff --git a/workers/proto/api_upstream b/workers/proto/api_upstream index 01c32e4..a19522a 160000 --- a/workers/proto/api_upstream +++ b/workers/proto/api_upstream @@ -1 +1 @@ -Subproject commit 01c32e489aab3b7ef60e0668b8d585b4af10ffe1 +Subproject commit a19522ade6a4e3ee120cc3e7c8390bb9b4aecf75 diff --git a/workers/typescript/.eslintignore b/workers/typescript/.eslintignore new file mode 100644 index 0000000..cb21333 --- /dev/null +++ b/workers/typescript/.eslintignore @@ -0,0 +1,5 @@ +node_modules +lib +.eslintrc.js +src/protos/* +protogen.js \ No newline at end of file diff --git a/workers/typescript/.eslintrc.js b/workers/typescript/.eslintrc.js new file mode 100644 index 0000000..ab1b239 --- /dev/null +++ b/workers/typescript/.eslintrc.js @@ -0,0 +1,50 @@ +const { builtinModules } = require('module'); + +const ALLOWED_NODE_BUILTINS = new Set(['assert']); + +module.exports = { + root: true, + parser: '@typescript-eslint/parser', + parserOptions: { + project: './tsconfig.json', + tsconfigRootDir: __dirname, + }, + plugins: ['@typescript-eslint', 'deprecation'], + extends: [ + 'eslint:recommended', + 'plugin:@typescript-eslint/eslint-recommended', + 'plugin:@typescript-eslint/recommended', + 'prettier', + ], + rules: { + // recommended for safety + '@typescript-eslint/no-floating-promises': 'error', // forgetting to await Activities and Workflow APIs is bad + 'deprecation/deprecation': 'warn', + + // code style preference + 'object-shorthand': ['error', 'always'], + + // relaxed rules, for convenience + '@typescript-eslint/no-unused-vars': [ + 'warn', + { + argsIgnorePattern: '^_', + varsIgnorePattern: '^_', + }, + ], + '@typescript-eslint/no-explicit-any': 'off', + }, + overrides: [ + { + files: ['src/workflows.ts', 'src/workflows-*.ts', 'src/workflows/*.ts'], + rules: { + 'no-restricted-imports': [ + 'error', + ...builtinModules + .filter((m) => !ALLOWED_NODE_BUILTINS.has(m)) + .flatMap((m) => [m, `node:${m}`]), + ], + }, + }, + ], +}; diff --git a/workers/typescript/.gitignore b/workers/typescript/.gitignore new file mode 100644 index 0000000..f014e3c --- /dev/null +++ b/workers/typescript/.gitignore @@ -0,0 +1,4 @@ +lib +node_modules +src/protos/json-module.js +src/protos/root.d.ts diff --git a/workers/typescript/.prettierignore b/workers/typescript/.prettierignore new file mode 100644 index 0000000..ebccb91 --- /dev/null +++ b/workers/typescript/.prettierignore @@ -0,0 +1,2 @@ +lib +src/protos/ \ No newline at end of file diff --git a/workers/typescript/.prettierrc b/workers/typescript/.prettierrc new file mode 100644 index 0000000..7c1575a --- /dev/null +++ b/workers/typescript/.prettierrc @@ -0,0 +1,2 @@ +printWidth: 100 +singleQuote: true diff --git a/workers/typescript/package-lock.json b/workers/typescript/package-lock.json new file mode 100644 index 0000000..77a4aef --- /dev/null +++ b/workers/typescript/package-lock.json @@ -0,0 +1,4351 @@ +{ + "name": "omes", + "version": "0.1.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "omes", + "version": "0.1.0", + "dependencies": { + "commander": "^11.1.0", + "long": "^5.2.3", + "temporalio": "1.9.0-rc.0", + "winston": "^3.11.0" + }, + "devDependencies": { + "@tsconfig/node16": "^1.0.0", + "@types/node": "^16.11.43", + "@typescript-eslint/eslint-plugin": "^5.0.0", + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^7.32.0", + "eslint-config-prettier": "^8.3.0", + "eslint-plugin-deprecation": "^1.2.1", + "nodemon": "^2.0.12", + "prettier": "^2.8.8", + "protobufjs": "^7.2.5", + "protobufjs-cli": "^1.0.0", + "ts-node": "^10.8.1", + "typescript": "^4.4.2" + } + }, + "node_modules/@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.6.tgz", + "integrity": "sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@colors/colors": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.6.0.tgz", + "integrity": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==", + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@dabh/diagnostics": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz", + "integrity": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==", + "dependencies": { + "colorspace": "1.1.x", + "enabled": "2.0.x", + "kuler": "^2.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", + "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", + "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^13.9.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/@eslint/eslintrc/node_modules/ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/@grpc/grpc-js": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.7.3.tgz", + "integrity": "sha512-H9l79u4kJ2PVSxUNA08HMYAnUBLj9v6KjYQ7SQ71hOZcEXhShE/y5iQCesP8+6/Ik/7i2O0a10bPquIcYfufog==", + "dependencies": { + "@grpc/proto-loader": "^0.7.0", + "@types/node": ">=12.12.47" + }, + "engines": { + "node": "^8.13.0 || >=10.10.0" + } + }, + "node_modules/@grpc/proto-loader": { + "version": "0.7.10", + "resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.10.tgz", + "integrity": "sha512-CAqDfoaQ8ykFd9zqBDn4k6iWT9loLAlc2ETmDFS9JCD70gDcnA4L3AFEo2iV7KyAtAAHFW9ftq1Fz+Vsgq80RQ==", + "dependencies": { + "lodash.camelcase": "^4.3.0", + "long": "^5.0.0", + "protobufjs": "^7.2.4", + "yargs": "^17.7.2" + }, + "bin": { + "proto-loader-gen-types": "build/bin/proto-loader-gen-types.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", + "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.0", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "node_modules/@jsdoc/salty": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/@jsdoc/salty/-/salty-0.2.7.tgz", + "integrity": "sha512-mh8LbS9d4Jq84KLw8pzho7XC2q2/IJGiJss3xwRoLD1A+EE16SjN4PfaG4jRCzKegTFLlN0Zd8SdUPE6XdoPFg==", + "dev": true, + "dependencies": { + "lodash": "^4.17.21" + }, + "engines": { + "node": ">=v12.0.0" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@opentelemetry/api": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.7.0.tgz", + "integrity": "sha512-AdY5wvN0P2vXBi3b29hxZgSFvdhdxPB9+f0B6s//P9Q8nibRWeA3cHm8UmLpio9ABigkVHJ5NMPk+Mz8VCCyrw==", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@opentelemetry/core": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-1.18.1.tgz", + "integrity": "sha512-kvnUqezHMhsQvdsnhnqTNfAJs3ox/isB0SVrM1dhVFw7SsB7TstuVa6fgWnN2GdPyilIFLUvvbTZoVRmx6eiRg==", + "dependencies": { + "@opentelemetry/semantic-conventions": "1.18.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.8.0" + } + }, + "node_modules/@opentelemetry/resources": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.18.1.tgz", + "integrity": "sha512-JjbcQLYMttXcIabflLRuaw5oof5gToYV9fuXbcsoOeQ0BlbwUn6DAZi++PNsSz2jjPeASfDls10iaO/8BRIPRA==", + "dependencies": { + "@opentelemetry/core": "1.18.1", + "@opentelemetry/semantic-conventions": "1.18.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.8.0" + } + }, + "node_modules/@opentelemetry/sdk-trace-base": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-trace-base/-/sdk-trace-base-1.18.1.tgz", + "integrity": "sha512-tRHfDxN5dO+nop78EWJpzZwHsN1ewrZRVVwo03VJa3JQZxToRDH29/+MB24+yoa+IArerdr7INFJiX/iN4gjqg==", + "dependencies": { + "@opentelemetry/core": "1.18.1", + "@opentelemetry/resources": "1.18.1", + "@opentelemetry/semantic-conventions": "1.18.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.8.0" + } + }, + "node_modules/@opentelemetry/semantic-conventions": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.18.1.tgz", + "integrity": "sha512-+NLGHr6VZwcgE/2lw8zDIufOCGnzsA5CbQIMleXZTrgkBd0TanCX+MiDYJ1TOS4KL/Tqk0nFRxawnaYr6pkZkA==", + "engines": { + "node": ">=14" + } + }, + "node_modules/@protobufjs/aspromise": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", + "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==" + }, + "node_modules/@protobufjs/base64": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", + "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==" + }, + "node_modules/@protobufjs/codegen": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", + "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==" + }, + "node_modules/@protobufjs/eventemitter": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", + "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==" + }, + "node_modules/@protobufjs/fetch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", + "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", + "dependencies": { + "@protobufjs/aspromise": "^1.1.1", + "@protobufjs/inquire": "^1.1.0" + } + }, + "node_modules/@protobufjs/float": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", + "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==" + }, + "node_modules/@protobufjs/inquire": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", + "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==" + }, + "node_modules/@protobufjs/path": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", + "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==" + }, + "node_modules/@protobufjs/pool": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", + "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==" + }, + "node_modules/@protobufjs/utf8": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", + "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==" + }, + "node_modules/@swc/core": { + "version": "1.3.100", + "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.3.100.tgz", + "integrity": "sha512-7dKgTyxJjlrMwFZYb1auj3Xq0D8ZBe+5oeIgfMlRU05doXZypYJe0LAk0yjj3WdbwYzpF+T1PLxwTWizI0pckw==", + "hasInstallScript": true, + "dependencies": { + "@swc/counter": "^0.1.1", + "@swc/types": "^0.1.5" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/swc" + }, + "optionalDependencies": { + "@swc/core-darwin-arm64": "1.3.100", + "@swc/core-darwin-x64": "1.3.100", + "@swc/core-linux-arm64-gnu": "1.3.100", + "@swc/core-linux-arm64-musl": "1.3.100", + "@swc/core-linux-x64-gnu": "1.3.100", + "@swc/core-linux-x64-musl": "1.3.100", + "@swc/core-win32-arm64-msvc": "1.3.100", + "@swc/core-win32-ia32-msvc": "1.3.100", + "@swc/core-win32-x64-msvc": "1.3.100" + }, + "peerDependencies": { + "@swc/helpers": "^0.5.0" + }, + "peerDependenciesMeta": { + "@swc/helpers": { + "optional": true + } + } + }, + "node_modules/@swc/core-darwin-arm64": { + "version": "1.3.100", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.100.tgz", + "integrity": "sha512-XVWFsKe6ei+SsDbwmsuRkYck1SXRpO60Hioa4hoLwR8fxbA9eVp6enZtMxzVVMBi8ej5seZ4HZQeAWepbukiBw==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-darwin-x64": { + "version": "1.3.100", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.100.tgz", + "integrity": "sha512-KF/MXrnH1nakm1wbt4XV8FS7kvqD9TGmVxeJ0U4bbvxXMvzeYUurzg3AJUTXYmXDhH/VXOYJE5N5RkwZZPs5iA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-arm64-gnu": { + "version": "1.3.100", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.100.tgz", + "integrity": "sha512-p8hikNnAEJrw5vHCtKiFT4hdlQxk1V7vqPmvUDgL/qe2menQDK/i12tbz7/3BEQ4UqUPnvwpmVn2d19RdEMNxw==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-arm64-musl": { + "version": "1.3.100", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.100.tgz", + "integrity": "sha512-BWx/0EeY89WC4q3AaIaBSGfQxkYxIlS3mX19dwy2FWJs/O+fMvF9oLk/CyJPOZzbp+1DjGeeoGFuDYpiNO91JA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-x64-gnu": { + "version": "1.3.100", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.100.tgz", + "integrity": "sha512-XUdGu3dxAkjsahLYnm8WijPfKebo+jHgHphDxaW0ovI6sTdmEGFDew7QzKZRlbYL2jRkUuuKuDGvD6lO5frmhA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-x64-musl": { + "version": "1.3.100", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.100.tgz", + "integrity": "sha512-PhoXKf+f0OaNW/GCuXjJ0/KfK9EJX7z2gko+7nVnEA0p3aaPtbP6cq1Ubbl6CMoPL+Ci3gZ7nYumDqXNc3CtLQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-win32-arm64-msvc": { + "version": "1.3.100", + "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.100.tgz", + "integrity": "sha512-PwLADZN6F9cXn4Jw52FeP/MCLVHm8vwouZZSOoOScDtihjY495SSjdPnlosMaRSR4wJQssGwiD/4MbpgQPqbAw==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-win32-ia32-msvc": { + "version": "1.3.100", + "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.100.tgz", + "integrity": "sha512-0f6nicKSLlDKlyPRl2JEmkpBV4aeDfRQg6n8mPqgL7bliZIcDahG0ej+HxgNjZfS3e0yjDxsNRa6sAqWU2Z60A==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-win32-x64-msvc": { + "version": "1.3.100", + "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.100.tgz", + "integrity": "sha512-b7J0rPoMkRTa3XyUGt8PwCaIBuYWsL2DqbirrQKRESzgCvif5iNpqaM6kjIjI/5y5q1Ycv564CB51YDpiS8EtQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/counter": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.2.tgz", + "integrity": "sha512-9F4ys4C74eSTEUNndnER3VJ15oru2NumfQxS8geE+f3eB5xvfxpWyqE5XlVnxb/R14uoXi6SLbBwwiDSkv+XEw==" + }, + "node_modules/@swc/types": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.5.tgz", + "integrity": "sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==" + }, + "node_modules/@temporalio/activity": { + "version": "1.9.0-rc.0", + "resolved": "https://registry.npmjs.org/@temporalio/activity/-/activity-1.9.0-rc.0.tgz", + "integrity": "sha512-xEdPugknpPQdcT/7apgV0+fxWvFchNHdIDB+aiPD8qeDwtv5OVGePwS4chCUI4OBMQGlaLFURbyMAP3SKNkpmA==", + "dependencies": { + "@temporalio/common": "1.9.0-rc.0", + "abort-controller": "^3.0.0" + } + }, + "node_modules/@temporalio/client": { + "version": "1.9.0-rc.0", + "resolved": "https://registry.npmjs.org/@temporalio/client/-/client-1.9.0-rc.0.tgz", + "integrity": "sha512-R70SelTcuezHu5yLjZCMwpY3ZKSREw0Zft1b3ocGh5J9F3yhHI+ef4F25uj41T5c5cf1bj3cGkltM06V3HEy2A==", + "dependencies": { + "@grpc/grpc-js": "~1.7.3", + "@temporalio/common": "1.9.0-rc.0", + "@temporalio/proto": "1.9.0-rc.0", + "abort-controller": "^3.0.0", + "long": "^5.2.0", + "uuid": "^8.3.2" + } + }, + "node_modules/@temporalio/common": { + "version": "1.9.0-rc.0", + "resolved": "https://registry.npmjs.org/@temporalio/common/-/common-1.9.0-rc.0.tgz", + "integrity": "sha512-3GFrNOeot1zC1g88vmDFp+eVhBvNZ+FW4+FIAP0vSnPauAU6r5VjVkwfaUE/nJE37Zf06h3Yph3li/EYYMioTA==", + "dependencies": { + "@temporalio/proto": "1.9.0-rc.0", + "long": "^5.2.0", + "ms": "^3.0.0-canary.1", + "proto3-json-serializer": "^1.0.3", + "protobufjs": "^7.2.5" + } + }, + "node_modules/@temporalio/common/node_modules/ms": { + "version": "3.0.0-canary.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-3.0.0-canary.1.tgz", + "integrity": "sha512-kh8ARjh8rMN7Du2igDRO9QJnqCb2xYTJxyQYK7vJJS4TvLLmsbyhiKpSW+t+y26gyOyMd0riphX0GeWKU3ky5g==", + "engines": { + "node": ">=12.13" + } + }, + "node_modules/@temporalio/core-bridge": { + "version": "1.9.0-rc.0", + "resolved": "https://registry.npmjs.org/@temporalio/core-bridge/-/core-bridge-1.9.0-rc.0.tgz", + "integrity": "sha512-Iq32ddLyTmaBk4ktaFDdKBxum9I2ali3caMfzeAOpMu85z9zCrZ/cCbuSCErn0kFgAPXgmhldUmSAe/poeXECw==", + "hasInstallScript": true, + "dependencies": { + "@temporalio/common": "1.9.0-rc.0", + "arg": "^5.0.2", + "cargo-cp-artifact": "^0.1.6", + "which": "^2.0.2" + } + }, + "node_modules/@temporalio/interceptors-opentelemetry": { + "version": "1.9.0-rc.0", + "resolved": "https://registry.npmjs.org/@temporalio/interceptors-opentelemetry/-/interceptors-opentelemetry-1.9.0-rc.0.tgz", + "integrity": "sha512-zGhBXBhjRBk6isGNk5RbuK1zZbdcWyzniwJy0kxk5tY8CswA5hmbtvv90yyo+64g+93u+uzJDgAtZfaiNfSQtA==", + "dependencies": { + "@opentelemetry/api": "^1.4.1", + "@opentelemetry/core": "^1.12.0", + "@opentelemetry/resources": "^1.12.0", + "@opentelemetry/sdk-trace-base": "^1.12.0", + "@temporalio/activity": "1.9.0-rc.0", + "@temporalio/client": "1.9.0-rc.0", + "@temporalio/common": "1.9.0-rc.0", + "@temporalio/worker": "1.9.0-rc.0", + "@temporalio/workflow": "1.9.0-rc.0" + } + }, + "node_modules/@temporalio/proto": { + "version": "1.9.0-rc.0", + "resolved": "https://registry.npmjs.org/@temporalio/proto/-/proto-1.9.0-rc.0.tgz", + "integrity": "sha512-eCzIWHHyscB12rm1gqTF/ZlMU7IS5nNWhPAgUK7AQaaczrnqmoDW57WisHYWcVcujvTunFq8tf5+RUx34sCrJw==", + "dependencies": { + "long": "^5.2.0", + "protobufjs": "^7.2.5" + } + }, + "node_modules/@temporalio/testing": { + "version": "1.9.0-rc.0", + "resolved": "https://registry.npmjs.org/@temporalio/testing/-/testing-1.9.0-rc.0.tgz", + "integrity": "sha512-L9RS02UnSTWltaodxM0HNBOV+tcndsRSKAdbw0Zk32uwCv//dY2vI8hNx5tovOx7efNtN8t4PMVYK9HOZgBOqw==", + "dependencies": { + "@grpc/grpc-js": "~1.7.3", + "@temporalio/activity": "1.9.0-rc.0", + "@temporalio/client": "1.9.0-rc.0", + "@temporalio/common": "1.9.0-rc.0", + "@temporalio/core-bridge": "1.9.0-rc.0", + "@temporalio/proto": "1.9.0-rc.0", + "@temporalio/worker": "1.9.0-rc.0", + "@temporalio/workflow": "1.9.0-rc.0", + "abort-controller": "^3.0.0" + } + }, + "node_modules/@temporalio/worker": { + "version": "1.9.0-rc.0", + "resolved": "https://registry.npmjs.org/@temporalio/worker/-/worker-1.9.0-rc.0.tgz", + "integrity": "sha512-QcwRRUKDVMORT23roWKm/sdD2sdT0ODZnP+hR8XWRQ8b+T6YS03fnYARvUw0QhxY4I7haEThCj98/IPo/ntq5Q==", + "dependencies": { + "@swc/core": "^1.2.204", + "@temporalio/activity": "1.9.0-rc.0", + "@temporalio/client": "1.9.0-rc.0", + "@temporalio/common": "1.9.0-rc.0", + "@temporalio/core-bridge": "1.9.0-rc.0", + "@temporalio/proto": "1.9.0-rc.0", + "@temporalio/workflow": "1.9.0-rc.0", + "abort-controller": "^3.0.0", + "cargo-cp-artifact": "^0.1.6", + "heap-js": "^2.2.0", + "memfs": "^3.4.6", + "rxjs": "^7.5.5", + "source-map": "^0.7.4", + "source-map-loader": "^4.0.0", + "swc-loader": "^0.2.3", + "unionfs": "^4.5.1", + "webpack": "^5.75.0" + }, + "engines": { + "node": ">= 14.18.0" + } + }, + "node_modules/@temporalio/workflow": { + "version": "1.9.0-rc.0", + "resolved": "https://registry.npmjs.org/@temporalio/workflow/-/workflow-1.9.0-rc.0.tgz", + "integrity": "sha512-wxPfjIX1P80d0rf7TmfGcFdeTUd+EgCQVVnsHKYQNMH5yQngxVvcxNTgL9r6IgIlwxbace+Ajq8l3P9irwpiCw==", + "dependencies": { + "@temporalio/common": "1.9.0-rc.0", + "@temporalio/proto": "1.9.0-rc.0" + } + }, + "node_modules/@tsconfig/node10": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", + "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "dev": true + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "dev": true + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "dev": true + }, + "node_modules/@types/eslint": { + "version": "8.44.9", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.44.9.tgz", + "integrity": "sha512-6yBxcvwnnYoYT1Uk2d+jvIfsuP4mb2EdIxFnrPABj5a/838qe5bGkNLFOiipX4ULQ7XVQvTxOh7jO+BTAiqsEw==", + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" + }, + "node_modules/@types/linkify-it": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/linkify-it/-/linkify-it-3.0.5.tgz", + "integrity": "sha512-yg6E+u0/+Zjva+buc3EIb+29XEg4wltq7cSmd4Uc2EE/1nUVmxyzpX6gUXD0V8jIrG0r7YeOGVIbYRkxeooCtw==", + "dev": true + }, + "node_modules/@types/markdown-it": { + "version": "12.2.3", + "resolved": "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-12.2.3.tgz", + "integrity": "sha512-GKMHFfv3458yYy+v/N8gjufHO6MSZKCOXpZc5GXIWWy8uldwfmPn98vp81gZ5f9SVw8YYBctgfJ22a2d7AOMeQ==", + "dev": true, + "dependencies": { + "@types/linkify-it": "*", + "@types/mdurl": "*" + } + }, + "node_modules/@types/mdurl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-1.0.5.tgz", + "integrity": "sha512-6L6VymKTzYSrEf4Nev4Xa1LCHKrlTlYCBMTlQKFuddo1CvQcE52I0mwfOJayueUC7MJuXOeHTcIU683lzd0cUA==", + "dev": true + }, + "node_modules/@types/node": { + "version": "16.18.68", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.68.tgz", + "integrity": "sha512-sG3hPIQwJLoewrN7cr0dwEy+yF5nD4D/4FxtQpFciRD/xwUzgD+G05uxZHv5mhfXo4F9Jkp13jjn0CC2q325sg==" + }, + "node_modules/@types/semver": { + "version": "7.5.6", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz", + "integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==", + "dev": true + }, + "node_modules/@types/triple-beam": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/triple-beam/-/triple-beam-1.3.5.tgz", + "integrity": "sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", + "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", + "dev": true, + "dependencies": { + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/type-utils": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", + "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", + "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", + "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", + "dev": true, + "dependencies": { + "@typescript-eslint/typescript-estree": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "deprecated": "Use your platform's native atob() and btoa() methods instead" + }, + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "dev": true + }, + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, + "node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.3.1", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.1.tgz", + "integrity": "sha512-TgUZgYvqZprrl7YldZNoa9OciCAyZR+Ejm9eXzKCmjsF5IKp/wgQ7Z/ZpjpGTIUPwrHQIcYeI8qDh4PsEwxMbw==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/async": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", + "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.22.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", + "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001565", + "electron-to-chromium": "^1.4.601", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001570", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001570.tgz", + "integrity": "sha512-+3e0ASu4sw1SWaoCtvPeyXp+5PsjigkSt8OXZbF9StH5pQWbxEjLAZE3n8Aup5udop1uRiKA7a4utUk/uoSpUw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/cargo-cp-artifact": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/cargo-cp-artifact/-/cargo-cp-artifact-0.1.8.tgz", + "integrity": "sha512-3j4DaoTrsCD1MRkTF2Soacii0Nx7UHCce0EwUf4fHnggwiE4fbmF2AbnfzayR36DF8KGadfh7M/Yfy625kgPlA==", + "bin": { + "cargo-cp-artifact": "bin/cargo-cp-artifact.js" + } + }, + "node_modules/catharsis": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/catharsis/-/catharsis-0.9.0.tgz", + "integrity": "sha512-prMTQVpcns/tzFgFVkVp6ak6RykZyWb3gu8ckUpd6YkTlacOd3DXGJjIpD4Q6zJirizvaiAjSSHlOsA+6sNh2A==", + "dev": true, + "dependencies": { + "lodash": "^4.17.15" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "engines": { + "node": ">=6.0" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/color": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", + "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", + "dependencies": { + "color-convert": "^1.9.3", + "color-string": "^1.6.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/color/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/colorspace": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz", + "integrity": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==", + "dependencies": { + "color": "^3.1.3", + "text-hex": "1.0.x" + } + }, + "node_modules/commander": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz", + "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==", + "engines": { + "node": ">=16" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true, + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.612", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.612.tgz", + "integrity": "sha512-dM8BMtXtlH237ecSMnYdYuCkib2QHq0kpWfUnavjdYsyr/6OsAwg5ZGUfnQ9KD1Ga4QgB2sqXlB2NT8zy2GnVg==" + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "node_modules/enabled": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz", + "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==" + }, + "node_modules/enhanced-resolve": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/enquirer": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.4.1.tgz", + "integrity": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==", + "dev": true, + "dependencies": { + "ansi-colors": "^4.1.1", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/entities": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz", + "integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==", + "dev": true, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/es-module-lexer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.4.1.tgz", + "integrity": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==" + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "dev": true, + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=4.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/escodegen/node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "dev": true, + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dev": true, + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/escodegen/node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "dev": true, + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/eslint": { + "version": "7.32.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", + "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "7.12.11", + "@eslint/eslintrc": "^0.4.3", + "@humanwhocodes/config-array": "^0.5.0", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.1.2", + "globals": "^13.6.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.9", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-prettier": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz", + "integrity": "sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==", + "dev": true, + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-plugin-deprecation": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-deprecation/-/eslint-plugin-deprecation-1.5.0.tgz", + "integrity": "sha512-mRcssI/tLROueBQ6yf4LnnGTijbMsTCPIpbRbPj5R5wGYVCpk1zDmAS0SEkgcUDXOPc22qMNFR24Qw7vSPrlTA==", + "dev": true, + "dependencies": { + "@typescript-eslint/utils": "^5.57.0", + "tslib": "^2.3.1", + "tsutils": "^3.21.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0", + "typescript": "^3.7.5 || ^4.0.0 || ^5.0.0" + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint/node_modules/ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "dev": true, + "dependencies": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esquery/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fecha": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz", + "integrity": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==" + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dev": true, + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.9", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", + "dev": true + }, + "node_modules/fn.name": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz", + "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==" + }, + "node_modules/fs-monkey": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.5.tgz", + "integrity": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==" + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", + "dev": true + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/heap-js": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/heap-js/-/heap-js-2.3.0.tgz", + "integrity": "sha512-E5303mzwQ+4j/n2J0rDvEPBN7GKjhis10oHiYOgjxsmxYgqG++hz9NyLLOXttzH8as/DyiBHYpUrJTZWYaMo8Q==", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ignore": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", + "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/ignore-by-default": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", + "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==", + "dev": true + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/js2xmlparser": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-4.0.2.tgz", + "integrity": "sha512-6n4D8gLlLf1n5mNLQPRfViYzu9RATblzPEtm1SthMX1Pjao0r9YI9nw7ZIfRxQMERS87mcswrg+r/OYrPRX6jA==", + "dev": true, + "dependencies": { + "xmlcreate": "^2.0.4" + } + }, + "node_modules/jsdoc": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/jsdoc/-/jsdoc-4.0.2.tgz", + "integrity": "sha512-e8cIg2z62InH7azBBi3EsSEqrKx+nUtAS5bBcYTSpZFA+vhNPyhv8PTFZ0WsjOPDj04/dOLlm08EDcQJDqaGQg==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.20.15", + "@jsdoc/salty": "^0.2.1", + "@types/markdown-it": "^12.2.3", + "bluebird": "^3.7.2", + "catharsis": "^0.9.0", + "escape-string-regexp": "^2.0.0", + "js2xmlparser": "^4.0.2", + "klaw": "^3.0.0", + "markdown-it": "^12.3.2", + "markdown-it-anchor": "^8.4.1", + "marked": "^4.0.10", + "mkdirp": "^1.0.4", + "requizzle": "^0.2.3", + "strip-json-comments": "^3.1.0", + "underscore": "~1.13.2" + }, + "bin": { + "jsdoc": "jsdoc.js" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/jsdoc/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/klaw": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/klaw/-/klaw-3.0.0.tgz", + "integrity": "sha512-0Fo5oir+O9jnXu5EefYbVK+mHMBeEVEy2cmctR1O1NECcCkPRreJKrS6Qt/j3KC2C148Dfo9i3pCmCMsdqGr0g==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.9" + } + }, + "node_modules/kuler": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz", + "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==" + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/linkify-it": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-3.0.3.tgz", + "integrity": "sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==", + "dev": true, + "dependencies": { + "uc.micro": "^1.0.1" + } + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/lodash.truncate": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", + "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", + "dev": true + }, + "node_modules/logform": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/logform/-/logform-2.6.0.tgz", + "integrity": "sha512-1ulHeNPp6k/LD8H91o7VYFBng5i1BDE7HoKxVbZiGFidS1Rj65qcywLxX+pVfAPoQJEjRdvKcusKwOupHCVOVQ==", + "dependencies": { + "@colors/colors": "1.6.0", + "@types/triple-beam": "^1.3.2", + "fecha": "^4.2.0", + "ms": "^2.1.1", + "safe-stable-stringify": "^2.3.1", + "triple-beam": "^1.3.0" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/long": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", + "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==" + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "node_modules/markdown-it": { + "version": "12.3.2", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.3.2.tgz", + "integrity": "sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1", + "entities": "~2.1.0", + "linkify-it": "^3.0.1", + "mdurl": "^1.0.1", + "uc.micro": "^1.0.5" + }, + "bin": { + "markdown-it": "bin/markdown-it.js" + } + }, + "node_modules/markdown-it-anchor": { + "version": "8.6.7", + "resolved": "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-8.6.7.tgz", + "integrity": "sha512-FlCHFwNnutLgVTflOYHPW2pPcl2AACqVzExlkGQNsi4CJgqOHN7YTgDd4LuhgN1BFO3TS0vLAruV1Td6dwWPJA==", + "dev": true, + "peerDependencies": { + "@types/markdown-it": "*", + "markdown-it": "*" + } + }, + "node_modules/markdown-it/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/marked": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/marked/-/marked-4.3.0.tgz", + "integrity": "sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==", + "dev": true, + "bin": { + "marked": "bin/marked.js" + }, + "engines": { + "node": ">= 12" + } + }, + "node_modules/mdurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==", + "dev": true + }, + "node_modules/memfs": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "dependencies": { + "fs-monkey": "^1.0.4" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", + "dev": true + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + }, + "node_modules/node-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" + }, + "node_modules/nodemon": { + "version": "2.0.22", + "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.22.tgz", + "integrity": "sha512-B8YqaKMmyuCO7BowF1Z1/mkPqLk6cs/l63Ojtd6otKjMx47Dq1utxfRxcavH1I7VSaL8n5BUaoutadnsX3AAVQ==", + "dev": true, + "dependencies": { + "chokidar": "^3.5.2", + "debug": "^3.2.7", + "ignore-by-default": "^1.0.1", + "minimatch": "^3.1.2", + "pstree.remy": "^1.1.8", + "semver": "^5.7.1", + "simple-update-notifier": "^1.0.7", + "supports-color": "^5.5.0", + "touch": "^3.1.0", + "undefsafe": "^2.0.5" + }, + "bin": { + "nodemon": "bin/nodemon.js" + }, + "engines": { + "node": ">=8.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/nodemon" + } + }, + "node_modules/nodemon/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/nodemon/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/nodemon/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/nodemon/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/nopt": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", + "integrity": "sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==", + "dev": true, + "dependencies": { + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": "*" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/one-time": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz", + "integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==", + "dependencies": { + "fn.name": "1.x.x" + } + }, + "node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "dev": true, + "dependencies": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "dev": true, + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/proto3-json-serializer": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/proto3-json-serializer/-/proto3-json-serializer-1.1.1.tgz", + "integrity": "sha512-AwAuY4g9nxx0u52DnSMkqqgyLHaW/XaPLtaAo3y/ZCfeaQB/g4YDH4kb8Wc/mWzWvu0YjOznVnfn373MVZZrgw==", + "dependencies": { + "protobufjs": "^7.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/protobufjs": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.5.tgz", + "integrity": "sha512-gGXRSXvxQ7UiPgfw8gevrfRWcTlSbOFg+p/N+JVJEK5VhueL2miT6qTymqAmjr1Q5WbOCyJbyrk6JfWKwlFn6A==", + "hasInstallScript": true, + "dependencies": { + "@protobufjs/aspromise": "^1.1.2", + "@protobufjs/base64": "^1.1.2", + "@protobufjs/codegen": "^2.0.4", + "@protobufjs/eventemitter": "^1.1.0", + "@protobufjs/fetch": "^1.1.0", + "@protobufjs/float": "^1.0.2", + "@protobufjs/inquire": "^1.1.0", + "@protobufjs/path": "^1.1.2", + "@protobufjs/pool": "^1.1.0", + "@protobufjs/utf8": "^1.1.0", + "@types/node": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/protobufjs-cli": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/protobufjs-cli/-/protobufjs-cli-1.1.2.tgz", + "integrity": "sha512-8ivXWxT39gZN4mm4ArQyJrRgnIwZqffBWoLDsE21TmMcKI3XwJMV4lEF2WU02C4JAtgYYc2SfJIltelD8to35g==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "escodegen": "^1.13.0", + "espree": "^9.0.0", + "estraverse": "^5.1.0", + "glob": "^8.0.0", + "jsdoc": "^4.0.0", + "minimist": "^1.2.0", + "semver": "^7.1.2", + "tmp": "^0.2.1", + "uglify-js": "^3.7.7" + }, + "bin": { + "pbjs": "bin/pbjs", + "pbts": "bin/pbts" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "protobufjs": "^7.0.0" + } + }, + "node_modules/protobufjs-cli/node_modules/acorn": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", + "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/protobufjs-cli/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/protobufjs-cli/node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/protobufjs-cli/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/protobufjs-cli/node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/protobufjs-cli/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/pstree.remy": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", + "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", + "dev": true + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/requizzle": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/requizzle/-/requizzle-0.2.4.tgz", + "integrity": "sha512-JRrFk1D4OQ4SqovXOgdav+K8EAhSB/LJZqCz8tbX0KObcdeM15Ss59ozWMBWmmINMagCwmqn4ZNryUGpBsl6Jw==", + "dev": true, + "dependencies": { + "lodash": "^4.17.21" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/rxjs": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safe-stable-stringify": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", + "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==", + "engines": { + "node": ">=10" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/serialize-javascript": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "dependencies": { + "is-arrayish": "^0.3.1" + } + }, + "node_modules/simple-update-notifier": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.1.0.tgz", + "integrity": "sha512-VpsrsJSUcJEseSbMHkrsrAVSdvVS5I96Qo1QAQ4FxQ9wXFcB+pjj7FB7/us9+GcgfW4ziHtYMc1J0PLczb55mg==", + "dev": true, + "dependencies": { + "semver": "~7.0.0" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/simple-update-notifier/node_modules/semver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-loader": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-4.0.1.tgz", + "integrity": "sha512-oqXpzDIByKONVY8g1NUPOTQhe0UTU5bWUl32GSkqK2LjJj0HmwTMVKxcUip0RgAYhY1mqgOxjbQM48a0mmeNfA==", + "dependencies": { + "abab": "^2.0.6", + "iconv-lite": "^0.6.3", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.72.1" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/stack-trace": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", + "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", + "engines": { + "node": "*" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/swc-loader": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/swc-loader/-/swc-loader-0.2.3.tgz", + "integrity": "sha512-D1p6XXURfSPleZZA/Lipb3A8pZ17fP4NObZvFCDjK/OKljroqDpPmsBdTraWhVBqUNpcWBQY1imWdoPScRlQ7A==", + "peerDependencies": { + "@swc/core": "^1.2.147", + "webpack": ">=2" + } + }, + "node_modules/table": { + "version": "6.8.1", + "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz", + "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.1", + "lodash.truncate": "^4.4.2", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/table/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/table/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/temporalio": { + "version": "1.9.0-rc.0", + "resolved": "https://registry.npmjs.org/temporalio/-/temporalio-1.9.0-rc.0.tgz", + "integrity": "sha512-O3R3IPP3j9VhugKg1V1wFlFEfA6mwfOniIfJkRkBNuskI5bplYfQBbTVa5Auh+/iHMJJEJLv5PxaODXKCGikaA==", + "dependencies": { + "@temporalio/activity": "1.9.0-rc.0", + "@temporalio/client": "1.9.0-rc.0", + "@temporalio/common": "1.9.0-rc.0", + "@temporalio/interceptors-opentelemetry": "1.9.0-rc.0", + "@temporalio/proto": "1.9.0-rc.0", + "@temporalio/testing": "1.9.0-rc.0", + "@temporalio/worker": "1.9.0-rc.0", + "@temporalio/workflow": "1.9.0-rc.0" + }, + "engines": { + "node": ">=14.18.0" + } + }, + "node_modules/terser": { + "version": "5.26.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.26.0.tgz", + "integrity": "sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.9", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", + "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.17", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser-webpack-plugin/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.20", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", + "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/terser/node_modules/acorn": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", + "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/text-hex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", + "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==" + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "node_modules/tmp": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", + "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", + "dev": true, + "dependencies": { + "rimraf": "^3.0.0" + }, + "engines": { + "node": ">=8.17.0" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/touch": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", + "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", + "dev": true, + "dependencies": { + "nopt": "~1.0.10" + }, + "bin": { + "nodetouch": "bin/nodetouch.js" + } + }, + "node_modules/triple-beam": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.4.1.tgz", + "integrity": "sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==", + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/ts-node": { + "version": "10.9.2", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", + "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", + "dev": true, + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } + } + }, + "node_modules/ts-node/node_modules/acorn": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", + "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ts-node/node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true + }, + "node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/uc.micro": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz", + "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==", + "dev": true + }, + "node_modules/uglify-js": { + "version": "3.17.4", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", + "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", + "dev": true, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/undefsafe": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", + "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", + "dev": true + }, + "node_modules/underscore": { + "version": "1.13.6", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz", + "integrity": "sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==", + "dev": true + }, + "node_modules/unionfs": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/unionfs/-/unionfs-4.5.1.tgz", + "integrity": "sha512-hn8pzkh0/80mpsIT/YBJKa4+BF/9pNh0IgysBi0CjL95Uok8Hus69TNfgeJckoUNwfTpBq26+F7edO1oBINaIw==", + "dependencies": { + "fs-monkey": "^1.0.0" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8-compile-cache": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz", + "integrity": "sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==", + "dev": true + }, + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "dev": true + }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack": { + "version": "5.89.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.89.0.tgz", + "integrity": "sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==", + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.9.0", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.15.0", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.7", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack/node_modules/acorn": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", + "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/webpack/node_modules/acorn-import-assertions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/winston": { + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/winston/-/winston-3.11.0.tgz", + "integrity": "sha512-L3yR6/MzZAOl0DsysUXHVjOwv8mKZ71TrA/41EIduGpOOV5LQVodqN+QdQ6BS6PJ/RdIshZhq84P/fStEZkk7g==", + "dependencies": { + "@colors/colors": "^1.6.0", + "@dabh/diagnostics": "^2.0.2", + "async": "^3.2.3", + "is-stream": "^2.0.0", + "logform": "^2.4.0", + "one-time": "^1.0.0", + "readable-stream": "^3.4.0", + "safe-stable-stringify": "^2.3.1", + "stack-trace": "0.0.x", + "triple-beam": "^1.3.0", + "winston-transport": "^4.5.0" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/winston-transport": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.6.0.tgz", + "integrity": "sha512-wbBA9PbPAHxKiygo7ub7BYRiKxms0tpfU2ljtWzb3SjRjv5yl6Ozuy/TkXf00HTAt+Uylo3gSkNwzc4ME0wiIg==", + "dependencies": { + "logform": "^2.3.2", + "readable-stream": "^3.6.0", + "triple-beam": "^1.3.0" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/xmlcreate": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/xmlcreate/-/xmlcreate-2.0.4.tgz", + "integrity": "sha512-nquOebG4sngPmGPICTS5EnxqhKbCmz5Ox5hsszI2T6U5qdrJizBc+0ilYSEjTSzU0yZcmvppztXe/5Al5fUwdg==", + "dev": true + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "engines": { + "node": ">=12" + } + }, + "node_modules/yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dev": true, + "engines": { + "node": ">=6" + } + } + } +} diff --git a/workers/typescript/package.json b/workers/typescript/package.json new file mode 100644 index 0000000..5e5ec21 --- /dev/null +++ b/workers/typescript/package.json @@ -0,0 +1,42 @@ +{ + "name": "omes", + "version": "0.1.0", + "scripts": { + "build": "npm run proto-gen && tsc --build", + "build.watch": "tsc --build --watch", + "proto-gen": "node ./protogen.js", + "lint": "eslint .", + "lint-ci": "eslint . && prettier --check .", + "format": "prettier --write ." + }, + "nodemonConfig": { + "execMap": { + "ts": "ts-node" + }, + "ext": "ts", + "watch": [ + "src" + ] + }, + "dependencies": { + "temporalio": "1.9.0-rc.0", + "commander": "^11.1.0", + "long": "^5.2.3", + "winston": "^3.11.0" + }, + "devDependencies": { + "@tsconfig/node16": "^1.0.0", + "@types/node": "^16.11.43", + "@typescript-eslint/eslint-plugin": "^5.0.0", + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^7.32.0", + "eslint-config-prettier": "^8.3.0", + "eslint-plugin-deprecation": "^1.2.1", + "nodemon": "^2.0.12", + "protobufjs": "^7.2.5", + "protobufjs-cli": "^1.0.0", + "prettier": "^2.8.8", + "ts-node": "^10.8.1", + "typescript": "^4.4.2" + } +} diff --git a/workers/typescript/protogen.js b/workers/typescript/protogen.js new file mode 100644 index 0000000..764bd89 --- /dev/null +++ b/workers/typescript/protogen.js @@ -0,0 +1,99 @@ +const { rm, readFile, writeFile } = require('fs/promises'); +const { resolve } = require('path'); +const { promisify } = require('util'); +const glob = require('glob'); +const { statSync, mkdirSync } = require('fs'); +const pbjs = require('protobufjs-cli/pbjs'); +const pbts = require('protobufjs-cli/pbts'); + +const outputDir = resolve(__dirname, './src/protos'); +const jsOutputFile = resolve(outputDir, 'json-module.js'); +const tempFile = resolve(outputDir, 'temp.js'); +const protoBaseDir = resolve(__dirname, '../proto'); + +const ksProtoPath = resolve(protoBaseDir, 'kitchen_sink/kitchen_sink.proto'); + +function mtime(path) { + try { + return statSync(path).mtimeMs; + } catch (err) { + if (err.code === 'ENOENT') { + return 0; + } + throw err; + } +} + +async function compileProtos(dtsOutputFile, ...args) { + // Use --root to avoid conflicting with user's root + // and to avoid this error: https://github.com/protobufjs/protobuf.js/issues/1114 + const pbjsArgs = [ + ...args, + '--wrap', + 'commonjs', + '--force-long', + '--no-verify', + '--alt-comment', + '--root', + '__temporal_kitchensink', + resolve(require.resolve('protobufjs'), '../google/protobuf/descriptor.proto'), + ksProtoPath, + ]; + + console.log(`Creating protobuf JS definitions from ${ksProtoPath}`); + await promisify(pbjs.main)([...pbjsArgs, '--target', 'json-module', '--out', jsOutputFile]); + + console.log(`Creating protobuf TS definitions from ${ksProtoPath}`); + try { + await promisify(pbjs.main)([...pbjsArgs, '--target', 'static-module', '--out', tempFile]); + + // pbts internally calls jsdoc, which do strict validation of jsdoc tags. + // Unfortunately, some protobuf comment about cron syntax contains the + // "@every" shorthand at the begining of a line, making it appear as a + // (invalid) jsdoc tag. Similarly, docusaurus trips on and other + // things that looks like html tags. We fix both cases by rewriting these + // using markdown "inline code" syntax. + let tempFileContent = await readFile(tempFile, 'utf8'); + tempFileContent = tempFileContent.replace( + /(@(?:yearly|monthly|weekly|daily|hourly|every))/g, + '`$1`' + ); + tempFileContent = tempFileContent.replace( + /<((?:interval|phase|timezone)(?: [^>]+)?)>/g, + '`<$1>`' + ); + await writeFile(tempFile, tempFileContent, 'utf-8'); + + await promisify(pbts.main)(['--out', dtsOutputFile, tempFile]); + } finally { + await rm(tempFile); + } +} + +async function main() { + mkdirSync(outputDir, { recursive: true }); + + const protoFiles = glob.sync(resolve(protoBaseDir, '**/*.proto')); + const protosMTime = Math.max(...protoFiles.map(mtime)); + const genMTime = mtime(jsOutputFile); + + if (protosMTime < genMTime) { + console.log('Assuming protos are up to date'); + return; + } + + await compileProtos( + resolve(outputDir, 'root.d.ts'), + '--path', + resolve(protoBaseDir, 'kitchen_sink'), + '--path', + resolve(protoBaseDir, 'api_upstream') + ); + + console.log('Done'); +} + +main().catch((err) => { + console.error(err); + process.exit(1); +}); diff --git a/workers/typescript/src/activities.ts b/workers/typescript/src/activities.ts new file mode 100644 index 0000000..e8e9046 --- /dev/null +++ b/workers/typescript/src/activities.ts @@ -0,0 +1,5 @@ +export { sleep as delay } from '@temporalio/activity'; + +export async function noop() { + return undefined; +} diff --git a/workers/typescript/src/omes.ts b/workers/typescript/src/omes.ts new file mode 100644 index 0000000..7caaeef --- /dev/null +++ b/workers/typescript/src/omes.ts @@ -0,0 +1,195 @@ +import { Command } from 'commander'; +import { + DefaultLogger, + LogLevel, + NativeConnection, + Runtime, + TelemetryOptions, + Worker, + WorkerOptions, +} from '@temporalio/worker'; +import { TLSConfig } from '@temporalio/client'; +import * as fs from 'fs'; +import * as activities from './activities'; +import winston from 'winston'; + +async function run() { + const program = new Command(); + program + .option('-a, --server-address
', 'The host:port of the server', 'localhost:7233') + .option('-q, --task-queue ', 'Task queue to use', 'omes') + .option( + '--task-queue-suffix-index-start ', + 'Inclusive start for task queue suffix range', + '0' + ) + .option( + '--task-queue-suffix-index-end ', + 'Inclusive end for task queue suffix range', + '0' + ) + .option('-n, --namespace ', 'The namespace to use', 'default') + .option('--max-concurrent-activity-pollers ', 'Max concurrent activity pollers') + .option('--max-concurrent-workflow-pollers ', 'Max concurrent workflow pollers') + .option('--max-concurrent-activities ', 'Max concurrent activities') + .option('--max-concurrent-workflow-tasks ', 'Max concurrent workflow tasks') + .option('--log-level ', '(debug info warn error panic fatal)', 'info') + .option('--log-encoding ', '(console json)', 'console') + .option('--tls', 'Enable TLS') + .option('--tls-cert-path ', 'Path to a client certificate for TLS') + .option('--tls-key-path ', 'Path to a client key for TLS') + .option('--prom-listen-address ', 'Prometheus listen address') + .option('--prom-handler-path ', 'Prometheus handler path', '/metrics'); + + const opts = program.parse(process.argv).opts<{ + serverAddress: string; + taskQueue: string; + tqSufStart: number; + tqSufEnd: number; + namespace: string; + + maxActPollers: number; + maxWfPollers: number; + maxActs: number; + maxWFTs: number; + + logLevel: string; + logEncoding: string; + + tls: boolean; + clientCertPath: string; + clientKeyPath: string; + + promListenAddress: string; + promHandlerPath: string; + }>(); + + // Configure TLS + let tlsConfig: TLSConfig | undefined; + if (opts.tls) { + if (!opts.clientCertPath) { + throw new Error('Client cert path specified but no key path!'); + } + if (!opts.clientKeyPath) { + throw new Error('Client key path specified but no cert path!'); + } + const crt = fs.readFileSync(opts.clientCertPath); + const key = fs.readFileSync(opts.clientKeyPath); + tlsConfig = { + clientCertPair: { + crt, + key, + }, + }; + } + + // Configure logging + const winstonLogger = winston.createLogger({ + level: opts.logLevel, + format: + opts.logEncoding === 'json' + ? winston.format.json() + : winston.format.combine( + winston.format.colorize(), + winston.format.simple(), + winston.format.metadata() + ), + transports: [new winston.transports.Console()], + }); + const logger = new DefaultLogger(coerceLogLevel(opts.logLevel), (entry) => { + winstonLogger.log({ + level: entry.level.toLowerCase(), + message: entry.message, + timestamp: Number(entry.timestampNanos / 1_000_000n), + meta: entry.meta, + }); + }); + // Configure metrics + const telemetryOptions: TelemetryOptions = {}; + if (opts.promListenAddress) { + telemetryOptions.metrics = { prometheus: { bindAddress: opts.promListenAddress } }; + } + + Runtime.install({ + logger, + telemetryOptions, + }); + + logger.info(`Connecting to server at ${opts.serverAddress}`); + + const connection = await NativeConnection.connect({ + address: opts.serverAddress, + tls: tlsConfig, + }); + + // Possibly create multiple workers if we are being asked to use multiple task queues + const taskQueues = []; + if (opts.tqSufEnd === 0 || opts.tqSufEnd === undefined) { + logger.info('Running TypeScript worker on task queue ' + opts.taskQueue); + taskQueues.push(opts.taskQueue); + } else { + for (let i = opts.tqSufStart; i <= opts.tqSufEnd; i++) { + const taskQueue = opts.taskQueue + '-' + i; + taskQueues.push(taskQueue); + } + logger.info(`Running TypeScript worker on ${taskQueues.length} task queues`); + } + + const workerArgs: WorkerOptions = { + connection, + namespace: opts.namespace, + workflowsPath: require.resolve('./workflows'), + activities, + taskQueue: opts.taskQueue, + dataConverter: { + payloadConverterPath: require.resolve('./payload-converter'), + }, + }; + if (opts.maxActPollers) { + workerArgs.maxConcurrentActivityTaskPolls = opts.maxActPollers; + } + if (opts.maxWfPollers) { + workerArgs.maxConcurrentWorkflowTaskPolls = opts.maxWfPollers; + } + if (opts.maxActs) { + workerArgs.maxConcurrentActivityTaskExecutions = opts.maxActs; + } + if (opts.maxWFTs) { + workerArgs.maxConcurrentWorkflowTaskExecutions = opts.maxWFTs; + } + const workerPromises = []; + for (const taskQueue of taskQueues) { + workerArgs.taskQueue = taskQueue; + const worker = await Worker.create(workerArgs); + workerPromises.push(worker.run()); + } + + await Promise.all(workerPromises); +} + +run() + .then(() => { + process.exit(0); + }) + .catch((err) => { + console.error(err); + process.exit(1); + }); + +function coerceLogLevel(value: string): LogLevel { + const lowered = value.toLowerCase(); + if (lowered === 'trace') { + return 'TRACE'; + } else if (lowered === 'debug') { + return 'DEBUG'; + } else if (lowered === 'info') { + return 'INFO'; + } else if (lowered === 'warn') { + return 'WARN'; + } else if (lowered === 'error') { + return 'ERROR'; + } else if (lowered === 'fatal') { + return 'ERROR'; + } + return 'INFO'; +} diff --git a/workers/typescript/src/payload-converter.ts b/workers/typescript/src/payload-converter.ts new file mode 100644 index 0000000..29d6d48 --- /dev/null +++ b/workers/typescript/src/payload-converter.ts @@ -0,0 +1,59 @@ +import root, { temporal } from './protos/root'; +import { + ProtobufBinaryPayloadConverter, + ProtobufJsonPayloadConverter, +} from '@temporalio/common/lib/converter/protobuf-payload-converters'; +import { + BinaryPayloadConverter, + CompositePayloadConverter, + JsonPayloadConverter, + PayloadConverterWithEncoding, + UndefinedPayloadConverter, + ValueError, +} from '@temporalio/common'; +import { decode, encode } from '@temporalio/common/lib/encoding'; +import Payload = temporal.api.common.v1.Payload; + +export class PassThroughPayload implements PayloadConverterWithEncoding { + public toPayload(value: any): Payload | undefined { + if (!value || value.metadata === undefined || value.data === undefined) { + return undefined; + } + let asPayload; + try { + asPayload = Payload.fromObject(value as any); + } catch (e) { + throw new ValueError('PassThroughPayload can only convert Payloads'); + } + const asBytes = Payload.encode(asPayload).finish(); + return Payload.create({ + metadata: { + encoding: encode(this.encodingType), + }, + data: asBytes, + }); + } + + public fromPayload(content: Payload): T { + if (decode(content.metadata?.encoding) === '__passthrough') { + const innerPayload = Payload.decode(new Uint8Array(content.data)); + return payloadConverter.fromPayload(innerPayload); + } + throw new ValueError( + 'PassThroughPayload can only decode passthrough Payloads, got ' + JSON.stringify(content) + ); + } + + public get encodingType(): string { + return '__passthrough'; + } +} + +export const payloadConverter = new CompositePayloadConverter( + new UndefinedPayloadConverter(), + new BinaryPayloadConverter(), + new PassThroughPayload(), + new ProtobufJsonPayloadConverter(root), + new ProtobufBinaryPayloadConverter(root), + new JsonPayloadConverter() +); diff --git a/workers/typescript/src/protos/root.js b/workers/typescript/src/protos/root.js new file mode 100644 index 0000000..6a9a48a --- /dev/null +++ b/workers/typescript/src/protos/root.js @@ -0,0 +1,5 @@ +const { patchProtobufRoot } = require('@temporalio/common/lib/protobufs'); +var $protobuf = require("protobufjs/light"); +$protobuf.util.Long = require('long'); +const unpatchedRoot = require('./json-module'); +module.exports = patchProtobufRoot(unpatchedRoot); \ No newline at end of file diff --git a/workers/typescript/src/workflows/index.ts b/workers/typescript/src/workflows/index.ts new file mode 100644 index 0000000..e5b2f97 --- /dev/null +++ b/workers/typescript/src/workflows/index.ts @@ -0,0 +1 @@ +export * from './kitchen_sink'; diff --git a/workers/typescript/src/workflows/kitchen_sink.ts b/workers/typescript/src/workflows/kitchen_sink.ts new file mode 100644 index 0000000..c1c40a9 --- /dev/null +++ b/workers/typescript/src/workflows/kitchen_sink.ts @@ -0,0 +1,312 @@ +import { google, temporal } from '../protos/root'; +import { + ActivityCancellationType as WFActivityCancellationType, + ApplicationFailure, + CancellationScope, + ChildWorkflowHandle, + ChildWorkflowOptions, + condition, + continueAsNew, + defineQuery, + defineSignal, + defineUpdate, + deprecatePatch, + isCancellation, + patched, + scheduleActivity, + scheduleLocalActivity, + setHandler, + sleep, + startChild, + upsertSearchAttributes, + Workflow, +} from '@temporalio/workflow'; +import { + ActivityOptions, + decompileRetryPolicy, + LocalActivityOptions, + SearchAttributes, +} from '@temporalio/common'; +import Long from 'long'; +import WorkflowInput = temporal.omes.kitchen_sink.WorkflowInput; +import WorkflowState = temporal.omes.kitchen_sink.WorkflowState; +import Payload = temporal.api.common.v1.Payload; +import DoSignalActions = temporal.omes.kitchen_sink.DoSignal.DoSignalActions; +import IActionSet = temporal.omes.kitchen_sink.IActionSet; +import DoActionsUpdate = temporal.omes.kitchen_sink.DoActionsUpdate; +import IAction = temporal.omes.kitchen_sink.IAction; +import IPayload = temporal.api.common.v1.IPayload; +import IAwaitableChoice = temporal.omes.kitchen_sink.IAwaitableChoice; +import IExecuteActivityAction = temporal.omes.kitchen_sink.IExecuteActivityAction; +import ActivityCancellationType = temporal.omes.kitchen_sink.ActivityCancellationType; +import IDuration = google.protobuf.IDuration; +import IWorkflowState = temporal.omes.kitchen_sink.IWorkflowState; + +const reportStateQuery = defineQuery('report_state'); +const actionsSignal = defineSignal<[DoSignalActions]>('do_actions_signal'); +const actionsUpdate = defineUpdate('do_actions_update'); + +export async function kitchenSink(input: WorkflowInput | undefined): Promise { + let workflowState: IWorkflowState = WorkflowState.create(); + const actionsQueue = new Array(); + + async function handleActionSet(actions: IActionSet): Promise { + let rval: IPayload | undefined; + + if (!actions.concurrent) { + for (const action of actions.actions ?? []) { + const actionRval = await handleAction(action); + if (actionRval) { + rval = actionRval; + } + } + return rval; + } + + // Concurrent actions run concurrently but we return early if any return a value + const promises = new Array>(); + for (const action of actions.actions ?? []) { + promises.push( + handleAction(action).then((actionRval) => { + if (actionRval) { + rval = actionRval; + } + }) + ); + } + const allComplete = Promise.all(promises); + await Promise.any([allComplete, condition(() => rval !== undefined)]); + + return rval; + } + + async function handleAction(action: IAction): Promise { + // console.log('Handling an action', action); + async function handleAwaitableChoice, PRR>( + promise: () => PR, + choice: IAwaitableChoice | null | undefined, + afterStarted: (_: Promise) => Promise = async (_) => { + await sleep(1); + }, + afterCompleted: (_: Promise) => Promise = async (task) => { + await task; + } + ) { + const cancelScope = new CancellationScope(); + let didCancel = false; + + const cancellablePromise = cancelScope + .run(() => promise()) + .catch((err) => { + if (didCancel && isCancellation(err)) { + return; + } + throw err; + }); + + if (choice?.abandon) { + // Do nothing + } else if (choice?.cancelBeforeStarted) { + cancelScope.cancel(); + didCancel = true; + await cancellablePromise; + } else if (choice?.cancelAfterStarted) { + await afterStarted(cancellablePromise); + cancelScope.cancel(); + didCancel = true; + await cancellablePromise; + } else if (choice?.cancelAfterCompleted) { + await afterCompleted(cancellablePromise); + cancelScope.cancel(); + } else { + await cancellablePromise; + } + } + + if (action.returnResult) { + return action.returnResult.returnThis; + } else if (action.returnError) { + throw new ApplicationFailure(action.returnError.failure?.message); + } else if (action.continueAsNew) { + await continueAsNew(action.continueAsNew.arguments![0]); + } else if (action.timer) { + const ms = numify(action.timer.milliseconds); + const sleeper = () => sleep(ms); + await handleAwaitableChoice(sleeper, action.timer.awaitableChoice); + } else if (action.execActivity) { + const execAct = action.execActivity; + await handleAwaitableChoice( + () => launchActivity(execAct), + action.execActivity.awaitableChoice + ); + } else if (action.execChildWorkflow) { + const opts: ChildWorkflowOptions = {}; + if (action.execChildWorkflow.workflowId) { + opts.workflowId = action.execChildWorkflow.workflowId; + } + const execChild = action.execChildWorkflow; + const childStarter = () => { + return startChild(execChild.workflowType ?? 'kitchenSink', { + args: execChild.input ?? [], + ...opts, + }); + }; + await handleAwaitableChoice( + childStarter, + action.execChildWorkflow.awaitableChoice, + async (task) => { + await task; + }, + async (task: Promise | void>) => { + const handle = await task; + if (handle) { + await handle.result(); + } + } + ); + } else if (action.setPatchMarker) { + let wasPatched: boolean; + if (action.setPatchMarker.deprecated) { + deprecatePatch(action.setPatchMarker.patchId!); + wasPatched = true; + } else { + wasPatched = patched(action.setPatchMarker.patchId!); + } + + if (wasPatched && action.setPatchMarker.innerAction) { + return await handleAction(action.setPatchMarker.innerAction); + } + } else if (action.setWorkflowState) { + workflowState = WorkflowState.fromObject(action.setWorkflowState); + } else if (action.awaitWorkflowState) { + const key = action.awaitWorkflowState.key!; + const value = action.awaitWorkflowState.value!; + await condition(() => { + return workflowState.kvs?.[key] === value; + }); + } else if (action.upsertMemo) { + // no upsert memo in ts + } else if (action.upsertSearchAttributes) { + const searchAttributes: SearchAttributes = {}; + for (const [key, value] of Object.entries( + action.upsertSearchAttributes.searchAttributes ?? {} + )) { + if (key.includes('Keyword')) { + searchAttributes[key] = [value.data![0].toString()]; + } else { + searchAttributes[key] = [value.data![0]]; + } + } + upsertSearchAttributes(searchAttributes); + } else if (action.nestedActionSet) { + return await handleActionSet(action.nestedActionSet); + } else { + throw new ApplicationFailure('Unknown action ' + JSON.stringify(action)); + } + } + + setHandler(reportStateQuery, (_) => workflowState); + setHandler(actionsSignal, async (actions) => { + if (actions.doActionsInMain) { + actionsQueue.unshift(actions.doActionsInMain); + } else if (actions.doActions) { + await handleActionSet(actions.doActions); + } else { + throw new ApplicationFailure('Actions signal received with no actions!'); + } + }); + setHandler( + actionsUpdate, + async (actions) => { + const rval = await handleActionSet(actions.doActions!); + if (rval) { + return rval; + } + }, + { + validator: (actions) => { + if (actions.rejectMe) { + throw new ApplicationFailure('Rejected'); + } + }, + } + ); + + // Run all initial input actions + if (input?.initialActions) { + for (const actionSet of input.initialActions) { + const rval = await handleActionSet(actionSet); + if (rval) { + return rval; + } + } + } + + // Run all actions from signals + for (;;) { + await condition(() => actionsQueue.length > 0); + const actions = actionsQueue.pop()!; + const rval = await handleActionSet(actions); + if (rval) { + return rval; + } + } +} + +function launchActivity(execActivity: IExecuteActivityAction): Promise { + let actType = 'noop'; + const args = []; + if (execActivity.delay) { + actType = 'delay'; + args.push(durationConvert(execActivity.delay)); + } + + const actArgs: ActivityOptions | LocalActivityOptions = { + scheduleToCloseTimeout: durationConvert(execActivity.scheduleToCloseTimeout), + startToCloseTimeout: durationConvert(execActivity.startToCloseTimeout), + scheduleToStartTimeout: durationConvert(execActivity.scheduleToStartTimeout), + retry: decompileRetryPolicy(execActivity.retryPolicy), + }; + + if (execActivity.isLocal) { + return scheduleLocalActivity(actType, args, actArgs); + } else { + const remoteArgs = actArgs as ActivityOptions; + remoteArgs.taskQueue = execActivity.taskQueue ?? undefined; + remoteArgs.cancellationType = convertCancelType(execActivity.remote?.cancellationType); + remoteArgs.heartbeatTimeout = durationConvert(execActivity.heartbeatTimeout); + return scheduleActivity(actType, args, remoteArgs); + } +} + +function convertCancelType( + ct: ActivityCancellationType | null | undefined +): WFActivityCancellationType | undefined { + if (ct === ActivityCancellationType.TRY_CANCEL) { + return WFActivityCancellationType.TRY_CANCEL; + } else if (ct === ActivityCancellationType.WAIT_CANCELLATION_COMPLETED) { + return WFActivityCancellationType.WAIT_CANCELLATION_COMPLETED; + } else if (ct === ActivityCancellationType.ABANDON) { + return WFActivityCancellationType.ABANDON; + } +} + +function durationConvert(d: IDuration | null | undefined): number { + if (!d) { + return 0; + } + // convert to ms + return Math.round(numify(d.seconds) * 1000 + (d.nanos ?? 0) / 1000000); +} + +// I just cannot get protobuf to use Long consistently. For whatever insane reason for child +// workflows it reverts to using number. +function numify(n: number | Long | undefined | null): number { + if (!n) { + return 0; + } + if (typeof n === 'number') { + return n; + } + return n.toNumber(); +} diff --git a/workers/typescript/tsconfig.json b/workers/typescript/tsconfig.json new file mode 100644 index 0000000..dfad4e1 --- /dev/null +++ b/workers/typescript/tsconfig.json @@ -0,0 +1,13 @@ +{ + "extends": "@tsconfig/node16/tsconfig.json", + "version": "4.4.2", + "compilerOptions": { + "declaration": true, + "declarationMap": true, + "sourceMap": true, + "allowJs": true, + "rootDir": "./src", + "outDir": "./lib" + }, + "include": ["src/**/*.ts", "src/protos/json-module.js", "src/protos/root.js"] +}