diff --git a/googleapis/api/expr/conformance/v1alpha1/conformance_service.pb.go b/googleapis/api/expr/conformance/v1alpha1/conformance_service.pb.go new file mode 100644 index 0000000000..4f52961351 --- /dev/null +++ b/googleapis/api/expr/conformance/v1alpha1/conformance_service.pb.go @@ -0,0 +1,755 @@ +// Code generated by protoc-gen-go. DO NOT EDIT. +// source: google/api/expr/v1alpha1/conformance_service.proto + +package confpb + +import ( + context "context" + fmt "fmt" + math "math" + + proto "github.com/golang/protobuf/proto" + v1alpha1 "google.golang.org/genproto/googleapis/api/expr/v1alpha1" + status "google.golang.org/genproto/googleapis/rpc/status" + grpc "google.golang.org/grpc" + codes "google.golang.org/grpc/codes" + status1 "google.golang.org/grpc/status" +) + +// Reference imports to suppress errors if they are not otherwise used. +var _ = proto.Marshal +var _ = fmt.Errorf +var _ = math.Inf + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the proto package it is being compiled against. +// A compilation error at this line likely means your copy of the +// proto package needs to be updated. +const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package + +// Severities of issues. +type IssueDetails_Severity int32 + +const ( + // An unspecified severity. + IssueDetails_SEVERITY_UNSPECIFIED IssueDetails_Severity = 0 + // Deprecation issue for statements and method that may no longer be + // supported or maintained. + IssueDetails_DEPRECATION IssueDetails_Severity = 1 + // Warnings such as: unused variables. + IssueDetails_WARNING IssueDetails_Severity = 2 + // Errors such as: unmatched curly braces or variable redefinition. + IssueDetails_ERROR IssueDetails_Severity = 3 +) + +var IssueDetails_Severity_name = map[int32]string{ + 0: "SEVERITY_UNSPECIFIED", + 1: "DEPRECATION", + 2: "WARNING", + 3: "ERROR", +} + +var IssueDetails_Severity_value = map[string]int32{ + "SEVERITY_UNSPECIFIED": 0, + "DEPRECATION": 1, + "WARNING": 2, + "ERROR": 3, +} + +func (x IssueDetails_Severity) String() string { + return proto.EnumName(IssueDetails_Severity_name, int32(x)) +} + +func (IssueDetails_Severity) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_b3ca1183e6ceae83, []int{6, 0} +} + +// Request message for the Parse method. +type ParseRequest struct { + // Required. Source text in CEL syntax. + CelSource string `protobuf:"bytes,1,opt,name=cel_source,json=celSource,proto3" json:"cel_source,omitempty"` + // Tag for version of CEL syntax, for future use. + SyntaxVersion string `protobuf:"bytes,2,opt,name=syntax_version,json=syntaxVersion,proto3" json:"syntax_version,omitempty"` + // File or resource for source text, used in [SourceInfo][google.api.expr.v1alpha1.SourceInfo]. + SourceLocation string `protobuf:"bytes,3,opt,name=source_location,json=sourceLocation,proto3" json:"source_location,omitempty"` + // Prevent macro expansion. See "Macros" in Language Defiinition. + DisableMacros bool `protobuf:"varint,4,opt,name=disable_macros,json=disableMacros,proto3" json:"disable_macros,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ParseRequest) Reset() { *m = ParseRequest{} } +func (m *ParseRequest) String() string { return proto.CompactTextString(m) } +func (*ParseRequest) ProtoMessage() {} +func (*ParseRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_b3ca1183e6ceae83, []int{0} +} + +func (m *ParseRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ParseRequest.Unmarshal(m, b) +} +func (m *ParseRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ParseRequest.Marshal(b, m, deterministic) +} +func (m *ParseRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ParseRequest.Merge(m, src) +} +func (m *ParseRequest) XXX_Size() int { + return xxx_messageInfo_ParseRequest.Size(m) +} +func (m *ParseRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ParseRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_ParseRequest proto.InternalMessageInfo + +func (m *ParseRequest) GetCelSource() string { + if m != nil { + return m.CelSource + } + return "" +} + +func (m *ParseRequest) GetSyntaxVersion() string { + if m != nil { + return m.SyntaxVersion + } + return "" +} + +func (m *ParseRequest) GetSourceLocation() string { + if m != nil { + return m.SourceLocation + } + return "" +} + +func (m *ParseRequest) GetDisableMacros() bool { + if m != nil { + return m.DisableMacros + } + return false +} + +// Response message for the Parse method. +type ParseResponse struct { + // The parsed representation, or unset if parsing failed. + ParsedExpr *v1alpha1.ParsedExpr `protobuf:"bytes,1,opt,name=parsed_expr,json=parsedExpr,proto3" json:"parsed_expr,omitempty"` + // Any number of issues with [StatusDetails][] as the details. + Issues []*status.Status `protobuf:"bytes,2,rep,name=issues,proto3" json:"issues,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ParseResponse) Reset() { *m = ParseResponse{} } +func (m *ParseResponse) String() string { return proto.CompactTextString(m) } +func (*ParseResponse) ProtoMessage() {} +func (*ParseResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_b3ca1183e6ceae83, []int{1} +} + +func (m *ParseResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ParseResponse.Unmarshal(m, b) +} +func (m *ParseResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ParseResponse.Marshal(b, m, deterministic) +} +func (m *ParseResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ParseResponse.Merge(m, src) +} +func (m *ParseResponse) XXX_Size() int { + return xxx_messageInfo_ParseResponse.Size(m) +} +func (m *ParseResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ParseResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ParseResponse proto.InternalMessageInfo + +func (m *ParseResponse) GetParsedExpr() *v1alpha1.ParsedExpr { + if m != nil { + return m.ParsedExpr + } + return nil +} + +func (m *ParseResponse) GetIssues() []*status.Status { + if m != nil { + return m.Issues + } + return nil +} + +// Request message for the Check method. +type CheckRequest struct { + // Required. The parsed representation of the CEL program. + ParsedExpr *v1alpha1.ParsedExpr `protobuf:"bytes,1,opt,name=parsed_expr,json=parsedExpr,proto3" json:"parsed_expr,omitempty"` + // Declarations of types for external variables and functions. + // Required if program uses external variables or functions + // not in the default environment. + TypeEnv []*v1alpha1.Decl `protobuf:"bytes,2,rep,name=type_env,json=typeEnv,proto3" json:"type_env,omitempty"` + // The protocol buffer context. See "Name Resolution" in the + // Language Definition. + Container string `protobuf:"bytes,3,opt,name=container,proto3" json:"container,omitempty"` + // If true, use only the declarations in [type_env][google.api.expr.v1alpha1.CheckRequest.type_env]. If false (default), + // add declarations for the standard definitions to the type environment. See + // "Standard Definitions" in the Language Definition. + NoStdEnv bool `protobuf:"varint,4,opt,name=no_std_env,json=noStdEnv,proto3" json:"no_std_env,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CheckRequest) Reset() { *m = CheckRequest{} } +func (m *CheckRequest) String() string { return proto.CompactTextString(m) } +func (*CheckRequest) ProtoMessage() {} +func (*CheckRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_b3ca1183e6ceae83, []int{2} +} + +func (m *CheckRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_CheckRequest.Unmarshal(m, b) +} +func (m *CheckRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_CheckRequest.Marshal(b, m, deterministic) +} +func (m *CheckRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_CheckRequest.Merge(m, src) +} +func (m *CheckRequest) XXX_Size() int { + return xxx_messageInfo_CheckRequest.Size(m) +} +func (m *CheckRequest) XXX_DiscardUnknown() { + xxx_messageInfo_CheckRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_CheckRequest proto.InternalMessageInfo + +func (m *CheckRequest) GetParsedExpr() *v1alpha1.ParsedExpr { + if m != nil { + return m.ParsedExpr + } + return nil +} + +func (m *CheckRequest) GetTypeEnv() []*v1alpha1.Decl { + if m != nil { + return m.TypeEnv + } + return nil +} + +func (m *CheckRequest) GetContainer() string { + if m != nil { + return m.Container + } + return "" +} + +func (m *CheckRequest) GetNoStdEnv() bool { + if m != nil { + return m.NoStdEnv + } + return false +} + +// Response message for the Check method. +type CheckResponse struct { + // The annotated representation, or unset if checking failed. + CheckedExpr *v1alpha1.CheckedExpr `protobuf:"bytes,1,opt,name=checked_expr,json=checkedExpr,proto3" json:"checked_expr,omitempty"` + // Any number of issues with [StatusDetails][] as the details. + Issues []*status.Status `protobuf:"bytes,2,rep,name=issues,proto3" json:"issues,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CheckResponse) Reset() { *m = CheckResponse{} } +func (m *CheckResponse) String() string { return proto.CompactTextString(m) } +func (*CheckResponse) ProtoMessage() {} +func (*CheckResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_b3ca1183e6ceae83, []int{3} +} + +func (m *CheckResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_CheckResponse.Unmarshal(m, b) +} +func (m *CheckResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_CheckResponse.Marshal(b, m, deterministic) +} +func (m *CheckResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_CheckResponse.Merge(m, src) +} +func (m *CheckResponse) XXX_Size() int { + return xxx_messageInfo_CheckResponse.Size(m) +} +func (m *CheckResponse) XXX_DiscardUnknown() { + xxx_messageInfo_CheckResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_CheckResponse proto.InternalMessageInfo + +func (m *CheckResponse) GetCheckedExpr() *v1alpha1.CheckedExpr { + if m != nil { + return m.CheckedExpr + } + return nil +} + +func (m *CheckResponse) GetIssues() []*status.Status { + if m != nil { + return m.Issues + } + return nil +} + +// Request message for the Eval method. +type EvalRequest struct { + // Required. Either the parsed or annotated representation of the CEL program. + // + // Types that are valid to be assigned to ExprKind: + // *EvalRequest_ParsedExpr + // *EvalRequest_CheckedExpr + ExprKind isEvalRequest_ExprKind `protobuf_oneof:"expr_kind"` + // Bindings for the external variables. The types SHOULD be compatible + // with the type environment in [CheckRequest][google.api.expr.v1alpha1.CheckRequest], if checked. + Bindings map[string]*v1alpha1.ExprValue `protobuf:"bytes,3,rep,name=bindings,proto3" json:"bindings,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + // SHOULD be the same container as used in [CheckRequest][google.api.expr.v1alpha1.CheckRequest], if checked. + Container string `protobuf:"bytes,4,opt,name=container,proto3" json:"container,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *EvalRequest) Reset() { *m = EvalRequest{} } +func (m *EvalRequest) String() string { return proto.CompactTextString(m) } +func (*EvalRequest) ProtoMessage() {} +func (*EvalRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_b3ca1183e6ceae83, []int{4} +} + +func (m *EvalRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_EvalRequest.Unmarshal(m, b) +} +func (m *EvalRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_EvalRequest.Marshal(b, m, deterministic) +} +func (m *EvalRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_EvalRequest.Merge(m, src) +} +func (m *EvalRequest) XXX_Size() int { + return xxx_messageInfo_EvalRequest.Size(m) +} +func (m *EvalRequest) XXX_DiscardUnknown() { + xxx_messageInfo_EvalRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_EvalRequest proto.InternalMessageInfo + +type isEvalRequest_ExprKind interface { + isEvalRequest_ExprKind() +} + +type EvalRequest_ParsedExpr struct { + ParsedExpr *v1alpha1.ParsedExpr `protobuf:"bytes,1,opt,name=parsed_expr,json=parsedExpr,proto3,oneof"` +} + +type EvalRequest_CheckedExpr struct { + CheckedExpr *v1alpha1.CheckedExpr `protobuf:"bytes,2,opt,name=checked_expr,json=checkedExpr,proto3,oneof"` +} + +func (*EvalRequest_ParsedExpr) isEvalRequest_ExprKind() {} + +func (*EvalRequest_CheckedExpr) isEvalRequest_ExprKind() {} + +func (m *EvalRequest) GetExprKind() isEvalRequest_ExprKind { + if m != nil { + return m.ExprKind + } + return nil +} + +func (m *EvalRequest) GetParsedExpr() *v1alpha1.ParsedExpr { + if x, ok := m.GetExprKind().(*EvalRequest_ParsedExpr); ok { + return x.ParsedExpr + } + return nil +} + +func (m *EvalRequest) GetCheckedExpr() *v1alpha1.CheckedExpr { + if x, ok := m.GetExprKind().(*EvalRequest_CheckedExpr); ok { + return x.CheckedExpr + } + return nil +} + +func (m *EvalRequest) GetBindings() map[string]*v1alpha1.ExprValue { + if m != nil { + return m.Bindings + } + return nil +} + +func (m *EvalRequest) GetContainer() string { + if m != nil { + return m.Container + } + return "" +} + +// XXX_OneofWrappers is for the internal use of the proto package. +func (*EvalRequest) XXX_OneofWrappers() []interface{} { + return []interface{}{ + (*EvalRequest_ParsedExpr)(nil), + (*EvalRequest_CheckedExpr)(nil), + } +} + +// Response message for the Eval method. +type EvalResponse struct { + // The execution result, or unset if execution couldn't start. + Result *v1alpha1.ExprValue `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"` + // Any number of issues with [StatusDetails][] as the details. + // Note that CEL execution errors are reified into [ExprValue][google.api.expr.v1alpha1.ExprValue]. + // Nevertheless, we'll allow out-of-band issues to be raised, + // which also makes the replies more regular. + Issues []*status.Status `protobuf:"bytes,2,rep,name=issues,proto3" json:"issues,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *EvalResponse) Reset() { *m = EvalResponse{} } +func (m *EvalResponse) String() string { return proto.CompactTextString(m) } +func (*EvalResponse) ProtoMessage() {} +func (*EvalResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_b3ca1183e6ceae83, []int{5} +} + +func (m *EvalResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_EvalResponse.Unmarshal(m, b) +} +func (m *EvalResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_EvalResponse.Marshal(b, m, deterministic) +} +func (m *EvalResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_EvalResponse.Merge(m, src) +} +func (m *EvalResponse) XXX_Size() int { + return xxx_messageInfo_EvalResponse.Size(m) +} +func (m *EvalResponse) XXX_DiscardUnknown() { + xxx_messageInfo_EvalResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_EvalResponse proto.InternalMessageInfo + +func (m *EvalResponse) GetResult() *v1alpha1.ExprValue { + if m != nil { + return m.Result + } + return nil +} + +func (m *EvalResponse) GetIssues() []*status.Status { + if m != nil { + return m.Issues + } + return nil +} + +// Warnings or errors in service execution are represented by +// [google.rpc.Status][google.rpc.Status] messages, with the following message +// in the details field. +type IssueDetails struct { + // The severity of the issue. + Severity IssueDetails_Severity `protobuf:"varint,1,opt,name=severity,proto3,enum=google.api.expr.v1alpha1.IssueDetails_Severity" json:"severity,omitempty"` + // Position in the source, if known. + Position *v1alpha1.SourcePosition `protobuf:"bytes,2,opt,name=position,proto3" json:"position,omitempty"` + // Expression ID from [Expr][google.api.expr.v1alpha1.Expr], 0 if unknown. + Id int64 `protobuf:"varint,3,opt,name=id,proto3" json:"id,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *IssueDetails) Reset() { *m = IssueDetails{} } +func (m *IssueDetails) String() string { return proto.CompactTextString(m) } +func (*IssueDetails) ProtoMessage() {} +func (*IssueDetails) Descriptor() ([]byte, []int) { + return fileDescriptor_b3ca1183e6ceae83, []int{6} +} + +func (m *IssueDetails) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_IssueDetails.Unmarshal(m, b) +} +func (m *IssueDetails) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_IssueDetails.Marshal(b, m, deterministic) +} +func (m *IssueDetails) XXX_Merge(src proto.Message) { + xxx_messageInfo_IssueDetails.Merge(m, src) +} +func (m *IssueDetails) XXX_Size() int { + return xxx_messageInfo_IssueDetails.Size(m) +} +func (m *IssueDetails) XXX_DiscardUnknown() { + xxx_messageInfo_IssueDetails.DiscardUnknown(m) +} + +var xxx_messageInfo_IssueDetails proto.InternalMessageInfo + +func (m *IssueDetails) GetSeverity() IssueDetails_Severity { + if m != nil { + return m.Severity + } + return IssueDetails_SEVERITY_UNSPECIFIED +} + +func (m *IssueDetails) GetPosition() *v1alpha1.SourcePosition { + if m != nil { + return m.Position + } + return nil +} + +func (m *IssueDetails) GetId() int64 { + if m != nil { + return m.Id + } + return 0 +} + +func init() { + proto.RegisterEnum("google.api.expr.v1alpha1.IssueDetails_Severity", IssueDetails_Severity_name, IssueDetails_Severity_value) + proto.RegisterType((*ParseRequest)(nil), "google.api.expr.v1alpha1.ParseRequest") + proto.RegisterType((*ParseResponse)(nil), "google.api.expr.v1alpha1.ParseResponse") + proto.RegisterType((*CheckRequest)(nil), "google.api.expr.v1alpha1.CheckRequest") + proto.RegisterType((*CheckResponse)(nil), "google.api.expr.v1alpha1.CheckResponse") + proto.RegisterType((*EvalRequest)(nil), "google.api.expr.v1alpha1.EvalRequest") + proto.RegisterMapType((map[string]*v1alpha1.ExprValue)(nil), "google.api.expr.v1alpha1.EvalRequest.BindingsEntry") + proto.RegisterType((*EvalResponse)(nil), "google.api.expr.v1alpha1.EvalResponse") + proto.RegisterType((*IssueDetails)(nil), "google.api.expr.v1alpha1.IssueDetails") +} + +func init() { + proto.RegisterFile("google/api/expr/v1alpha1/conformance_service.proto", fileDescriptor_b3ca1183e6ceae83) +} + +var fileDescriptor_b3ca1183e6ceae83 = []byte{ + // 815 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x55, 0x5d, 0x6f, 0xdb, 0x36, + 0x14, 0xb5, 0xe4, 0x24, 0xb5, 0xaf, 0xec, 0xd4, 0x20, 0x06, 0xd4, 0x30, 0xb2, 0x21, 0x70, 0x97, + 0x34, 0xd8, 0x83, 0x84, 0xba, 0x2f, 0xeb, 0xfa, 0xd4, 0xd8, 0x5a, 0xe3, 0x6e, 0x4d, 0x0c, 0xba, + 0x4b, 0xb1, 0xbe, 0x68, 0x8c, 0xc4, 0xb9, 0x44, 0x14, 0x92, 0x23, 0x65, 0x2d, 0x79, 0x1b, 0x06, + 0x0c, 0xd8, 0x0f, 0xd9, 0xfe, 0xcd, 0x7e, 0xd0, 0x1e, 0x07, 0x89, 0xb4, 0x63, 0x77, 0x50, 0x3e, + 0x86, 0xbd, 0xc9, 0xd7, 0xe7, 0x1c, 0xdd, 0x73, 0x78, 0xc5, 0x0b, 0x83, 0x99, 0x10, 0xb3, 0x94, + 0x06, 0x44, 0xb2, 0x80, 0x5e, 0x4a, 0x15, 0xe4, 0x4f, 0x49, 0x2a, 0x3f, 0x90, 0xa7, 0x41, 0x2c, + 0xf8, 0x8f, 0x42, 0x5d, 0x10, 0x1e, 0xd3, 0x48, 0x53, 0x95, 0xb3, 0x98, 0xfa, 0x52, 0x89, 0x4c, + 0xa0, 0xae, 0xe1, 0xf8, 0x44, 0x32, 0xbf, 0xe0, 0xf8, 0x0b, 0x4e, 0x6f, 0xbf, 0x5a, 0xed, 0x03, + 0x8d, 0xcf, 0x69, 0x62, 0x14, 0x7a, 0x8f, 0x2b, 0x71, 0x34, 0x27, 0xa9, 0x05, 0xed, 0x55, 0x82, + 0xf4, 0x15, 0xcf, 0xc8, 0xa5, 0x85, 0x3d, 0xb2, 0x30, 0x25, 0xe3, 0x40, 0x67, 0x24, 0x9b, 0x6b, + 0xf3, 0x47, 0xff, 0x0f, 0x07, 0x5a, 0x13, 0xa2, 0x34, 0xc5, 0xf4, 0xa7, 0x39, 0xd5, 0x19, 0xfa, + 0x14, 0x20, 0xa6, 0x69, 0xa4, 0xc5, 0x5c, 0xc5, 0xb4, 0xeb, 0xec, 0x3a, 0x07, 0x4d, 0xdc, 0x8c, + 0x69, 0x3a, 0x2d, 0x0b, 0x68, 0x0f, 0xb6, 0x8d, 0x70, 0x94, 0x53, 0xa5, 0x99, 0xe0, 0x5d, 0xb7, + 0x84, 0xb4, 0x4d, 0xf5, 0xd4, 0x14, 0xd1, 0x13, 0x78, 0x68, 0x14, 0xa2, 0x54, 0xc4, 0x24, 0x2b, + 0x70, 0xf5, 0x12, 0xb7, 0x6d, 0xca, 0xdf, 0xda, 0x6a, 0xa1, 0x97, 0x30, 0x4d, 0xce, 0x52, 0x1a, + 0x5d, 0x90, 0x58, 0x09, 0xdd, 0xdd, 0xd8, 0x75, 0x0e, 0x1a, 0xb8, 0x6d, 0xab, 0x6f, 0xca, 0x62, + 0xff, 0x57, 0x07, 0xda, 0xb6, 0x4d, 0x2d, 0x05, 0xd7, 0x14, 0x85, 0xe0, 0xc9, 0xa2, 0x90, 0x44, + 0x85, 0xed, 0xb2, 0x51, 0x6f, 0xf0, 0xb9, 0x5f, 0x95, 0xba, 0x5f, 0xb2, 0x93, 0xf0, 0x52, 0x2a, + 0x0c, 0x72, 0xf9, 0x8c, 0xbe, 0x80, 0x2d, 0xa6, 0xf5, 0x9c, 0xea, 0xae, 0xbb, 0x5b, 0x3f, 0xf0, + 0x06, 0x68, 0xa1, 0xa0, 0x64, 0xec, 0x4f, 0xcb, 0xa4, 0xb0, 0x45, 0xf4, 0xff, 0x72, 0xa0, 0x35, + 0x2c, 0x8e, 0x68, 0x91, 0xd5, 0xff, 0xd4, 0xc3, 0x73, 0x68, 0x64, 0x57, 0x92, 0x46, 0x94, 0xe7, + 0xb6, 0x8b, 0xcf, 0xaa, 0x35, 0x46, 0x34, 0x4e, 0xf1, 0x83, 0x02, 0x1f, 0xf2, 0x1c, 0xed, 0x40, + 0x33, 0x16, 0x3c, 0x23, 0x8c, 0x53, 0x65, 0x13, 0xbe, 0x2e, 0xa0, 0x1d, 0x00, 0x2e, 0x22, 0x9d, + 0x25, 0xa5, 0xb4, 0x09, 0xb6, 0xc1, 0xc5, 0x34, 0x4b, 0x42, 0x9e, 0xf7, 0x7f, 0x73, 0xa0, 0x6d, + 0xed, 0xd8, 0x4c, 0x8f, 0xa0, 0x65, 0x47, 0x70, 0xd5, 0xd0, 0x5e, 0x75, 0x33, 0x43, 0x83, 0x2e, + 0x1d, 0x79, 0xf1, 0xf5, 0x8f, 0x7b, 0xc5, 0xfa, 0x4b, 0x1d, 0xbc, 0x30, 0x27, 0xe9, 0x22, 0xd5, + 0x57, 0xff, 0x39, 0xd5, 0xa3, 0xda, 0x5a, 0xae, 0xaf, 0x3f, 0xb2, 0xe3, 0xde, 0xc3, 0xce, 0x51, + 0x6d, 0xdd, 0xd0, 0x09, 0x34, 0xce, 0x18, 0x4f, 0x18, 0x9f, 0xe9, 0x6e, 0xbd, 0xb4, 0xf4, 0xac, + 0x5a, 0x67, 0xc5, 0x8d, 0x7f, 0x68, 0x59, 0x21, 0xcf, 0xd4, 0x15, 0x5e, 0x8a, 0xac, 0x9f, 0xdc, + 0xc6, 0x47, 0x27, 0xd7, 0xfb, 0x01, 0xda, 0x6b, 0x44, 0xd4, 0x81, 0xfa, 0x39, 0xbd, 0xb2, 0xdf, + 0x63, 0xf1, 0x88, 0x9e, 0xc3, 0x66, 0x4e, 0xd2, 0x39, 0xb5, 0xb6, 0x1e, 0xdf, 0xd0, 0xce, 0xa5, + 0x54, 0xa7, 0x05, 0x14, 0x1b, 0xc6, 0x57, 0xee, 0x97, 0xce, 0xa1, 0x07, 0xcd, 0x02, 0x15, 0x9d, + 0x33, 0x9e, 0xf4, 0x7f, 0x86, 0x96, 0xe9, 0xd9, 0x0e, 0xc2, 0x0b, 0xd8, 0x52, 0x54, 0xcf, 0xd3, + 0xcc, 0xa6, 0x7f, 0x27, 0x71, 0x4b, 0xb9, 0xdf, 0xd9, 0xbb, 0xd0, 0x1a, 0x17, 0x8f, 0x23, 0x9a, + 0x11, 0x96, 0x6a, 0xf4, 0x0d, 0x34, 0x34, 0xcd, 0xa9, 0x62, 0x99, 0x31, 0xbb, 0x3d, 0x08, 0xaa, + 0xdf, 0xbd, 0xca, 0xf4, 0xa7, 0x96, 0x86, 0x97, 0x02, 0x68, 0x04, 0x0d, 0x29, 0x34, 0xcb, 0x16, + 0xd7, 0x94, 0x37, 0x38, 0xa8, 0x16, 0x33, 0x17, 0xdc, 0xc4, 0xe2, 0xf1, 0x92, 0x89, 0xb6, 0xc1, + 0x65, 0x49, 0xf9, 0x71, 0xd5, 0xb1, 0xcb, 0x92, 0xfe, 0x1b, 0x68, 0x2c, 0xde, 0x85, 0xba, 0xf0, + 0xc9, 0x34, 0x3c, 0x0d, 0xf1, 0xf8, 0xed, 0xf7, 0xd1, 0x77, 0xc7, 0xd3, 0x49, 0x38, 0x1c, 0x7f, + 0x3d, 0x0e, 0x47, 0x9d, 0x1a, 0x7a, 0x08, 0xde, 0x28, 0x9c, 0xe0, 0x70, 0xf8, 0xf2, 0xed, 0xf8, + 0xe4, 0xb8, 0xe3, 0x20, 0x0f, 0x1e, 0xbc, 0x7b, 0x89, 0x8f, 0xc7, 0xc7, 0xaf, 0x3a, 0x2e, 0x6a, + 0xc2, 0x66, 0x88, 0xf1, 0x09, 0xee, 0xd4, 0x07, 0x7f, 0xba, 0x80, 0x86, 0xd7, 0x6b, 0x64, 0x6a, + 0xb6, 0x08, 0x7a, 0x0f, 0x9b, 0xe5, 0x60, 0xa3, 0xfd, 0x5b, 0x26, 0xdf, 0x0e, 0x5a, 0xef, 0xc9, + 0xad, 0x38, 0x73, 0xb8, 0xfd, 0x5a, 0xa1, 0x5d, 0x8e, 0xfa, 0x4d, 0xda, 0xab, 0x17, 0xdd, 0x4d, + 0xda, 0x6b, 0x37, 0x48, 0xbf, 0x86, 0xde, 0xc1, 0x46, 0x31, 0x4a, 0x68, 0xef, 0x4e, 0x9f, 0x47, + 0x6f, 0xff, 0x36, 0xd8, 0x42, 0xf8, 0xf0, 0x77, 0x07, 0x76, 0x62, 0x71, 0x51, 0x89, 0x3f, 0x7c, + 0xf4, 0xef, 0x14, 0x27, 0xc5, 0x8e, 0x9b, 0x38, 0xef, 0x5f, 0x5b, 0xd2, 0x4c, 0xa4, 0x84, 0xcf, + 0x7c, 0xa1, 0x66, 0xc1, 0x8c, 0xf2, 0x72, 0x03, 0x06, 0xe6, 0x2f, 0x22, 0x99, 0xbe, 0x5e, 0xa2, + 0x2b, 0x6b, 0x7d, 0xb9, 0x50, 0x5f, 0x14, 0x45, 0x79, 0xf6, 0xb7, 0xe3, 0x9c, 0x6d, 0x95, 0xcc, + 0x67, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0xd3, 0x1d, 0x1f, 0x52, 0x18, 0x08, 0x00, 0x00, +} + +// Reference imports to suppress errors if they are not otherwise used. +var _ context.Context +var _ grpc.ClientConnInterface + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the grpc package it is being compiled against. +const _ = grpc.SupportPackageIsVersion6 + +// ConformanceServiceClient is the client API for ConformanceService service. +// +// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. +type ConformanceServiceClient interface { + // Transforms CEL source text into a parsed representation. + Parse(ctx context.Context, in *ParseRequest, opts ...grpc.CallOption) (*ParseResponse, error) + // Runs static checks on a parsed CEL representation and return + // an annotated representation, or a set of issues. + Check(ctx context.Context, in *CheckRequest, opts ...grpc.CallOption) (*CheckResponse, error) + // Evaluates a parsed or annotation CEL representation given + // values of external bindings. + Eval(ctx context.Context, in *EvalRequest, opts ...grpc.CallOption) (*EvalResponse, error) +} + +type conformanceServiceClient struct { + cc grpc.ClientConnInterface +} + +func NewConformanceServiceClient(cc grpc.ClientConnInterface) ConformanceServiceClient { + return &conformanceServiceClient{cc} +} + +func (c *conformanceServiceClient) Parse(ctx context.Context, in *ParseRequest, opts ...grpc.CallOption) (*ParseResponse, error) { + out := new(ParseResponse) + err := c.cc.Invoke(ctx, "/google.api.expr.v1alpha1.ConformanceService/Parse", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *conformanceServiceClient) Check(ctx context.Context, in *CheckRequest, opts ...grpc.CallOption) (*CheckResponse, error) { + out := new(CheckResponse) + err := c.cc.Invoke(ctx, "/google.api.expr.v1alpha1.ConformanceService/Check", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *conformanceServiceClient) Eval(ctx context.Context, in *EvalRequest, opts ...grpc.CallOption) (*EvalResponse, error) { + out := new(EvalResponse) + err := c.cc.Invoke(ctx, "/google.api.expr.v1alpha1.ConformanceService/Eval", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +// ConformanceServiceServer is the server API for ConformanceService service. +type ConformanceServiceServer interface { + // Transforms CEL source text into a parsed representation. + Parse(context.Context, *ParseRequest) (*ParseResponse, error) + // Runs static checks on a parsed CEL representation and return + // an annotated representation, or a set of issues. + Check(context.Context, *CheckRequest) (*CheckResponse, error) + // Evaluates a parsed or annotation CEL representation given + // values of external bindings. + Eval(context.Context, *EvalRequest) (*EvalResponse, error) +} + +// UnimplementedConformanceServiceServer can be embedded to have forward compatible implementations. +type UnimplementedConformanceServiceServer struct { +} + +func (*UnimplementedConformanceServiceServer) Parse(ctx context.Context, req *ParseRequest) (*ParseResponse, error) { + return nil, status1.Errorf(codes.Unimplemented, "method Parse not implemented") +} +func (*UnimplementedConformanceServiceServer) Check(ctx context.Context, req *CheckRequest) (*CheckResponse, error) { + return nil, status1.Errorf(codes.Unimplemented, "method Check not implemented") +} +func (*UnimplementedConformanceServiceServer) Eval(ctx context.Context, req *EvalRequest) (*EvalResponse, error) { + return nil, status1.Errorf(codes.Unimplemented, "method Eval not implemented") +} + +func RegisterConformanceServiceServer(s *grpc.Server, srv ConformanceServiceServer) { + s.RegisterService(&_ConformanceService_serviceDesc, srv) +} + +func _ConformanceService_Parse_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ParseRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ConformanceServiceServer).Parse(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/google.api.expr.v1alpha1.ConformanceService/Parse", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ConformanceServiceServer).Parse(ctx, req.(*ParseRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _ConformanceService_Check_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(CheckRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ConformanceServiceServer).Check(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/google.api.expr.v1alpha1.ConformanceService/Check", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ConformanceServiceServer).Check(ctx, req.(*CheckRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _ConformanceService_Eval_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(EvalRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ConformanceServiceServer).Eval(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/google.api.expr.v1alpha1.ConformanceService/Eval", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ConformanceServiceServer).Eval(ctx, req.(*EvalRequest)) + } + return interceptor(ctx, in, info, handler) +} + +var _ConformanceService_serviceDesc = grpc.ServiceDesc{ + ServiceName: "google.api.expr.v1alpha1.ConformanceService", + HandlerType: (*ConformanceServiceServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "Parse", + Handler: _ConformanceService_Parse_Handler, + }, + { + MethodName: "Check", + Handler: _ConformanceService_Check_Handler, + }, + { + MethodName: "Eval", + Handler: _ConformanceService_Eval_Handler, + }, + }, + Streams: []grpc.StreamDesc{}, + Metadata: "google/api/expr/v1alpha1/conformance_service.proto", +} diff --git a/googleapis/cloud/bigquery/reservation/v1beta1/reservation.pb.go b/googleapis/cloud/bigquery/reservation/v1beta1/reservation.pb.go index 1944b193d1..9db4448cc3 100644 --- a/googleapis/cloud/bigquery/reservation/v1beta1/reservation.pb.go +++ b/googleapis/cloud/bigquery/reservation/v1beta1/reservation.pb.go @@ -1663,7 +1663,7 @@ func (m *GetBiReservationRequest) GetName() string { // A request to update a BI reservation. type UpdateBiReservationRequest struct { // A reservation to update. - Reservation *BiReservation `protobuf:"bytes,1,opt,name=reservation,proto3" json:"reservation,omitempty"` + BiReservation *BiReservation `protobuf:"bytes,1,opt,name=bi_reservation,json=biReservation,proto3" json:"bi_reservation,omitempty"` // A list of fields to be updated in this request. UpdateMask *field_mask.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -1696,9 +1696,9 @@ func (m *UpdateBiReservationRequest) XXX_DiscardUnknown() { var xxx_messageInfo_UpdateBiReservationRequest proto.InternalMessageInfo -func (m *UpdateBiReservationRequest) GetReservation() *BiReservation { +func (m *UpdateBiReservationRequest) GetBiReservation() *BiReservation { if m != nil { - return m.Reservation + return m.BiReservation } return nil } @@ -1749,150 +1749,151 @@ func init() { } var fileDescriptor_8b47fa8b6617477f = []byte{ - // 2282 bytes of a gzipped FileDescriptorProto + // 2291 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0xdd, 0x6f, 0x1b, 0x59, - 0x15, 0xe7, 0xda, 0x49, 0x9a, 0x9c, 0xb4, 0xa9, 0x73, 0xbb, 0x6d, 0xbc, 0xee, 0xd2, 0x64, 0xa7, - 0x02, 0x65, 0xad, 0xd6, 0xb3, 0x6b, 0x48, 0xbb, 0x72, 0xdb, 0x55, 0xc7, 0x8e, 0x93, 0x75, 0xb0, - 0x1d, 0xc7, 0x71, 0x76, 0xdb, 0x22, 0x61, 0xc6, 0xf6, 0x8d, 0x3b, 0xad, 0x3d, 0x33, 0x9d, 0x19, - 0x27, 0x64, 0xa3, 0x08, 0xb4, 0x12, 0x42, 0x5a, 0x21, 0x3e, 0xc5, 0x0b, 0x42, 0xbc, 0xf0, 0x07, - 0x00, 0x42, 0xb0, 0x0f, 0xb0, 0x42, 0xe2, 0x11, 0x04, 0x42, 0x20, 0x5e, 0xfc, 0xb4, 0x12, 0x48, - 0x48, 0x05, 0x21, 0x21, 0xf1, 0xd4, 0x17, 0xd0, 0xdc, 0xb9, 0xb6, 0x67, 0xec, 0x99, 0xc4, 0x63, - 0xa7, 0x15, 0x6f, 0xe3, 0xfb, 0x71, 0xee, 0xf9, 0xf8, 0x9d, 0x73, 0xef, 0xf9, 0x25, 0x70, 0xab, - 0xae, 0x28, 0xf5, 0x06, 0xe1, 0xab, 0x0d, 0xa5, 0x55, 0xe3, 0x2b, 0x52, 0xfd, 0x49, 0x8b, 0x68, - 0x07, 0xbc, 0x46, 0x74, 0xa2, 0xed, 0x89, 0x86, 0xa4, 0xc8, 0xfc, 0xde, 0x1b, 0x15, 0x62, 0x88, - 0x6f, 0xd8, 0xc7, 0x62, 0xaa, 0xa6, 0x18, 0x0a, 0x7e, 0xcd, 0xda, 0x1c, 0xa3, 0x9b, 0x63, 0x9d, - 0xcd, 0x31, 0xfb, 0x42, 0xb6, 0x39, 0xf2, 0x0a, 0x3b, 0x47, 0x54, 0x25, 0x5e, 0x94, 0x65, 0xc5, - 0xa0, 0xd3, 0xba, 0x25, 0x28, 0xb2, 0x60, 0x9b, 0xad, 0x36, 0x24, 0x22, 0x1b, 0x6c, 0x62, 0xd1, - 0x36, 0xb1, 0x2b, 0x91, 0x46, 0xad, 0x5c, 0x21, 0x0f, 0xc5, 0x3d, 0x49, 0xd1, 0xd8, 0x82, 0x97, - 0x6d, 0x0b, 0x34, 0xa2, 0x2b, 0x2d, 0xad, 0x4a, 0xd8, 0xd4, 0x65, 0x36, 0x45, 0x7f, 0x55, 0x5a, - 0xbb, 0x3c, 0x69, 0xaa, 0xc6, 0x01, 0x9b, 0x5c, 0xea, 0x9f, 0xb4, 0xa4, 0x37, 0x45, 0xfd, 0x71, - 0xdf, 0xd1, 0xdd, 0x15, 0x86, 0xd4, 0x24, 0xba, 0x21, 0x36, 0xd5, 0x3e, 0xa5, 0x35, 0xb5, 0xca, - 0xeb, 0x86, 0x68, 0xb4, 0x98, 0x35, 0xdc, 0x3f, 0x10, 0xcc, 0x16, 0x7b, 0x3e, 0xc0, 0x18, 0x26, - 0x64, 0xb1, 0x49, 0xc2, 0x68, 0x09, 0x2d, 0xcf, 0x14, 0xe9, 0x37, 0xbe, 0x0a, 0xe7, 0xf4, 0x86, - 0x62, 0x94, 0xab, 0xa2, 0x2a, 0x56, 0x25, 0xe3, 0x20, 0x1c, 0x58, 0x42, 0xcb, 0xc1, 0xe2, 0x59, - 0x73, 0x30, 0xc5, 0xc6, 0x70, 0x14, 0xe6, 0xa5, 0xba, 0xac, 0x68, 0xa4, 0x2c, 0xd5, 0x1a, 0xa4, - 0x6c, 0xce, 0xe9, 0xe1, 0x89, 0x25, 0xb4, 0x3c, 0x5d, 0x3c, 0x6f, 0x4d, 0x64, 0x6a, 0x0d, 0xb2, - 0x6d, 0x0e, 0x27, 0xf6, 0x9f, 0x0a, 0x06, 0x74, 0x63, 0x60, 0x0f, 0x81, 0xa5, 0xa6, 0xa8, 0x4a, - 0x7a, 0xac, 0xaa, 0x34, 0x79, 0xbb, 0x66, 0x49, 0x55, 0x53, 0x1e, 0x91, 0xaa, 0xa1, 0xf3, 0x87, - 0xec, 0xeb, 0x88, 0x6f, 0x28, 0x55, 0x2b, 0x36, 0xfc, 0x61, 0xe7, 0xf3, 0xc8, 0x1e, 0x7b, 0x9d, - 0x3f, 0xb4, 0xfd, 0x3a, 0xe2, 0x7e, 0x35, 0x05, 0xb8, 0xa3, 0x71, 0x4a, 0x69, 0x36, 0x25, 0xa3, - 0x49, 0x64, 0x03, 0x2f, 0xd8, 0x8d, 0x4e, 0x06, 0x3f, 0x16, 0x82, 0xcc, 0xf2, 0x4f, 0x02, 0x58, - 0x96, 0x2b, 0x2d, 0xd9, 0x60, 0x66, 0xcf, 0x50, 0xb3, 0xcd, 0x01, 0xfc, 0x45, 0x98, 0x50, 0x1b, - 0xa2, 0x1c, 0x0e, 0x2e, 0xa1, 0xe5, 0xb9, 0x78, 0x36, 0x36, 0x34, 0xc4, 0x62, 0x83, 0x4a, 0xc4, - 0x7a, 0x9f, 0x85, 0x86, 0x28, 0x17, 0xa9, 0x64, 0xfc, 0x05, 0x98, 0x34, 0xc3, 0x45, 0xa8, 0x27, - 0xe7, 0xe2, 0xa9, 0xf1, 0x8e, 0xd8, 0x36, 0x45, 0x59, 0xf6, 0x59, 0x62, 0xf1, 0x26, 0x5c, 0xa8, - 0x76, 0xe7, 0xcb, 0x44, 0xae, 0x95, 0x4d, 0xe4, 0x84, 0x27, 0x97, 0xd0, 0xf2, 0x6c, 0x3c, 0xd2, - 0x39, 0xad, 0x03, 0xab, 0x58, 0xa9, 0x03, 0x2b, 0x4b, 0xc8, 0x7c, 0x6f, 0x6f, 0x5a, 0xae, 0x99, - 0x93, 0xf8, 0x2d, 0x98, 0xdb, 0x15, 0xa5, 0x46, 0x4b, 0x23, 0x65, 0x0b, 0x67, 0xe1, 0x33, 0x54, - 0x16, 0xee, 0xc8, 0xd2, 0xd4, 0x2a, 0xd5, 0xa3, 0xa5, 0x5b, 0x32, 0xce, 0xb1, 0xe5, 0xd6, 0x18, - 0x56, 0xe0, 0xac, 0x46, 0x64, 0xb2, 0x2f, 0x36, 0xca, 0xd4, 0xb5, 0xd3, 0xcf, 0xc1, 0xb5, 0xb3, - 0xec, 0x04, 0xf3, 0x07, 0x57, 0x82, 0x39, 0xe7, 0x34, 0x5e, 0x84, 0xcb, 0xa9, 0xcd, 0x5c, 0x2e, - 0x53, 0xca, 0xa5, 0xf3, 0xa5, 0x72, 0x21, 0x2b, 0xe4, 0xcb, 0x3b, 0xf9, 0xed, 0x42, 0x3a, 0x95, - 0x59, 0xcb, 0xa4, 0x57, 0x43, 0x9f, 0xc0, 0xd3, 0x30, 0xb1, 0x96, 0x4d, 0xdf, 0x0b, 0x05, 0xf1, - 0x2c, 0x9c, 0xc9, 0x6d, 0xe6, 0x4b, 0x6f, 0x67, 0xef, 0x87, 0x02, 0x18, 0x60, 0x4a, 0xc8, 0xe7, - 0x77, 0x84, 0x6c, 0x68, 0x82, 0x4b, 0xc1, 0x24, 0x75, 0x36, 0xbe, 0x08, 0xf3, 0xdb, 0x25, 0xa1, - 0x94, 0xee, 0x13, 0x31, 0x0b, 0x67, 0x0a, 0xe9, 0xfc, 0x6a, 0x26, 0xbf, 0x1e, 0x42, 0x74, 0x63, - 0xaa, 0x94, 0x79, 0x27, 0x6d, 0x09, 0x59, 0x13, 0x32, 0xd9, 0xf4, 0x6a, 0x28, 0x98, 0xf8, 0x06, - 0x7a, 0x2a, 0x7c, 0x80, 0x60, 0x65, 0x88, 0x44, 0x71, 0x01, 0xf5, 0xd6, 0xb0, 0xf9, 0x52, 0x1d, - 0xd8, 0xab, 0xf3, 0x87, 0x9d, 0xc1, 0x72, 0x2f, 0xc4, 0x47, 0x66, 0xb1, 0x08, 0xa7, 0x34, 0x22, - 0x1a, 0xc4, 0x96, 0x98, 0x45, 0xf2, 0xa4, 0x45, 0x74, 0x03, 0xe7, 0x61, 0x4a, 0x15, 0x35, 0x22, - 0x1b, 0x2c, 0x8d, 0x6e, 0x7c, 0x2c, 0x04, 0x9e, 0x09, 0xaf, 0x63, 0x9f, 0x79, 0x5e, 0x64, 0x52, - 0xf0, 0xa7, 0x60, 0xce, 0xb6, 0xa3, 0x2c, 0xd5, 0x68, 0xfe, 0xcd, 0x14, 0xcf, 0xd9, 0x46, 0x33, - 0x35, 0x7c, 0x0f, 0x66, 0x6d, 0x03, 0x34, 0x15, 0x67, 0xe3, 0x37, 0x7c, 0xe0, 0xc5, 0x7e, 0xb6, - 0x5d, 0x14, 0xf7, 0x11, 0x82, 0x85, 0xac, 0xa4, 0x1b, 0xb6, 0x05, 0xfa, 0xf3, 0x32, 0xf6, 0x32, - 0xcc, 0xa8, 0x62, 0x9d, 0x94, 0x75, 0xe9, 0x3d, 0x42, 0xed, 0x9c, 0x2c, 0x4e, 0x9b, 0x03, 0xdb, - 0xd2, 0x7b, 0xb4, 0x0a, 0xd1, 0x49, 0x43, 0x79, 0x4c, 0x2c, 0x0b, 0x67, 0x8a, 0x74, 0x79, 0xc9, - 0x1c, 0xc0, 0x97, 0x60, 0x6a, 0x57, 0x6a, 0x18, 0x44, 0xa3, 0x45, 0x62, 0xa6, 0xc8, 0x7e, 0x71, - 0x3f, 0x44, 0x10, 0x1e, 0xd4, 0x5f, 0x57, 0x15, 0x59, 0x27, 0xf8, 0x81, 0x99, 0x67, 0xbd, 0xf1, - 0x30, 0x5a, 0x0a, 0x8e, 0xe1, 0x37, 0x87, 0x2c, 0xfc, 0x69, 0x38, 0x2f, 0x93, 0x2f, 0x19, 0x65, - 0x9b, 0xd2, 0x2c, 0x74, 0xe6, 0x70, 0xa1, 0xa3, 0x38, 0x57, 0x85, 0x8b, 0xeb, 0xc4, 0x70, 0x81, - 0xd2, 0x86, 0xa3, 0x1e, 0x33, 0xdf, 0xfa, 0xbd, 0x30, 0xac, 0x12, 0xce, 0xed, 0x42, 0x78, 0x95, - 0x34, 0x88, 0x2b, 0x64, 0x4f, 0xf3, 0x9c, 0x9f, 0x22, 0x08, 0xef, 0xa8, 0x35, 0xf7, 0xdc, 0xe8, - 0x03, 0x29, 0x3a, 0x35, 0x90, 0xe2, 0x5b, 0x30, 0xdb, 0xa2, 0xa7, 0xd2, 0xe7, 0x00, 0xf5, 0xb3, - 0x5b, 0xe1, 0x5e, 0x33, 0x5f, 0x0c, 0x39, 0x51, 0x7f, 0x5c, 0x04, 0x6b, 0xb9, 0xf9, 0xcd, 0xfd, - 0x0c, 0xc1, 0x15, 0x13, 0x21, 0x83, 0xd5, 0xa3, 0x0b, 0xf4, 0x9d, 0x3e, 0xa0, 0xdf, 0xa1, 0x4e, - 0xba, 0x89, 0x47, 0x2b, 0x4a, 0xa7, 0x81, 0x77, 0xee, 0x97, 0x08, 0x16, 0x3d, 0xb5, 0x66, 0xf0, - 0x56, 0xe1, 0x25, 0x97, 0x0a, 0xd6, 0x81, 0xf9, 0x9d, 0xb1, 0xae, 0x93, 0xe2, 0x05, 0x97, 0x8a, - 0x39, 0x34, 0xe8, 0x9f, 0xc0, 0x2b, 0xeb, 0xc4, 0x45, 0xf7, 0x8e, 0xc3, 0xb7, 0x1c, 0x98, 0x64, - 0xee, 0x1e, 0xf1, 0x0e, 0x60, 0xd0, 0x34, 0x60, 0xd1, 0x4a, 0x81, 0x17, 0x7a, 0xea, 0x1f, 0x10, - 0x2c, 0x5a, 0x09, 0xe1, 0x7d, 0xac, 0x0c, 0x17, 0x5c, 0xc2, 0xc4, 0xf2, 0x63, 0xcc, 0x28, 0xe1, - 0xc1, 0x28, 0x8d, 0x97, 0x2d, 0xdf, 0x41, 0x70, 0x65, 0x5b, 0x6d, 0x48, 0x2f, 0x34, 0x78, 0x27, - 0x3c, 0x41, 0xb9, 0xdf, 0x23, 0x58, 0xf4, 0x54, 0x8a, 0x25, 0xc3, 0x36, 0x4c, 0xee, 0x4a, 0x9a, - 0x7e, 0x4a, 0x7e, 0xb5, 0x64, 0x99, 0x85, 0x41, 0x27, 0x55, 0x45, 0xae, 0x31, 0x2f, 0x8e, 0x29, - 0x95, 0x09, 0xe3, 0x7e, 0x82, 0x60, 0x31, 0x47, 0xb4, 0x3a, 0x79, 0xf1, 0x35, 0xe9, 0x06, 0x2c, - 0xb8, 0x80, 0xb1, 0x2c, 0xd5, 0xf4, 0x70, 0x60, 0x29, 0xb8, 0x3c, 0x53, 0xbc, 0x38, 0x88, 0xa8, - 0x4c, 0x4d, 0xe7, 0xbe, 0x3a, 0x01, 0x20, 0xe8, 0xba, 0x54, 0x97, 0x8f, 0x6f, 0x26, 0x38, 0x98, - 0x16, 0xe9, 0x32, 0x62, 0x3d, 0xe7, 0x67, 0x92, 0x53, 0xcf, 0x84, 0x20, 0xa0, 0x68, 0xb1, 0x3b, - 0x8e, 0xef, 0xc1, 0xf4, 0x23, 0xa5, 0x52, 0x36, 0x0e, 0x54, 0xc2, 0xba, 0x0a, 0x3f, 0x7e, 0xed, - 0x69, 0x11, 0xdb, 0x50, 0x2a, 0xa5, 0x03, 0x95, 0x14, 0xcf, 0x3c, 0xb2, 0x3e, 0xf0, 0x3b, 0x9d, - 0x4e, 0x62, 0x8a, 0x8a, 0xbd, 0x35, 0x9a, 0xd8, 0x81, 0x0e, 0x82, 0xbb, 0x0d, 0x67, 0xd8, 0x59, - 0x38, 0x0c, 0x2f, 0x6d, 0x6c, 0x26, 0xcb, 0xa5, 0xfb, 0x85, 0xfe, 0xe7, 0xee, 0x59, 0x98, 0x2e, - 0x64, 0x0a, 0xe9, 0x6c, 0x26, 0x9f, 0x0e, 0x21, 0x3c, 0x03, 0x93, 0x5b, 0x3b, 0xe9, 0xe2, 0xfd, - 0x50, 0x80, 0xbb, 0x39, 0xe2, 0x3b, 0x39, 0xf1, 0x2d, 0xf4, 0x54, 0xf8, 0x3a, 0x82, 0xeb, 0x43, - 0x84, 0xdc, 0x16, 0x9b, 0xcf, 0x8f, 0xdf, 0x43, 0xf2, 0x62, 0x57, 0x9c, 0xce, 0x1f, 0xf6, 0x7e, - 0x1c, 0x71, 0xbf, 0x46, 0xb0, 0x60, 0xbd, 0x8e, 0x7b, 0x27, 0x76, 0x20, 0x9b, 0xeb, 0x83, 0xec, - 0x0a, 0x85, 0x2c, 0x8f, 0xfd, 0xe9, 0xdf, 0x85, 0xea, 0x0e, 0x40, 0xef, 0x64, 0x96, 0x80, 0x2b, - 0x23, 0x45, 0xb4, 0x68, 0x13, 0xc4, 0xfd, 0x08, 0xc1, 0x25, 0xf3, 0x66, 0xed, 0x4d, 0xeb, 0xcf, - 0xc9, 0x80, 0x71, 0xee, 0xff, 0xef, 0xb3, 0x77, 0xb9, 0x43, 0x4b, 0x56, 0xea, 0xde, 0x85, 0x59, - 0x5b, 0x7c, 0xd8, 0x75, 0x3f, 0xa2, 0x67, 0xec, 0x92, 0x86, 0xbe, 0xde, 0x6b, 0xb0, 0x60, 0xdd, - 0xb5, 0x83, 0x18, 0xc8, 0x38, 0x0a, 0x03, 0x73, 0xa0, 0x4f, 0x04, 0xb3, 0xbb, 0xf5, 0xc7, 0x08, - 0xc2, 0xdb, 0x44, 0xd4, 0xaa, 0x0f, 0x5d, 0x42, 0x25, 0xf4, 0x85, 0xea, 0x35, 0x7a, 0xd2, 0x55, - 0x78, 0xb5, 0x8b, 0xf4, 0x7e, 0xf9, 0x59, 0x36, 0xd1, 0x0d, 0xcf, 0x4b, 0x30, 0x49, 0x75, 0x62, - 0x36, 0x5a, 0x3f, 0x9c, 0x41, 0x0b, 0x1e, 0x1b, 0xb4, 0x89, 0xfe, 0xa0, 0xfd, 0x00, 0xc1, 0xcb, - 0x2e, 0x1a, 0xff, 0xbf, 0x84, 0xed, 0x23, 0x04, 0x17, 0x73, 0xca, 0xde, 0x73, 0x8d, 0x1a, 0xbe, - 0x0f, 0x73, 0x35, 0xa2, 0x1b, 0x92, 0xdc, 0xed, 0x68, 0x29, 0xb6, 0x93, 0xf1, 0x11, 0x12, 0xe9, - 0x9c, 0x4d, 0x52, 0xa6, 0xc6, 0xfd, 0x1d, 0xc1, 0xb9, 0xa4, 0x74, 0x12, 0x91, 0x77, 0xb7, 0xfb, - 0xfc, 0xa1, 0x2c, 0x4f, 0x70, 0x38, 0x96, 0x87, 0xbd, 0x81, 0x28, 0xbd, 0x83, 0x61, 0x82, 0x46, - 0x7f, 0x82, 0xbe, 0x43, 0xe8, 0x77, 0xa2, 0xf1, 0x54, 0x90, 0xe0, 0xf5, 0x21, 0xd4, 0x77, 0x2a, - 0xb8, 0x32, 0x6c, 0x2d, 0xae, 0x48, 0xf6, 0xae, 0xbc, 0x0e, 0x0b, 0xeb, 0xc4, 0x70, 0x88, 0xea, - 0x84, 0x2a, 0xeb, 0x08, 0xd5, 0x9b, 0x34, 0x54, 0x71, 0xff, 0x9a, 0xb1, 0x1c, 0xfb, 0x39, 0x82, - 0x88, 0xf5, 0x7e, 0x75, 0x3d, 0xec, 0x81, 0x5b, 0x4b, 0xf7, 0xa6, 0x0f, 0xc8, 0x3a, 0xa5, 0x9e, - 0x5a, 0x53, 0x17, 0xff, 0xf0, 0x2a, 0x60, 0x9b, 0xe4, 0x6d, 0xa2, 0xed, 0x49, 0x55, 0x82, 0xbf, - 0x12, 0x80, 0xf9, 0x01, 0xee, 0x06, 0xfb, 0x22, 0x14, 0x3d, 0x98, 0x9f, 0xc8, 0x88, 0x8d, 0x2c, - 0x27, 0xb7, 0x85, 0x57, 0xad, 0x82, 0x73, 0xcd, 0xb6, 0xf4, 0x9a, 0x93, 0xf5, 0x79, 0xff, 0xcf, - 0x7f, 0xfb, 0x6e, 0x60, 0x95, 0x5b, 0xe9, 0x52, 0xfb, 0x87, 0xd6, 0x96, 0x3b, 0x5d, 0xf8, 0x44, - 0x6d, 0xb0, 0x89, 0x3a, 0xaf, 0xee, 0x84, 0xc3, 0xad, 0x7f, 0x45, 0x10, 0xea, 0x27, 0x44, 0x70, - 0xd2, 0x87, 0xf2, 0x1e, 0x6c, 0x50, 0x24, 0x35, 0x96, 0x0c, 0xab, 0x06, 0x72, 0x6b, 0x6d, 0x81, - 0x95, 0x5f, 0x6a, 0xf2, 0x4d, 0x3c, 0x9a, 0xc9, 0xf8, 0x8f, 0x08, 0xe6, 0x9c, 0xb4, 0x0a, 0xbe, - 0xeb, 0x43, 0x3f, 0x57, 0x46, 0x66, 0xe4, 0x10, 0xaf, 0xb6, 0x05, 0x9a, 0x4d, 0x83, 0x26, 0x99, - 0xa3, 0x1e, 0x06, 0x39, 0x5f, 0x5f, 0xd1, 0x23, 0xfc, 0x0b, 0x04, 0xf3, 0x03, 0x24, 0x8e, 0x2f, - 0xec, 0x7a, 0x51, 0x40, 0x91, 0x4b, 0x03, 0x59, 0x95, 0x6e, 0xaa, 0xc6, 0x41, 0x9f, 0xe2, 0xd1, - 0x11, 0x15, 0x7f, 0x3f, 0x00, 0xf3, 0x03, 0xa4, 0x90, 0x2f, 0xc5, 0xbd, 0x28, 0xa5, 0x91, 0x23, - 0xa2, 0xb6, 0x85, 0x05, 0x7b, 0xb6, 0xd9, 0x0a, 0x0d, 0xb5, 0xb5, 0x10, 0x17, 0x7a, 0xb6, 0xda, - 0x85, 0xf9, 0xb0, 0xdb, 0x99, 0x76, 0xff, 0x65, 0xef, 0x35, 0x97, 0x8e, 0x0e, 0x67, 0x7c, 0x66, - 0x8e, 0x77, 0x57, 0x18, 0xd9, 0x38, 0x0d, 0x51, 0x2c, 0x17, 0x73, 0xce, 0x5c, 0x7c, 0x0b, 0xdf, - 0x1e, 0x3a, 0x17, 0xdd, 0xb8, 0xa1, 0x7f, 0x22, 0xca, 0x74, 0xba, 0x90, 0xf4, 0xeb, 0xfe, 0x32, - 0xd3, 0x93, 0x79, 0x88, 0x8c, 0xd7, 0x7e, 0x73, 0x9f, 0xb3, 0xc3, 0xdd, 0x61, 0xee, 0x71, 0x61, - 0x77, 0xfb, 0xcb, 0x41, 0xf4, 0x08, 0xff, 0x0e, 0x75, 0x38, 0x57, 0x17, 0x8b, 0x37, 0x7c, 0x67, - 0xad, 0xb7, 0xd1, 0x5e, 0xc9, 0xeb, 0xb4, 0x26, 0x3a, 0x9e, 0x35, 0x1f, 0x06, 0x3a, 0xc4, 0xee, - 0x98, 0xd6, 0x9c, 0x40, 0x86, 0x8d, 0x1b, 0xc2, 0x6f, 0xa2, 0xb6, 0xb0, 0xe8, 0x42, 0x60, 0x0c, - 0x64, 0x78, 0x3d, 0x5e, 0xe8, 0x39, 0xc4, 0x65, 0x43, 0xcc, 0xbf, 0x93, 0x12, 0x6e, 0x34, 0x1e, - 0xfe, 0x76, 0x00, 0x16, 0x3c, 0xb8, 0x29, 0x5f, 0x89, 0x7f, 0x3c, 0xe9, 0xe6, 0x2b, 0xf1, 0x4f, - 0xa0, 0xca, 0xb8, 0x72, 0x5b, 0x38, 0x6f, 0x9a, 0x7f, 0xad, 0xc7, 0xb9, 0x51, 0x9f, 0xad, 0x73, - 0xc9, 0x71, 0x40, 0x94, 0xd0, 0xcd, 0x73, 0x13, 0x28, 0x8a, 0xbf, 0x17, 0x80, 0xb0, 0x17, 0xbf, - 0xe5, 0x0b, 0x4d, 0x27, 0x90, 0x64, 0xe3, 0xa2, 0x49, 0x6e, 0x0b, 0x57, 0xd8, 0xdb, 0xcc, 0x83, - 0x14, 0x1b, 0xf4, 0x8b, 0xff, 0xca, 0x98, 0x68, 0x9a, 0x56, 0x98, 0x7e, 0x79, 0x86, 0x20, 0xd4, - 0x4f, 0x9e, 0xf8, 0x7a, 0x9b, 0x79, 0x30, 0x2f, 0x91, 0xd1, 0xba, 0x48, 0xee, 0x71, 0x5b, 0x98, - 0x67, 0xf6, 0xf7, 0xfa, 0x49, 0x6a, 0xf2, 0x16, 0x97, 0x1a, 0xd2, 0xe4, 0xfe, 0x6b, 0xd1, 0x4e, - 0x1d, 0x25, 0x6c, 0xbc, 0x0b, 0xfe, 0x17, 0x82, 0xf3, 0x7d, 0x8c, 0x06, 0x16, 0x7c, 0x5e, 0x67, - 0x83, 0x44, 0x40, 0x24, 0x39, 0x8e, 0x08, 0x96, 0x10, 0x25, 0xe7, 0x4d, 0x98, 0xc6, 0xa7, 0x61, - 0x3c, 0xfe, 0x0d, 0x82, 0x50, 0x3f, 0x4d, 0xe2, 0x2b, 0xda, 0x1e, 0x1c, 0x8b, 0xe7, 0x8d, 0x50, - 0xb4, 0xdf, 0x08, 0xe9, 0x68, 0x6a, 0x94, 0xe7, 0x9c, 0x83, 0xf9, 0x8b, 0x1e, 0xe1, 0x7f, 0x23, - 0x98, 0x1f, 0xa0, 0x34, 0x7c, 0x3d, 0xee, 0xbc, 0x28, 0x9c, 0xc8, 0xea, 0x78, 0x42, 0x58, 0xec, - 0xb6, 0xda, 0xc2, 0x59, 0x86, 0x61, 0xba, 0x9d, 0x1a, 0x7f, 0x1b, 0x27, 0x86, 0xcd, 0xd8, 0x84, - 0x3e, 0x60, 0xdd, 0x7f, 0x10, 0xcc, 0x39, 0x79, 0x12, 0x5f, 0xcd, 0x85, 0x2b, 0xc5, 0x32, 0x6a, - 0x8a, 0x4a, 0x6d, 0xe1, 0x02, 0xad, 0xd5, 0x4e, 0x52, 0x85, 0x5a, 0x99, 0xe3, 0xde, 0x3e, 0x85, - 0x10, 0x27, 0x9a, 0xca, 0x1e, 0xad, 0x4e, 0x7f, 0x41, 0x10, 0xea, 0x67, 0x1d, 0x7c, 0xe1, 0xd5, - 0x83, 0xb2, 0x88, 0x8c, 0x4c, 0x18, 0x70, 0x29, 0x3b, 0xa2, 0x6f, 0xe0, 0xcf, 0x0e, 0x67, 0x6e, - 0xc5, 0x2e, 0xe3, 0x08, 0x7f, 0x10, 0x80, 0x0b, 0x2e, 0x1c, 0x07, 0x4e, 0xfb, 0x7e, 0xd6, 0x9c, - 0xb2, 0x75, 0x5a, 0x5b, 0x88, 0x54, 0xa4, 0xf2, 0x71, 0x8d, 0xca, 0x66, 0xfc, 0xae, 0xff, 0x46, - 0xc5, 0x69, 0xbf, 0xa3, 0x4f, 0x89, 0x7c, 0xf9, 0xb7, 0x02, 0x77, 0x32, 0x57, 0xf4, 0x27, 0xe1, - 0xdd, 0x87, 0x86, 0xa1, 0xea, 0x09, 0x9e, 0xdf, 0xdf, 0xdf, 0xef, 0x27, 0x92, 0xc4, 0x96, 0xf1, - 0xb0, 0xfb, 0x9f, 0x89, 0xd7, 0x4e, 0x5a, 0x48, 0xdd, 0x72, 0x5d, 0x6d, 0x88, 0xc6, 0xae, 0xa2, - 0x35, 0x93, 0x5f, 0x43, 0x70, 0xbd, 0xaa, 0x34, 0x87, 0x77, 0x5a, 0x01, 0x3d, 0x28, 0xb1, 0xc5, - 0x75, 0xa5, 0x21, 0xca, 0xf5, 0x98, 0xa2, 0xd5, 0xf9, 0x3a, 0x91, 0x69, 0xf5, 0xe3, 0x7b, 0x47, - 0x0e, 0xf1, 0x2f, 0x93, 0xb7, 0x6c, 0x63, 0x95, 0x29, 0x2a, 0xe0, 0x33, 0xff, 0x0b, 0x00, 0x00, - 0xff, 0xff, 0x8d, 0x80, 0x47, 0x95, 0x72, 0x29, 0x00, 0x00, + 0x15, 0xe7, 0xda, 0x49, 0x9a, 0x9c, 0x34, 0xa9, 0x73, 0xfb, 0x11, 0xaf, 0xbb, 0x34, 0xd9, 0xa9, + 0x40, 0x59, 0xab, 0xf5, 0xec, 0x06, 0xda, 0xae, 0xdc, 0x76, 0xb5, 0x13, 0xc7, 0xcd, 0xba, 0xc4, + 0xae, 0xeb, 0x38, 0xbb, 0xed, 0x22, 0x31, 0x8c, 0xed, 0x1b, 0x77, 0x5a, 0x7b, 0x66, 0x3a, 0x33, + 0x4e, 0x37, 0x1b, 0x45, 0xa0, 0x95, 0x10, 0x12, 0x42, 0xb0, 0x80, 0x78, 0x41, 0x88, 0x17, 0xfe, + 0x00, 0x40, 0x48, 0x20, 0x01, 0x15, 0x12, 0x8f, 0x20, 0x10, 0x02, 0xf1, 0xe2, 0xa7, 0x95, 0x40, + 0x42, 0x2a, 0x08, 0x09, 0x89, 0xa7, 0xbe, 0x80, 0xe6, 0xce, 0xb5, 0x3d, 0x9f, 0x8d, 0xc7, 0x4e, + 0x2b, 0xde, 0xc6, 0xf7, 0xe3, 0xdc, 0xf3, 0xf1, 0x3b, 0xe7, 0x9e, 0xfb, 0x4b, 0xe0, 0x6a, 0x53, + 0x55, 0x9b, 0x2d, 0xc2, 0xd7, 0x5b, 0x6a, 0xa7, 0xc1, 0xd7, 0xe4, 0xe6, 0xc3, 0x0e, 0xd1, 0xf7, + 0x78, 0x9d, 0x18, 0x44, 0xdf, 0x95, 0x4c, 0x59, 0x55, 0xf8, 0xdd, 0xd7, 0x6b, 0xc4, 0x94, 0x5e, + 0x77, 0x8e, 0x65, 0x34, 0x5d, 0x35, 0x55, 0xfc, 0xaa, 0xbd, 0x39, 0x43, 0x37, 0x67, 0x7a, 0x9b, + 0x33, 0xce, 0x85, 0x6c, 0x73, 0xea, 0x65, 0x76, 0x8e, 0xa4, 0xc9, 0xbc, 0xa4, 0x28, 0xaa, 0x49, + 0xa7, 0x0d, 0x5b, 0x50, 0x6a, 0xd1, 0x31, 0x5b, 0x6f, 0xc9, 0x44, 0x31, 0xd9, 0xc4, 0x92, 0x63, + 0x62, 0x47, 0x26, 0xad, 0x86, 0x58, 0x23, 0xf7, 0xa4, 0x5d, 0x59, 0xd5, 0xd9, 0x82, 0x97, 0x1c, + 0x0b, 0x74, 0x62, 0xa8, 0x1d, 0xbd, 0x4e, 0xd8, 0xd4, 0x59, 0x36, 0x45, 0x7f, 0xd5, 0x3a, 0x3b, + 0x3c, 0x69, 0x6b, 0xe6, 0x1e, 0x9b, 0x5c, 0xf6, 0x4e, 0xda, 0xd2, 0xdb, 0x92, 0xf1, 0xc0, 0x73, + 0x74, 0x7f, 0x85, 0x29, 0xb7, 0x89, 0x61, 0x4a, 0x6d, 0xcd, 0xa3, 0xb4, 0xae, 0xd5, 0x79, 0xc3, + 0x94, 0xcc, 0x0e, 0xb3, 0x86, 0xfb, 0x07, 0x82, 0xd9, 0xca, 0xc0, 0x07, 0x18, 0xc3, 0x84, 0x22, + 0xb5, 0x49, 0x12, 0x2d, 0xa3, 0x95, 0x99, 0x0a, 0xfd, 0xc6, 0xe7, 0x61, 0xce, 0x68, 0xa9, 0xa6, + 0x58, 0x97, 0x34, 0xa9, 0x2e, 0x9b, 0x7b, 0xc9, 0xd8, 0x32, 0x5a, 0x89, 0x57, 0x8e, 0x5b, 0x83, + 0x39, 0x36, 0x86, 0xd3, 0xb0, 0x20, 0x37, 0x15, 0x55, 0x27, 0xa2, 0xdc, 0x68, 0x11, 0xd1, 0x9a, + 0x33, 0x92, 0x13, 0xcb, 0x68, 0x65, 0xba, 0x72, 0xc2, 0x9e, 0x28, 0x34, 0x5a, 0x64, 0xcb, 0x1a, + 0xce, 0x3e, 0x7a, 0x22, 0x98, 0xd0, 0x8f, 0x81, 0x33, 0x04, 0xb6, 0x9a, 0x92, 0x26, 0x1b, 0x99, + 0xba, 0xda, 0xe6, 0x9d, 0x9a, 0xad, 0x69, 0xba, 0x7a, 0x9f, 0xd4, 0x4d, 0x83, 0xdf, 0x67, 0x5f, + 0x07, 0x7c, 0x4b, 0xad, 0xdb, 0xb1, 0xe1, 0xf7, 0x7b, 0x9f, 0x07, 0xce, 0xd8, 0x1b, 0xfc, 0xbe, + 0xe3, 0xd7, 0x01, 0xf7, 0xab, 0x29, 0xc0, 0x3d, 0x8d, 0x73, 0x6a, 0xbb, 0x2d, 0x9b, 0x6d, 0xa2, + 0x98, 0x78, 0xd1, 0x69, 0xf4, 0x5a, 0xfc, 0x63, 0x21, 0xce, 0x2c, 0xff, 0x24, 0x80, 0x6d, 0xb9, + 0xda, 0x51, 0x4c, 0x66, 0xf6, 0x0c, 0x35, 0xdb, 0x1a, 0xc0, 0x5f, 0x84, 0x09, 0xad, 0x25, 0x29, + 0xc9, 0xf8, 0x32, 0x5a, 0x99, 0x5f, 0xdd, 0xcc, 0x0c, 0x0d, 0xb1, 0x8c, 0x5f, 0x89, 0xcc, 0xe0, + 0xb3, 0xdc, 0x92, 0x94, 0x0a, 0x95, 0x8c, 0xbf, 0x00, 0x93, 0x56, 0xb8, 0x08, 0xf5, 0xe4, 0xfc, + 0x6a, 0x6e, 0xbc, 0x23, 0xb6, 0x2c, 0x51, 0xb6, 0x7d, 0xb6, 0x58, 0x7c, 0x0b, 0x4e, 0xd6, 0xfb, + 0xf3, 0x22, 0x51, 0x1a, 0xa2, 0x85, 0x9c, 0xe4, 0xe4, 0x32, 0x5a, 0x99, 0x5d, 0x4d, 0xf5, 0x4e, + 0xeb, 0xc1, 0x2a, 0x53, 0xed, 0xc1, 0xca, 0x16, 0xb2, 0x30, 0xd8, 0x9b, 0x57, 0x1a, 0xd6, 0x24, + 0x7e, 0x13, 0xe6, 0x77, 0x24, 0xb9, 0xd5, 0xd1, 0x89, 0x68, 0xe3, 0x2c, 0x79, 0x8c, 0xca, 0xc2, + 0x3d, 0x59, 0xba, 0x56, 0xa7, 0x7a, 0x74, 0x0c, 0x5b, 0xc6, 0x1c, 0x5b, 0x6e, 0x8f, 0x61, 0x15, + 0x8e, 0xeb, 0x44, 0x21, 0x8f, 0xa4, 0x96, 0x48, 0x5d, 0x3b, 0xfd, 0x1c, 0x5c, 0x3b, 0xcb, 0x4e, + 0xb0, 0x7e, 0x70, 0x55, 0x98, 0x77, 0x4f, 0xe3, 0x25, 0x38, 0x9b, 0xbb, 0x55, 0x2c, 0x16, 0xaa, + 0xc5, 0x7c, 0xa9, 0x2a, 0x96, 0x37, 0x85, 0x92, 0xb8, 0x5d, 0xda, 0x2a, 0xe7, 0x73, 0x85, 0x1b, + 0x85, 0xfc, 0x7a, 0xe2, 0x13, 0x78, 0x1a, 0x26, 0x6e, 0x6c, 0xe6, 0xef, 0x24, 0xe2, 0x78, 0x16, + 0x8e, 0x15, 0x6f, 0x95, 0xaa, 0x6f, 0x6f, 0xde, 0x4d, 0xc4, 0x30, 0xc0, 0x94, 0x50, 0x2a, 0x6d, + 0x0b, 0x9b, 0x89, 0x09, 0x2e, 0x07, 0x93, 0xd4, 0xd9, 0xf8, 0x34, 0x2c, 0x6c, 0x55, 0x85, 0x6a, + 0xde, 0x23, 0x62, 0x16, 0x8e, 0x95, 0xf3, 0xa5, 0xf5, 0x42, 0x69, 0x23, 0x81, 0xe8, 0xc6, 0x5c, + 0xb5, 0xf0, 0x4e, 0xde, 0x16, 0x72, 0x43, 0x28, 0x6c, 0xe6, 0xd7, 0x13, 0xf1, 0xec, 0x37, 0xd0, + 0x13, 0xe1, 0x6b, 0x08, 0x2e, 0x0d, 0x91, 0x28, 0x01, 0xa0, 0xbe, 0x3d, 0x6c, 0xbe, 0xd4, 0x7d, + 0x7b, 0x0d, 0x7e, 0xbf, 0x37, 0x28, 0x0e, 0x42, 0x7c, 0x60, 0x15, 0x8b, 0x64, 0x4e, 0x27, 0x92, + 0x49, 0x1c, 0x89, 0x59, 0x21, 0x0f, 0x3b, 0xc4, 0x30, 0x71, 0x09, 0xa6, 0x34, 0x49, 0x27, 0x8a, + 0xc9, 0xd2, 0xe8, 0xf2, 0xc7, 0x42, 0xec, 0xa9, 0xf0, 0x1a, 0x8e, 0x98, 0xe7, 0x15, 0x26, 0x05, + 0x7f, 0x0a, 0xe6, 0x1d, 0x3b, 0x44, 0xb9, 0x41, 0xf3, 0x6f, 0xa6, 0x32, 0xe7, 0x18, 0x2d, 0x34, + 0xf0, 0x1d, 0x98, 0x75, 0x0c, 0xd0, 0x54, 0x9c, 0x5d, 0xbd, 0x1c, 0x01, 0x2f, 0xce, 0xb3, 0x9d, + 0xa2, 0xb8, 0xc7, 0x08, 0x16, 0x37, 0x65, 0xc3, 0x74, 0x2c, 0x30, 0x9e, 0x97, 0xb1, 0x67, 0x61, + 0x46, 0x93, 0x9a, 0x44, 0x34, 0xe4, 0x0f, 0x08, 0xb5, 0x73, 0xb2, 0x32, 0x6d, 0x0d, 0x6c, 0xc9, + 0x1f, 0xd0, 0x2a, 0x44, 0x27, 0x4d, 0xf5, 0x01, 0xb1, 0x2d, 0x9c, 0xa9, 0xd0, 0xe5, 0x55, 0x6b, + 0x00, 0x9f, 0x81, 0xa9, 0x1d, 0xb9, 0x65, 0x12, 0x9d, 0x16, 0x89, 0x99, 0x0a, 0xfb, 0xc5, 0xfd, + 0x00, 0x41, 0xd2, 0xaf, 0xbf, 0xa1, 0xa9, 0x8a, 0x41, 0xf0, 0x7b, 0x56, 0x9e, 0x0d, 0xc6, 0x93, + 0x68, 0x39, 0x3e, 0x86, 0xdf, 0x5c, 0xb2, 0xf0, 0xa7, 0xe1, 0x84, 0x42, 0xde, 0x37, 0x45, 0x87, + 0xd2, 0x2c, 0x74, 0xd6, 0x70, 0xb9, 0xa7, 0x38, 0x57, 0x87, 0xd3, 0x1b, 0xc4, 0x0c, 0x80, 0xd2, + 0x4d, 0x57, 0x3d, 0x66, 0xbe, 0x8d, 0x7a, 0x61, 0xd8, 0x25, 0x9c, 0xdb, 0x81, 0xe4, 0x3a, 0x69, + 0x91, 0x40, 0xc8, 0x1e, 0xe5, 0x39, 0x3f, 0x41, 0x90, 0xdc, 0xd6, 0x1a, 0xc1, 0xb9, 0xe1, 0x01, + 0x29, 0x3a, 0x32, 0x90, 0xe2, 0xab, 0x30, 0xdb, 0xa1, 0xa7, 0xd2, 0x76, 0x80, 0xfa, 0x39, 0xa8, + 0x70, 0xdf, 0xb0, 0x3a, 0x86, 0xa2, 0x64, 0x3c, 0xa8, 0x80, 0xbd, 0xdc, 0xfa, 0xe6, 0x7e, 0x8a, + 0xe0, 0x9c, 0x85, 0x10, 0x7f, 0xf5, 0xe8, 0x03, 0x7d, 0xdb, 0x03, 0xf4, 0xeb, 0xd4, 0x49, 0x57, + 0xf0, 0x68, 0x45, 0xe9, 0x28, 0xf0, 0xce, 0xfd, 0x12, 0xc1, 0x52, 0xa8, 0xd6, 0x0c, 0xde, 0x1a, + 0x9c, 0x0a, 0xa8, 0x60, 0x3d, 0x98, 0x5f, 0x1f, 0xeb, 0x3a, 0xa9, 0x9c, 0x0c, 0xa8, 0x98, 0x43, + 0x83, 0xfe, 0x21, 0xbc, 0xbc, 0x41, 0x02, 0x74, 0xef, 0x39, 0xfc, 0xb6, 0x0b, 0x93, 0xcc, 0xdd, + 0x23, 0xde, 0x01, 0x0c, 0x9a, 0x26, 0x2c, 0xd9, 0x29, 0xf0, 0x42, 0x4f, 0xfd, 0x03, 0x82, 0x25, + 0x3b, 0x21, 0xc2, 0x8f, 0x55, 0xe0, 0x64, 0x40, 0x98, 0x58, 0x7e, 0x8c, 0x19, 0x25, 0xec, 0x8f, + 0xd2, 0x78, 0xd9, 0xf2, 0x6d, 0x04, 0xe7, 0xb6, 0xb4, 0x96, 0xfc, 0x42, 0x83, 0x77, 0x48, 0x0b, + 0xca, 0xfd, 0x1e, 0xc1, 0x52, 0xa8, 0x52, 0x2c, 0x19, 0xb6, 0x60, 0x72, 0x47, 0xd6, 0x8d, 0x23, + 0xf2, 0xab, 0x2d, 0xcb, 0x2a, 0x0c, 0x06, 0xa9, 0xab, 0x4a, 0x83, 0x79, 0x71, 0x4c, 0xa9, 0x4c, + 0x18, 0xf7, 0x63, 0x04, 0x4b, 0x45, 0xa2, 0x37, 0xc9, 0x8b, 0xaf, 0x49, 0x97, 0x61, 0x31, 0x00, + 0x8c, 0xa2, 0xdc, 0x30, 0x92, 0xb1, 0xe5, 0xf8, 0xca, 0x4c, 0xe5, 0xb4, 0x1f, 0x51, 0x85, 0x86, + 0xc1, 0x7d, 0x65, 0x02, 0x40, 0x30, 0x0c, 0xb9, 0xa9, 0x3c, 0xfb, 0x31, 0xc1, 0xc1, 0xb4, 0x44, + 0x97, 0x11, 0xbb, 0x9d, 0x9f, 0x59, 0x9b, 0x7a, 0x2a, 0xc4, 0x01, 0xa5, 0x2b, 0xfd, 0x71, 0x7c, + 0x07, 0xa6, 0xef, 0xab, 0x35, 0xd1, 0xdc, 0xd3, 0x08, 0x7b, 0x55, 0x44, 0xf1, 0xeb, 0x40, 0x8b, + 0xcc, 0x4d, 0xb5, 0x56, 0xdd, 0xd3, 0x48, 0xe5, 0xd8, 0x7d, 0xfb, 0x03, 0xbf, 0xd3, 0x7b, 0x49, + 0x4c, 0x51, 0xb1, 0x57, 0x47, 0x13, 0xeb, 0x7b, 0x41, 0x70, 0xd7, 0xe0, 0x18, 0x3b, 0x0b, 0x27, + 0xe1, 0xd4, 0xcd, 0x5b, 0x6b, 0x62, 0xf5, 0x6e, 0xd9, 0xdb, 0xee, 0x1e, 0x87, 0xe9, 0x72, 0xa1, + 0x9c, 0xdf, 0x2c, 0x94, 0xf2, 0x09, 0x84, 0x67, 0x60, 0xf2, 0xf6, 0x76, 0xbe, 0x72, 0x37, 0x11, + 0xe3, 0xae, 0x8c, 0xd8, 0x27, 0x67, 0x3f, 0x42, 0x4f, 0x84, 0xaf, 0x23, 0xb8, 0x38, 0x44, 0xc8, + 0x1d, 0xb1, 0xf9, 0xfc, 0xf8, 0x6f, 0x48, 0x5e, 0xea, 0x8b, 0x33, 0xf8, 0xfd, 0xc1, 0x8f, 0x03, + 0xee, 0xd7, 0x08, 0x16, 0xed, 0xee, 0x78, 0x70, 0x62, 0x0f, 0xb2, 0x45, 0x0f, 0x64, 0x2f, 0x51, + 0xc8, 0xf2, 0x38, 0x9a, 0xfe, 0x7d, 0xa8, 0x6e, 0x03, 0x0c, 0x4e, 0x66, 0x09, 0x78, 0x69, 0xa4, + 0x88, 0x56, 0x1c, 0x82, 0xb8, 0x1f, 0x22, 0x38, 0x63, 0xdd, 0xac, 0x83, 0x69, 0xe3, 0x39, 0x19, + 0x30, 0xce, 0xfd, 0xff, 0x3d, 0xd6, 0x97, 0xbb, 0xb4, 0x64, 0xa5, 0xee, 0x5d, 0x98, 0x75, 0xc4, + 0x87, 0x5d, 0xf7, 0x23, 0x7a, 0xc6, 0x29, 0x69, 0xe8, 0xeb, 0xbd, 0x01, 0x8b, 0xf6, 0x5d, 0xeb, + 0xc7, 0x40, 0xc1, 0x55, 0x18, 0x98, 0x03, 0x23, 0x22, 0x98, 0xdd, 0xad, 0x3f, 0x42, 0x90, 0xdc, + 0x22, 0x92, 0x5e, 0xbf, 0x17, 0x10, 0x2a, 0xc1, 0x13, 0xaa, 0x57, 0xe9, 0x49, 0xe7, 0xe1, 0x95, + 0x3e, 0xd2, 0xbd, 0xf2, 0x37, 0xd9, 0x44, 0x3f, 0x3c, 0xa7, 0x60, 0x92, 0xea, 0xc4, 0x6c, 0xb4, + 0x7f, 0xb8, 0x83, 0x16, 0x7f, 0x66, 0xd0, 0x26, 0xbc, 0x41, 0xfb, 0x3e, 0x82, 0x97, 0x02, 0x34, + 0xfe, 0x7f, 0x09, 0xdb, 0x63, 0x04, 0xa7, 0x8b, 0xea, 0xee, 0x73, 0x8d, 0x1a, 0xbe, 0x0b, 0xf3, + 0x0d, 0x62, 0x98, 0xb2, 0xd2, 0x7f, 0xd1, 0x52, 0x6c, 0xaf, 0xad, 0x8e, 0x90, 0x48, 0x73, 0x0e, + 0x49, 0x85, 0x06, 0xf7, 0x77, 0x04, 0x73, 0x6b, 0xf2, 0x61, 0x44, 0xde, 0x5b, 0xfd, 0xf6, 0x87, + 0xb2, 0x3c, 0xf1, 0xe1, 0x58, 0x1e, 0xd6, 0x03, 0x51, 0x7a, 0x07, 0xc3, 0x04, 0x8d, 0xfe, 0x04, + 0xed, 0x43, 0xe8, 0x77, 0xb6, 0xf5, 0x44, 0x90, 0xe1, 0xb5, 0x21, 0xd4, 0x77, 0x2b, 0x78, 0x69, + 0xd8, 0x5a, 0x5c, 0x93, 0x9d, 0xaf, 0xf2, 0x26, 0x2c, 0x6e, 0x10, 0xd3, 0x25, 0xaa, 0x17, 0xaa, + 0x4d, 0x57, 0xa8, 0xde, 0xa0, 0xa1, 0x5a, 0x8d, 0xae, 0x19, 0xcb, 0xb1, 0x5f, 0x20, 0x48, 0xd9, + 0xfd, 0x6b, 0xe0, 0x61, 0x22, 0xcc, 0xd7, 0x64, 0xd1, 0xff, 0xaa, 0x7b, 0x23, 0x02, 0x6a, 0xdd, + 0x82, 0xe7, 0x6a, 0x2e, 0xff, 0x8c, 0xd3, 0xab, 0xae, 0x3e, 0x3e, 0x0f, 0xd8, 0x21, 0x6c, 0x8b, + 0xe8, 0xbb, 0x72, 0x9d, 0xe0, 0x2f, 0xc7, 0x60, 0xc1, 0x47, 0xe0, 0xe0, 0x48, 0xac, 0x62, 0x08, + 0xfd, 0x93, 0x1a, 0xf1, 0x35, 0xcb, 0x29, 0x5d, 0xe1, 0x15, 0xbb, 0xea, 0x5c, 0x70, 0x2c, 0xbd, + 0xe0, 0xa6, 0x7e, 0x3e, 0xfc, 0xf3, 0xdf, 0xbe, 0x13, 0x5b, 0xe7, 0x2e, 0xf5, 0xf9, 0xfd, 0x7d, + 0x7b, 0xcb, 0xf5, 0x3e, 0x86, 0xd2, 0x0e, 0xec, 0xa4, 0xdd, 0xf7, 0x77, 0xd6, 0xf5, 0x60, 0xfe, + 0x2b, 0x82, 0x84, 0x97, 0x15, 0xc1, 0x6b, 0x11, 0x94, 0x0f, 0xa1, 0x84, 0x52, 0xb9, 0xb1, 0x64, + 0xd8, 0x85, 0x90, 0xbb, 0xd1, 0x15, 0x58, 0x0d, 0xa6, 0x26, 0x5f, 0xc1, 0xa3, 0x99, 0x8c, 0xff, + 0x88, 0x60, 0xde, 0xcd, 0xad, 0xe0, 0xb7, 0x22, 0xe8, 0x17, 0x48, 0xcb, 0x8c, 0x1c, 0xe2, 0xf5, + 0xae, 0x40, 0x53, 0xca, 0x6f, 0x92, 0x35, 0x1a, 0x62, 0x90, 0xbb, 0x05, 0x4b, 0x1f, 0xe0, 0x9f, + 0x21, 0x58, 0xf0, 0x31, 0x39, 0x91, 0xb0, 0x1b, 0xc6, 0x03, 0xa5, 0xce, 0xf8, 0xb2, 0x2a, 0xdf, + 0xd6, 0xcc, 0x3d, 0x8f, 0xe2, 0xe9, 0x11, 0x15, 0xff, 0x30, 0x06, 0x0b, 0x3e, 0x66, 0x28, 0x92, + 0xe2, 0x61, 0xbc, 0xd2, 0xc8, 0x11, 0xd1, 0xba, 0xc2, 0xa2, 0x33, 0xdb, 0x1c, 0x85, 0x86, 0xda, + 0x5a, 0x5e, 0x15, 0x06, 0xb6, 0x3a, 0x85, 0x45, 0xb0, 0xdb, 0x9d, 0x76, 0xff, 0x65, 0x4d, 0x5b, + 0xc0, 0xb3, 0x0e, 0x17, 0x22, 0x66, 0x4e, 0xf8, 0xd3, 0x30, 0x75, 0xf3, 0x28, 0x44, 0xb1, 0x5c, + 0x2c, 0xba, 0x73, 0xf1, 0x4d, 0x7c, 0x6d, 0xe8, 0x5c, 0x0c, 0x22, 0x88, 0xfe, 0x89, 0x28, 0xdd, + 0x19, 0xc0, 0xd4, 0x6f, 0x44, 0xcb, 0xcc, 0x50, 0xfa, 0x21, 0x35, 0xde, 0x1b, 0x9c, 0xfb, 0x9c, + 0x13, 0xee, 0x2e, 0x73, 0x9f, 0x15, 0xf6, 0xa0, 0x3f, 0x1f, 0xa4, 0x0f, 0xf0, 0xef, 0x50, 0x8f, + 0x78, 0x0d, 0xb0, 0xf8, 0x66, 0xe4, 0xac, 0x0d, 0x37, 0x3a, 0x2c, 0x79, 0xdd, 0xd6, 0xa4, 0xc7, + 0xb3, 0xe6, 0xe7, 0xb1, 0x1e, 0xbb, 0x3b, 0xa6, 0x35, 0x87, 0x30, 0x62, 0xe3, 0x86, 0xf0, 0x9b, + 0xa8, 0x2b, 0x2c, 0x05, 0xb0, 0x18, 0xbe, 0x0c, 0x6f, 0xae, 0x96, 0x07, 0x0e, 0x09, 0xd8, 0x90, + 0x89, 0xee, 0xa4, 0x6c, 0x10, 0x97, 0x87, 0xbf, 0x15, 0x83, 0xc5, 0x10, 0x82, 0x2a, 0x52, 0xe2, + 0x3f, 0x9b, 0x79, 0x8b, 0x94, 0xf8, 0x87, 0xf0, 0x65, 0x9c, 0xd8, 0x15, 0x4e, 0x58, 0xe6, 0x5f, + 0x18, 0x10, 0x6f, 0xd4, 0x67, 0x1b, 0xdc, 0xda, 0x38, 0x20, 0xca, 0x1a, 0xd6, 0xb9, 0x59, 0x94, + 0xc6, 0xdf, 0x8d, 0x41, 0x32, 0x8c, 0xe4, 0x8a, 0x84, 0xa6, 0x43, 0x98, 0xb2, 0x71, 0xd1, 0xa4, + 0x74, 0x85, 0x73, 0xac, 0x37, 0x0b, 0x61, 0xc6, 0xfc, 0x7e, 0x89, 0x5e, 0x19, 0xb3, 0x6d, 0xcb, + 0x0a, 0xcb, 0x2f, 0x4f, 0x11, 0x24, 0xbc, 0x0c, 0x4a, 0xa4, 0xde, 0x2c, 0x84, 0x7e, 0x49, 0x8d, + 0xf6, 0x94, 0xe4, 0x1e, 0x74, 0x85, 0x05, 0x66, 0xff, 0xe0, 0x51, 0x49, 0x4d, 0xbe, 0xcd, 0xe5, + 0x86, 0x34, 0xd9, 0x7b, 0x2d, 0x3a, 0xf9, 0xa3, 0xac, 0x83, 0x7c, 0xc1, 0xff, 0x42, 0x70, 0xc2, + 0x43, 0x6b, 0x60, 0x21, 0xe2, 0x75, 0xe6, 0x67, 0x03, 0x52, 0x6b, 0xe3, 0x88, 0x60, 0x09, 0x51, + 0x75, 0xdf, 0x84, 0x79, 0x7c, 0x14, 0xc6, 0xe3, 0xdf, 0x20, 0x48, 0x78, 0xb9, 0x92, 0x48, 0xd1, + 0x0e, 0x21, 0x5a, 0x42, 0x6f, 0x84, 0x8a, 0xf3, 0x46, 0xc8, 0xa7, 0x73, 0xa3, 0xb4, 0x73, 0x2e, + 0xfa, 0x2f, 0x7d, 0x80, 0xff, 0x8d, 0x60, 0xc1, 0xc7, 0x6b, 0x44, 0x6a, 0xee, 0xc2, 0x78, 0x9c, + 0xd4, 0xfa, 0x78, 0x42, 0x58, 0xec, 0x6e, 0x77, 0x85, 0xe3, 0x0c, 0xc3, 0x74, 0x3b, 0x35, 0xfe, + 0x1a, 0xce, 0x0e, 0x9b, 0xb1, 0x59, 0xc3, 0x67, 0xdd, 0x7f, 0x10, 0xcc, 0xbb, 0xc9, 0x92, 0x48, + 0x8f, 0x8b, 0x40, 0x9e, 0x65, 0xd4, 0x14, 0x95, 0xbb, 0xc2, 0x49, 0x5a, 0xab, 0xdd, 0xcc, 0x0a, + 0xb5, 0xb2, 0xc8, 0xbd, 0x7d, 0x04, 0x21, 0xce, 0xb6, 0xd5, 0x5d, 0x5a, 0x9d, 0xfe, 0x82, 0x20, + 0xe1, 0xa5, 0x1e, 0x22, 0xe1, 0x35, 0x84, 0xb7, 0x48, 0x8d, 0x4c, 0x19, 0x70, 0x39, 0x27, 0xa2, + 0x2f, 0xe3, 0xcf, 0x0e, 0x67, 0xae, 0x8b, 0x67, 0x38, 0xc0, 0x1f, 0xc5, 0xe0, 0x64, 0x00, 0xd1, + 0x81, 0xf3, 0x91, 0xdb, 0x9a, 0x23, 0xb6, 0xee, 0xfd, 0xae, 0x90, 0x72, 0x73, 0x2c, 0xbe, 0x36, + 0x66, 0x7b, 0xd5, 0x91, 0xc5, 0xee, 0xb5, 0x99, 0xe1, 0x5d, 0x90, 0xf5, 0x50, 0x39, 0xa9, 0x2f, + 0xfd, 0x56, 0xe0, 0x0e, 0xa7, 0x8d, 0xfe, 0x24, 0xbc, 0x7b, 0xcf, 0x34, 0x35, 0x23, 0xcb, 0xf3, + 0x8f, 0x1e, 0x3d, 0xf2, 0x72, 0x4a, 0x52, 0xc7, 0xbc, 0xd7, 0xff, 0x27, 0xc5, 0x0b, 0x87, 0x2d, + 0xa4, 0xce, 0xb9, 0xa8, 0xb5, 0x24, 0x73, 0x47, 0xd5, 0xdb, 0x6b, 0x5f, 0x45, 0x70, 0xb1, 0xae, + 0xb6, 0x87, 0x77, 0x5d, 0x19, 0xbd, 0x57, 0x65, 0x8b, 0x9b, 0x6a, 0x4b, 0x52, 0x9a, 0x19, 0x55, + 0x6f, 0xf2, 0x4d, 0xa2, 0xd0, 0x1a, 0xc8, 0x0f, 0x8e, 0x1c, 0xe2, 0xbf, 0x27, 0xaf, 0x3a, 0xc6, + 0x6a, 0x53, 0x54, 0xc0, 0x67, 0xfe, 0x17, 0x00, 0x00, 0xff, 0xff, 0x0c, 0xca, 0xad, 0x71, 0x7d, + 0x29, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/googleapis/cloud/dialogflow/v2/environment.pb.go b/googleapis/cloud/dialogflow/v2/environment.pb.go new file mode 100644 index 0000000000..5e663037bc --- /dev/null +++ b/googleapis/cloud/dialogflow/v2/environment.pb.go @@ -0,0 +1,409 @@ +// Code generated by protoc-gen-go. DO NOT EDIT. +// source: google/cloud/dialogflow/v2/environment.proto + +package dialogflow + +import ( + context "context" + fmt "fmt" + math "math" + + proto "github.com/golang/protobuf/proto" + _ "github.com/golang/protobuf/ptypes/empty" + timestamp "github.com/golang/protobuf/ptypes/timestamp" + _ "google.golang.org/genproto/googleapis/api/annotations" + _ "google.golang.org/genproto/protobuf/field_mask" + grpc "google.golang.org/grpc" + codes "google.golang.org/grpc/codes" + status "google.golang.org/grpc/status" +) + +// Reference imports to suppress errors if they are not otherwise used. +var _ = proto.Marshal +var _ = fmt.Errorf +var _ = math.Inf + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the proto package it is being compiled against. +// A compilation error at this line likely means your copy of the +// proto package needs to be updated. +const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package + +// Represents an environment state. When a environment is pointed to a new +// agent version, the environment is temporarily set to the `LOADING` state. +// During that time, the environment keeps on serving the previous version of +// the agent. After the new agent version is done loading, the environment is +// set back to the `RUNNING` state. +type Environment_State int32 + +const ( + // Not specified. This value is not used. + Environment_STATE_UNSPECIFIED Environment_State = 0 + // Stopped. + Environment_STOPPED Environment_State = 1 + // Loading. + Environment_LOADING Environment_State = 2 + // Running. + Environment_RUNNING Environment_State = 3 +) + +var Environment_State_name = map[int32]string{ + 0: "STATE_UNSPECIFIED", + 1: "STOPPED", + 2: "LOADING", + 3: "RUNNING", +} + +var Environment_State_value = map[string]int32{ + "STATE_UNSPECIFIED": 0, + "STOPPED": 1, + "LOADING": 2, + "RUNNING": 3, +} + +func (x Environment_State) String() string { + return proto.EnumName(Environment_State_name, int32(x)) +} + +func (Environment_State) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_e1eda8d735fabace, []int{0, 0} +} + +// Represents an agent environment. +type Environment struct { + // Output only. The unique identifier of this agent environment. + // Format: `projects//agent/environments/`. + // For Environment ID, "-" is reserved for 'draft' environment. + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + // Optional. The developer-provided description for this environment. + // The maximum length is 500 characters. If exceeded, the request is rejected. + Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"` + // Optional. The agent version loaded into this environment. + // Format: `projects//agent/versions/`. + AgentVersion string `protobuf:"bytes,3,opt,name=agent_version,json=agentVersion,proto3" json:"agent_version,omitempty"` + // Output only. The state of this environment. This field is read-only, i.e., it cannot be + // set by create and update methods. + State Environment_State `protobuf:"varint,4,opt,name=state,proto3,enum=google.cloud.dialogflow.v2.Environment_State" json:"state,omitempty"` + // Output only. The last update time of this environment. This field is read-only, i.e., it + // cannot be set by create and update methods. + UpdateTime *timestamp.Timestamp `protobuf:"bytes,5,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *Environment) Reset() { *m = Environment{} } +func (m *Environment) String() string { return proto.CompactTextString(m) } +func (*Environment) ProtoMessage() {} +func (*Environment) Descriptor() ([]byte, []int) { + return fileDescriptor_e1eda8d735fabace, []int{0} +} + +func (m *Environment) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Environment.Unmarshal(m, b) +} +func (m *Environment) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Environment.Marshal(b, m, deterministic) +} +func (m *Environment) XXX_Merge(src proto.Message) { + xxx_messageInfo_Environment.Merge(m, src) +} +func (m *Environment) XXX_Size() int { + return xxx_messageInfo_Environment.Size(m) +} +func (m *Environment) XXX_DiscardUnknown() { + xxx_messageInfo_Environment.DiscardUnknown(m) +} + +var xxx_messageInfo_Environment proto.InternalMessageInfo + +func (m *Environment) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *Environment) GetDescription() string { + if m != nil { + return m.Description + } + return "" +} + +func (m *Environment) GetAgentVersion() string { + if m != nil { + return m.AgentVersion + } + return "" +} + +func (m *Environment) GetState() Environment_State { + if m != nil { + return m.State + } + return Environment_STATE_UNSPECIFIED +} + +func (m *Environment) GetUpdateTime() *timestamp.Timestamp { + if m != nil { + return m.UpdateTime + } + return nil +} + +// The request message for [Environments.ListEnvironments][google.cloud.dialogflow.v2.Environments.ListEnvironments]. +type ListEnvironmentsRequest struct { + // Required. The agent to list all environments from. + // Format: `projects//agent`. + Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"` + // Optional. The maximum number of items to return in a single page. By default 100 and + // at most 1000. + PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` + // Optional. The next_page_token value returned from a previous list request. + PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ListEnvironmentsRequest) Reset() { *m = ListEnvironmentsRequest{} } +func (m *ListEnvironmentsRequest) String() string { return proto.CompactTextString(m) } +func (*ListEnvironmentsRequest) ProtoMessage() {} +func (*ListEnvironmentsRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_e1eda8d735fabace, []int{1} +} + +func (m *ListEnvironmentsRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ListEnvironmentsRequest.Unmarshal(m, b) +} +func (m *ListEnvironmentsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ListEnvironmentsRequest.Marshal(b, m, deterministic) +} +func (m *ListEnvironmentsRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ListEnvironmentsRequest.Merge(m, src) +} +func (m *ListEnvironmentsRequest) XXX_Size() int { + return xxx_messageInfo_ListEnvironmentsRequest.Size(m) +} +func (m *ListEnvironmentsRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ListEnvironmentsRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_ListEnvironmentsRequest proto.InternalMessageInfo + +func (m *ListEnvironmentsRequest) GetParent() string { + if m != nil { + return m.Parent + } + return "" +} + +func (m *ListEnvironmentsRequest) GetPageSize() int32 { + if m != nil { + return m.PageSize + } + return 0 +} + +func (m *ListEnvironmentsRequest) GetPageToken() string { + if m != nil { + return m.PageToken + } + return "" +} + +// The response message for [Environments.ListEnvironments][google.cloud.dialogflow.v2.Environments.ListEnvironments]. +type ListEnvironmentsResponse struct { + // The list of agent environments. There will be a maximum number of items + // returned based on the page_size field in the request. + Environments []*Environment `protobuf:"bytes,1,rep,name=environments,proto3" json:"environments,omitempty"` + // Token to retrieve the next page of results, or empty if there are no + // more results in the list. + NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ListEnvironmentsResponse) Reset() { *m = ListEnvironmentsResponse{} } +func (m *ListEnvironmentsResponse) String() string { return proto.CompactTextString(m) } +func (*ListEnvironmentsResponse) ProtoMessage() {} +func (*ListEnvironmentsResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_e1eda8d735fabace, []int{2} +} + +func (m *ListEnvironmentsResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ListEnvironmentsResponse.Unmarshal(m, b) +} +func (m *ListEnvironmentsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ListEnvironmentsResponse.Marshal(b, m, deterministic) +} +func (m *ListEnvironmentsResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ListEnvironmentsResponse.Merge(m, src) +} +func (m *ListEnvironmentsResponse) XXX_Size() int { + return xxx_messageInfo_ListEnvironmentsResponse.Size(m) +} +func (m *ListEnvironmentsResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ListEnvironmentsResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ListEnvironmentsResponse proto.InternalMessageInfo + +func (m *ListEnvironmentsResponse) GetEnvironments() []*Environment { + if m != nil { + return m.Environments + } + return nil +} + +func (m *ListEnvironmentsResponse) GetNextPageToken() string { + if m != nil { + return m.NextPageToken + } + return "" +} + +func init() { + proto.RegisterEnum("google.cloud.dialogflow.v2.Environment_State", Environment_State_name, Environment_State_value) + proto.RegisterType((*Environment)(nil), "google.cloud.dialogflow.v2.Environment") + proto.RegisterType((*ListEnvironmentsRequest)(nil), "google.cloud.dialogflow.v2.ListEnvironmentsRequest") + proto.RegisterType((*ListEnvironmentsResponse)(nil), "google.cloud.dialogflow.v2.ListEnvironmentsResponse") +} + +func init() { + proto.RegisterFile("google/cloud/dialogflow/v2/environment.proto", fileDescriptor_e1eda8d735fabace) +} + +var fileDescriptor_e1eda8d735fabace = []byte{ + // 727 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x54, 0x41, 0x4f, 0x13, 0x5b, + 0x14, 0x7e, 0x77, 0x4a, 0x79, 0x8f, 0x5b, 0x78, 0xaf, 0xef, 0x26, 0x86, 0x52, 0x8d, 0x36, 0x4d, + 0x90, 0x86, 0xc0, 0xdc, 0x64, 0x70, 0x85, 0x31, 0x71, 0xa0, 0x05, 0x89, 0xa4, 0x34, 0x6d, 0x21, + 0xd1, 0x98, 0x34, 0x97, 0xe9, 0xed, 0x30, 0x32, 0x33, 0x77, 0x9c, 0x7b, 0x5b, 0x10, 0xc2, 0xc6, + 0x3f, 0xe0, 0xc2, 0x1f, 0x60, 0xe2, 0xc2, 0x85, 0xae, 0xdc, 0xfb, 0x0b, 0x5c, 0xea, 0x1f, 0x60, + 0xe1, 0xca, 0x5f, 0x60, 0x5c, 0x99, 0x99, 0x3b, 0x65, 0x2e, 0x20, 0x88, 0xbb, 0x39, 0xe7, 0x7c, + 0xe7, 0x9c, 0xef, 0x7c, 0xe7, 0xcc, 0x85, 0x73, 0x36, 0x63, 0xb6, 0x4b, 0xb1, 0xe5, 0xb2, 0x7e, + 0x17, 0x77, 0x1d, 0xe2, 0x32, 0xbb, 0xe7, 0xb2, 0x3d, 0x3c, 0x30, 0x30, 0xf5, 0x07, 0x4e, 0xc8, + 0x7c, 0x8f, 0xfa, 0x42, 0x0f, 0x42, 0x26, 0x18, 0x2a, 0x4a, 0xb4, 0x1e, 0xa3, 0xf5, 0x14, 0xad, + 0x0f, 0x8c, 0xe2, 0x8d, 0xa4, 0x12, 0x09, 0x1c, 0x4c, 0x7c, 0x9f, 0x09, 0x22, 0x1c, 0xe6, 0x73, + 0x99, 0x59, 0xbc, 0xa5, 0x44, 0x7b, 0x0e, 0x75, 0xbb, 0x9d, 0x6d, 0xba, 0x43, 0x06, 0x0e, 0x0b, + 0x13, 0xc0, 0x94, 0x02, 0x08, 0x29, 0x67, 0xfd, 0xd0, 0xa2, 0x49, 0xe8, 0x7a, 0x12, 0x8a, 0xad, + 0xed, 0x7e, 0x0f, 0x53, 0x2f, 0x10, 0xcf, 0x93, 0x60, 0xe9, 0x6c, 0x50, 0x56, 0xf7, 0x08, 0xdf, + 0x3d, 0xd3, 0xfa, 0x04, 0x21, 0x1c, 0x8f, 0x72, 0x41, 0xbc, 0x20, 0x01, 0x4c, 0x2a, 0xad, 0x2d, + 0xd7, 0x39, 0x19, 0xb7, 0xfc, 0x3e, 0x03, 0x73, 0xb5, 0x54, 0x04, 0x34, 0x09, 0x47, 0x7c, 0xe2, + 0xd1, 0x02, 0x28, 0x81, 0xca, 0xd8, 0x52, 0xe6, 0xd8, 0xcc, 0x34, 0x63, 0x07, 0x9a, 0x86, 0xb9, + 0x2e, 0xe5, 0x56, 0xe8, 0x04, 0xd1, 0xcc, 0x05, 0x6d, 0x18, 0x07, 0x4d, 0xd5, 0x8f, 0x2a, 0x70, + 0x82, 0xd8, 0xd4, 0x17, 0x9d, 0x01, 0x0d, 0x79, 0x04, 0xcc, 0xa4, 0xc0, 0xf1, 0x38, 0xb2, 0x25, + 0x03, 0xe8, 0x01, 0xcc, 0x72, 0x41, 0x04, 0x2d, 0x8c, 0x94, 0x40, 0xe5, 0x5f, 0x63, 0x5e, 0xbf, + 0x58, 0x78, 0x5d, 0x61, 0xa8, 0xb7, 0xa2, 0x24, 0xc9, 0x4c, 0x16, 0x40, 0xf7, 0x61, 0xae, 0x1f, + 0x74, 0x89, 0xa0, 0x9d, 0x68, 0xec, 0x42, 0xb6, 0x04, 0x2a, 0x39, 0xa3, 0x38, 0xac, 0x37, 0xd4, + 0x44, 0x6f, 0x0f, 0x35, 0x91, 0xc9, 0x50, 0xe6, 0x44, 0xde, 0x72, 0x0d, 0x66, 0xe3, 0xb2, 0xe8, + 0x1a, 0xfc, 0xbf, 0xd5, 0x36, 0xdb, 0xb5, 0xce, 0x66, 0xbd, 0xd5, 0xa8, 0x2d, 0xaf, 0xad, 0xac, + 0xd5, 0xaa, 0xf9, 0xbf, 0x50, 0x0e, 0xfe, 0xdd, 0x6a, 0x6f, 0x34, 0x1a, 0xb5, 0x6a, 0x1e, 0x44, + 0xc6, 0xfa, 0x86, 0x59, 0x5d, 0xab, 0xaf, 0xe6, 0xb5, 0xc8, 0x68, 0x6e, 0xd6, 0xeb, 0x91, 0x91, + 0x59, 0xec, 0x7c, 0x33, 0x9f, 0xc0, 0x69, 0x85, 0xba, 0xa4, 0x40, 0x02, 0x87, 0xeb, 0x16, 0xf3, + 0xb0, 0x2a, 0xf4, 0x42, 0x10, 0xb2, 0xa7, 0xd4, 0x12, 0x1c, 0x1f, 0x26, 0x5f, 0x47, 0x38, 0xd6, + 0x47, 0xbd, 0x49, 0x8e, 0x0f, 0x15, 0xeb, 0xa8, 0xfc, 0x16, 0xc0, 0xc9, 0x75, 0x87, 0x0b, 0xa5, + 0x10, 0x6f, 0xd2, 0x67, 0x7d, 0xca, 0x05, 0xaa, 0xc1, 0xd1, 0x80, 0x84, 0xd4, 0x17, 0xc9, 0xee, + 0xe6, 0x8f, 0x4d, 0xed, 0x87, 0x39, 0x83, 0xae, 0xc6, 0xa7, 0x99, 0x24, 0xa3, 0x12, 0x1c, 0x0b, + 0x88, 0x4d, 0x3b, 0xdc, 0x39, 0xa0, 0xf1, 0x96, 0xb3, 0x72, 0x79, 0xff, 0x44, 0xde, 0x96, 0x73, + 0x40, 0x51, 0x19, 0xc2, 0x18, 0x21, 0xd8, 0x2e, 0x3d, 0xb5, 0xdf, 0x38, 0xb1, 0x1d, 0x79, 0xcb, + 0x2f, 0x01, 0x2c, 0x9c, 0x27, 0xca, 0x03, 0xe6, 0x73, 0x8a, 0x1e, 0xc2, 0x71, 0x75, 0xc6, 0x02, + 0x28, 0x65, 0x2a, 0x39, 0x63, 0xe6, 0x8a, 0x07, 0xd0, 0x3c, 0x95, 0x8c, 0x6e, 0xc3, 0xff, 0x7c, + 0xba, 0x2f, 0x3a, 0x0a, 0xa5, 0xf8, 0x36, 0x9b, 0x13, 0x91, 0xbb, 0x31, 0x64, 0x64, 0x7c, 0xd4, + 0xe0, 0xb8, 0xca, 0x06, 0x7d, 0x00, 0x30, 0x7f, 0x96, 0x22, 0x5a, 0xb8, 0x8c, 0xc4, 0x05, 0xca, + 0x17, 0xef, 0xfc, 0x59, 0x92, 0x54, 0xa1, 0x6c, 0xbc, 0xf8, 0xf2, 0xf5, 0x95, 0x36, 0x87, 0x66, + 0xa3, 0x77, 0xe8, 0x50, 0xaa, 0x7f, 0xef, 0xe4, 0x28, 0x66, 0xe5, 0x31, 0x1c, 0x9d, 0xba, 0x86, + 0xe2, 0xfe, 0x27, 0x73, 0xea, 0xc2, 0x75, 0x7e, 0x36, 0x1f, 0xed, 0x08, 0x11, 0xf0, 0x45, 0x8c, + 0xf7, 0xf6, 0xce, 0xed, 0x9a, 0xf4, 0xc5, 0x8e, 0x7c, 0x02, 0xe7, 0x03, 0x97, 0x88, 0x1e, 0x0b, + 0xbd, 0xb9, 0xdf, 0xc1, 0xd3, 0x56, 0x4b, 0xaf, 0x01, 0xbc, 0x69, 0x31, 0xef, 0x92, 0x49, 0x97, + 0xf2, 0xca, 0x98, 0x8d, 0xe8, 0xa7, 0x6b, 0x80, 0xc7, 0xd5, 0x04, 0x6f, 0x33, 0x97, 0xf8, 0xb6, + 0xce, 0x42, 0x1b, 0xdb, 0xd4, 0x8f, 0x7f, 0x49, 0x9c, 0x76, 0xfc, 0xd5, 0xd3, 0x7c, 0x37, 0xb5, + 0xbe, 0x03, 0xf0, 0x46, 0xd3, 0xaa, 0x2b, 0xef, 0xb4, 0xe2, 0xaa, 0x2c, 0xb7, 0x1c, 0xb7, 0xaf, + 0xa6, 0xed, 0xb7, 0x8c, 0xed, 0xd1, 0xb8, 0xea, 0xc2, 0xcf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd8, + 0x27, 0xcc, 0xe4, 0xef, 0x05, 0x00, 0x00, +} + +// Reference imports to suppress errors if they are not otherwise used. +var _ context.Context +var _ grpc.ClientConnInterface + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the grpc package it is being compiled against. +const _ = grpc.SupportPackageIsVersion6 + +// EnvironmentsClient is the client API for Environments service. +// +// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. +type EnvironmentsClient interface { + // Returns the list of all non-draft environments of the specified agent. + ListEnvironments(ctx context.Context, in *ListEnvironmentsRequest, opts ...grpc.CallOption) (*ListEnvironmentsResponse, error) +} + +type environmentsClient struct { + cc grpc.ClientConnInterface +} + +func NewEnvironmentsClient(cc grpc.ClientConnInterface) EnvironmentsClient { + return &environmentsClient{cc} +} + +func (c *environmentsClient) ListEnvironments(ctx context.Context, in *ListEnvironmentsRequest, opts ...grpc.CallOption) (*ListEnvironmentsResponse, error) { + out := new(ListEnvironmentsResponse) + err := c.cc.Invoke(ctx, "/google.cloud.dialogflow.v2.Environments/ListEnvironments", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +// EnvironmentsServer is the server API for Environments service. +type EnvironmentsServer interface { + // Returns the list of all non-draft environments of the specified agent. + ListEnvironments(context.Context, *ListEnvironmentsRequest) (*ListEnvironmentsResponse, error) +} + +// UnimplementedEnvironmentsServer can be embedded to have forward compatible implementations. +type UnimplementedEnvironmentsServer struct { +} + +func (*UnimplementedEnvironmentsServer) ListEnvironments(ctx context.Context, req *ListEnvironmentsRequest) (*ListEnvironmentsResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method ListEnvironments not implemented") +} + +func RegisterEnvironmentsServer(s *grpc.Server, srv EnvironmentsServer) { + s.RegisterService(&_Environments_serviceDesc, srv) +} + +func _Environments_ListEnvironments_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ListEnvironmentsRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(EnvironmentsServer).ListEnvironments(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/google.cloud.dialogflow.v2.Environments/ListEnvironments", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(EnvironmentsServer).ListEnvironments(ctx, req.(*ListEnvironmentsRequest)) + } + return interceptor(ctx, in, info, handler) +} + +var _Environments_serviceDesc = grpc.ServiceDesc{ + ServiceName: "google.cloud.dialogflow.v2.Environments", + HandlerType: (*EnvironmentsServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "ListEnvironments", + Handler: _Environments_ListEnvironments_Handler, + }, + }, + Streams: []grpc.StreamDesc{}, + Metadata: "google/cloud/dialogflow/v2/environment.proto", +} diff --git a/googleapis/cloud/dialogflow/v2/webhook.pb.go b/googleapis/cloud/dialogflow/v2/webhook.pb.go index 5bfa790d8c..daadeead23 100644 --- a/googleapis/cloud/dialogflow/v2/webhook.pb.go +++ b/googleapis/cloud/dialogflow/v2/webhook.pb.go @@ -113,18 +113,24 @@ func (m *WebhookRequest) GetOriginalDetectIntentRequest() *OriginalDetectIntentR // [Protocol Buffers Language // Guide](https://developers.google.com/protocol-buffers/docs/proto3#json). type WebhookResponse struct { - // Optional. The text to be shown on the screen. This value is passed directly - // to `QueryResult.fulfillment_text`. + // Optional. The text response message intended for the end-user. + // It is recommended to use `fulfillment_messages.text.text[0]` instead. + // When provided, Dialogflow uses this field to populate + // [QueryResult.fulfillment_text][google.cloud.dialogflow.v2.QueryResult.fulfillment_text] sent to the integration or API caller. FulfillmentText string `protobuf:"bytes,1,opt,name=fulfillment_text,json=fulfillmentText,proto3" json:"fulfillment_text,omitempty"` - // Optional. The collection of rich messages to present to the user. This - // value is passed directly to `QueryResult.fulfillment_messages`. + // Optional. The rich response messages intended for the end-user. + // When provided, Dialogflow uses this field to populate + // [QueryResult.fulfillment_messages][google.cloud.dialogflow.v2.QueryResult.fulfillment_messages] sent to the integration or API caller. FulfillmentMessages []*Intent_Message `protobuf:"bytes,2,rep,name=fulfillment_messages,json=fulfillmentMessages,proto3" json:"fulfillment_messages,omitempty"` - // Optional. This value is passed directly to `QueryResult.webhook_source`. + // Optional. A custom field used to identify the webhook source. + // Arbitrary strings are supported. + // When provided, Dialogflow uses this field to populate + // [QueryResult.webhook_source][google.cloud.dialogflow.v2.QueryResult.webhook_source] sent to the integration or API caller. Source string `protobuf:"bytes,3,opt,name=source,proto3" json:"source,omitempty"` - // Optional. This field can be used to pass custom data from your webhook to the API - // caller. Arbitrary JSON objects are supported. + // Optional. This field can be used to pass custom data from your webhook to the + // integration or API caller. Arbitrary JSON objects are supported. // When provided, Dialogflow uses this field to populate - // `QueryResult.webhook_payload` sent to the API caller. + // [QueryResult.webhook_payload][google.cloud.dialogflow.v2.QueryResult.webhook_payload] sent to the integration or API caller. // This field is also used by the // [Google Assistant // integration](https://cloud.google.com/dialogflow/docs/integrations/aog) @@ -132,19 +138,20 @@ type WebhookResponse struct { // See the format definition at [Google Assistant Dialogflow webhook // format](https://developers.google.com/assistant/actions/build/json/dialogflow-webhook-json) Payload *_struct.Struct `protobuf:"bytes,4,opt,name=payload,proto3" json:"payload,omitempty"` - // Optional. The collection of output contexts. This value is passed directly - // to `QueryResult.output_contexts`. + // Optional. The collection of output contexts that will overwrite currently + // active contexts for the session and reset their lifespans. + // When provided, Dialogflow uses this field to populate + // [QueryResult.output_contexts][google.cloud.dialogflow.v2.QueryResult.output_contexts] sent to the integration or API caller. OutputContexts []*Context `protobuf:"bytes,5,rep,name=output_contexts,json=outputContexts,proto3" json:"output_contexts,omitempty"` - // Optional. Makes the platform immediately invoke another `DetectIntent` call - // internally with the specified event as input. + // Optional. Invokes the supplied events. // When this field is set, Dialogflow ignores the `fulfillment_text`, // `fulfillment_messages`, and `payload` fields. FollowupEventInput *EventInput `protobuf:"bytes,6,opt,name=followup_event_input,json=followupEventInput,proto3" json:"followup_event_input,omitempty"` // Optional. Additional session entity types to replace or extend developer // entity types with. The entity synonyms apply to all languages and persist - // for the session of this query. Setting the session entity types inside - // webhook overwrites the session entity types that have been set through - // `DetectIntentRequest.query_params.session_entity_types`. + // for the session. Setting this data from a webhook overwrites + // the session entity types that have been set using `detectIntent`, + // `streamingDetectIntent` or [SessionEntityType][google.cloud.dialogflow.v2.SessionEntityType] management methods. SessionEntityTypes []*SessionEntityType `protobuf:"bytes,10,rep,name=session_entity_types,json=sessionEntityTypes,proto3" json:"session_entity_types,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` diff --git a/googleapis/cloud/dialogflow/v2beta1/agent.pb.go b/googleapis/cloud/dialogflow/v2beta1/agent.pb.go index f5df590f36..fdfb90a254 100644 --- a/googleapis/cloud/dialogflow/v2beta1/agent.pb.go +++ b/googleapis/cloud/dialogflow/v2beta1/agent.pb.go @@ -1042,102 +1042,102 @@ func init() { } var fileDescriptor_be44838675479699 = []byte{ - // 1510 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x58, 0xcb, 0x73, 0xdb, 0xd4, - 0x17, 0xae, 0x9c, 0x26, 0x71, 0x8e, 0xf3, 0x70, 0x6f, 0xda, 0x54, 0x75, 0x7e, 0x99, 0xf8, 0xa7, - 0x4e, 0x3b, 0x69, 0xd2, 0xda, 0x8d, 0xdb, 0x02, 0x4d, 0x28, 0x8c, 0x93, 0x38, 0x8d, 0x67, 0xf2, - 0x1a, 0xd9, 0xc9, 0x4c, 0x33, 0x0c, 0x9a, 0x1b, 0xfb, 0xc6, 0x56, 0x2b, 0xe9, 0x0a, 0x49, 0x4e, - 0x1f, 0x01, 0x16, 0xac, 0xd9, 0xf1, 0x1f, 0xb0, 0x62, 0x58, 0xc0, 0x96, 0x35, 0x4b, 0x36, 0xcc, - 0xd0, 0x05, 0x1b, 0x16, 0x2c, 0x58, 0xc1, 0x3f, 0xc0, 0x92, 0xb9, 0x0f, 0xdb, 0x4a, 0x9c, 0x54, - 0x4a, 0x87, 0x19, 0x76, 0xf2, 0x79, 0x7e, 0xdf, 0xd1, 0xf5, 0x77, 0x24, 0xc1, 0x5c, 0x83, 0xd2, - 0x86, 0x45, 0xf2, 0x35, 0x8b, 0xb6, 0xea, 0xf9, 0xba, 0x89, 0x2d, 0xda, 0x38, 0xb0, 0xe8, 0xf3, - 0xfc, 0x61, 0x61, 0x9f, 0x04, 0x78, 0x3e, 0x8f, 0x1b, 0xc4, 0x09, 0x72, 0xae, 0x47, 0x03, 0x8a, - 0xa6, 0x45, 0x70, 0x8e, 0x07, 0xe7, 0xba, 0xc1, 0x39, 0x19, 0x9c, 0xf9, 0x9f, 0xac, 0x86, 0x5d, - 0x33, 0x8f, 0x1d, 0x87, 0x06, 0x38, 0x30, 0xa9, 0xe3, 0x8b, 0xf4, 0xcc, 0x74, 0xc8, 0x7b, 0x60, - 0x12, 0xab, 0x6e, 0xec, 0x93, 0x26, 0x3e, 0x34, 0xa9, 0x27, 0x03, 0xae, 0x85, 0x02, 0x3c, 0xe2, - 0xd3, 0x96, 0x57, 0x23, 0xd2, 0xf5, 0x6e, 0x14, 0xce, 0x43, 0x6c, 0x99, 0x75, 0xde, 0xce, 0xf0, - 0x88, 0xdf, 0xb2, 0x24, 0xe6, 0xcc, 0x75, 0x99, 0x68, 0x51, 0xa7, 0xe1, 0xb5, 0x1c, 0xc7, 0x74, - 0x1a, 0x79, 0xea, 0x12, 0xef, 0x18, 0xb2, 0x49, 0x19, 0xc4, 0x7f, 0xed, 0xb7, 0x0e, 0xf2, 0xc4, - 0x76, 0x83, 0x97, 0xd2, 0x99, 0x3d, 0xe9, 0x14, 0xd8, 0x6d, 0xec, 0x3f, 0x93, 0x11, 0x57, 0x43, - 0xb8, 0x6b, 0x96, 0xd9, 0x19, 0x98, 0xf6, 0xd7, 0x20, 0xf4, 0x17, 0xd9, 0x00, 0xd1, 0x04, 0x0c, - 0xb8, 0xd8, 0x23, 0x4e, 0xa0, 0x2a, 0x59, 0x65, 0x66, 0x48, 0x97, 0xbf, 0xd0, 0xff, 0x61, 0xb8, - 0x6e, 0xfa, 0xae, 0x85, 0x5f, 0x1a, 0x0e, 0xb6, 0x89, 0x9a, 0xe0, 0xde, 0x94, 0xb4, 0x6d, 0x62, - 0x9b, 0xa0, 0x02, 0x5c, 0xa9, 0x93, 0x03, 0xdc, 0xb2, 0x02, 0xc3, 0xc2, 0x4e, 0xa3, 0x85, 0x1b, - 0xc4, 0xa8, 0xd1, 0x3a, 0x51, 0xfb, 0x78, 0xec, 0xb8, 0x74, 0xae, 0x4b, 0xdf, 0x32, 0xad, 0x13, - 0xf4, 0x1e, 0xa8, 0x7e, 0xcb, 0x75, 0xa9, 0x17, 0x90, 0xfa, 0xf1, 0x2c, 0x5f, 0xbd, 0x98, 0xed, - 0x9b, 0x19, 0xd2, 0x27, 0x3a, 0xfe, 0x70, 0xa2, 0x8f, 0x26, 0x61, 0x28, 0x30, 0x6d, 0x62, 0xbc, - 0xa2, 0x0e, 0x51, 0xfb, 0x79, 0x87, 0x24, 0x33, 0xec, 0x51, 0x87, 0xa0, 0x2c, 0xa4, 0xea, 0xc4, - 0xaf, 0x79, 0xa6, 0xcb, 0xa6, 0xa7, 0x0e, 0x48, 0xb0, 0x5d, 0x13, 0x9a, 0x02, 0xc0, 0x87, 0x38, - 0xc0, 0x9e, 0xd1, 0xf2, 0x4c, 0x75, 0x90, 0x07, 0x0c, 0x09, 0xcb, 0x8e, 0x67, 0xa2, 0x1b, 0x30, - 0x4a, 0x1c, 0xbc, 0x6f, 0x11, 0xc3, 0xa2, 0x8d, 0x86, 0xe9, 0x34, 0xd4, 0x64, 0x56, 0x99, 0x49, - 0xea, 0x23, 0xc2, 0xba, 0x2e, 0x8c, 0x68, 0x0b, 0xc0, 0xc6, 0x41, 0xad, 0x69, 0xd8, 0x8c, 0xe7, - 0x50, 0x56, 0x99, 0x19, 0x2d, 0xdc, 0xcd, 0x45, 0x9c, 0xbe, 0x1c, 0x9f, 0x74, 0x6e, 0x83, 0x25, - 0x6e, 0xd0, 0x3a, 0xd1, 0x87, 0xec, 0xf6, 0x25, 0x7a, 0x08, 0x6a, 0xcd, 0xc2, 0xbe, 0x6f, 0x1e, - 0x98, 0x35, 0x71, 0x48, 0x82, 0xa6, 0x47, 0xfc, 0x26, 0xb5, 0xea, 0x2a, 0x64, 0x95, 0x99, 0x84, - 0x7e, 0xf5, 0xb8, 0xbf, 0xda, 0x76, 0x23, 0x1d, 0x52, 0xd8, 0x35, 0x8d, 0x43, 0xe2, 0xf9, 0x8c, - 0xf3, 0x28, 0x07, 0x33, 0x1f, 0x13, 0x4c, 0xd1, 0x35, 0x77, 0x45, 0xa2, 0x0e, 0xb8, 0x73, 0x8d, - 0x3e, 0x84, 0x8b, 0x81, 0x49, 0x3c, 0x75, 0x8c, 0x17, 0x9b, 0x8b, 0x59, 0xac, 0x6a, 0x12, 0x4f, - 0xe7, 0x89, 0xda, 0x2e, 0x0c, 0x75, 0x78, 0xa2, 0x0c, 0x4c, 0x6c, 0x14, 0xab, 0xcb, 0x6b, 0xc6, - 0xc6, 0xd6, 0x4a, 0xc9, 0xd8, 0xd9, 0xac, 0x6c, 0x97, 0x96, 0xcb, 0xab, 0xe5, 0xd2, 0x4a, 0xfa, - 0x02, 0xba, 0x02, 0x97, 0x42, 0xbe, 0xb5, 0x27, 0x4b, 0x7a, 0x79, 0x25, 0xad, 0xa0, 0x09, 0x40, - 0x21, 0xf3, 0xc6, 0xba, 0xb1, 0xb5, 0xb9, 0xfe, 0x24, 0x9d, 0xd0, 0x2c, 0x80, 0x2e, 0x64, 0x34, - 0x09, 0x57, 0x8b, 0xdb, 0x65, 0x63, 0xb7, 0xa4, 0x57, 0xca, 0x5b, 0x9b, 0x27, 0x2a, 0x23, 0x18, - 0x0d, 0x3b, 0x77, 0xe7, 0xd3, 0x4a, 0x8f, 0xad, 0x90, 0x4e, 0xa0, 0x6b, 0x70, 0xe5, 0xb8, 0xcd, - 0x58, 0x2a, 0x55, 0x8b, 0xc6, 0x7c, 0xba, 0x4f, 0xfb, 0x18, 0x2e, 0x32, 0x4e, 0xe8, 0x32, 0xa4, - 0xab, 0xe5, 0x92, 0x7e, 0xa2, 0xc1, 0x25, 0x18, 0xe1, 0xd6, 0x4a, 0xb5, 0xb8, 0xb9, 0x52, 0xd4, - 0x19, 0xec, 0x71, 0x18, 0xe3, 0xa6, 0xd2, 0x66, 0xb5, 0xa4, 0x6f, 0xeb, 0xe5, 0x4a, 0x29, 0x9d, - 0x40, 0x2a, 0x5c, 0x3e, 0x61, 0x34, 0xb6, 0xd7, 0x77, 0x2a, 0xe9, 0xbe, 0x05, 0xfb, 0xcf, 0xe2, - 0x53, 0x98, 0x0e, 0xcd, 0x53, 0xcc, 0x19, 0xbb, 0xa6, 0x9f, 0xab, 0x51, 0x3b, 0x2f, 0xfe, 0x9a, - 0xaa, 0xeb, 0xd1, 0xa7, 0xa4, 0x16, 0xf8, 0xf9, 0x23, 0x79, 0xf5, 0x99, 0x50, 0x3d, 0x74, 0xe7, - 0x14, 0x8f, 0x45, 0xc5, 0x01, 0xf1, 0xf3, 0x47, 0xed, 0x4b, 0x19, 0xae, 0xdd, 0x82, 0xb1, 0xc7, - 0x24, 0xe0, 0x45, 0x75, 0xf2, 0x49, 0x8b, 0xf8, 0x67, 0xfe, 0xed, 0xb5, 0x2f, 0x15, 0x18, 0xab, - 0x9c, 0x88, 0x7d, 0x1f, 0xfa, 0x79, 0x1d, 0x1e, 0x9a, 0x2a, 0xdc, 0x8c, 0x77, 0x2a, 0x74, 0x91, - 0x84, 0x16, 0x21, 0xd5, 0x72, 0xeb, 0x38, 0x20, 0x5c, 0x98, 0xb8, 0x8e, 0xa4, 0x0a, 0x99, 0x76, - 0x8d, 0xb6, 0x76, 0xe5, 0x56, 0x99, 0x76, 0x6d, 0x60, 0xff, 0x99, 0x0e, 0x22, 0x9c, 0x5d, 0x6b, - 0xb7, 0x01, 0xad, 0x10, 0x8b, 0x04, 0x24, 0x16, 0xf8, 0x55, 0x48, 0x56, 0x5a, 0xfb, 0x72, 0x78, - 0x30, 0x28, 0x47, 0x23, 0x83, 0xda, 0x3f, 0x99, 0x56, 0x10, 0xe7, 0xd0, 0xf4, 0xa8, 0x63, 0xb3, - 0x12, 0x52, 0xd8, 0x42, 0x26, 0xcd, 0x84, 0xf1, 0x0a, 0xc1, 0x5e, 0xad, 0xc9, 0x4b, 0xf9, 0x11, - 0x6d, 0x99, 0x32, 0xb9, 0x4c, 0xc5, 0x7c, 0xf3, 0x95, 0xd0, 0xc9, 0x7e, 0x3d, 0xc9, 0x0c, 0x15, - 0xf3, 0x15, 0x61, 0xba, 0xc3, 0x9d, 0x01, 0x7d, 0x46, 0x1c, 0xa9, 0x8c, 0x3c, 0xbc, 0xca, 0x0c, - 0xda, 0xe7, 0x70, 0xf9, 0x78, 0x2b, 0xdf, 0xa5, 0x8e, 0x4f, 0xd0, 0x07, 0x30, 0xc0, 0xc7, 0xe7, - 0xab, 0x4a, 0xb6, 0xef, 0x1c, 0x43, 0x97, 0x59, 0xe8, 0x26, 0x8c, 0x39, 0xe4, 0x45, 0x60, 0x84, - 0x7a, 0x0b, 0xa2, 0x23, 0xcc, 0xbc, 0xdd, 0xe9, 0x3f, 0x07, 0x97, 0xaa, 0x1e, 0x36, 0x9d, 0x58, - 0xf3, 0x2d, 0x03, 0x2a, 0xbd, 0x60, 0xda, 0x1c, 0x27, 0x9a, 0x8d, 0x85, 0x83, 0xe1, 0x82, 0x2b, - 0x9a, 0x27, 0xb9, 0x61, 0xc7, 0x33, 0xb5, 0x3a, 0x8c, 0x1f, 0x2b, 0x25, 0x69, 0x4f, 0x85, 0x73, - 0x78, 0xb9, 0xb5, 0x0b, 0xdd, 0x2c, 0x74, 0x03, 0x46, 0x84, 0xbb, 0x46, 0x9d, 0xa0, 0x7d, 0xf3, - 0x86, 0xd7, 0x2e, 0xe8, 0xc3, 0xdc, 0xbc, 0x2c, 0xac, 0x4b, 0x83, 0xf2, 0xc0, 0x6a, 0x47, 0x80, - 0xca, 0x76, 0x6c, 0xc0, 0x53, 0x3d, 0x80, 0xdf, 0xdc, 0xbc, 0xef, 0xcd, 0xcd, 0x3f, 0x85, 0x71, - 0x9d, 0xf8, 0x01, 0xf5, 0xc8, 0x7f, 0xd1, 0xbd, 0x06, 0x99, 0xc7, 0x24, 0xd8, 0xed, 0x3c, 0x7c, - 0xe8, 0xfc, 0xd9, 0xa3, 0x0d, 0x62, 0xf2, 0x38, 0x88, 0xa5, 0xbe, 0xdf, 0x8b, 0x89, 0x0e, 0x92, - 0x19, 0x18, 0x39, 0x65, 0x9f, 0xb3, 0x18, 0x45, 0x1f, 0xb6, 0x42, 0x4b, 0xb9, 0xf0, 0xfd, 0x18, - 0x0c, 0x88, 0x83, 0x8b, 0x7e, 0x54, 0x20, 0xd9, 0x16, 0x19, 0x14, 0xbd, 0x12, 0x4f, 0xe8, 0x51, - 0x26, 0xe6, 0xf9, 0xd6, 0x3e, 0xfa, 0xe2, 0xf5, 0x1f, 0x5f, 0x25, 0x76, 0x91, 0xd6, 0x79, 0xbe, - 0x3a, 0x12, 0xa8, 0x1f, 0x75, 0x24, 0x71, 0x56, 0xca, 0xde, 0xde, 0x5d, 0x94, 0x7b, 0x43, 0x54, - 0x48, 0x30, 0xdb, 0x19, 0xe8, 0x37, 0x05, 0x92, 0x95, 0xf8, 0x24, 0x2a, 0x6f, 0x49, 0xe2, 0x90, - 0x93, 0x70, 0xb5, 0x99, 0x2e, 0x3c, 0xf9, 0x34, 0x7b, 0x06, 0x95, 0x05, 0x71, 0x53, 0xf7, 0x1e, - 0x69, 0xf7, 0x23, 0x53, 0x4e, 0xe1, 0x25, 0xd3, 0xd1, 0x0f, 0x0a, 0xa4, 0x42, 0x72, 0x8a, 0xee, - 0x45, 0xe2, 0xed, 0x15, 0xdf, 0xcc, 0x44, 0x8f, 0x74, 0x97, 0xd8, 0x33, 0x69, 0xfb, 0xce, 0xcc, - 0xc6, 0xba, 0x33, 0xb3, 0xe7, 0xbd, 0x33, 0xdf, 0x29, 0x30, 0x1c, 0x16, 0x4a, 0x74, 0x3f, 0xc6, - 0xdd, 0xe9, 0x91, 0xf0, 0xcc, 0x83, 0x73, 0x66, 0x09, 0x59, 0xd2, 0xe6, 0x39, 0xb7, 0x39, 0x74, - 0x2b, 0x9a, 0xdb, 0x82, 0xcf, 0x0b, 0xa0, 0x9f, 0x15, 0x80, 0xae, 0xb2, 0xa2, 0x42, 0x64, 0xe3, - 0x1e, 0x19, 0xce, 0x4c, 0xb5, 0x73, 0x42, 0xaf, 0x08, 0xb9, 0xad, 0xf6, 0x2b, 0x82, 0xe6, 0x70, - 0x50, 0xcd, 0xf0, 0x29, 0x3a, 0x13, 0x54, 0xc0, 0x8a, 0x2f, 0x28, 0xb3, 0x7b, 0x0f, 0xc3, 0x27, - 0x28, 0xd6, 0xd9, 0x69, 0xa7, 0xa2, 0xd7, 0x0a, 0xa4, 0x42, 0x9a, 0x1d, 0xe3, 0xf4, 0xf4, 0x2e, - 0x8b, 0x28, 0x4e, 0x2e, 0xe7, 0xf4, 0x54, 0x8b, 0x33, 0x68, 0xc2, 0xab, 0x33, 0x52, 0x0b, 0xda, - 0x83, 0x73, 0x92, 0xea, 0xe4, 0x72, 0x56, 0xa1, 0x1d, 0x11, 0x83, 0x55, 0xef, 0x46, 0xf9, 0x37, - 0x59, 0x99, 0xf6, 0xdb, 0xb3, 0xea, 0xe4, 0xa2, 0x5f, 0x15, 0x18, 0x0e, 0x2f, 0x9f, 0x18, 0x7f, - 0x97, 0x53, 0x76, 0x55, 0x14, 0x2f, 0x8f, 0xf3, 0xb2, 0xb4, 0xd9, 0x18, 0xbc, 0x3c, 0x51, 0x9e, - 0x11, 0x5b, 0xd4, 0xde, 0x39, 0x27, 0xb1, 0x6e, 0x32, 0xdb, 0x33, 0xe3, 0xa7, 0x2c, 0x36, 0xb4, - 0x18, 0x67, 0xe5, 0x9c, 0xb1, 0x0e, 0x33, 0xd1, 0x6f, 0x4d, 0x27, 0x33, 0xb5, 0x45, 0xce, 0xfd, - 0x01, 0xba, 0x17, 0xcd, 0x3d, 0xf4, 0x09, 0x40, 0x24, 0x67, 0x5e, 0xfc, 0x54, 0xbc, 0x76, 0xe6, - 0xd3, 0xff, 0x2f, 0xc5, 0x27, 0xcd, 0x20, 0x70, 0xfd, 0x85, 0x7c, 0xfe, 0xf9, 0xf3, 0x9e, 0x57, - 0x03, 0xdc, 0x0a, 0x9a, 0xe2, 0x63, 0xc3, 0x1d, 0xd7, 0xc2, 0xc1, 0x01, 0xf5, 0xec, 0xdb, 0x51, - 0xe1, 0xdd, 0x56, 0x4b, 0xdf, 0x28, 0x70, 0xbd, 0x46, 0xed, 0x28, 0xbe, 0x4b, 0xc0, 0xcf, 0xc1, - 0x36, 0x93, 0xf8, 0x6d, 0x65, 0xaf, 0x2c, 0xc3, 0x1b, 0x94, 0xad, 0xff, 0x1c, 0xf5, 0x1a, 0xf9, - 0x06, 0x71, 0xf8, 0x02, 0xc8, 0x77, 0x1b, 0x9e, 0xf9, 0x0d, 0x64, 0xb1, 0x6b, 0xfa, 0x5b, 0x51, - 0xbe, 0x4e, 0x24, 0x56, 0x56, 0xbf, 0x4d, 0x4c, 0x3f, 0x16, 0x35, 0x97, 0x39, 0x84, 0x95, 0x2e, - 0x84, 0x5d, 0x91, 0xb4, 0x3f, 0xc0, 0xeb, 0xdf, 0xfb, 0x27, 0x00, 0x00, 0xff, 0xff, 0xc9, 0xc1, - 0x7e, 0xd5, 0x0a, 0x12, 0x00, 0x00, + // 1518 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x58, 0x4d, 0x6f, 0xdb, 0x46, + 0x13, 0x0e, 0xe5, 0xd8, 0x96, 0x47, 0xfe, 0x50, 0xd6, 0x89, 0xc3, 0xc8, 0xaf, 0x61, 0xbd, 0x0c, + 0x12, 0x38, 0x76, 0x22, 0xc5, 0x4a, 0xd2, 0x36, 0x76, 0xd3, 0x42, 0xb6, 0xe5, 0x58, 0x80, 0xbf, + 0x40, 0xc9, 0x06, 0x62, 0x14, 0x25, 0xd6, 0xd2, 0x9a, 0x62, 0x42, 0x72, 0x59, 0x72, 0xe5, 0x7c, + 0xb8, 0xed, 0xa1, 0xe7, 0xde, 0xfa, 0x0f, 0x7a, 0x2a, 0x7a, 0x68, 0xaf, 0x3d, 0xf7, 0xd8, 0x4b, + 0x81, 0xe6, 0xd0, 0x4b, 0x0f, 0x3d, 0xf4, 0xd4, 0xfe, 0x81, 0x1e, 0x0b, 0xee, 0x92, 0x12, 0x6d, + 0xd9, 0x21, 0x1d, 0x14, 0xe8, 0x8d, 0x9a, 0x99, 0x67, 0x66, 0x9e, 0xe5, 0xe8, 0x19, 0x92, 0x30, + 0xa7, 0x53, 0xaa, 0x9b, 0xa4, 0xd8, 0x30, 0x69, 0xbb, 0x59, 0x6c, 0x1a, 0xd8, 0xa4, 0xfa, 0x81, + 0x49, 0x9f, 0x17, 0x0f, 0x4b, 0xfb, 0x84, 0xe1, 0xf9, 0x22, 0xd6, 0x89, 0xcd, 0x0a, 0x8e, 0x4b, + 0x19, 0x45, 0xd3, 0x22, 0xb8, 0xc0, 0x83, 0x0b, 0xdd, 0xe0, 0x42, 0x10, 0x9c, 0xfb, 0x5f, 0x90, + 0x0d, 0x3b, 0x46, 0x11, 0xdb, 0x36, 0x65, 0x98, 0x19, 0xd4, 0xf6, 0x04, 0x3c, 0x37, 0x1d, 0xf1, + 0x1e, 0x18, 0xc4, 0x6c, 0x6a, 0xfb, 0xa4, 0x85, 0x0f, 0x0d, 0xea, 0x06, 0x01, 0xd7, 0x22, 0x01, + 0x2e, 0xf1, 0x68, 0xdb, 0x6d, 0x90, 0xc0, 0x35, 0x1f, 0xd7, 0x27, 0xb1, 0x0f, 0x0d, 0x97, 0xda, + 0x56, 0xa7, 0xdb, 0xdc, 0xbb, 0x71, 0x90, 0x43, 0x6c, 0x1a, 0x4d, 0xde, 0xa1, 0xe6, 0x12, 0xaf, + 0x6d, 0x86, 0xc0, 0xeb, 0x01, 0xd0, 0xa4, 0xb6, 0xee, 0xb6, 0x6d, 0xdb, 0xb0, 0xf5, 0x22, 0x75, + 0x88, 0x7b, 0x8c, 0xcc, 0x64, 0x10, 0xc4, 0x7f, 0xed, 0xb7, 0x0f, 0x8a, 0xc4, 0x72, 0xd8, 0xcb, + 0xc0, 0x99, 0x3f, 0xe9, 0x14, 0x74, 0x2d, 0xec, 0x3d, 0x0b, 0x22, 0xae, 0x46, 0xa8, 0x36, 0x4c, + 0xa3, 0xd3, 0xb5, 0xf2, 0xd7, 0x20, 0xf4, 0x97, 0xfd, 0x33, 0x47, 0x13, 0x30, 0xe0, 0x60, 0x97, + 0xd8, 0x4c, 0x96, 0xf2, 0xd2, 0xcc, 0x90, 0x1a, 0xfc, 0x42, 0xff, 0x87, 0xe1, 0xa6, 0xe1, 0x39, + 0x26, 0x7e, 0xa9, 0xd9, 0xd8, 0x22, 0x72, 0x8a, 0x7b, 0x33, 0x81, 0x6d, 0x13, 0x5b, 0x04, 0x95, + 0xe0, 0x4a, 0x93, 0x1c, 0xe0, 0xb6, 0xc9, 0x34, 0x13, 0xdb, 0x7a, 0x1b, 0xeb, 0x44, 0x6b, 0xd0, + 0x26, 0x91, 0xfb, 0x78, 0xec, 0x78, 0xe0, 0x5c, 0x0f, 0x7c, 0xcb, 0xb4, 0x49, 0xd0, 0x7b, 0x20, + 0x7b, 0x6d, 0xc7, 0xa1, 0x2e, 0x23, 0xcd, 0xe3, 0x28, 0x4f, 0xbe, 0x98, 0xef, 0x9b, 0x19, 0x52, + 0x27, 0x3a, 0xfe, 0x28, 0xd0, 0x43, 0x93, 0x30, 0xc4, 0x0c, 0x8b, 0x68, 0xaf, 0xa8, 0x4d, 0xe4, + 0x7e, 0x5e, 0x21, 0xed, 0x1b, 0xf6, 0xa8, 0x4d, 0x50, 0x1e, 0x32, 0x4d, 0xe2, 0x35, 0x5c, 0xc3, + 0xf1, 0x4f, 0x4f, 0x1e, 0x08, 0x9a, 0xed, 0x9a, 0xd0, 0x14, 0x00, 0x3e, 0xc4, 0x0c, 0xbb, 0x5a, + 0xdb, 0x35, 0xe4, 0x41, 0x1e, 0x30, 0x24, 0x2c, 0x3b, 0xae, 0x81, 0x6e, 0xc0, 0x28, 0xb1, 0xf1, + 0xbe, 0x49, 0x34, 0x93, 0xea, 0xba, 0x61, 0xeb, 0x72, 0x3a, 0x2f, 0xcd, 0xa4, 0xd5, 0x11, 0x61, + 0x5d, 0x17, 0x46, 0xb4, 0x05, 0x60, 0x61, 0xd6, 0x68, 0x69, 0x96, 0xcf, 0x73, 0x28, 0x2f, 0xcd, + 0x8c, 0x96, 0xee, 0x16, 0x62, 0x06, 0xb6, 0xc0, 0x4f, 0xba, 0xb0, 0xe1, 0x03, 0x37, 0x68, 0x93, + 0xa8, 0x43, 0x56, 0x78, 0x89, 0x1e, 0x82, 0xdc, 0x30, 0xb1, 0xe7, 0x19, 0x07, 0x46, 0x43, 0x0c, + 0x09, 0x6b, 0xb9, 0xc4, 0x6b, 0x51, 0xb3, 0x29, 0x43, 0x5e, 0x9a, 0x49, 0xa9, 0x57, 0x8f, 0xfb, + 0xeb, 0xa1, 0x1b, 0xa9, 0x90, 0xc1, 0x8e, 0xa1, 0x1d, 0x12, 0xd7, 0xf3, 0x39, 0x8f, 0xf2, 0x66, + 0xe6, 0x13, 0x36, 0x53, 0x76, 0x8c, 0x5d, 0x01, 0x54, 0x01, 0x77, 0xae, 0xd1, 0x87, 0x70, 0x91, + 0x19, 0xc4, 0x95, 0xc7, 0x78, 0xb2, 0xb9, 0x84, 0xc9, 0xea, 0x06, 0x71, 0x55, 0x0e, 0x54, 0x76, + 0x61, 0xa8, 0xc3, 0x13, 0xe5, 0x60, 0x62, 0xa3, 0x5c, 0x5f, 0x5e, 0xd3, 0x36, 0xb6, 0x56, 0x2a, + 0xda, 0xce, 0x66, 0x6d, 0xbb, 0xb2, 0x5c, 0x5d, 0xad, 0x56, 0x56, 0xb2, 0x17, 0xd0, 0x15, 0xb8, + 0x14, 0xf1, 0xad, 0x3d, 0x59, 0x52, 0xab, 0x2b, 0x59, 0x09, 0x4d, 0x00, 0x8a, 0x98, 0x37, 0xd6, + 0xb5, 0xad, 0xcd, 0xf5, 0x27, 0xd9, 0x94, 0x62, 0x02, 0x74, 0x5b, 0x46, 0x93, 0x70, 0xb5, 0xbc, + 0x5d, 0xd5, 0x76, 0x2b, 0x6a, 0xad, 0xba, 0xb5, 0x79, 0x22, 0x33, 0x82, 0xd1, 0xa8, 0x73, 0x77, + 0x3e, 0x2b, 0xf5, 0xd8, 0x4a, 0xd9, 0x14, 0xba, 0x06, 0x57, 0x8e, 0xdb, 0xb4, 0xa5, 0x4a, 0xbd, + 0xac, 0xcd, 0x67, 0xfb, 0x94, 0x8f, 0xe1, 0xa2, 0xcf, 0x09, 0x5d, 0x86, 0x6c, 0xbd, 0x5a, 0x51, + 0x4f, 0x14, 0xb8, 0x04, 0x23, 0xdc, 0x5a, 0xab, 0x97, 0x37, 0x57, 0xca, 0xaa, 0xdf, 0xf6, 0x38, + 0x8c, 0x71, 0x53, 0x65, 0xb3, 0x5e, 0x51, 0xb7, 0xd5, 0x6a, 0xad, 0x92, 0x4d, 0x21, 0x19, 0x2e, + 0x9f, 0x30, 0x6a, 0xdb, 0xeb, 0x3b, 0xb5, 0x6c, 0xdf, 0x82, 0xf5, 0x67, 0xf9, 0x29, 0x4c, 0x47, + 0xce, 0x53, 0x9c, 0x33, 0x76, 0x0c, 0xaf, 0xd0, 0xa0, 0x56, 0x51, 0xfc, 0x35, 0x65, 0xc7, 0xa5, + 0x4f, 0x49, 0x83, 0x79, 0xc5, 0xa3, 0xe0, 0xea, 0x33, 0x21, 0x94, 0xe8, 0xce, 0x29, 0x1e, 0x93, + 0x8a, 0x01, 0xf1, 0x8a, 0x47, 0xe1, 0x65, 0x10, 0xae, 0xdc, 0x82, 0xb1, 0xc7, 0x84, 0xf1, 0xa4, + 0x2a, 0xf9, 0xa4, 0x4d, 0xbc, 0x33, 0xff, 0xf6, 0xca, 0x97, 0x12, 0x8c, 0xd5, 0x4e, 0xc4, 0xbe, + 0x0f, 0xfd, 0x3c, 0x0f, 0x0f, 0xcd, 0x94, 0x6e, 0x26, 0x9b, 0x0a, 0x55, 0x80, 0xd0, 0x22, 0x64, + 0xda, 0x4e, 0x13, 0x33, 0xc2, 0x85, 0x89, 0xeb, 0x48, 0xa6, 0x94, 0x0b, 0x73, 0x84, 0xda, 0x55, + 0x58, 0xf5, 0xb5, 0x6b, 0x03, 0x7b, 0xcf, 0x54, 0x10, 0xe1, 0xfe, 0xb5, 0x72, 0x1b, 0xd0, 0x0a, + 0x31, 0x09, 0x23, 0x89, 0x9a, 0x5f, 0x85, 0x74, 0xad, 0xbd, 0x1f, 0x1c, 0x1e, 0x0c, 0x06, 0x47, + 0x13, 0x04, 0x85, 0x3f, 0x7d, 0xad, 0x88, 0xc8, 0x78, 0x28, 0x6c, 0x11, 0x93, 0x62, 0xc0, 0x78, + 0x8d, 0x60, 0xb7, 0xd1, 0xe2, 0xa9, 0xbc, 0x98, 0xb2, 0xbe, 0x32, 0x39, 0xbe, 0x8a, 0x79, 0xc6, + 0x2b, 0xa1, 0x93, 0xfd, 0x6a, 0xda, 0x37, 0xd4, 0x8c, 0x57, 0xc4, 0xd7, 0x1d, 0xee, 0x64, 0xf4, + 0x19, 0xb1, 0x03, 0x65, 0xe4, 0xe1, 0x75, 0xdf, 0xa0, 0x7c, 0x0e, 0x97, 0x8f, 0x97, 0xf2, 0x1c, + 0x6a, 0x7b, 0x04, 0x7d, 0x00, 0x03, 0xfc, 0xf8, 0x3c, 0x59, 0xca, 0xf7, 0x9d, 0xe3, 0xd0, 0x03, + 0x14, 0xba, 0x09, 0x63, 0x36, 0x79, 0xc1, 0xb4, 0x48, 0x6d, 0x41, 0x74, 0xc4, 0x37, 0x6f, 0x77, + 0xea, 0xcf, 0xc1, 0xa5, 0xba, 0x8b, 0x0d, 0x3b, 0xd1, 0xf9, 0x56, 0x01, 0x55, 0x5e, 0xf8, 0xda, + 0x9c, 0x24, 0xda, 0x3f, 0x16, 0xde, 0x0c, 0x17, 0x5c, 0x51, 0x3c, 0xcd, 0x0d, 0x3b, 0xae, 0xa1, + 0x34, 0x61, 0xfc, 0x58, 0xaa, 0x80, 0xf6, 0x54, 0x14, 0xc3, 0xd3, 0xad, 0x5d, 0xe8, 0xa2, 0xd0, + 0x0d, 0x18, 0x11, 0xee, 0x06, 0xb5, 0x59, 0x78, 0xf3, 0x86, 0xd7, 0x2e, 0xa8, 0xc3, 0xdc, 0xbc, + 0x2c, 0xac, 0x4b, 0x83, 0xc1, 0xc0, 0x2a, 0x47, 0x80, 0xaa, 0x56, 0xe2, 0x86, 0xa7, 0x7a, 0x1a, + 0x7e, 0x73, 0xf1, 0xbe, 0x37, 0x17, 0xff, 0x14, 0xc6, 0x55, 0xe2, 0x31, 0xea, 0x92, 0xff, 0xa2, + 0x7a, 0x03, 0x72, 0x8f, 0x09, 0xdb, 0xed, 0x3c, 0x7c, 0xa8, 0xfc, 0xd9, 0x23, 0x6c, 0x62, 0xf2, + 0x78, 0x13, 0x4b, 0x7d, 0xbf, 0x97, 0x53, 0x9d, 0x4e, 0x66, 0x60, 0xe4, 0x94, 0x7d, 0xee, 0xc7, + 0x48, 0xea, 0xb0, 0x19, 0x59, 0xca, 0xa5, 0xef, 0xc7, 0x60, 0x40, 0x0c, 0x2e, 0xfa, 0x51, 0x82, + 0x74, 0x28, 0x32, 0x28, 0x7e, 0x25, 0x9e, 0xd0, 0xa3, 0x5c, 0xc2, 0xf9, 0x56, 0x3e, 0xfa, 0xe2, + 0xf5, 0x1f, 0x5f, 0xa5, 0x76, 0x91, 0xd2, 0x79, 0xbe, 0x3a, 0x12, 0x5d, 0x3f, 0xea, 0x48, 0xe2, + 0x6c, 0x20, 0x7b, 0x7b, 0x77, 0x51, 0xe1, 0x0d, 0x51, 0x11, 0xc1, 0x0c, 0x11, 0xe8, 0x37, 0x09, + 0xd2, 0xb5, 0xe4, 0x24, 0x6a, 0x6f, 0x49, 0xe2, 0x90, 0x93, 0x70, 0x94, 0x99, 0x6e, 0x7b, 0xc1, + 0x03, 0xf0, 0x19, 0x54, 0x16, 0xc4, 0x4d, 0xdd, 0x7b, 0xa4, 0xdc, 0x8f, 0x85, 0x9c, 0xc2, 0x2b, + 0x80, 0xa3, 0x1f, 0x24, 0xc8, 0x44, 0xe4, 0x14, 0xdd, 0x8b, 0xed, 0xb7, 0x57, 0x7c, 0x73, 0x13, + 0x3d, 0xd2, 0x5d, 0xf1, 0x9f, 0x49, 0xc3, 0x3b, 0x33, 0x9b, 0xe8, 0xce, 0xcc, 0x9e, 0xf7, 0xce, + 0x7c, 0x27, 0xc1, 0x70, 0x54, 0x28, 0xd1, 0xfd, 0x04, 0x77, 0xa7, 0x47, 0xc2, 0x73, 0x0f, 0xce, + 0x89, 0x12, 0xb2, 0xa4, 0xcc, 0x73, 0x6e, 0x73, 0xe8, 0x56, 0x3c, 0xb7, 0x05, 0x8f, 0x27, 0x40, + 0x3f, 0x4b, 0x00, 0x5d, 0x65, 0x45, 0xa5, 0xd8, 0xc2, 0x3d, 0x32, 0x9c, 0x9b, 0x0a, 0x31, 0x91, + 0x57, 0x84, 0xc2, 0x56, 0xf8, 0x8a, 0xa0, 0xd8, 0xbc, 0xa9, 0x56, 0x74, 0x8a, 0xce, 0x6c, 0x8a, + 0xf9, 0xc9, 0x17, 0xa4, 0xd9, 0xbd, 0x87, 0xd1, 0x09, 0x4a, 0x34, 0x3b, 0x21, 0x14, 0xbd, 0x96, + 0x20, 0x13, 0xd1, 0xec, 0x04, 0xd3, 0xd3, 0xbb, 0x2c, 0xe2, 0x38, 0x39, 0x9c, 0xd3, 0x53, 0x25, + 0xc9, 0x41, 0x13, 0x9e, 0xdd, 0x27, 0xb5, 0xa0, 0x3c, 0x38, 0x27, 0xa9, 0x0e, 0x96, 0xb3, 0x8a, + 0xec, 0x88, 0x04, 0xac, 0x7a, 0x37, 0xca, 0xbf, 0xc9, 0xca, 0xb0, 0xde, 0x9e, 0x55, 0x07, 0x8b, + 0x7e, 0x95, 0x60, 0x38, 0xba, 0x7c, 0x12, 0xfc, 0x5d, 0x4e, 0xd9, 0x55, 0x71, 0xbc, 0x5c, 0xce, + 0xcb, 0x54, 0x66, 0x13, 0xf0, 0x72, 0x45, 0x7a, 0x9f, 0xd8, 0xa2, 0xf2, 0xce, 0x39, 0x89, 0x75, + 0xc1, 0xfe, 0x9e, 0x19, 0x3f, 0x65, 0xb1, 0xa1, 0xc5, 0x24, 0x2b, 0xe7, 0x8c, 0x75, 0x98, 0x8b, + 0x7f, 0x6b, 0x3a, 0x89, 0x54, 0x16, 0x39, 0xf7, 0x07, 0xe8, 0x5e, 0x3c, 0xf7, 0xc8, 0x27, 0x00, + 0x01, 0xce, 0xbd, 0xf8, 0xa9, 0x7c, 0xed, 0xcc, 0xa7, 0xff, 0x5f, 0xca, 0x4f, 0x5a, 0x8c, 0x39, + 0xde, 0x42, 0xb1, 0xf8, 0xfc, 0x79, 0xcf, 0xab, 0x01, 0x6e, 0xb3, 0x96, 0xf8, 0xd8, 0x70, 0xc7, + 0x31, 0x31, 0x3b, 0xa0, 0xae, 0x75, 0x3b, 0x2e, 0xbc, 0x5b, 0x6a, 0xe9, 0x1b, 0x09, 0xae, 0x37, + 0xa8, 0x15, 0xc7, 0x77, 0x09, 0xf8, 0x1c, 0x6c, 0xfb, 0x12, 0xbf, 0x2d, 0xed, 0x55, 0x83, 0x70, + 0x9d, 0xfa, 0xeb, 0xbf, 0x40, 0x5d, 0xbd, 0xa8, 0x13, 0x9b, 0x2f, 0x80, 0x62, 0xb7, 0xe0, 0x99, + 0xdf, 0x40, 0x16, 0xbb, 0xa6, 0xbf, 0x25, 0xe9, 0xeb, 0x54, 0x6a, 0x65, 0xf5, 0xdb, 0xd4, 0xf4, + 0x63, 0x91, 0x73, 0x99, 0xb7, 0xb0, 0xd2, 0x6d, 0x61, 0x57, 0x80, 0xf6, 0x07, 0x78, 0xfe, 0x7b, + 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0xef, 0xeb, 0x61, 0xc7, 0x3d, 0x12, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/googleapis/cloud/dialogflow/v2beta1/environment.pb.go b/googleapis/cloud/dialogflow/v2beta1/environment.pb.go new file mode 100644 index 0000000000..c2417171d5 --- /dev/null +++ b/googleapis/cloud/dialogflow/v2beta1/environment.pb.go @@ -0,0 +1,412 @@ +// Code generated by protoc-gen-go. DO NOT EDIT. +// source: google/cloud/dialogflow/v2beta1/environment.proto + +package dialogflow + +import ( + context "context" + fmt "fmt" + math "math" + + proto "github.com/golang/protobuf/proto" + _ "github.com/golang/protobuf/ptypes/empty" + timestamp "github.com/golang/protobuf/ptypes/timestamp" + _ "google.golang.org/genproto/googleapis/api/annotations" + _ "google.golang.org/genproto/protobuf/field_mask" + grpc "google.golang.org/grpc" + codes "google.golang.org/grpc/codes" + status "google.golang.org/grpc/status" +) + +// Reference imports to suppress errors if they are not otherwise used. +var _ = proto.Marshal +var _ = fmt.Errorf +var _ = math.Inf + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the proto package it is being compiled against. +// A compilation error at this line likely means your copy of the +// proto package needs to be updated. +const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package + +// Represents an environment state. When a environment is pointed to a new +// agent version, the environment is temporarily set to the `LOADING` state. +// During that time, the environment keeps on serving the previous version of +// the agent. After the new agent version is done loading, the environment is +// set back to the `RUNNING` state. +type Environment_State int32 + +const ( + // Not specified. This value is not used. + Environment_STATE_UNSPECIFIED Environment_State = 0 + // Stopped. + Environment_STOPPED Environment_State = 1 + // Loading. + Environment_LOADING Environment_State = 2 + // Running. + Environment_RUNNING Environment_State = 3 +) + +var Environment_State_name = map[int32]string{ + 0: "STATE_UNSPECIFIED", + 1: "STOPPED", + 2: "LOADING", + 3: "RUNNING", +} + +var Environment_State_value = map[string]int32{ + "STATE_UNSPECIFIED": 0, + "STOPPED": 1, + "LOADING": 2, + "RUNNING": 3, +} + +func (x Environment_State) String() string { + return proto.EnumName(Environment_State_name, int32(x)) +} + +func (Environment_State) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_f690af77cb8ebc0e, []int{0, 0} +} + +// Represents an agent environment. +type Environment struct { + // Output only. The unique identifier of this agent environment. + // Format: `projects//agent/environments/`. + // For Environment ID, "-" is reserved for 'draft' environment. + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + // Optional. The developer-provided description for this environment. + // The maximum length is 500 characters. If exceeded, the request is rejected. + Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"` + // Optional. The agent version loaded into this environment. + // Format: `projects//agent/versions/`. + AgentVersion string `protobuf:"bytes,3,opt,name=agent_version,json=agentVersion,proto3" json:"agent_version,omitempty"` + // Output only. The state of this environment. This field is read-only, i.e., it cannot be + // set by create and update methods. + State Environment_State `protobuf:"varint,4,opt,name=state,proto3,enum=google.cloud.dialogflow.v2beta1.Environment_State" json:"state,omitempty"` + // Output only. The last update time of this environment. This field is read-only, i.e., it + // cannot be set by create and update methods. + UpdateTime *timestamp.Timestamp `protobuf:"bytes,5,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *Environment) Reset() { *m = Environment{} } +func (m *Environment) String() string { return proto.CompactTextString(m) } +func (*Environment) ProtoMessage() {} +func (*Environment) Descriptor() ([]byte, []int) { + return fileDescriptor_f690af77cb8ebc0e, []int{0} +} + +func (m *Environment) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Environment.Unmarshal(m, b) +} +func (m *Environment) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Environment.Marshal(b, m, deterministic) +} +func (m *Environment) XXX_Merge(src proto.Message) { + xxx_messageInfo_Environment.Merge(m, src) +} +func (m *Environment) XXX_Size() int { + return xxx_messageInfo_Environment.Size(m) +} +func (m *Environment) XXX_DiscardUnknown() { + xxx_messageInfo_Environment.DiscardUnknown(m) +} + +var xxx_messageInfo_Environment proto.InternalMessageInfo + +func (m *Environment) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *Environment) GetDescription() string { + if m != nil { + return m.Description + } + return "" +} + +func (m *Environment) GetAgentVersion() string { + if m != nil { + return m.AgentVersion + } + return "" +} + +func (m *Environment) GetState() Environment_State { + if m != nil { + return m.State + } + return Environment_STATE_UNSPECIFIED +} + +func (m *Environment) GetUpdateTime() *timestamp.Timestamp { + if m != nil { + return m.UpdateTime + } + return nil +} + +// The request message for [Environments.ListEnvironments][google.cloud.dialogflow.v2beta1.Environments.ListEnvironments]. +type ListEnvironmentsRequest struct { + // Required. The agent to list all environments from. + // Format: `projects//agent`. + Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"` + // Optional. The maximum number of items to return in a single page. By default 100 and + // at most 1000. + PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` + // Optional. The next_page_token value returned from a previous list request. + PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ListEnvironmentsRequest) Reset() { *m = ListEnvironmentsRequest{} } +func (m *ListEnvironmentsRequest) String() string { return proto.CompactTextString(m) } +func (*ListEnvironmentsRequest) ProtoMessage() {} +func (*ListEnvironmentsRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_f690af77cb8ebc0e, []int{1} +} + +func (m *ListEnvironmentsRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ListEnvironmentsRequest.Unmarshal(m, b) +} +func (m *ListEnvironmentsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ListEnvironmentsRequest.Marshal(b, m, deterministic) +} +func (m *ListEnvironmentsRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ListEnvironmentsRequest.Merge(m, src) +} +func (m *ListEnvironmentsRequest) XXX_Size() int { + return xxx_messageInfo_ListEnvironmentsRequest.Size(m) +} +func (m *ListEnvironmentsRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ListEnvironmentsRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_ListEnvironmentsRequest proto.InternalMessageInfo + +func (m *ListEnvironmentsRequest) GetParent() string { + if m != nil { + return m.Parent + } + return "" +} + +func (m *ListEnvironmentsRequest) GetPageSize() int32 { + if m != nil { + return m.PageSize + } + return 0 +} + +func (m *ListEnvironmentsRequest) GetPageToken() string { + if m != nil { + return m.PageToken + } + return "" +} + +// The response message for [Environments.ListEnvironments][google.cloud.dialogflow.v2beta1.Environments.ListEnvironments]. +type ListEnvironmentsResponse struct { + // The list of agent environments. There will be a maximum number of items + // returned based on the page_size field in the request. + Environments []*Environment `protobuf:"bytes,1,rep,name=environments,proto3" json:"environments,omitempty"` + // Token to retrieve the next page of results, or empty if there are no + // more results in the list. + NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ListEnvironmentsResponse) Reset() { *m = ListEnvironmentsResponse{} } +func (m *ListEnvironmentsResponse) String() string { return proto.CompactTextString(m) } +func (*ListEnvironmentsResponse) ProtoMessage() {} +func (*ListEnvironmentsResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_f690af77cb8ebc0e, []int{2} +} + +func (m *ListEnvironmentsResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ListEnvironmentsResponse.Unmarshal(m, b) +} +func (m *ListEnvironmentsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ListEnvironmentsResponse.Marshal(b, m, deterministic) +} +func (m *ListEnvironmentsResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ListEnvironmentsResponse.Merge(m, src) +} +func (m *ListEnvironmentsResponse) XXX_Size() int { + return xxx_messageInfo_ListEnvironmentsResponse.Size(m) +} +func (m *ListEnvironmentsResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ListEnvironmentsResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ListEnvironmentsResponse proto.InternalMessageInfo + +func (m *ListEnvironmentsResponse) GetEnvironments() []*Environment { + if m != nil { + return m.Environments + } + return nil +} + +func (m *ListEnvironmentsResponse) GetNextPageToken() string { + if m != nil { + return m.NextPageToken + } + return "" +} + +func init() { + proto.RegisterEnum("google.cloud.dialogflow.v2beta1.Environment_State", Environment_State_name, Environment_State_value) + proto.RegisterType((*Environment)(nil), "google.cloud.dialogflow.v2beta1.Environment") + proto.RegisterType((*ListEnvironmentsRequest)(nil), "google.cloud.dialogflow.v2beta1.ListEnvironmentsRequest") + proto.RegisterType((*ListEnvironmentsResponse)(nil), "google.cloud.dialogflow.v2beta1.ListEnvironmentsResponse") +} + +func init() { + proto.RegisterFile("google/cloud/dialogflow/v2beta1/environment.proto", fileDescriptor_f690af77cb8ebc0e) +} + +var fileDescriptor_f690af77cb8ebc0e = []byte{ + // 769 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0x4f, 0x4f, 0x13, 0x4f, + 0x18, 0xfe, 0x6d, 0x4b, 0xf9, 0xc9, 0x14, 0xb4, 0x4e, 0x62, 0x28, 0xd5, 0x84, 0x5a, 0x82, 0x56, + 0x03, 0xbb, 0xa1, 0x5c, 0x14, 0x42, 0xe2, 0x42, 0x0b, 0x69, 0x82, 0xa5, 0xd9, 0x16, 0x12, 0x89, + 0xc9, 0x66, 0xba, 0x9d, 0x2e, 0x2b, 0xbb, 0x3b, 0xeb, 0xce, 0xb4, 0x20, 0x84, 0x8b, 0x47, 0xaf, + 0xfa, 0x09, 0x3c, 0x78, 0xf0, 0xe0, 0x07, 0xf1, 0xa8, 0x89, 0x67, 0x0e, 0x9e, 0xfc, 0x04, 0x86, + 0x8b, 0x66, 0x67, 0xb6, 0xed, 0x02, 0xd6, 0xaa, 0xb7, 0x7d, 0xff, 0x3c, 0xef, 0x3e, 0xf3, 0xbc, + 0xcf, 0x0c, 0x58, 0x30, 0x09, 0x31, 0x6d, 0xac, 0x18, 0x36, 0x69, 0x37, 0x95, 0xa6, 0x85, 0x6c, + 0x62, 0xb6, 0x6c, 0x72, 0xa0, 0x74, 0x0a, 0x0d, 0xcc, 0xd0, 0x82, 0x82, 0xdd, 0x8e, 0xe5, 0x13, + 0xd7, 0xc1, 0x2e, 0x93, 0x3d, 0x9f, 0x30, 0x02, 0xa7, 0x05, 0x44, 0xe6, 0x10, 0xb9, 0x0f, 0x91, + 0x43, 0x48, 0xe6, 0x56, 0x38, 0x13, 0x79, 0x96, 0x82, 0x5c, 0x97, 0x30, 0xc4, 0x2c, 0xe2, 0x52, + 0x01, 0xcf, 0x4c, 0x47, 0xaa, 0x2d, 0x0b, 0xdb, 0x4d, 0xbd, 0x81, 0xf7, 0x50, 0xc7, 0x22, 0x7e, + 0xd8, 0x30, 0x15, 0x69, 0xf0, 0x31, 0x25, 0x6d, 0xdf, 0xc0, 0x61, 0xa9, 0x30, 0x8c, 0x2d, 0x6a, + 0x37, 0x2d, 0xa2, 0x1b, 0xc4, 0x6d, 0x59, 0x66, 0x88, 0xb9, 0x19, 0x62, 0x78, 0xd4, 0x68, 0xb7, + 0x14, 0xec, 0x78, 0xec, 0x45, 0x58, 0xcc, 0x5e, 0x2c, 0x0a, 0x46, 0x0e, 0xa2, 0xfb, 0x17, 0xe8, + 0xf6, 0x3a, 0x98, 0xe5, 0x60, 0xca, 0x90, 0xe3, 0x85, 0x0d, 0x93, 0x11, 0xba, 0x86, 0x6d, 0xf5, + 0x74, 0xca, 0x7d, 0x89, 0x83, 0x64, 0xa9, 0xaf, 0x1e, 0x9c, 0x04, 0x23, 0x2e, 0x72, 0x70, 0x5a, + 0xca, 0x4a, 0xf9, 0xb1, 0xd5, 0xf8, 0xa9, 0x1a, 0xd7, 0x78, 0x02, 0xce, 0x82, 0x64, 0x13, 0x53, + 0xc3, 0xb7, 0xbc, 0x40, 0xa7, 0x74, 0xac, 0x5b, 0x97, 0xb4, 0x68, 0x1e, 0x56, 0xc0, 0x04, 0x32, + 0xb1, 0xcb, 0xf4, 0x0e, 0xf6, 0x69, 0xd0, 0x18, 0xe7, 0x8d, 0xf7, 0x4e, 0x55, 0xe9, 0x4c, 0x9d, + 0x01, 0xb7, 0x23, 0x9b, 0x10, 0x94, 0x90, 0x67, 0x51, 0xd9, 0x20, 0x8e, 0xb2, 0x23, 0x00, 0xda, + 0x38, 0xc7, 0x87, 0x11, 0x7c, 0x0c, 0x12, 0x94, 0x21, 0x86, 0xd3, 0x23, 0x59, 0x29, 0x7f, 0xb5, + 0x50, 0x90, 0x87, 0xec, 0x55, 0x8e, 0x1c, 0x46, 0xae, 0x05, 0x48, 0x71, 0x08, 0x31, 0x05, 0x3e, + 0x02, 0xc9, 0xb6, 0xd7, 0x44, 0x0c, 0xeb, 0x81, 0x42, 0xe9, 0x44, 0x56, 0xca, 0x27, 0x0b, 0x99, + 0xee, 0xd0, 0xae, 0x7c, 0x72, 0xbd, 0x2b, 0x9f, 0x00, 0x03, 0x81, 0x09, 0xb2, 0xb9, 0x12, 0x48, + 0xf0, 0xb1, 0xf0, 0x06, 0xb8, 0x5e, 0xab, 0xab, 0xf5, 0x92, 0xbe, 0x5d, 0xa9, 0x55, 0x4b, 0x6b, + 0xe5, 0xf5, 0x72, 0xa9, 0x98, 0xfa, 0x0f, 0x26, 0xc1, 0xff, 0xb5, 0xfa, 0x56, 0xb5, 0x5a, 0x2a, + 0xa6, 0xa4, 0x20, 0xd8, 0xdc, 0x52, 0x8b, 0xe5, 0xca, 0x46, 0x2a, 0x16, 0x04, 0xda, 0x76, 0xa5, + 0x12, 0x04, 0xf1, 0x25, 0xfd, 0x9b, 0xfa, 0x14, 0xcc, 0x0e, 0x56, 0x23, 0xba, 0x93, 0x45, 0xcf, + 0x27, 0xcf, 0xb0, 0xc1, 0xa8, 0x72, 0x1c, 0x7e, 0x9d, 0x28, 0x5c, 0xa4, 0xa8, 0xef, 0xa9, 0x72, + 0x1c, 0x89, 0x4e, 0x72, 0xef, 0x24, 0x30, 0xb9, 0x69, 0x51, 0x16, 0x19, 0x44, 0x35, 0xfc, 0xbc, + 0x8d, 0x29, 0x83, 0x25, 0x30, 0xea, 0x21, 0x1f, 0xbb, 0x2c, 0x5c, 0xf3, 0xfc, 0xa9, 0x1a, 0x3b, + 0x53, 0xef, 0xc2, 0x3f, 0xe3, 0xa3, 0x85, 0x60, 0x98, 0x05, 0x63, 0x1e, 0x32, 0xb1, 0x4e, 0xad, + 0x23, 0xcc, 0x0d, 0x91, 0x10, 0x86, 0xb8, 0x12, 0x64, 0x6b, 0xd6, 0x11, 0x86, 0x39, 0x00, 0x78, + 0x07, 0x23, 0xfb, 0xb8, 0x6b, 0x05, 0xde, 0xc2, 0x81, 0xf5, 0x20, 0x9b, 0x7b, 0x23, 0x81, 0xf4, + 0x65, 0xa2, 0xd4, 0x23, 0x2e, 0xc5, 0xb0, 0x0a, 0xc6, 0xa3, 0x67, 0x4c, 0x4b, 0xd9, 0x78, 0x3e, + 0x59, 0x98, 0xfb, 0x1b, 0x17, 0x68, 0xe7, 0x26, 0xc0, 0x3b, 0xe0, 0x9a, 0x8b, 0x0f, 0x99, 0x1e, + 0xe1, 0xc5, 0xbd, 0xac, 0x4d, 0x04, 0xe9, 0x6a, 0x97, 0x56, 0xe1, 0x55, 0x1c, 0x8c, 0x47, 0x29, + 0xc1, 0x1f, 0x12, 0x48, 0x5d, 0xe4, 0x09, 0x1f, 0x0c, 0x65, 0x32, 0x60, 0x07, 0x99, 0x87, 0xff, + 0x80, 0x14, 0xa2, 0xe4, 0x3a, 0x2f, 0x3f, 0x7f, 0x7d, 0x1d, 0xf3, 0xa0, 0xd2, 0x7b, 0x51, 0x8e, + 0xc5, 0x46, 0x56, 0x7a, 0x46, 0xb9, 0x2f, 0x0c, 0x72, 0x72, 0xce, 0x21, 0xbb, 0x2b, 0x70, 0xf9, + 0x77, 0x10, 0x9b, 0x18, 0xe2, 0x11, 0xfc, 0x35, 0x3c, 0x73, 0xf8, 0x51, 0x9d, 0x1a, 0xe8, 0x90, + 0x4f, 0xea, 0x93, 0x3d, 0xc6, 0x3c, 0xba, 0xa4, 0x28, 0x07, 0x07, 0x97, 0xec, 0x83, 0xda, 0x6c, + 0x4f, 0x3c, 0x88, 0xf3, 0x9e, 0x8d, 0x58, 0x8b, 0xf8, 0xce, 0xdc, 0xb0, 0xf6, 0xfe, 0xaf, 0x56, + 0x3f, 0x48, 0x60, 0xc6, 0x20, 0xce, 0x30, 0xc9, 0x56, 0x53, 0x11, 0xbd, 0xaa, 0xc1, 0x65, 0xae, + 0x4a, 0xbb, 0xe5, 0x10, 0x64, 0x12, 0x1b, 0xb9, 0xa6, 0x4c, 0x7c, 0x53, 0x31, 0xb1, 0xcb, 0xaf, + 0xba, 0xd2, 0xff, 0xed, 0xc0, 0xd7, 0x7a, 0xb9, 0x9f, 0xfa, 0x2e, 0x49, 0x6f, 0x63, 0xb1, 0xe2, + 0xfa, 0xfb, 0xd8, 0xf4, 0x86, 0x98, 0xb9, 0xc6, 0x89, 0x14, 0xfb, 0x44, 0x76, 0x04, 0xa8, 0x31, + 0xca, 0xe7, 0x2f, 0xfe, 0x0c, 0x00, 0x00, 0xff, 0xff, 0xa4, 0x61, 0xbd, 0x57, 0xba, 0x06, 0x00, + 0x00, +} + +// Reference imports to suppress errors if they are not otherwise used. +var _ context.Context +var _ grpc.ClientConnInterface + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the grpc package it is being compiled against. +const _ = grpc.SupportPackageIsVersion6 + +// EnvironmentsClient is the client API for Environments service. +// +// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. +type EnvironmentsClient interface { + // Returns the list of all non-draft environments of the specified agent. + ListEnvironments(ctx context.Context, in *ListEnvironmentsRequest, opts ...grpc.CallOption) (*ListEnvironmentsResponse, error) +} + +type environmentsClient struct { + cc grpc.ClientConnInterface +} + +func NewEnvironmentsClient(cc grpc.ClientConnInterface) EnvironmentsClient { + return &environmentsClient{cc} +} + +func (c *environmentsClient) ListEnvironments(ctx context.Context, in *ListEnvironmentsRequest, opts ...grpc.CallOption) (*ListEnvironmentsResponse, error) { + out := new(ListEnvironmentsResponse) + err := c.cc.Invoke(ctx, "/google.cloud.dialogflow.v2beta1.Environments/ListEnvironments", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +// EnvironmentsServer is the server API for Environments service. +type EnvironmentsServer interface { + // Returns the list of all non-draft environments of the specified agent. + ListEnvironments(context.Context, *ListEnvironmentsRequest) (*ListEnvironmentsResponse, error) +} + +// UnimplementedEnvironmentsServer can be embedded to have forward compatible implementations. +type UnimplementedEnvironmentsServer struct { +} + +func (*UnimplementedEnvironmentsServer) ListEnvironments(ctx context.Context, req *ListEnvironmentsRequest) (*ListEnvironmentsResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method ListEnvironments not implemented") +} + +func RegisterEnvironmentsServer(s *grpc.Server, srv EnvironmentsServer) { + s.RegisterService(&_Environments_serviceDesc, srv) +} + +func _Environments_ListEnvironments_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ListEnvironmentsRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(EnvironmentsServer).ListEnvironments(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/google.cloud.dialogflow.v2beta1.Environments/ListEnvironments", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(EnvironmentsServer).ListEnvironments(ctx, req.(*ListEnvironmentsRequest)) + } + return interceptor(ctx, in, info, handler) +} + +var _Environments_serviceDesc = grpc.ServiceDesc{ + ServiceName: "google.cloud.dialogflow.v2beta1.Environments", + HandlerType: (*EnvironmentsServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "ListEnvironments", + Handler: _Environments_ListEnvironments_Handler, + }, + }, + Streams: []grpc.StreamDesc{}, + Metadata: "google/cloud/dialogflow/v2beta1/environment.proto", +} diff --git a/googleapis/cloud/dialogflow/v2beta1/webhook.pb.go b/googleapis/cloud/dialogflow/v2beta1/webhook.pb.go index dc528a656a..c021cd2614 100644 --- a/googleapis/cloud/dialogflow/v2beta1/webhook.pb.go +++ b/googleapis/cloud/dialogflow/v2beta1/webhook.pb.go @@ -122,18 +122,24 @@ func (m *WebhookRequest) GetOriginalDetectIntentRequest() *OriginalDetectIntentR // [Protocol Buffers Language // Guide](https://developers.google.com/protocol-buffers/docs/proto3#json). type WebhookResponse struct { - // Optional. The text to be shown on the screen. This value is passed directly - // to `QueryResult.fulfillment_text`. + // Optional. The text response message intended for the end-user. + // It is recommended to use `fulfillment_messages.text.text[0]` instead. + // When provided, Dialogflow uses this field to populate + // [QueryResult.fulfillment_text][google.cloud.dialogflow.v2beta1.QueryResult.fulfillment_text] sent to the integration or API caller. FulfillmentText string `protobuf:"bytes,1,opt,name=fulfillment_text,json=fulfillmentText,proto3" json:"fulfillment_text,omitempty"` - // Optional. The collection of rich messages to present to the user. This - // value is passed directly to `QueryResult.fulfillment_messages`. + // Optional. The rich response messages intended for the end-user. + // When provided, Dialogflow uses this field to populate + // [QueryResult.fulfillment_messages][google.cloud.dialogflow.v2beta1.QueryResult.fulfillment_messages] sent to the integration or API caller. FulfillmentMessages []*Intent_Message `protobuf:"bytes,2,rep,name=fulfillment_messages,json=fulfillmentMessages,proto3" json:"fulfillment_messages,omitempty"` - // Optional. This value is passed directly to `QueryResult.webhook_source`. + // Optional. A custom field used to identify the webhook source. + // Arbitrary strings are supported. + // When provided, Dialogflow uses this field to populate + // [QueryResult.webhook_source][google.cloud.dialogflow.v2beta1.QueryResult.webhook_source] sent to the integration or API caller. Source string `protobuf:"bytes,3,opt,name=source,proto3" json:"source,omitempty"` - // Optional. This field can be used to pass custom data from your webhook to the API - // caller. Arbitrary JSON objects are supported. + // Optional. This field can be used to pass custom data from your webhook to the + // integration or API caller. Arbitrary JSON objects are supported. // When provided, Dialogflow uses this field to populate - // `QueryResult.webhook_payload` sent to the API caller. + // [QueryResult.webhook_payload][google.cloud.dialogflow.v2beta1.QueryResult.webhook_payload] sent to the integration or API caller. // This field is also used by the // [Google Assistant // integration](https://cloud.google.com/dialogflow/docs/integrations/aog) @@ -141,11 +147,12 @@ type WebhookResponse struct { // See the format definition at [Google Assistant Dialogflow webhook // format](https://developers.google.com/assistant/actions/build/json/dialogflow-webhook-json) Payload *_struct.Struct `protobuf:"bytes,4,opt,name=payload,proto3" json:"payload,omitempty"` - // Optional. The collection of output contexts. This value is passed directly - // to `QueryResult.output_contexts`. + // Optional. The collection of output contexts that will overwrite currently + // active contexts for the session and reset their lifespans. + // When provided, Dialogflow uses this field to populate + // [QueryResult.output_contexts][google.cloud.dialogflow.v2beta1.QueryResult.output_contexts] sent to the integration or API caller. OutputContexts []*Context `protobuf:"bytes,5,rep,name=output_contexts,json=outputContexts,proto3" json:"output_contexts,omitempty"` - // Optional. Makes the platform immediately invoke another `DetectIntent` call - // internally with the specified event as input. + // Optional. Invokes the supplied events. // When this field is set, Dialogflow ignores the `fulfillment_text`, // `fulfillment_messages`, and `payload` fields. FollowupEventInput *EventInput `protobuf:"bytes,6,opt,name=followup_event_input,json=followupEventInput,proto3" json:"followup_event_input,omitempty"` @@ -155,9 +162,9 @@ type WebhookResponse struct { EndInteraction bool `protobuf:"varint,8,opt,name=end_interaction,json=endInteraction,proto3" json:"end_interaction,omitempty"` // Optional. Additional session entity types to replace or extend developer // entity types with. The entity synonyms apply to all languages and persist - // for the session of this query. Setting the session entity types inside - // webhook overwrites the session entity types that have been set through - // `DetectIntentRequest.query_params.session_entity_types`. + // for the session. Setting this data from a webhook overwrites + // the session entity types that have been set using `detectIntent`, + // `streamingDetectIntent` or [SessionEntityType][google.cloud.dialogflow.v2beta1.SessionEntityType] management methods. SessionEntityTypes []*SessionEntityType `protobuf:"bytes,10,rep,name=session_entity_types,json=sessionEntityTypes,proto3" json:"session_entity_types,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"`