go/proto/api/v1/service_domain.pb.yarpc.go (590 lines of code) (raw):

// The MIT License (MIT) // // Copyright (c) 2021 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. // Code generated by protoc-gen-yarpc-go. DO NOT EDIT. // source: uber/cadence/api/v1/service_domain.proto package apiv1 import ( "context" "io/ioutil" "reflect" "github.com/gogo/protobuf/jsonpb" "github.com/gogo/protobuf/proto" "go.uber.org/fx" "go.uber.org/yarpc" "go.uber.org/yarpc/api/transport" "go.uber.org/yarpc/api/x/restriction" "go.uber.org/yarpc/encoding/protobuf" "go.uber.org/yarpc/encoding/protobuf/reflection" ) var _ = ioutil.NopCloser // DomainAPIYARPCClient is the YARPC client-side interface for the DomainAPI service. type DomainAPIYARPCClient interface { RegisterDomain(context.Context, *RegisterDomainRequest, ...yarpc.CallOption) (*RegisterDomainResponse, error) DescribeDomain(context.Context, *DescribeDomainRequest, ...yarpc.CallOption) (*DescribeDomainResponse, error) ListDomains(context.Context, *ListDomainsRequest, ...yarpc.CallOption) (*ListDomainsResponse, error) UpdateDomain(context.Context, *UpdateDomainRequest, ...yarpc.CallOption) (*UpdateDomainResponse, error) DeprecateDomain(context.Context, *DeprecateDomainRequest, ...yarpc.CallOption) (*DeprecateDomainResponse, error) } func newDomainAPIYARPCClient(clientConfig transport.ClientConfig, anyResolver jsonpb.AnyResolver, options ...protobuf.ClientOption) DomainAPIYARPCClient { return &_DomainAPIYARPCCaller{protobuf.NewStreamClient( protobuf.ClientParams{ ServiceName: "uber.cadence.api.v1.DomainAPI", ClientConfig: clientConfig, AnyResolver: anyResolver, Options: options, }, )} } // NewDomainAPIYARPCClient builds a new YARPC client for the DomainAPI service. func NewDomainAPIYARPCClient(clientConfig transport.ClientConfig, options ...protobuf.ClientOption) DomainAPIYARPCClient { return newDomainAPIYARPCClient(clientConfig, nil, options...) } // DomainAPIYARPCServer is the YARPC server-side interface for the DomainAPI service. type DomainAPIYARPCServer interface { RegisterDomain(context.Context, *RegisterDomainRequest) (*RegisterDomainResponse, error) DescribeDomain(context.Context, *DescribeDomainRequest) (*DescribeDomainResponse, error) ListDomains(context.Context, *ListDomainsRequest) (*ListDomainsResponse, error) UpdateDomain(context.Context, *UpdateDomainRequest) (*UpdateDomainResponse, error) DeprecateDomain(context.Context, *DeprecateDomainRequest) (*DeprecateDomainResponse, error) } type buildDomainAPIYARPCProceduresParams struct { Server DomainAPIYARPCServer AnyResolver jsonpb.AnyResolver } func buildDomainAPIYARPCProcedures(params buildDomainAPIYARPCProceduresParams) []transport.Procedure { handler := &_DomainAPIYARPCHandler{params.Server} return protobuf.BuildProcedures( protobuf.BuildProceduresParams{ ServiceName: "uber.cadence.api.v1.DomainAPI", UnaryHandlerParams: []protobuf.BuildProceduresUnaryHandlerParams{ { MethodName: "RegisterDomain", Handler: protobuf.NewUnaryHandler( protobuf.UnaryHandlerParams{ Handle: handler.RegisterDomain, NewRequest: newDomainAPIServiceRegisterDomainYARPCRequest, AnyResolver: params.AnyResolver, }, ), }, { MethodName: "DescribeDomain", Handler: protobuf.NewUnaryHandler( protobuf.UnaryHandlerParams{ Handle: handler.DescribeDomain, NewRequest: newDomainAPIServiceDescribeDomainYARPCRequest, AnyResolver: params.AnyResolver, }, ), }, { MethodName: "ListDomains", Handler: protobuf.NewUnaryHandler( protobuf.UnaryHandlerParams{ Handle: handler.ListDomains, NewRequest: newDomainAPIServiceListDomainsYARPCRequest, AnyResolver: params.AnyResolver, }, ), }, { MethodName: "UpdateDomain", Handler: protobuf.NewUnaryHandler( protobuf.UnaryHandlerParams{ Handle: handler.UpdateDomain, NewRequest: newDomainAPIServiceUpdateDomainYARPCRequest, AnyResolver: params.AnyResolver, }, ), }, { MethodName: "DeprecateDomain", Handler: protobuf.NewUnaryHandler( protobuf.UnaryHandlerParams{ Handle: handler.DeprecateDomain, NewRequest: newDomainAPIServiceDeprecateDomainYARPCRequest, AnyResolver: params.AnyResolver, }, ), }, }, OnewayHandlerParams: []protobuf.BuildProceduresOnewayHandlerParams{}, StreamHandlerParams: []protobuf.BuildProceduresStreamHandlerParams{}, }, ) } // BuildDomainAPIYARPCProcedures prepares an implementation of the DomainAPI service for YARPC registration. func BuildDomainAPIYARPCProcedures(server DomainAPIYARPCServer) []transport.Procedure { return buildDomainAPIYARPCProcedures(buildDomainAPIYARPCProceduresParams{Server: server}) } // FxDomainAPIYARPCClientParams defines the input // for NewFxDomainAPIYARPCClient. It provides the // paramaters to get a DomainAPIYARPCClient in an // Fx application. type FxDomainAPIYARPCClientParams struct { fx.In Provider yarpc.ClientConfig AnyResolver jsonpb.AnyResolver `name:"yarpcfx" optional:"true"` Restriction restriction.Checker `optional:"true"` } // FxDomainAPIYARPCClientResult defines the output // of NewFxDomainAPIYARPCClient. It provides a // DomainAPIYARPCClient to an Fx application. type FxDomainAPIYARPCClientResult struct { fx.Out Client DomainAPIYARPCClient // We are using an fx.Out struct here instead of just returning a client // so that we can add more values or add named versions of the client in // the future without breaking any existing code. } // NewFxDomainAPIYARPCClient provides a DomainAPIYARPCClient // to an Fx application using the given name for routing. // // fx.Provide( // apiv1.NewFxDomainAPIYARPCClient("service-name"), // ... // ) func NewFxDomainAPIYARPCClient(name string, options ...protobuf.ClientOption) interface{} { return func(params FxDomainAPIYARPCClientParams) FxDomainAPIYARPCClientResult { cc := params.Provider.ClientConfig(name) if params.Restriction != nil { if namer, ok := cc.GetUnaryOutbound().(transport.Namer); ok { if err := params.Restriction.Check(protobuf.Encoding, namer.TransportName()); err != nil { panic(err.Error()) } } } return FxDomainAPIYARPCClientResult{ Client: newDomainAPIYARPCClient(cc, params.AnyResolver, options...), } } } // FxDomainAPIYARPCProceduresParams defines the input // for NewFxDomainAPIYARPCProcedures. It provides the // paramaters to get DomainAPIYARPCServer procedures in an // Fx application. type FxDomainAPIYARPCProceduresParams struct { fx.In Server DomainAPIYARPCServer AnyResolver jsonpb.AnyResolver `name:"yarpcfx" optional:"true"` } // FxDomainAPIYARPCProceduresResult defines the output // of NewFxDomainAPIYARPCProcedures. It provides // DomainAPIYARPCServer procedures to an Fx application. // // The procedures are provided to the "yarpcfx" value group. // Dig 1.2 or newer must be used for this feature to work. type FxDomainAPIYARPCProceduresResult struct { fx.Out Procedures []transport.Procedure `group:"yarpcfx"` ReflectionMeta reflection.ServerMeta `group:"yarpcfx"` } // NewFxDomainAPIYARPCProcedures provides DomainAPIYARPCServer procedures to an Fx application. // It expects a DomainAPIYARPCServer to be present in the container. // // fx.Provide( // apiv1.NewFxDomainAPIYARPCProcedures(), // ... // ) func NewFxDomainAPIYARPCProcedures() interface{} { return func(params FxDomainAPIYARPCProceduresParams) FxDomainAPIYARPCProceduresResult { return FxDomainAPIYARPCProceduresResult{ Procedures: buildDomainAPIYARPCProcedures(buildDomainAPIYARPCProceduresParams{ Server: params.Server, AnyResolver: params.AnyResolver, }), ReflectionMeta: reflection.ServerMeta{ ServiceName: "uber.cadence.api.v1.DomainAPI", FileDescriptors: yarpcFileDescriptorClosure2e37d15268893114, }, } } } type _DomainAPIYARPCCaller struct { streamClient protobuf.StreamClient } func (c *_DomainAPIYARPCCaller) RegisterDomain(ctx context.Context, request *RegisterDomainRequest, options ...yarpc.CallOption) (*RegisterDomainResponse, error) { responseMessage, err := c.streamClient.Call(ctx, "RegisterDomain", request, newDomainAPIServiceRegisterDomainYARPCResponse, options...) if responseMessage == nil { return nil, err } response, ok := responseMessage.(*RegisterDomainResponse) if !ok { return nil, protobuf.CastError(emptyDomainAPIServiceRegisterDomainYARPCResponse, responseMessage) } return response, err } func (c *_DomainAPIYARPCCaller) DescribeDomain(ctx context.Context, request *DescribeDomainRequest, options ...yarpc.CallOption) (*DescribeDomainResponse, error) { responseMessage, err := c.streamClient.Call(ctx, "DescribeDomain", request, newDomainAPIServiceDescribeDomainYARPCResponse, options...) if responseMessage == nil { return nil, err } response, ok := responseMessage.(*DescribeDomainResponse) if !ok { return nil, protobuf.CastError(emptyDomainAPIServiceDescribeDomainYARPCResponse, responseMessage) } return response, err } func (c *_DomainAPIYARPCCaller) ListDomains(ctx context.Context, request *ListDomainsRequest, options ...yarpc.CallOption) (*ListDomainsResponse, error) { responseMessage, err := c.streamClient.Call(ctx, "ListDomains", request, newDomainAPIServiceListDomainsYARPCResponse, options...) if responseMessage == nil { return nil, err } response, ok := responseMessage.(*ListDomainsResponse) if !ok { return nil, protobuf.CastError(emptyDomainAPIServiceListDomainsYARPCResponse, responseMessage) } return response, err } func (c *_DomainAPIYARPCCaller) UpdateDomain(ctx context.Context, request *UpdateDomainRequest, options ...yarpc.CallOption) (*UpdateDomainResponse, error) { responseMessage, err := c.streamClient.Call(ctx, "UpdateDomain", request, newDomainAPIServiceUpdateDomainYARPCResponse, options...) if responseMessage == nil { return nil, err } response, ok := responseMessage.(*UpdateDomainResponse) if !ok { return nil, protobuf.CastError(emptyDomainAPIServiceUpdateDomainYARPCResponse, responseMessage) } return response, err } func (c *_DomainAPIYARPCCaller) DeprecateDomain(ctx context.Context, request *DeprecateDomainRequest, options ...yarpc.CallOption) (*DeprecateDomainResponse, error) { responseMessage, err := c.streamClient.Call(ctx, "DeprecateDomain", request, newDomainAPIServiceDeprecateDomainYARPCResponse, options...) if responseMessage == nil { return nil, err } response, ok := responseMessage.(*DeprecateDomainResponse) if !ok { return nil, protobuf.CastError(emptyDomainAPIServiceDeprecateDomainYARPCResponse, responseMessage) } return response, err } type _DomainAPIYARPCHandler struct { server DomainAPIYARPCServer } func (h *_DomainAPIYARPCHandler) RegisterDomain(ctx context.Context, requestMessage proto.Message) (proto.Message, error) { var request *RegisterDomainRequest var ok bool if requestMessage != nil { request, ok = requestMessage.(*RegisterDomainRequest) if !ok { return nil, protobuf.CastError(emptyDomainAPIServiceRegisterDomainYARPCRequest, requestMessage) } } response, err := h.server.RegisterDomain(ctx, request) if response == nil { return nil, err } return response, err } func (h *_DomainAPIYARPCHandler) DescribeDomain(ctx context.Context, requestMessage proto.Message) (proto.Message, error) { var request *DescribeDomainRequest var ok bool if requestMessage != nil { request, ok = requestMessage.(*DescribeDomainRequest) if !ok { return nil, protobuf.CastError(emptyDomainAPIServiceDescribeDomainYARPCRequest, requestMessage) } } response, err := h.server.DescribeDomain(ctx, request) if response == nil { return nil, err } return response, err } func (h *_DomainAPIYARPCHandler) ListDomains(ctx context.Context, requestMessage proto.Message) (proto.Message, error) { var request *ListDomainsRequest var ok bool if requestMessage != nil { request, ok = requestMessage.(*ListDomainsRequest) if !ok { return nil, protobuf.CastError(emptyDomainAPIServiceListDomainsYARPCRequest, requestMessage) } } response, err := h.server.ListDomains(ctx, request) if response == nil { return nil, err } return response, err } func (h *_DomainAPIYARPCHandler) UpdateDomain(ctx context.Context, requestMessage proto.Message) (proto.Message, error) { var request *UpdateDomainRequest var ok bool if requestMessage != nil { request, ok = requestMessage.(*UpdateDomainRequest) if !ok { return nil, protobuf.CastError(emptyDomainAPIServiceUpdateDomainYARPCRequest, requestMessage) } } response, err := h.server.UpdateDomain(ctx, request) if response == nil { return nil, err } return response, err } func (h *_DomainAPIYARPCHandler) DeprecateDomain(ctx context.Context, requestMessage proto.Message) (proto.Message, error) { var request *DeprecateDomainRequest var ok bool if requestMessage != nil { request, ok = requestMessage.(*DeprecateDomainRequest) if !ok { return nil, protobuf.CastError(emptyDomainAPIServiceDeprecateDomainYARPCRequest, requestMessage) } } response, err := h.server.DeprecateDomain(ctx, request) if response == nil { return nil, err } return response, err } func newDomainAPIServiceRegisterDomainYARPCRequest() proto.Message { return &RegisterDomainRequest{} } func newDomainAPIServiceRegisterDomainYARPCResponse() proto.Message { return &RegisterDomainResponse{} } func newDomainAPIServiceDescribeDomainYARPCRequest() proto.Message { return &DescribeDomainRequest{} } func newDomainAPIServiceDescribeDomainYARPCResponse() proto.Message { return &DescribeDomainResponse{} } func newDomainAPIServiceListDomainsYARPCRequest() proto.Message { return &ListDomainsRequest{} } func newDomainAPIServiceListDomainsYARPCResponse() proto.Message { return &ListDomainsResponse{} } func newDomainAPIServiceUpdateDomainYARPCRequest() proto.Message { return &UpdateDomainRequest{} } func newDomainAPIServiceUpdateDomainYARPCResponse() proto.Message { return &UpdateDomainResponse{} } func newDomainAPIServiceDeprecateDomainYARPCRequest() proto.Message { return &DeprecateDomainRequest{} } func newDomainAPIServiceDeprecateDomainYARPCResponse() proto.Message { return &DeprecateDomainResponse{} } var ( emptyDomainAPIServiceRegisterDomainYARPCRequest = &RegisterDomainRequest{} emptyDomainAPIServiceRegisterDomainYARPCResponse = &RegisterDomainResponse{} emptyDomainAPIServiceDescribeDomainYARPCRequest = &DescribeDomainRequest{} emptyDomainAPIServiceDescribeDomainYARPCResponse = &DescribeDomainResponse{} emptyDomainAPIServiceListDomainsYARPCRequest = &ListDomainsRequest{} emptyDomainAPIServiceListDomainsYARPCResponse = &ListDomainsResponse{} emptyDomainAPIServiceUpdateDomainYARPCRequest = &UpdateDomainRequest{} emptyDomainAPIServiceUpdateDomainYARPCResponse = &UpdateDomainResponse{} emptyDomainAPIServiceDeprecateDomainYARPCRequest = &DeprecateDomainRequest{} emptyDomainAPIServiceDeprecateDomainYARPCResponse = &DeprecateDomainResponse{} ) var yarpcFileDescriptorClosure2e37d15268893114 = [][]byte{ // uber/cadence/api/v1/service_domain.proto []byte{ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x57, 0xdb, 0x72, 0xdb, 0x36, 0x10, 0x8d, 0x7c, 0x8b, 0xbd, 0xb2, 0x65, 0x1b, 0xbe, 0x31, 0xca, 0x4c, 0xab, 0x51, 0xa6, 0xad, 0x9a, 0xb6, 0x54, 0xad, 0xf4, 0x36, 0xcd, 0x53, 0x6c, 0x39, 0x75, 0xa7, 0x4d, 0x46, 0x43, 0xc7, 0x0f, 0x6d, 0x1f, 0x58, 0x90, 0x5c, 0xcb, 0x18, 0x51, 0x04, 0x0b, 0x80, 0x72, 0x94, 0x0f, 0xe9, 0x63, 0xbf, 0xab, 0x9f, 0x93, 0x21, 0x08, 0x3a, 0xba, 0x50, 0xb6, 0x26, 0x71, 0xde, 0xa8, 0xc5, 0xd9, 0xb3, 0xcb, 0xdd, 0x3d, 0x4b, 0x01, 0x1a, 0x89, 0x87, 0xa2, 0xe9, 0xd3, 0x00, 0x23, 0x1f, 0x9b, 0x34, 0x66, 0xcd, 0xc1, 0x61, 0x53, 0xa2, 0x18, 0x30, 0x1f, 0xdd, 0x80, 0xf7, 0x29, 0x8b, 0xec, 0x58, 0x70, 0xc5, 0xc9, 0x4e, 0x8a, 0xb4, 0x0d, 0xd2, 0xa6, 0x31, 0xb3, 0x07, 0x87, 0xd5, 0x4f, 0xba, 0x9c, 0x77, 0x43, 0x6c, 0x6a, 0x88, 0x97, 0x5c, 0x34, 0x83, 0x44, 0x50, 0xc5, 0xb8, 0x71, 0xaa, 0xd6, 0x26, 0xcf, 0x2f, 0x18, 0x86, 0x81, 0xdb, 0xa7, 0xb2, 0x97, 0x23, 0x8a, 0x12, 0x18, 0x0d, 0x5c, 0xff, 0x7f, 0x05, 0xf6, 0x1c, 0xec, 0x32, 0xa9, 0x50, 0xb4, 0xf5, 0x81, 0x83, 0xff, 0x24, 0x28, 0x15, 0xf9, 0x0c, 0x2a, 0x12, 0xfd, 0x44, 0x30, 0x35, 0x74, 0x15, 0xef, 0x61, 0x64, 0x95, 0x6a, 0xa5, 0xc6, 0x9a, 0xb3, 0x91, 0x5b, 0x5f, 0xa5, 0x46, 0x42, 0x60, 0x29, 0xa2, 0x7d, 0xb4, 0x16, 0xf4, 0xa1, 0x7e, 0x26, 0x35, 0x28, 0x07, 0x28, 0x7d, 0xc1, 0xe2, 0x34, 0x5b, 0x6b, 0x51, 0x1f, 0x8d, 0x9a, 0xc8, 0xa7, 0x50, 0xe6, 0x57, 0x11, 0x0a, 0x17, 0xfb, 0x94, 0x85, 0xd6, 0x92, 0x46, 0x80, 0x36, 0x9d, 0xa4, 0x16, 0x72, 0x09, 0x8f, 0xae, 0xb8, 0xe8, 0x5d, 0x84, 0xfc, 0xca, 0xc5, 0xd7, 0xe8, 0x27, 0xa9, 0x9b, 0x2b, 0x50, 0x61, 0xa4, 0x9f, 0x62, 0x14, 0x8c, 0x07, 0xd6, 0x72, 0xad, 0xd4, 0x28, 0xb7, 0x1e, 0xd8, 0x59, 0x25, 0xec, 0xbc, 0x12, 0x76, 0xdb, 0x54, 0xca, 0xa9, 0xe5, 0x2c, 0x27, 0x39, 0x89, 0x93, 0x73, 0x74, 0x34, 0x05, 0xe9, 0xc0, 0xaa, 0x1f, 0x26, 0xe9, 0xfb, 0x4b, 0x6b, 0xa5, 0xb6, 0xd8, 0x28, 0xb7, 0xbe, 0xb3, 0x0b, 0xba, 0x61, 0x1f, 0x67, 0x20, 0x07, 0xe3, 0x90, 0xf9, 0x9a, 0xfc, 0x98, 0x47, 0x17, 0xac, 0x9b, 0x47, 0xba, 0x66, 0x21, 0x36, 0xec, 0x50, 0x5f, 0xb1, 0x01, 0xba, 0xc6, 0xe4, 0xea, 0x0a, 0xdd, 0xd7, 0x2f, 0xb9, 0x9d, 0x1d, 0x19, 0xb6, 0x97, 0x69, 0xb9, 0x4e, 0x61, 0x29, 0xa0, 0x8a, 0x5a, 0xab, 0x37, 0x44, 0x2f, 0xec, 0x91, 0xdd, 0xa6, 0x8a, 0x9e, 0x44, 0x4a, 0x0c, 0x1d, 0xcd, 0x40, 0x1a, 0xb0, 0xc5, 0xa4, 0xdb, 0x0d, 0xb9, 0x47, 0x43, 0x33, 0x60, 0xd6, 0x5a, 0xad, 0xd4, 0x58, 0x75, 0x2a, 0x4c, 0xfe, 0xa2, 0xcd, 0x19, 0x01, 0xf9, 0x0b, 0x0e, 0x2e, 0x99, 0x54, 0x5c, 0x0c, 0x5d, 0x2a, 0xfc, 0x4b, 0x36, 0xa0, 0xa1, 0x2b, 0x15, 0x55, 0x89, 0xb4, 0xa0, 0x56, 0x6a, 0x54, 0x5a, 0x8f, 0x0a, 0xd3, 0x78, 0x66, 0xb0, 0x67, 0x1a, 0xea, 0xec, 0x19, 0x8e, 0x71, 0x33, 0xf9, 0x16, 0x76, 0xa7, 0xc8, 0x13, 0xc1, 0xac, 0xb2, 0xae, 0x00, 0x99, 0x70, 0x3a, 0x17, 0x8c, 0x50, 0xa8, 0x0e, 0x98, 0x64, 0x1e, 0x0b, 0xd3, 0x71, 0x9b, 0xcc, 0x68, 0x7d, 0xfe, 0x8c, 0xac, 0x77, 0x34, 0x13, 0x49, 0xfd, 0x00, 0x07, 0x45, 0x21, 0xd2, 0xbc, 0x36, 0x74, 0x5e, 0x7b, 0xd3, 0xae, 0xe7, 0x82, 0x55, 0x7f, 0x84, 0xb5, 0xeb, 0x32, 0x93, 0x2d, 0x58, 0xec, 0xe1, 0xd0, 0x28, 0x21, 0x7d, 0x24, 0xbb, 0xb0, 0x3c, 0xa0, 0x61, 0x92, 0x0b, 0x20, 0xfb, 0xf1, 0xf3, 0xc2, 0x4f, 0xa5, 0xba, 0x05, 0xfb, 0x93, 0x5d, 0x93, 0x31, 0x8f, 0x24, 0xd6, 0xff, 0x5b, 0x85, 0x9d, 0xf3, 0x38, 0xa0, 0x0a, 0xef, 0x4c, 0x72, 0x4f, 0xa1, 0x9c, 0x68, 0x46, 0x2d, 0x7f, 0xdd, 0xc3, 0x72, 0xab, 0x3a, 0xa5, 0x8b, 0xe7, 0xe9, 0x86, 0x78, 0x41, 0x65, 0xcf, 0x81, 0x0c, 0x9e, 0x3e, 0x4f, 0xea, 0xb5, 0x7c, 0xab, 0x5e, 0xd7, 0xa7, 0xf4, 0xfa, 0xdc, 0xcc, 0xf0, 0x86, 0x9e, 0xe1, 0x56, 0x61, 0xab, 0x0a, 0x5e, 0x79, 0x6a, 0x82, 0xe7, 0xd4, 0x7d, 0xe5, 0xc3, 0x75, 0x7f, 0x0c, 0xeb, 0x1e, 0x0d, 0x5c, 0x8f, 0x45, 0x54, 0x30, 0x94, 0xd6, 0xa6, 0xa6, 0xac, 0x15, 0x66, 0x7e, 0x44, 0x83, 0x23, 0x83, 0x73, 0xca, 0xde, 0xbb, 0x1f, 0x37, 0xc9, 0x68, 0xeb, 0xa3, 0xc9, 0x68, 0xfb, 0x3d, 0x65, 0x44, 0x3e, 0xb2, 0x8c, 0x76, 0x6e, 0x90, 0xd1, 0xac, 0xa5, 0xb8, 0x3b, 0x6b, 0x29, 0x8e, 0xae, 0xe5, 0xbd, 0x3b, 0x59, 0xcb, 0x8f, 0x61, 0x3b, 0xc0, 0x10, 0x15, 0xba, 0xd7, 0x7d, 0x1f, 0x5a, 0xfb, 0x3a, 0xfe, 0x66, 0x76, 0x90, 0xb7, 0x79, 0x48, 0xda, 0xb0, 0x75, 0x41, 0x59, 0xc8, 0x07, 0x28, 0x5c, 0xc5, 0xfa, 0xc8, 0x13, 0x65, 0x1d, 0xdc, 0x36, 0x73, 0x9b, 0xb9, 0xcb, 0xab, 0xcc, 0xe3, 0xfd, 0x57, 0xc7, 0x6f, 0xb0, 0x3b, 0x2e, 0x96, 0x6c, 0x71, 0x90, 0x27, 0xb0, 0x62, 0xb6, 0x7a, 0x49, 0x27, 0xf3, 0xb0, 0xb0, 0x24, 0xc6, 0xc9, 0x40, 0xeb, 0x67, 0xb0, 0xdf, 0xc6, 0x58, 0xa0, 0x7f, 0x87, 0xfb, 0xa6, 0xfe, 0x00, 0x0e, 0xa6, 0x48, 0xcd, 0x76, 0x7b, 0x09, 0x7b, 0x6d, 0xbd, 0x3a, 0xbc, 0x89, 0x70, 0x5b, 0xb0, 0xc0, 0x82, 0x2c, 0xc4, 0xe9, 0x3d, 0x67, 0x81, 0x05, 0x64, 0x77, 0x94, 0xf9, 0xf4, 0x5e, 0xc6, 0x7d, 0xb4, 0x91, 0xaf, 0x23, 0x0f, 0x5d, 0x6f, 0x58, 0x7f, 0x91, 0xe6, 0x3f, 0xce, 0xf7, 0x21, 0xe5, 0xf8, 0x03, 0xc8, 0xef, 0x4c, 0xaa, 0xcc, 0x2a, 0xf3, 0xdc, 0x1e, 0xc2, 0x5a, 0x4c, 0xbb, 0xe8, 0x4a, 0xf6, 0x06, 0x35, 0xdb, 0xb2, 0xb3, 0x9a, 0x1a, 0xce, 0xd8, 0x1b, 0x24, 0x9f, 0xc3, 0x66, 0x84, 0xaf, 0x95, 0xab, 0x11, 0x59, 0xa1, 0xd2, 0x8c, 0xd7, 0x9d, 0x8d, 0xd4, 0xdc, 0xa1, 0x5d, 0xd4, 0x85, 0xaa, 0x2b, 0xd8, 0x19, 0xa3, 0x36, 0x69, 0x7e, 0x0f, 0xf7, 0xb3, 0xd8, 0xd2, 0x2a, 0xe9, 0x49, 0xbe, 0x31, 0xcf, 0x1c, 0x3b, 0x6f, 0xd4, 0xd6, 0xbf, 0x4b, 0xb0, 0x96, 0xf9, 0x3e, 0xeb, 0xfc, 0x4a, 0x18, 0x54, 0xc6, 0xbf, 0x3a, 0xe4, 0xf1, 0xfc, 0x7f, 0x28, 0xaa, 0x5f, 0xcd, 0x85, 0x35, 0xef, 0xc5, 0xa0, 0x32, 0xde, 0x98, 0x19, 0xa1, 0x0a, 0xa7, 0x61, 0x46, 0xa8, 0x19, 0x9d, 0xfe, 0x1b, 0xca, 0x23, 0x95, 0x25, 0x5f, 0x14, 0xfa, 0x4e, 0xb7, 0xb5, 0xda, 0xb8, 0x1d, 0x68, 0x22, 0xf8, 0xb0, 0x3e, 0x2a, 0x39, 0xd2, 0x98, 0xf7, 0x13, 0x56, 0xfd, 0x72, 0x0e, 0xa4, 0x09, 0x12, 0xc2, 0xe6, 0x84, 0x6a, 0xc8, 0xac, 0x32, 0x14, 0x09, 0xb6, 0xfa, 0xf5, 0x7c, 0xe0, 0x2c, 0xda, 0x91, 0x07, 0x07, 0x3e, 0xef, 0x17, 0xb9, 0x1c, 0x91, 0x0c, 0x7a, 0x96, 0xdd, 0x45, 0x3a, 0xe9, 0x2a, 0xeb, 0x94, 0xfe, 0x3c, 0xec, 0x32, 0x75, 0x99, 0x78, 0xb6, 0xcf, 0xfb, 0xcd, 0xd1, 0x9b, 0xc3, 0x37, 0x2c, 0x08, 0x9b, 0x5d, 0x9e, 0x5d, 0x34, 0xcc, 0x35, 0xe2, 0x29, 0x8d, 0xd9, 0xe0, 0xd0, 0x5b, 0xd1, 0xb6, 0x27, 0x6f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x78, 0x03, 0xa0, 0xb2, 0xeb, 0x0c, 0x00, 0x00, }, // google/protobuf/duration.proto []byte{ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4b, 0xcf, 0xcf, 0x4f, 0xcf, 0x49, 0xd5, 0x2f, 0x28, 0xca, 0x2f, 0xc9, 0x4f, 0x2a, 0x4d, 0xd3, 0x4f, 0x29, 0x2d, 0x4a, 0x2c, 0xc9, 0xcc, 0xcf, 0xd3, 0x03, 0x8b, 0x08, 0xf1, 0x43, 0xe4, 0xf5, 0x60, 0xf2, 0x4a, 0x56, 0x5c, 0x1c, 0x2e, 0x50, 0x25, 0x42, 0x12, 0x5c, 0xec, 0xc5, 0xa9, 0xc9, 0xf9, 0x79, 0x29, 0xc5, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0xcc, 0x41, 0x30, 0xae, 0x90, 0x08, 0x17, 0x6b, 0x5e, 0x62, 0x5e, 0x7e, 0xb1, 0x04, 0x93, 0x02, 0xa3, 0x06, 0x6b, 0x10, 0x84, 0xe3, 0xd4, 0xcc, 0xc8, 0x25, 0x9c, 0x9c, 0x9f, 0xab, 0x87, 0x66, 0xa6, 0x13, 0x2f, 0xcc, 0xc4, 0x00, 0x90, 0x48, 0x00, 0x63, 0x94, 0x21, 0x54, 0x45, 0x7a, 0x7e, 0x4e, 0x62, 0x5e, 0xba, 0x5e, 0x7e, 0x51, 0x3a, 0xc2, 0x81, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0xfa, 0xd9, 0x79, 0xf9, 0xe5, 0x79, 0x70, 0xc7, 0x16, 0x24, 0xfd, 0x60, 0x64, 0x5c, 0xc4, 0xc4, 0xec, 0x1e, 0xe0, 0xb4, 0x8a, 0x49, 0xce, 0x1d, 0xa2, 0x39, 0x00, 0xaa, 0x43, 0x2f, 0x3c, 0x35, 0x27, 0xc7, 0x1b, 0xa4, 0x3e, 0x04, 0xa4, 0x35, 0x89, 0x0d, 0x6c, 0x94, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0xef, 0x8a, 0xb4, 0xc3, 0xfb, 0x00, 0x00, 0x00, }, // google/protobuf/field_mask.proto []byte{ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x48, 0xcf, 0xcf, 0x4f, 0xcf, 0x49, 0xd5, 0x2f, 0x28, 0xca, 0x2f, 0xc9, 0x4f, 0x2a, 0x4d, 0xd3, 0x4f, 0xcb, 0x4c, 0xcd, 0x49, 0x89, 0xcf, 0x4d, 0x2c, 0xce, 0xd6, 0x03, 0x8b, 0x09, 0xf1, 0x43, 0x54, 0xe8, 0xc1, 0x54, 0x28, 0x29, 0x72, 0x71, 0xba, 0x81, 0x14, 0xf9, 0x26, 0x16, 0x67, 0x0b, 0x89, 0x70, 0xb1, 0x16, 0x24, 0x96, 0x64, 0x14, 0x4b, 0x30, 0x2a, 0x30, 0x6b, 0x70, 0x06, 0x41, 0x38, 0x4e, 0xad, 0x8c, 0x5c, 0xc2, 0xc9, 0xf9, 0xb9, 0x7a, 0x68, 0x5a, 0x9d, 0xf8, 0xe0, 0x1a, 0x03, 0x40, 0x42, 0x01, 0x8c, 0x51, 0x46, 0x50, 0x25, 0xe9, 0xf9, 0x39, 0x89, 0x79, 0xe9, 0x7a, 0xf9, 0x45, 0xe9, 0x08, 0xa7, 0x94, 0x54, 0x16, 0xa4, 0x16, 0xeb, 0x67, 0xe7, 0xe5, 0x97, 0xe7, 0x41, 0x9c, 0x05, 0x72, 0x55, 0x41, 0xd2, 0x0f, 0x46, 0xc6, 0x45, 0x4c, 0xcc, 0xee, 0x01, 0x4e, 0xab, 0x98, 0xe4, 0xdc, 0x21, 0xba, 0x03, 0xa0, 0x5a, 0xf4, 0xc2, 0x53, 0x73, 0x72, 0xbc, 0x41, 0x1a, 0x42, 0x40, 0x7a, 0x93, 0xd8, 0xc0, 0x66, 0x19, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x94, 0x66, 0x94, 0x9d, 0xe6, 0x00, 0x00, 0x00, }, // uber/cadence/api/v1/domain.proto []byte{ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x56, 0x5f, 0x6f, 0xdb, 0x36, 0x10, 0x9f, 0xec, 0x24, 0x4b, 0x4e, 0x8e, 0xe3, 0x32, 0x4d, 0xa3, 0x78, 0xc3, 0xa2, 0xa6, 0x28, 0xe0, 0x15, 0x98, 0xdc, 0x78, 0xc3, 0xd6, 0x6e, 0xd8, 0x83, 0x63, 0xa9, 0x99, 0x87, 0x2c, 0x0b, 0x64, 0x37, 0x03, 0x96, 0x07, 0x81, 0x96, 0x68, 0x9b, 0xa8, 0x2c, 0x0a, 0x94, 0xe4, 0x34, 0x6f, 0xc3, 0x3e, 0xd6, 0x1e, 0xf7, 0x29, 0xf6, 0x71, 0x06, 0x51, 0x94, 0xe2, 0x3f, 0x42, 0xd2, 0x37, 0xf2, 0xee, 0xf7, 0xfb, 0xdd, 0xf1, 0x74, 0x47, 0x0a, 0xf4, 0x64, 0x44, 0x78, 0xdb, 0xc5, 0x1e, 0x09, 0x5c, 0xd2, 0xc6, 0x21, 0x6d, 0xcf, 0x4f, 0xdb, 0x1e, 0x9b, 0x61, 0x1a, 0x18, 0x21, 0x67, 0x31, 0x43, 0xfb, 0x29, 0xc2, 0x90, 0x08, 0x03, 0x87, 0xd4, 0x98, 0x9f, 0x36, 0xbf, 0x9a, 0x30, 0x36, 0xf1, 0x49, 0x5b, 0x40, 0x46, 0xc9, 0xb8, 0xed, 0x25, 0x1c, 0xc7, 0x94, 0x49, 0x52, 0xf3, 0x78, 0xd5, 0x1f, 0xd3, 0x19, 0x89, 0x62, 0x3c, 0x0b, 0x25, 0xa0, 0x34, 0xae, 0xcb, 0x66, 0xb3, 0x5c, 0xe2, 0xe4, 0xbf, 0x1d, 0xd8, 0x32, 0x45, 0x22, 0xa8, 0x0e, 0x15, 0xea, 0x69, 0x8a, 0xae, 0xb4, 0x76, 0xec, 0x0a, 0xf5, 0x10, 0x82, 0x8d, 0x00, 0xcf, 0x88, 0x56, 0x11, 0x16, 0xb1, 0x46, 0x6f, 0x61, 0x2b, 0x8a, 0x71, 0x9c, 0x44, 0x5a, 0x55, 0x57, 0x5a, 0xf5, 0xce, 0x73, 0xa3, 0x24, 0x6f, 0x23, 0x13, 0x1c, 0x08, 0xa0, 0x2d, 0x09, 0x48, 0x07, 0xd5, 0x23, 0x91, 0xcb, 0x69, 0x98, 0x9e, 0x40, 0xdb, 0x10, 0xaa, 0x8b, 0x26, 0x74, 0x0c, 0x2a, 0xbb, 0x0d, 0x08, 0x77, 0xc8, 0x0c, 0x53, 0x5f, 0xdb, 0x14, 0x08, 0x10, 0x26, 0x2b, 0xb5, 0xa0, 0xb7, 0xb0, 0xe1, 0xe1, 0x18, 0x6b, 0x5b, 0x7a, 0xb5, 0xa5, 0x76, 0x5e, 0x3e, 0x10, 0xdb, 0x30, 0x71, 0x8c, 0xad, 0x20, 0xe6, 0x77, 0xb6, 0xa0, 0xa0, 0x29, 0xbc, 0xb8, 0x65, 0xfc, 0xc3, 0xd8, 0x67, 0xb7, 0x0e, 0xf9, 0x48, 0xdc, 0x24, 0x8d, 0xe8, 0x70, 0x12, 0x93, 0x40, 0xac, 0x42, 0xc2, 0x29, 0xf3, 0xb4, 0xcf, 0x75, 0xa5, 0xa5, 0x76, 0x8e, 0x8c, 0xac, 0xb0, 0x46, 0x5e, 0x58, 0xc3, 0x94, 0x85, 0xb7, 0xf5, 0x5c, 0xc5, 0xca, 0x45, 0xec, 0x5c, 0xe3, 0x4a, 0x48, 0xa0, 0x1e, 0xd4, 0x46, 0xd8, 0x73, 0x46, 0x34, 0xc0, 0x9c, 0x92, 0x48, 0xdb, 0x16, 0x92, 0x7a, 0x69, 0xb2, 0x67, 0xd8, 0x3b, 0x93, 0x38, 0x5b, 0x1d, 0xdd, 0x6f, 0xd0, 0x0d, 0x1c, 0x4e, 0x69, 0x14, 0x33, 0x7e, 0xe7, 0x60, 0xee, 0x4e, 0xe9, 0x1c, 0xfb, 0x8e, 0x2c, 0xfc, 0x8e, 0x28, 0xfc, 0x8b, 0x52, 0xbd, 0xae, 0xc4, 0xca, 0xd2, 0x1f, 0x48, 0x8d, 0x65, 0x33, 0x7a, 0x0d, 0x4f, 0xd7, 0xc4, 0x13, 0x4e, 0x35, 0x10, 0x05, 0x47, 0x2b, 0xa4, 0xf7, 0x9c, 0x22, 0x0c, 0xcd, 0x39, 0x8d, 0xe8, 0x88, 0xfa, 0x34, 0x5e, 0xcf, 0x48, 0xfd, 0xf4, 0x8c, 0xb4, 0x7b, 0x99, 0x95, 0xa4, 0xbe, 0x87, 0xc3, 0xb2, 0x10, 0x69, 0x5e, 0x35, 0x91, 0xd7, 0xc1, 0x3a, 0x35, 0x4d, 0xcd, 0x80, 0x7d, 0xec, 0xc6, 0x74, 0x4e, 0x1c, 0xd7, 0x4f, 0xa2, 0x98, 0x70, 0x47, 0x34, 0xed, 0xae, 0xe0, 0x3c, 0xc9, 0x5c, 0xbd, 0xcc, 0x73, 0x99, 0x76, 0xf0, 0x15, 0x6c, 0x4b, 0x60, 0xa4, 0xd5, 0x45, 0x1f, 0x7d, 0x57, 0x9a, 0xb8, 0xe4, 0xd8, 0x24, 0xf4, 0xa9, 0x2b, 0xbe, 0x7d, 0x8f, 0x05, 0x63, 0x3a, 0xc9, 0x1b, 0xa1, 0x50, 0x41, 0x5f, 0x43, 0x63, 0x8c, 0xa9, 0xcf, 0xe6, 0x84, 0x3b, 0x73, 0xc2, 0xa3, 0xb4, 0xbb, 0xf7, 0x74, 0xa5, 0x55, 0xb5, 0xf7, 0x72, 0xfb, 0x75, 0x66, 0x46, 0x2d, 0x68, 0xd0, 0xc8, 0x99, 0xf8, 0x6c, 0x84, 0x7d, 0x27, 0x9b, 0x7f, 0xad, 0xa1, 0x2b, 0xad, 0x6d, 0xbb, 0x4e, 0xa3, 0x73, 0x61, 0x96, 0xc3, 0xf8, 0x0e, 0x76, 0x0b, 0x51, 0x1a, 0x8c, 0x99, 0xf6, 0x44, 0xb4, 0x51, 0xf9, 0xbc, 0xbd, 0x93, 0xc8, 0x7e, 0x30, 0x66, 0x76, 0x6d, 0xbc, 0xb0, 0x43, 0x37, 0x69, 0x44, 0xe6, 0x8b, 0x9c, 0x9d, 0x09, 0x67, 0x49, 0x18, 0x69, 0x48, 0x48, 0xbd, 0x2e, 0x95, 0xea, 0xe7, 0xe0, 0xf3, 0x14, 0xbb, 0x7c, 0xe4, 0x3d, 0xba, 0xe4, 0x8c, 0x90, 0x0b, 0x07, 0x38, 0xba, 0x0b, 0x5c, 0xa7, 0x18, 0x2d, 0x57, 0x10, 0xb4, 0x7d, 0x11, 0xa1, 0x5d, 0xde, 0x11, 0x29, 0xe3, 0x0f, 0x49, 0x58, 0x0e, 0xb0, 0x8f, 0xd7, 0x7d, 0xcd, 0x1f, 0x60, 0xa7, 0x18, 0x66, 0xd4, 0x80, 0xea, 0x07, 0x72, 0x27, 0x2f, 0xa9, 0x74, 0x89, 0x9e, 0xc2, 0xe6, 0x1c, 0xfb, 0x49, 0x7e, 0x4d, 0x65, 0x9b, 0x1f, 0x2b, 0x6f, 0x94, 0x13, 0x13, 0x8e, 0x1f, 0xf9, 0x88, 0xe8, 0x39, 0xd4, 0x96, 0xba, 0x26, 0xd3, 0x55, 0xdd, 0xfb, 0x7e, 0x39, 0xf9, 0x47, 0x01, 0x75, 0x61, 0x4c, 0xd1, 0xaf, 0xb0, 0x5d, 0x8c, 0xb6, 0x22, 0xfa, 0xc7, 0x78, 0x6c, 0xb4, 0x8d, 0x7c, 0x91, 0x5d, 0x48, 0x05, 0xbf, 0xe9, 0xc0, 0xee, 0x92, 0xab, 0xe4, 0x78, 0x6f, 0x16, 0x8f, 0xa7, 0x76, 0x4e, 0x1e, 0x8c, 0x75, 0x27, 0x1a, 0x60, 0xa1, 0x04, 0x7f, 0x2b, 0xb0, 0xbb, 0xe4, 0x44, 0xcf, 0x60, 0x8b, 0x13, 0x1c, 0xb1, 0x40, 0x06, 0x91, 0x3b, 0xd4, 0x84, 0x6d, 0x16, 0x12, 0x8e, 0x63, 0xc6, 0x65, 0x25, 0x8b, 0x3d, 0xfa, 0x19, 0x6a, 0x2e, 0x27, 0x38, 0x26, 0x9e, 0x93, 0x3e, 0x30, 0xe2, 0xea, 0x57, 0x3b, 0xcd, 0xb5, 0x4b, 0x72, 0x98, 0xbf, 0x3e, 0xb6, 0x2a, 0xf1, 0xa9, 0xe5, 0xe4, 0xdf, 0x0a, 0xd4, 0x16, 0x3b, 0xb4, 0x74, 0x60, 0x94, 0xf2, 0x81, 0x19, 0x82, 0x56, 0x40, 0xa3, 0x18, 0xf3, 0xd8, 0x29, 0x9e, 0x38, 0x59, 0x91, 0x87, 0xd2, 0x78, 0x96, 0x73, 0x07, 0x29, 0xb5, 0xb0, 0xa3, 0x6b, 0x38, 0x2a, 0x54, 0xc9, 0xc7, 0x90, 0x72, 0xb2, 0x20, 0xfb, 0xf8, 0xe9, 0x0e, 0x73, 0xb2, 0x25, 0xb8, 0xf7, 0xba, 0x1d, 0x38, 0x70, 0xd9, 0x2c, 0xf4, 0x49, 0x5a, 0xaa, 0x68, 0x8a, 0xb9, 0xe7, 0xb8, 0x2c, 0x09, 0x62, 0xf1, 0xd8, 0x6d, 0xda, 0xfb, 0x85, 0x73, 0x90, 0xfa, 0x7a, 0xa9, 0x0b, 0xbd, 0x84, 0x7a, 0x48, 0x02, 0x8f, 0x06, 0x93, 0x8c, 0x11, 0x69, 0x9b, 0x7a, 0xb5, 0xb5, 0x69, 0xef, 0x4a, 0xab, 0x80, 0x46, 0xaf, 0xfe, 0x52, 0xa0, 0xb6, 0xf8, 0xac, 0xa2, 0x23, 0x38, 0x30, 0x7f, 0xff, 0xad, 0xdb, 0xbf, 0x74, 0x06, 0xc3, 0xee, 0xf0, 0xfd, 0xc0, 0xe9, 0x5f, 0x5e, 0x77, 0x2f, 0xfa, 0x66, 0xe3, 0x33, 0xf4, 0x25, 0x68, 0xcb, 0x2e, 0xdb, 0x3a, 0xef, 0x0f, 0x86, 0x96, 0x6d, 0x99, 0x0d, 0x65, 0xdd, 0x6b, 0x5a, 0x57, 0xb6, 0xd5, 0xeb, 0x0e, 0x2d, 0xb3, 0x51, 0x59, 0x97, 0x35, 0xad, 0x0b, 0x2b, 0x75, 0x55, 0x5f, 0x4d, 0xa1, 0xbe, 0x72, 0x67, 0x7f, 0x01, 0x87, 0x5d, 0xbb, 0xf7, 0x4b, 0xff, 0xba, 0x7b, 0x51, 0x9a, 0xc5, 0xaa, 0xd3, 0xec, 0x0f, 0xba, 0x67, 0x17, 0x22, 0x8b, 0x12, 0xaa, 0x75, 0x99, 0x39, 0x2b, 0x67, 0x37, 0x70, 0xe8, 0xb2, 0x59, 0x59, 0xab, 0x9f, 0xa9, 0x59, 0x11, 0xae, 0xd2, 0xaf, 0x72, 0xa5, 0xfc, 0x79, 0x3a, 0xa1, 0xf1, 0x34, 0x19, 0x19, 0x2e, 0x9b, 0xb5, 0x17, 0xff, 0x75, 0xbe, 0xa1, 0x9e, 0xdf, 0x9e, 0xb0, 0xec, 0xcf, 0x48, 0xfe, 0xf8, 0xfc, 0x84, 0x43, 0x3a, 0x3f, 0x1d, 0x6d, 0x09, 0xdb, 0xb7, 0xff, 0x07, 0x00, 0x00, 0xff, 0xff, 0x33, 0x96, 0xec, 0x45, 0x94, 0x09, 0x00, 0x00, }, // google/protobuf/timestamp.proto []byte{ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4f, 0xcf, 0xcf, 0x4f, 0xcf, 0x49, 0xd5, 0x2f, 0x28, 0xca, 0x2f, 0xc9, 0x4f, 0x2a, 0x4d, 0xd3, 0x2f, 0xc9, 0xcc, 0x4d, 0x2d, 0x2e, 0x49, 0xcc, 0x2d, 0xd0, 0x03, 0x0b, 0x09, 0xf1, 0x43, 0x14, 0xe8, 0xc1, 0x14, 0x28, 0x59, 0x73, 0x71, 0x86, 0xc0, 0xd4, 0x08, 0x49, 0x70, 0xb1, 0x17, 0xa7, 0x26, 0xe7, 0xe7, 0xa5, 0x14, 0x4b, 0x30, 0x2a, 0x30, 0x6a, 0x30, 0x07, 0xc1, 0xb8, 0x42, 0x22, 0x5c, 0xac, 0x79, 0x89, 0x79, 0xf9, 0xc5, 0x12, 0x4c, 0x0a, 0x8c, 0x1a, 0xac, 0x41, 0x10, 0x8e, 0x53, 0x2b, 0x23, 0x97, 0x70, 0x72, 0x7e, 0xae, 0x1e, 0x9a, 0xa1, 0x4e, 0x7c, 0x70, 0x23, 0x03, 0x40, 0x42, 0x01, 0x8c, 0x51, 0x46, 0x50, 0x25, 0xe9, 0xf9, 0x39, 0x89, 0x79, 0xe9, 0x7a, 0xf9, 0x45, 0xe9, 0x48, 0x6e, 0xac, 0x2c, 0x48, 0x2d, 0xd6, 0xcf, 0xce, 0xcb, 0x2f, 0xcf, 0x43, 0xb8, 0xb7, 0x20, 0xe9, 0x07, 0x23, 0xe3, 0x22, 0x26, 0x66, 0xf7, 0x00, 0xa7, 0x55, 0x4c, 0x72, 0xee, 0x10, 0xdd, 0x01, 0x50, 0x2d, 0x7a, 0xe1, 0xa9, 0x39, 0x39, 0xde, 0x20, 0x0d, 0x21, 0x20, 0xbd, 0x49, 0x6c, 0x60, 0xb3, 0x8c, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0xae, 0x65, 0xce, 0x7d, 0xff, 0x00, 0x00, 0x00, }, // uber/cadence/api/v1/common.proto []byte{ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x56, 0x51, 0x73, 0xdb, 0xc4, 0x13, 0xff, 0x2b, 0x8e, 0x9d, 0x64, 0xed, 0x26, 0xfe, 0x5f, 0x48, 0xe2, 0xa4, 0x04, 0x52, 0xcd, 0x30, 0x0d, 0x1d, 0x90, 0x27, 0xee, 0x4b, 0x87, 0x4e, 0x01, 0x27, 0x76, 0x12, 0xb5, 0xc1, 0x36, 0xb2, 0x69, 0xa6, 0x30, 0x83, 0xe6, 0x2c, 0x9d, 0xdc, 0xc3, 0xd2, 0x9d, 0x38, 0x9d, 0x9c, 0xf8, 0x85, 0xe1, 0x93, 0xf0, 0xc0, 0xd7, 0xe1, 0x91, 0x2f, 0xc4, 0x48, 0x3a, 0xc5, 0x76, 0x71, 0xa6, 0x3c, 0x30, 0xbc, 0xdd, 0xed, 0xef, 0xb7, 0xbb, 0xbf, 0x3b, 0xed, 0xae, 0x0e, 0x8e, 0xe2, 0x21, 0x11, 0x75, 0x07, 0xbb, 0x84, 0x39, 0xa4, 0x8e, 0x43, 0x5a, 0x9f, 0x9c, 0xd4, 0x1d, 0x1e, 0x04, 0x9c, 0x19, 0xa1, 0xe0, 0x92, 0xa3, 0xed, 0x84, 0x61, 0x28, 0x86, 0x81, 0x43, 0x6a, 0x4c, 0x4e, 0x0e, 0x3e, 0x1a, 0x71, 0x3e, 0xf2, 0x49, 0x3d, 0xa5, 0x0c, 0x63, 0xaf, 0xee, 0xc6, 0x02, 0x4b, 0x9a, 0x3b, 0xe9, 0xaf, 0xe0, 0xff, 0xd7, 0x5c, 0x8c, 0x3d, 0x9f, 0xdf, 0xb4, 0x6f, 0x89, 0x13, 0x27, 0x10, 0xfa, 0x18, 0xca, 0x37, 0xca, 0x68, 0x53, 0xb7, 0xa6, 0x1d, 0x69, 0xc7, 0x1b, 0x16, 0xe4, 0x26, 0xd3, 0x45, 0x3b, 0x50, 0x12, 0x31, 0x4b, 0xb0, 0x95, 0x14, 0x2b, 0x8a, 0x98, 0x99, 0xae, 0xae, 0x43, 0x25, 0x0f, 0x36, 0x98, 0x86, 0x04, 0x21, 0x58, 0x65, 0x38, 0x20, 0x2a, 0x40, 0xba, 0x4e, 0x38, 0x4d, 0x47, 0xd2, 0x09, 0x95, 0xd3, 0x7b, 0x39, 0x87, 0xb0, 0xd6, 0xc3, 0x53, 0x9f, 0x63, 0x37, 0x81, 0x5d, 0x2c, 0x71, 0x0a, 0x57, 0xac, 0x74, 0xad, 0x3f, 0x87, 0xb5, 0x73, 0x4c, 0xfd, 0x58, 0x10, 0xb4, 0x0b, 0x25, 0x41, 0x70, 0xc4, 0x99, 0xf2, 0x57, 0x3b, 0x54, 0x83, 0x35, 0x97, 0x48, 0x4c, 0xfd, 0x28, 0x55, 0x58, 0xb1, 0xf2, 0xad, 0xfe, 0x9b, 0x06, 0xab, 0xdf, 0x90, 0x80, 0xa3, 0x17, 0x50, 0xf2, 0x28, 0xf1, 0xdd, 0xa8, 0xa6, 0x1d, 0x15, 0x8e, 0xcb, 0x8d, 0x4f, 0x8c, 0x25, 0xf7, 0x67, 0x24, 0x54, 0xe3, 0x3c, 0xe5, 0xb5, 0x99, 0x14, 0x53, 0x4b, 0x39, 0x1d, 0x5c, 0x43, 0x79, 0xce, 0x8c, 0xaa, 0x50, 0x18, 0x93, 0xa9, 0x52, 0x91, 0x2c, 0x51, 0x03, 0x8a, 0x13, 0xec, 0xc7, 0x24, 0x15, 0x50, 0x6e, 0x7c, 0xb8, 0x34, 0xbc, 0x3a, 0xa6, 0x95, 0x51, 0xbf, 0x58, 0x79, 0xa6, 0xe9, 0xbf, 0x6b, 0x50, 0xba, 0x24, 0xd8, 0x25, 0x02, 0x7d, 0xf5, 0x8e, 0xc4, 0xc7, 0x4b, 0x63, 0x64, 0xe4, 0xff, 0x56, 0xe4, 0x9f, 0x1a, 0x54, 0xfb, 0x04, 0x0b, 0xe7, 0x6d, 0x53, 0x4a, 0x41, 0x87, 0xb1, 0x24, 0x11, 0xb2, 0x61, 0x93, 0x32, 0x97, 0xdc, 0x12, 0xd7, 0x5e, 0x90, 0xfd, 0x6c, 0x69, 0xd4, 0x77, 0xdd, 0x0d, 0x33, 0xf3, 0x9d, 0x3f, 0xc7, 0x03, 0x3a, 0x6f, 0x3b, 0xf8, 0x11, 0xd0, 0xdf, 0x49, 0xff, 0xe2, 0xa9, 0x3c, 0x58, 0x6f, 0x61, 0x89, 0x4f, 0x7d, 0x3e, 0x44, 0xe7, 0xf0, 0x80, 0x30, 0x87, 0xbb, 0x94, 0x8d, 0x6c, 0x39, 0x0d, 0xb3, 0x02, 0xdd, 0x6c, 0x3c, 0x5a, 0x1a, 0xab, 0xad, 0x98, 0x49, 0x45, 0x5b, 0x15, 0x32, 0xb7, 0xbb, 0x2b, 0xe0, 0x95, 0xb9, 0x02, 0xee, 0x65, 0x4d, 0x47, 0xc4, 0x6b, 0x22, 0x22, 0xca, 0x99, 0xc9, 0x3c, 0x9e, 0x10, 0x69, 0x10, 0xfa, 0x79, 0x23, 0x24, 0x6b, 0xf4, 0x18, 0xb6, 0x3c, 0x82, 0x65, 0x2c, 0x88, 0x3d, 0xc9, 0xa8, 0xaa, 0xe1, 0x36, 0x95, 0x59, 0x05, 0xd0, 0x5f, 0xc1, 0x5e, 0x3f, 0x0e, 0x43, 0x2e, 0x24, 0x71, 0xcf, 0x7c, 0x4a, 0x98, 0x54, 0x48, 0x94, 0xf4, 0xea, 0x88, 0xdb, 0x91, 0x3b, 0x56, 0x91, 0x8b, 0x23, 0xde, 0x77, 0xc7, 0x68, 0x1f, 0xd6, 0x7f, 0xc2, 0x13, 0x9c, 0x02, 0x59, 0xcc, 0xb5, 0x64, 0xdf, 0x77, 0xc7, 0xfa, 0xaf, 0x05, 0x28, 0x5b, 0x44, 0x8a, 0x69, 0x8f, 0xfb, 0xd4, 0x99, 0xa2, 0x16, 0x54, 0x29, 0xa3, 0x92, 0x62, 0xdf, 0xa6, 0x4c, 0x12, 0x31, 0xc1, 0x99, 0xca, 0x72, 0x63, 0xdf, 0xc8, 0xc6, 0x8b, 0x91, 0x8f, 0x17, 0xa3, 0xa5, 0xc6, 0x8b, 0xb5, 0xa5, 0x5c, 0x4c, 0xe5, 0x81, 0xea, 0xb0, 0x3d, 0xc4, 0xce, 0x98, 0x7b, 0x9e, 0xed, 0x70, 0xe2, 0x79, 0xd4, 0x49, 0x64, 0xa6, 0xb9, 0x35, 0x0b, 0x29, 0xe8, 0x6c, 0x86, 0x24, 0x69, 0x03, 0x7c, 0x4b, 0x83, 0x38, 0x98, 0xa5, 0x2d, 0xbc, 0x37, 0xad, 0x72, 0xb9, 0x4b, 0xfb, 0xe9, 0x2c, 0x0a, 0x96, 0x92, 0x04, 0xa1, 0x8c, 0x6a, 0xab, 0x47, 0xda, 0x71, 0xf1, 0x8e, 0xda, 0x54, 0x66, 0xf4, 0x02, 0x1e, 0x32, 0xce, 0x6c, 0x91, 0x1c, 0x1d, 0x0f, 0x7d, 0x62, 0x13, 0x21, 0xb8, 0xb0, 0xb3, 0x91, 0x12, 0xd5, 0x8a, 0x47, 0x85, 0xe3, 0x0d, 0xab, 0xc6, 0x38, 0xb3, 0x72, 0x46, 0x3b, 0x21, 0x58, 0x19, 0x8e, 0x5e, 0xc2, 0x36, 0xb9, 0x0d, 0x69, 0x26, 0x64, 0x26, 0xb9, 0xf4, 0x3e, 0xc9, 0x68, 0xe6, 0x95, 0xab, 0xd6, 0x03, 0xd8, 0x33, 0x23, 0xee, 0xa7, 0xc6, 0x0b, 0xc1, 0xe3, 0xb0, 0x87, 0x85, 0xa4, 0xe9, 0x70, 0x5e, 0x32, 0x30, 0xd1, 0x97, 0x50, 0x8c, 0x24, 0x96, 0x59, 0xc1, 0x6f, 0x36, 0x8e, 0x97, 0x16, 0xe9, 0x62, 0xc0, 0x7e, 0xc2, 0xb7, 0x32, 0x37, 0x7d, 0x02, 0x0f, 0x17, 0xd1, 0x33, 0xce, 0x3c, 0x3a, 0x52, 0x0a, 0xd1, 0x35, 0x54, 0x69, 0x0e, 0xdb, 0xa3, 0x04, 0xcf, 0x5b, 0xfb, 0xb3, 0x7f, 0x90, 0xe9, 0x4e, 0xba, 0xb5, 0x45, 0x17, 0x80, 0x48, 0xff, 0x43, 0x83, 0x83, 0x66, 0x34, 0x65, 0x4e, 0xfe, 0xdb, 0x58, 0xcc, 0x5b, 0x83, 0x35, 0xc2, 0x92, 0x7b, 0xce, 0xfe, 0x41, 0xeb, 0x56, 0xbe, 0x45, 0x0d, 0xd8, 0x09, 0x05, 0x71, 0x89, 0x47, 0x19, 0x71, 0xed, 0x9f, 0x63, 0x12, 0x13, 0x3b, 0xbd, 0x95, 0xac, 0x94, 0xb7, 0x67, 0xe0, 0xb7, 0x09, 0xd6, 0x49, 0x2e, 0xe9, 0x10, 0x20, 0x23, 0xa6, 0xed, 0x5c, 0x48, 0x89, 0x1b, 0xa9, 0x25, 0x6d, 0xd4, 0xaf, 0xa1, 0x92, 0xc1, 0x4e, 0xaa, 0x21, 0x2d, 0x92, 0x72, 0xe3, 0x70, 0xe9, 0x01, 0xf3, 0x29, 0x61, 0x95, 0x53, 0x97, 0x4c, 0xf5, 0x93, 0x1b, 0xa8, 0xcc, 0x0f, 0x02, 0xb4, 0x0f, 0x3b, 0xed, 0xce, 0x59, 0xb7, 0x65, 0x76, 0x2e, 0xec, 0xc1, 0x9b, 0x5e, 0xdb, 0x36, 0x3b, 0xaf, 0x9b, 0x57, 0x66, 0xab, 0xfa, 0x3f, 0x74, 0x00, 0xbb, 0x8b, 0xd0, 0xe0, 0xd2, 0x32, 0xcf, 0x07, 0xd6, 0x75, 0x55, 0x43, 0xbb, 0x80, 0x16, 0xb1, 0x97, 0xfd, 0x6e, 0xa7, 0xba, 0x82, 0x6a, 0xf0, 0xc1, 0xa2, 0xbd, 0x67, 0x75, 0x07, 0xdd, 0xa7, 0xd5, 0xc2, 0x93, 0x5f, 0x60, 0x7b, 0xc9, 0xc7, 0x45, 0x8f, 0xe0, 0xd0, 0xec, 0x77, 0xaf, 0x9a, 0x03, 0xb3, 0xdb, 0xb1, 0x2f, 0xac, 0xee, 0x77, 0x3d, 0xbb, 0x3f, 0x68, 0x0e, 0xe6, 0x75, 0xdc, 0x4b, 0xb9, 0x6c, 0x37, 0xaf, 0x06, 0x97, 0x6f, 0xaa, 0xda, 0xfd, 0x94, 0x96, 0xd5, 0x34, 0x3b, 0xed, 0x56, 0x75, 0xe5, 0xf4, 0x07, 0xd8, 0x73, 0x78, 0xb0, 0xec, 0xa6, 0x4e, 0xcb, 0x67, 0xe9, 0x13, 0xa5, 0x97, 0x54, 0x7d, 0x4f, 0xfb, 0xfe, 0x64, 0x44, 0xe5, 0xdb, 0x78, 0x68, 0x38, 0x3c, 0xa8, 0xcf, 0x3f, 0x68, 0x3e, 0xa7, 0xae, 0x5f, 0x1f, 0xf1, 0xec, 0x99, 0xa2, 0x5e, 0x37, 0xcf, 0x71, 0x48, 0x27, 0x27, 0xc3, 0x52, 0x6a, 0x7b, 0xfa, 0x57, 0x00, 0x00, 0x00, 0xff, 0xff, 0x57, 0xd9, 0xb2, 0xe0, 0x01, 0x09, 0x00, 0x00, }, } func init() { yarpc.RegisterClientBuilder( func(clientConfig transport.ClientConfig, structField reflect.StructField) DomainAPIYARPCClient { return NewDomainAPIYARPCClient(clientConfig, protobuf.ClientBuilderOptions(clientConfig, structField)...) }, ) }