diff --git a/adaptor/PCM-AI/PCM-AI-CORE/api/internal/handler/listdatasethandler.go b/adaptor/PCM-AI/PCM-AI-CORE/api/internal/handler/listdatasethandler.go index 942369f9..bcad05bd 100644 --- a/adaptor/PCM-AI/PCM-AI-CORE/api/internal/handler/listdatasethandler.go +++ b/adaptor/PCM-AI/PCM-AI-CORE/api/internal/handler/listdatasethandler.go @@ -11,7 +11,7 @@ import ( func listDataSetHandler(svcCtx *svc.ServiceContext) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { - var req types.DatasetReq + var req types.DataSetReq if err := httpx.Parse(r, &req); err != nil { httpx.ErrorCtx(r.Context(), w, err) return diff --git a/adaptor/PCM-AI/PCM-AI-CORE/api/internal/logic/listdatasetlogic.go b/adaptor/PCM-AI/PCM-AI-CORE/api/internal/logic/listdatasetlogic.go index ffd96f00..08e4bdf3 100644 --- a/adaptor/PCM-AI/PCM-AI-CORE/api/internal/logic/listdatasetlogic.go +++ b/adaptor/PCM-AI/PCM-AI-CORE/api/internal/logic/listdatasetlogic.go @@ -28,22 +28,19 @@ func NewListDataSetLogic(ctx context.Context, svcCtx *svc.ServiceContext) *ListD } } -func (l *ListDataSetLogic) ListDataSet(req *types.DatasetReq) (resp *types.DatasetResp, err error) { +func (l *ListDataSetLogic) ListDataSet(req *types.DataSetReq) (resp *types.DataSetResp, err error) { // todo: add your logic here and delete this line - modelartsReq := &modelarts.DatasetReq{} - //err = copier.CopyWithOption(modelartsReq, req, copier.Option{Converters: tool.Converters}) - err = copier.CopyWithOption(modelartsReq, req, copier.Option{IgnoreEmpty: true, DeepCopy: true, Converters: tool.Converters}) + modelartsReq := &modelarts.DataSetReq{} + err = copier.CopyWithOption(modelartsReq, req, copier.Option{Converters: tool.Converters}) + //err = copier.CopyWithOption(modelartsReq, req, copier.Option{IgnoreEmpty: true, DeepCopy: true, Converters: tool.Converters}) DataSetResp, err := l.svcCtx.ModelArtsRpc.GetDatasetList(l.ctx, modelartsReq) if err != nil { return nil, errors.Wrapf(xerr.NewErrMsg("Failed to get db DataSet list"), "Failed to get db DataSet list err : %v ,req:%+v", err, req) } - resp = &types.DatasetResp{} - for i := 0; i < len(DataSetResp.Datasets); i++ { - dataset := types.Datasets{} - resp.DataSets = append(resp.DataSets, dataset) - } - + resp = &types.DataSetResp{} err = copier.CopyWithOption(&resp, &DataSetResp, copier.Option{Converters: tool.Converters}) - + if err != nil { + return nil, errors.Wrapf(xerr.NewErrMsg("Failed to get db DataSet list"), "Failed to get db DataSet list err : %v ,req:%+v", err, req) + } return resp, nil } diff --git a/adaptor/PCM-AI/PCM-AI-CORE/api/internal/types/types.go b/adaptor/PCM-AI/PCM-AI-CORE/api/internal/types/types.go index 8ae5a8c2..270ef443 100644 --- a/adaptor/PCM-AI/PCM-AI-CORE/api/internal/types/types.go +++ b/adaptor/PCM-AI/PCM-AI-CORE/api/internal/types/types.go @@ -1,36 +1,28 @@ // Code generated by goctl. DO NOT EDIT. package types -type Datasets struct { - DatasetId string `json:"dataset_id"` - DataFormat string `json:"data_format"` - DatasetFormat int32 `json:"dataset_format"` - DatasetName string `json:"dataset_name"` - DatasetType string `json:"dataset_type"` - ImportData bool `json:"import_data"` - DataSources []DataSources `json:"data_sources"` +type DataSets struct { + DatasetId string `json:"dataset_id" copier:"DatasetId"` + DataFormat string `json:"data_format" copier:"DataFormat"` + DataSources []DataSources `json:"data_sources" copier:"DataSources"` + DatasetFormat int32 `json:"dataset_format" copier:"DatasetFormat"` + DatasetName string `json:"dataset_name" copier:"DatasetName"` + DatasetType int32 `json:"dataset_type" copier:"DatasetType"` + ImportData bool `json:"import_data" copier:"ImportData"` } type DataSources struct { - DataPath string `json:"data_path"` - DataType string `json:"data_type"` + DataPath string `json:"data_path" copier:"DataPath"` + DataType int32 `json:"data_type" copier:"DataType"` } -type DatasetReq struct { +type DataSetReq struct { ProjectId string `json:"projectId" copier:"ProjectId"` } -type DatasetResp struct { - Total int32 `json:"total"` - Count int32 `json:"count"` - Limit int32 `json:"limit"` - Offset int32 `json:"offset"` - SortBy string `json:"sort_by"` - Order string `json:"order"` - GroupBy string `json:"group_by"` - WorkspaceID string `json:"workspace_id"` - AiProject string `json:"ai_project"` - DataSets []Datasets `json:"dataSets" copier:"DataSets"` +type DataSetResp struct { + TotalNumber uint32 `json:"total_number" copier:"TotalNumber"` + DataSets []DataSets `json:"data_sets" copier:"DataSets"` } type CreateDataSetReq struct { diff --git a/adaptor/PCM-AI/PCM-AI-CORE/api/pcm-ai-core.api b/adaptor/PCM-AI/PCM-AI-CORE/api/pcm-ai-core.api index 5d4cf75f..2b97af1b 100644 --- a/adaptor/PCM-AI/PCM-AI-CORE/api/pcm-ai-core.api +++ b/adaptor/PCM-AI/PCM-AI-CORE/api/pcm-ai-core.api @@ -8,40 +8,28 @@ info( ) /******************find datasetList start*************************/ -type Datasets { - DatasetId string `json:"dataset_id"` - DataFormat string `json:"data_format"` - DatasetFormat int32 `json:"dataset_format"` - DatasetName string `json:"dataset_name"` - DatasetType string `json:"dataset_type"` - ImportData bool `json:"import_data"` - DataSources []DataSources `json:"data_sources"` +type DataSets { + DatasetId string `json:"dataset_id" copier:"DatasetId"` + DataFormat string `json:"data_format" copier:"DataFormat"` + DataSources []DataSources `json:"data_sources" copier:"DataSources"` + DatasetFormat int32 `json:"dataset_format" copier:"DatasetFormat"` + DatasetName string `json:"dataset_name" copier:"DatasetName"` + DatasetType int32 `json:"dataset_type" copier:"DatasetType"` + ImportData bool `json:"import_data" copier:"ImportData"` } type DataSources { - DataPath string `json:"data_path"` - DataType string `json:"data_type"` + DataPath string `json:"data_path" copier:"DataPath"` + DataType int32 `json:"data_type" copier:"DataType"` } type ( - DatasetReq { + DataSetReq { ProjectId string `json:"projectId" copier:"ProjectId"` } - DatasetResp { - //Code int32 `json:"code" copier:"Code"` - //Msg string `json:"msg" copier:"Msg"` - //RecordCount int32 `json:"recordCount" copier:"RecordCount"` - Total int32 `json:"total"` - Count int32 `json:"count"` - Limit int32 `json:"limit"` - Offset int32 `json:"offset"` - SortBy string `json:"sort_by"` - Order string `json:"order"` - GroupBy string `json:"group_by"` - WorkspaceID string `json:"workspace_id"` - AiProject string `json:"ai_project"` - //Items []Items `json:"items"` - DataSets []Datasets `json:"dataSets" copier:"DataSets"` + DataSetResp { + TotalNumber uint32 `json:"total_number" copier:"TotalNumber"` + DataSets []DataSets `json:"data_sets" copier:"DataSets"` } ) @@ -1446,7 +1434,7 @@ type ( service AICore-api { @handler listDataSetHandler - get /listDataSet (DatasetReq) returns (DatasetResp) + get /listDataSet (DataSetReq) returns (DataSetResp) @handler CreateDataSetHandler post /createDataSet (CreateDataSetReq) returns (CreateDataSetResp) @handler DeleteDataSetHandler diff --git a/adaptor/PCM-AI/PCM-MODELARTS/rpc/internal/logic/getdatasetlistlogic.go b/adaptor/PCM-AI/PCM-MODELARTS/rpc/internal/logic/getdatasetlistlogic.go index 574d06d7..c3b1911c 100644 --- a/adaptor/PCM-AI/PCM-MODELARTS/rpc/internal/logic/getdatasetlistlogic.go +++ b/adaptor/PCM-AI/PCM-MODELARTS/rpc/internal/logic/getdatasetlistlogic.go @@ -27,9 +27,9 @@ func NewGetDatasetListLogic(ctx context.Context, svcCtx *svc.ServiceContext) *Ge } // find datasetList -func (l *GetDatasetListLogic) GetDatasetList(in *modelarts.DatasetReq) (*modelarts.DatasetResp, error) { +func (l *GetDatasetListLogic) GetDatasetList(in *modelarts.DataSetReq) (*modelarts.DataSetResp, error) { projectId := in.ProjectId - var resp modelarts.DatasetResp + var resp modelarts.DataSetResp token := common.GetToken() reqUrl, err := tool.HttpClient(tool.GET, "https://modelarts.cn-north-4.myhuaweicloud.com/v2/"+projectId+"/datasets", strings.NewReader(``), token) json.Unmarshal(reqUrl, &resp) diff --git a/adaptor/PCM-AI/PCM-MODELARTS/rpc/internal/server/modelartsserver.go b/adaptor/PCM-AI/PCM-MODELARTS/rpc/internal/server/modelartsserver.go index 574238b0..11e4bbe4 100644 --- a/adaptor/PCM-AI/PCM-MODELARTS/rpc/internal/server/modelartsserver.go +++ b/adaptor/PCM-AI/PCM-MODELARTS/rpc/internal/server/modelartsserver.go @@ -29,7 +29,7 @@ func (s *ModelArtsServer) GetToken(ctx context.Context, in *modelarts.TokenReq) } // get modelarts Token -func (s *ModelArtsServer) GetDatasetList(ctx context.Context, in *modelarts.DatasetReq) (*modelarts.DatasetResp, error) { +func (s *ModelArtsServer) GetDatasetList(ctx context.Context, in *modelarts.DataSetReq) (*modelarts.DataSetResp, error) { l := logic.NewGetDatasetListLogic(ctx, s.svcCtx) return l.GetDatasetList(in) } diff --git a/adaptor/PCM-AI/PCM-MODELARTS/rpc/modelarts/pcm-modelarts.pb.go b/adaptor/PCM-AI/PCM-MODELARTS/rpc/modelarts/pcm-modelarts.pb.go index b4e0d186..bd58c74f 100644 --- a/adaptor/PCM-AI/PCM-MODELARTS/rpc/modelarts/pcm-modelarts.pb.go +++ b/adaptor/PCM-AI/PCM-MODELARTS/rpc/modelarts/pcm-modelarts.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.28.1 -// protoc v3.19.4 +// protoc v3.21.12 // source: pcm-modelarts.proto package modelarts @@ -515,7 +515,7 @@ func (*TokenResp) Descriptor() ([]byte, []int) { } // *****************find datasetList start************************ -type DatasetReq struct { +type DataSetReq struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields @@ -523,8 +523,8 @@ type DatasetReq struct { ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // @gotags: copier:"ProjectId" } -func (x *DatasetReq) Reset() { - *x = DatasetReq{} +func (x *DataSetReq) Reset() { + *x = DataSetReq{} if protoimpl.UnsafeEnabled { mi := &file_pcm_modelarts_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) @@ -532,13 +532,13 @@ func (x *DatasetReq) Reset() { } } -func (x *DatasetReq) String() string { +func (x *DataSetReq) String() string { return protoimpl.X.MessageStringOf(x) } -func (*DatasetReq) ProtoMessage() {} +func (*DataSetReq) ProtoMessage() {} -func (x *DatasetReq) ProtoReflect() protoreflect.Message { +func (x *DataSetReq) ProtoReflect() protoreflect.Message { mi := &file_pcm_modelarts_proto_msgTypes[10] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) @@ -550,29 +550,29 @@ func (x *DatasetReq) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use DatasetReq.ProtoReflect.Descriptor instead. -func (*DatasetReq) Descriptor() ([]byte, []int) { +// Deprecated: Use DataSetReq.ProtoReflect.Descriptor instead. +func (*DataSetReq) Descriptor() ([]byte, []int) { return file_pcm_modelarts_proto_rawDescGZIP(), []int{10} } -func (x *DatasetReq) GetProjectId() string { +func (x *DataSetReq) GetProjectId() string { if x != nil { return x.ProjectId } return "" } -type DatasetResp struct { +type DataSetResp struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields TotalNumber uint32 `protobuf:"varint,1,opt,name=total_number,json=totalNumber,proto3" json:"total_number,omitempty"` // @gotags: copier:"TotalNumber" - Datasets []*Datasets `protobuf:"bytes,2,rep,name=datasets,proto3" json:"datasets,omitempty"` // @gotags: copier:"Datasets" + DataSets []*DataSets `protobuf:"bytes,2,rep,name=dataSets,proto3" json:"dataSets,omitempty"` // @gotags: copier:"DataSets" } -func (x *DatasetResp) Reset() { - *x = DatasetResp{} +func (x *DataSetResp) Reset() { + *x = DataSetResp{} if protoimpl.UnsafeEnabled { mi := &file_pcm_modelarts_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) @@ -580,13 +580,13 @@ func (x *DatasetResp) Reset() { } } -func (x *DatasetResp) String() string { +func (x *DataSetResp) String() string { return protoimpl.X.MessageStringOf(x) } -func (*DatasetResp) ProtoMessage() {} +func (*DataSetResp) ProtoMessage() {} -func (x *DatasetResp) ProtoReflect() protoreflect.Message { +func (x *DataSetResp) ProtoReflect() protoreflect.Message { mi := &file_pcm_modelarts_proto_msgTypes[11] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) @@ -598,41 +598,41 @@ func (x *DatasetResp) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use DatasetResp.ProtoReflect.Descriptor instead. -func (*DatasetResp) Descriptor() ([]byte, []int) { +// Deprecated: Use DataSetResp.ProtoReflect.Descriptor instead. +func (*DataSetResp) Descriptor() ([]byte, []int) { return file_pcm_modelarts_proto_rawDescGZIP(), []int{11} } -func (x *DatasetResp) GetTotalNumber() uint32 { +func (x *DataSetResp) GetTotalNumber() uint32 { if x != nil { return x.TotalNumber } return 0 } -func (x *DatasetResp) GetDatasets() []*Datasets { +func (x *DataSetResp) GetDataSets() []*DataSets { if x != nil { - return x.Datasets + return x.DataSets } return nil } -type Datasets struct { +type DataSets struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - DatasetId string `protobuf:"bytes,1,opt,name=dataset_id,json=datasetId,proto3" json:"dataset_id,omitempty"` // @gotags: copier:"DatasetId" - DataFormat string `protobuf:"bytes,2,opt,name=data_format,json=dataFormat,proto3" json:"data_format,omitempty"` // @gotags: copier:"DataFormat" - DataSources *DataSources `protobuf:"bytes,3,opt,name=data_sources,json=dataSources,proto3" json:"data_sources,omitempty"` // @gotags: copier:"DataSources" - DatasetFormat int32 `protobuf:"varint,4,opt,name=dataset_format,json=datasetFormat,proto3" json:"dataset_format,omitempty"` // @gotags: copier:"DatasetFormat" - DatasetName string `protobuf:"bytes,5,opt,name=dataset_name,json=datasetName,proto3" json:"dataset_name,omitempty"` // @gotags: copier:"DatasetName" - DatasetType int32 `protobuf:"varint,6,opt,name=dataset_type,json=datasetType,proto3" json:"dataset_type,omitempty"` // @gotags: copier:"DatasetType" - ImportData bool `protobuf:"varint,7,opt,name=import_data,json=importData,proto3" json:"import_data,omitempty"` // @gotags: copier:"ImportData" + DatasetId string `protobuf:"bytes,1,opt,name=dataset_id,json=datasetId,proto3" json:"dataset_id,omitempty"` // @gotags: copier:"DatasetId" + DataFormat string `protobuf:"bytes,2,opt,name=data_format,json=dataFormat,proto3" json:"data_format,omitempty"` // @gotags: copier:"DataFormat" + DataSources []*DataSources `protobuf:"bytes,3,rep,name=data_sources,json=dataSources,proto3" json:"data_sources,omitempty"` // @gotags: copier:"DataSources" + DatasetFormat int32 `protobuf:"varint,4,opt,name=dataset_format,json=datasetFormat,proto3" json:"dataset_format,omitempty"` // @gotags: copier:"DatasetFormat" + DatasetName string `protobuf:"bytes,5,opt,name=dataset_name,json=datasetName,proto3" json:"dataset_name,omitempty"` // @gotags: copier:"DatasetName" + DatasetType int32 `protobuf:"varint,6,opt,name=dataset_type,json=datasetType,proto3" json:"dataset_type,omitempty"` // @gotags: copier:"DatasetType" + ImportData bool `protobuf:"varint,7,opt,name=import_data,json=importData,proto3" json:"import_data,omitempty"` // @gotags: copier:"ImportData" } -func (x *Datasets) Reset() { - *x = Datasets{} +func (x *DataSets) Reset() { + *x = DataSets{} if protoimpl.UnsafeEnabled { mi := &file_pcm_modelarts_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) @@ -640,13 +640,13 @@ func (x *Datasets) Reset() { } } -func (x *Datasets) String() string { +func (x *DataSets) String() string { return protoimpl.X.MessageStringOf(x) } -func (*Datasets) ProtoMessage() {} +func (*DataSets) ProtoMessage() {} -func (x *Datasets) ProtoReflect() protoreflect.Message { +func (x *DataSets) ProtoReflect() protoreflect.Message { mi := &file_pcm_modelarts_proto_msgTypes[12] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) @@ -658,54 +658,54 @@ func (x *Datasets) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use Datasets.ProtoReflect.Descriptor instead. -func (*Datasets) Descriptor() ([]byte, []int) { +// Deprecated: Use DataSets.ProtoReflect.Descriptor instead. +func (*DataSets) Descriptor() ([]byte, []int) { return file_pcm_modelarts_proto_rawDescGZIP(), []int{12} } -func (x *Datasets) GetDatasetId() string { +func (x *DataSets) GetDatasetId() string { if x != nil { return x.DatasetId } return "" } -func (x *Datasets) GetDataFormat() string { +func (x *DataSets) GetDataFormat() string { if x != nil { return x.DataFormat } return "" } -func (x *Datasets) GetDataSources() *DataSources { +func (x *DataSets) GetDataSources() []*DataSources { if x != nil { return x.DataSources } return nil } -func (x *Datasets) GetDatasetFormat() int32 { +func (x *DataSets) GetDatasetFormat() int32 { if x != nil { return x.DatasetFormat } return 0 } -func (x *Datasets) GetDatasetName() string { +func (x *DataSets) GetDatasetName() string { if x != nil { return x.DatasetName } return "" } -func (x *Datasets) GetDatasetType() int32 { +func (x *DataSets) GetDatasetType() int32 { if x != nil { return x.DatasetType } return 0 } -func (x *Datasets) GetImportData() bool { +func (x *DataSets) GetImportData() bool { if x != nil { return x.ImportData } @@ -831,7 +831,7 @@ func (x *ImportTaskDataReq) GetImportPath() string { return "" } -type ImportTaskDataResp200 struct { +type ImportTaskDataResp struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields @@ -839,121 +839,10 @@ type ImportTaskDataResp200 struct { TaskId string `protobuf:"bytes,1,opt,name=task_id,json=taskId,proto3" json:"task_id,omitempty"` } -func (x *ImportTaskDataResp200) Reset() { - *x = ImportTaskDataResp200{} - if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[15] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *ImportTaskDataResp200) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*ImportTaskDataResp200) ProtoMessage() {} - -func (x *ImportTaskDataResp200) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[15] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use ImportTaskDataResp200.ProtoReflect.Descriptor instead. -func (*ImportTaskDataResp200) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{15} -} - -func (x *ImportTaskDataResp200) GetTaskId() string { - if x != nil { - return x.TaskId - } - return "" -} - -type ImportTaskDataResp400 struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - ErrorMsg string `protobuf:"bytes,1,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"` - ErrorCode string `protobuf:"bytes,2,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"` - ErrorSolution string `protobuf:"bytes,3,opt,name=error_solution,json=errorSolution,proto3" json:"error_solution,omitempty"` -} - -func (x *ImportTaskDataResp400) Reset() { - *x = ImportTaskDataResp400{} - if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[16] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *ImportTaskDataResp400) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*ImportTaskDataResp400) ProtoMessage() {} - -func (x *ImportTaskDataResp400) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[16] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use ImportTaskDataResp400.ProtoReflect.Descriptor instead. -func (*ImportTaskDataResp400) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{16} -} - -func (x *ImportTaskDataResp400) GetErrorMsg() string { - if x != nil { - return x.ErrorMsg - } - return "" -} - -func (x *ImportTaskDataResp400) GetErrorCode() string { - if x != nil { - return x.ErrorCode - } - return "" -} - -func (x *ImportTaskDataResp400) GetErrorSolution() string { - if x != nil { - return x.ErrorSolution - } - return "" -} - -type ImportTaskDataResp struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Resp200 *ImportTaskDataResp200 `protobuf:"bytes,1,opt,name=resp200,proto3" json:"resp200,omitempty"` - Resp400 *ImportTaskDataResp400 `protobuf:"bytes,2,opt,name=resp400,proto3" json:"resp400,omitempty"` -} - func (x *ImportTaskDataResp) Reset() { *x = ImportTaskDataResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[17] + mi := &file_pcm_modelarts_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -966,7 +855,7 @@ func (x *ImportTaskDataResp) String() string { func (*ImportTaskDataResp) ProtoMessage() {} func (x *ImportTaskDataResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[17] + mi := &file_pcm_modelarts_proto_msgTypes[15] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -979,21 +868,14 @@ func (x *ImportTaskDataResp) ProtoReflect() protoreflect.Message { // Deprecated: Use ImportTaskDataResp.ProtoReflect.Descriptor instead. func (*ImportTaskDataResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{17} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{15} } -func (x *ImportTaskDataResp) GetResp200() *ImportTaskDataResp200 { +func (x *ImportTaskDataResp) GetTaskId() string { if x != nil { - return x.Resp200 + return x.TaskId } - return nil -} - -func (x *ImportTaskDataResp) GetResp400() *ImportTaskDataResp400 { - if x != nil { - return x.Resp400 - } - return nil + return "" } // 查询数据集导入列表 @@ -1011,7 +893,7 @@ type ListImportTasksReq struct { func (x *ListImportTasksReq) Reset() { *x = ListImportTasksReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[18] + mi := &file_pcm_modelarts_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1024,7 +906,7 @@ func (x *ListImportTasksReq) String() string { func (*ListImportTasksReq) ProtoMessage() {} func (x *ListImportTasksReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[18] + mi := &file_pcm_modelarts_proto_msgTypes[16] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1037,7 +919,7 @@ func (x *ListImportTasksReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ListImportTasksReq.ProtoReflect.Descriptor instead. func (*ListImportTasksReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{18} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{16} } func (x *ListImportTasksReq) GetDatasetId() string { @@ -1073,14 +955,14 @@ type ListImportTasksResp struct { sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - Resp200 *ListImportTasksResp200 `protobuf:"bytes,1,opt,name=resp200,proto3" json:"resp200,omitempty"` //@gotags: copier:"Resp200" - Resp400 *ListImportTasksResp400 `protobuf:"bytes,2,opt,name=resp400,proto3" json:"resp400,omitempty"` //@gotags: copier:"Resp400" + TotalCount uint32 `protobuf:"varint,1,opt,name=total_count,json=totalCount,proto3" json:"total_count,omitempty"` //@gotags: copier:"TotalCount" + ImportTasks []*ImportTasks `protobuf:"bytes,2,rep,name=import_tasks,json=importTasks,proto3" json:"import_tasks,omitempty"` //@gotags: copier:"ImportTasks" } func (x *ListImportTasksResp) Reset() { *x = ListImportTasksResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[19] + mi := &file_pcm_modelarts_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1093,7 +975,7 @@ func (x *ListImportTasksResp) String() string { func (*ListImportTasksResp) ProtoMessage() {} func (x *ListImportTasksResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[19] + mi := &file_pcm_modelarts_proto_msgTypes[17] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1106,141 +988,23 @@ func (x *ListImportTasksResp) ProtoReflect() protoreflect.Message { // Deprecated: Use ListImportTasksResp.ProtoReflect.Descriptor instead. func (*ListImportTasksResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{19} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{17} } -func (x *ListImportTasksResp) GetResp200() *ListImportTasksResp200 { - if x != nil { - return x.Resp200 - } - return nil -} - -func (x *ListImportTasksResp) GetResp400() *ListImportTasksResp400 { - if x != nil { - return x.Resp400 - } - return nil -} - -type ListImportTasksResp200 struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - TotalCount uint32 `protobuf:"varint,1,opt,name=total_count,json=totalCount,proto3" json:"total_count,omitempty"` //@gotags: copier:"TotalCount" - ImportTasks []*ImportTasks `protobuf:"bytes,2,rep,name=import_tasks,json=importTasks,proto3" json:"import_tasks,omitempty"` //@gotags: copier:"ImportTasks" -} - -func (x *ListImportTasksResp200) Reset() { - *x = ListImportTasksResp200{} - if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[20] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *ListImportTasksResp200) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*ListImportTasksResp200) ProtoMessage() {} - -func (x *ListImportTasksResp200) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[20] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use ListImportTasksResp200.ProtoReflect.Descriptor instead. -func (*ListImportTasksResp200) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{20} -} - -func (x *ListImportTasksResp200) GetTotalCount() uint32 { +func (x *ListImportTasksResp) GetTotalCount() uint32 { if x != nil { return x.TotalCount } return 0 } -func (x *ListImportTasksResp200) GetImportTasks() []*ImportTasks { +func (x *ListImportTasksResp) GetImportTasks() []*ImportTasks { if x != nil { return x.ImportTasks } return nil } -type ListImportTasksResp400 struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - ErrorMsg string `protobuf:"bytes,1,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"` //@gotags: copier:"ErrorMsg" - ErrorCode string `protobuf:"bytes,2,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"` //@gotags: copier:"ErrorCode" - ErrorSolution string `protobuf:"bytes,3,opt,name=error_solution,json=errorSolution,proto3" json:"error_solution,omitempty"` //@gotags: copier:"ErrorSolution" -} - -func (x *ListImportTasksResp400) Reset() { - *x = ListImportTasksResp400{} - if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[21] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *ListImportTasksResp400) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*ListImportTasksResp400) ProtoMessage() {} - -func (x *ListImportTasksResp400) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[21] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use ListImportTasksResp400.ProtoReflect.Descriptor instead. -func (*ListImportTasksResp400) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{21} -} - -func (x *ListImportTasksResp400) GetErrorMsg() string { - if x != nil { - return x.ErrorMsg - } - return "" -} - -func (x *ListImportTasksResp400) GetErrorCode() string { - if x != nil { - return x.ErrorCode - } - return "" -} - -func (x *ListImportTasksResp400) GetErrorSolution() string { - if x != nil { - return x.ErrorSolution - } - return "" -} - type ImportTasks struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -1276,7 +1040,7 @@ type ImportTasks struct { func (x *ImportTasks) Reset() { *x = ImportTasks{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[22] + mi := &file_pcm_modelarts_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1289,7 +1053,7 @@ func (x *ImportTasks) String() string { func (*ImportTasks) ProtoMessage() {} func (x *ImportTasks) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[22] + mi := &file_pcm_modelarts_proto_msgTypes[18] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1302,7 +1066,7 @@ func (x *ImportTasks) ProtoReflect() protoreflect.Message { // Deprecated: Use ImportTasks.ProtoReflect.Descriptor instead. func (*ImportTasks) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{22} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{18} } func (x *ImportTasks) GetAnnotatedSampleCount() uint32 { @@ -1489,7 +1253,7 @@ type AnnotationFormatConfig struct { func (x *AnnotationFormatConfig) Reset() { *x = AnnotationFormatConfig{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[23] + mi := &file_pcm_modelarts_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1502,7 +1266,7 @@ func (x *AnnotationFormatConfig) String() string { func (*AnnotationFormatConfig) ProtoMessage() {} func (x *AnnotationFormatConfig) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[23] + mi := &file_pcm_modelarts_proto_msgTypes[19] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1515,7 +1279,7 @@ func (x *AnnotationFormatConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use AnnotationFormatConfig.ProtoReflect.Descriptor instead. func (*AnnotationFormatConfig) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{23} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{19} } type DataSource struct { @@ -1533,7 +1297,7 @@ type DataSource struct { func (x *DataSource) Reset() { *x = DataSource{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[24] + mi := &file_pcm_modelarts_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1546,7 +1310,7 @@ func (x *DataSource) String() string { func (*DataSource) ProtoMessage() {} func (x *DataSource) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[24] + mi := &file_pcm_modelarts_proto_msgTypes[20] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1559,7 +1323,7 @@ func (x *DataSource) ProtoReflect() protoreflect.Message { // Deprecated: Use DataSource.ProtoReflect.Descriptor instead. func (*DataSource) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{24} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{20} } func (x *DataSource) GetDataPath() string { @@ -1609,7 +1373,7 @@ type SchemaMaps struct { func (x *SchemaMaps) Reset() { *x = SchemaMaps{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[25] + mi := &file_pcm_modelarts_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1622,7 +1386,7 @@ func (x *SchemaMaps) String() string { func (*SchemaMaps) ProtoMessage() {} func (x *SchemaMaps) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[25] + mi := &file_pcm_modelarts_proto_msgTypes[21] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1635,7 +1399,7 @@ func (x *SchemaMaps) ProtoReflect() protoreflect.Message { // Deprecated: Use SchemaMaps.ProtoReflect.Descriptor instead. func (*SchemaMaps) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{25} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{21} } func (x *SchemaMaps) GetDestName() string { @@ -1675,7 +1439,7 @@ type SourceInfo struct { func (x *SourceInfo) Reset() { *x = SourceInfo{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[26] + mi := &file_pcm_modelarts_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1688,7 +1452,7 @@ func (x *SourceInfo) String() string { func (*SourceInfo) ProtoMessage() {} func (x *SourceInfo) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[26] + mi := &file_pcm_modelarts_proto_msgTypes[22] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1701,7 +1465,7 @@ func (x *SourceInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SourceInfo.ProtoReflect.Descriptor instead. func (*SourceInfo) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{26} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{22} } func (x *SourceInfo) GetClusterId() string { @@ -1809,7 +1573,7 @@ type FileStatistics struct { func (x *FileStatistics) Reset() { *x = FileStatistics{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[27] + mi := &file_pcm_modelarts_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1822,7 +1586,7 @@ func (x *FileStatistics) String() string { func (*FileStatistics) ProtoMessage() {} func (x *FileStatistics) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[27] + mi := &file_pcm_modelarts_proto_msgTypes[23] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1835,7 +1599,7 @@ func (x *FileStatistics) ProtoReflect() protoreflect.Message { // Deprecated: Use FileStatistics.ProtoReflect.Descriptor instead. func (*FileStatistics) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{27} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{23} } func (x *FileStatistics) GetFileNumFinished() uint32 { @@ -1878,7 +1642,7 @@ type ListTrainingJobsreq struct { func (x *ListTrainingJobsreq) Reset() { *x = ListTrainingJobsreq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[28] + mi := &file_pcm_modelarts_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1891,7 +1655,7 @@ func (x *ListTrainingJobsreq) String() string { func (*ListTrainingJobsreq) ProtoMessage() {} func (x *ListTrainingJobsreq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[28] + mi := &file_pcm_modelarts_proto_msgTypes[24] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1904,7 +1668,7 @@ func (x *ListTrainingJobsreq) ProtoReflect() protoreflect.Message { // Deprecated: Use ListTrainingJobsreq.ProtoReflect.Descriptor instead. func (*ListTrainingJobsreq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{28} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{24} } func (x *ListTrainingJobsreq) GetProjectId() string { @@ -1919,14 +1683,22 @@ type ListTrainingJobsresp struct { sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - Resp200 *ListTrainingJobsresp200 `protobuf:"bytes,1,opt,name=resp200,proto3" json:"resp200,omitempty"` - Resp400 *ListTrainingJobsresp400 `protobuf:"bytes,2,opt,name=resp400,proto3" json:"resp400,omitempty"` + Total int32 `protobuf:"varint,1,opt,name=total,proto3" json:"total,omitempty"` + Count int32 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"` + Limit int32 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"` + Offset int32 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset,omitempty"` + SortBy string `protobuf:"bytes,5,opt,name=sort_by,json=sortBy,proto3" json:"sort_by,omitempty"` + Order string `protobuf:"bytes,6,opt,name=order,proto3" json:"order,omitempty"` + GroupBy string `protobuf:"bytes,7,opt,name=group_by,json=groupBy,proto3" json:"group_by,omitempty"` + WorkspaceId string `protobuf:"bytes,8,opt,name=workspace_id,json=workspaceId,proto3" json:"workspace_id,omitempty"` + AiProject string `protobuf:"bytes,9,opt,name=ai_project,json=aiProject,proto3" json:"ai_project,omitempty"` + Items []*JobResponse `protobuf:"bytes,10,rep,name=items,proto3" json:"items,omitempty"` } func (x *ListTrainingJobsresp) Reset() { *x = ListTrainingJobsresp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[29] + mi := &file_pcm_modelarts_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1939,7 +1711,7 @@ func (x *ListTrainingJobsresp) String() string { func (*ListTrainingJobsresp) ProtoMessage() {} func (x *ListTrainingJobsresp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[29] + mi := &file_pcm_modelarts_proto_msgTypes[25] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1952,199 +1724,73 @@ func (x *ListTrainingJobsresp) ProtoReflect() protoreflect.Message { // Deprecated: Use ListTrainingJobsresp.ProtoReflect.Descriptor instead. func (*ListTrainingJobsresp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{29} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{25} } -func (x *ListTrainingJobsresp) GetResp200() *ListTrainingJobsresp200 { - if x != nil { - return x.Resp200 - } - return nil -} - -func (x *ListTrainingJobsresp) GetResp400() *ListTrainingJobsresp400 { - if x != nil { - return x.Resp400 - } - return nil -} - -type ListTrainingJobsresp400 struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - ErrorMsg string `protobuf:"bytes,1,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"` - ErrorCode string `protobuf:"bytes,2,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"` - ErrorSolution string `protobuf:"bytes,3,opt,name=error_solution,json=errorSolution,proto3" json:"error_solution,omitempty"` -} - -func (x *ListTrainingJobsresp400) Reset() { - *x = ListTrainingJobsresp400{} - if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[30] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *ListTrainingJobsresp400) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*ListTrainingJobsresp400) ProtoMessage() {} - -func (x *ListTrainingJobsresp400) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[30] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use ListTrainingJobsresp400.ProtoReflect.Descriptor instead. -func (*ListTrainingJobsresp400) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{30} -} - -func (x *ListTrainingJobsresp400) GetErrorMsg() string { - if x != nil { - return x.ErrorMsg - } - return "" -} - -func (x *ListTrainingJobsresp400) GetErrorCode() string { - if x != nil { - return x.ErrorCode - } - return "" -} - -func (x *ListTrainingJobsresp400) GetErrorSolution() string { - if x != nil { - return x.ErrorSolution - } - return "" -} - -type ListTrainingJobsresp200 struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Total int32 `protobuf:"varint,1,opt,name=total,proto3" json:"total,omitempty"` //@gotags: copier:"Total" - Count int32 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"` //@gotags: copier:"Count" - Limit int32 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"` //@gotags: copier:"Limit" - Offset int32 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset,omitempty"` //@gotags: copier:"Offset" - SortBy string `protobuf:"bytes,5,opt,name=sort_by,json=sortBy,proto3" json:"sort_by,omitempty"` //@gotags: copier:"SortBy" - Order string `protobuf:"bytes,6,opt,name=order,proto3" json:"order,omitempty"` //@gotags: copier:"Order" - GroupBy string `protobuf:"bytes,7,opt,name=group_by,json=groupBy,proto3" json:"group_by,omitempty"` //@gotags: copier:"GroupBy" - WorkspaceId string `protobuf:"bytes,8,opt,name=workspace_id,json=workspaceId,proto3" json:"workspace_id,omitempty"` //@gotags: copier:"WorkspaceID" - AiProject string `protobuf:"bytes,9,opt,name=ai_project,json=aiProject,proto3" json:"ai_project,omitempty"` //@gotags: copier:"AiProject" - Items []*JobResponse `protobuf:"bytes,10,rep,name=items,proto3" json:"items,omitempty"` //@gotags: copier:"Items" -} - -func (x *ListTrainingJobsresp200) Reset() { - *x = ListTrainingJobsresp200{} - if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[31] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *ListTrainingJobsresp200) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*ListTrainingJobsresp200) ProtoMessage() {} - -func (x *ListTrainingJobsresp200) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[31] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use ListTrainingJobsresp200.ProtoReflect.Descriptor instead. -func (*ListTrainingJobsresp200) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{31} -} - -func (x *ListTrainingJobsresp200) GetTotal() int32 { +func (x *ListTrainingJobsresp) GetTotal() int32 { if x != nil { return x.Total } return 0 } -func (x *ListTrainingJobsresp200) GetCount() int32 { +func (x *ListTrainingJobsresp) GetCount() int32 { if x != nil { return x.Count } return 0 } -func (x *ListTrainingJobsresp200) GetLimit() int32 { +func (x *ListTrainingJobsresp) GetLimit() int32 { if x != nil { return x.Limit } return 0 } -func (x *ListTrainingJobsresp200) GetOffset() int32 { +func (x *ListTrainingJobsresp) GetOffset() int32 { if x != nil { return x.Offset } return 0 } -func (x *ListTrainingJobsresp200) GetSortBy() string { +func (x *ListTrainingJobsresp) GetSortBy() string { if x != nil { return x.SortBy } return "" } -func (x *ListTrainingJobsresp200) GetOrder() string { +func (x *ListTrainingJobsresp) GetOrder() string { if x != nil { return x.Order } return "" } -func (x *ListTrainingJobsresp200) GetGroupBy() string { +func (x *ListTrainingJobsresp) GetGroupBy() string { if x != nil { return x.GroupBy } return "" } -func (x *ListTrainingJobsresp200) GetWorkspaceId() string { +func (x *ListTrainingJobsresp) GetWorkspaceId() string { if x != nil { return x.WorkspaceId } return "" } -func (x *ListTrainingJobsresp200) GetAiProject() string { +func (x *ListTrainingJobsresp) GetAiProject() string { if x != nil { return x.AiProject } return "" } -func (x *ListTrainingJobsresp200) GetItems() []*JobResponse { +func (x *ListTrainingJobsresp) GetItems() []*JobResponse { if x != nil { return x.Items } @@ -2167,7 +1813,7 @@ type JobResponse struct { func (x *JobResponse) Reset() { *x = JobResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[32] + mi := &file_pcm_modelarts_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2180,7 +1826,7 @@ func (x *JobResponse) String() string { func (*JobResponse) ProtoMessage() {} func (x *JobResponse) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[32] + mi := &file_pcm_modelarts_proto_msgTypes[26] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2193,7 +1839,7 @@ func (x *JobResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use JobResponse.ProtoReflect.Descriptor instead. func (*JobResponse) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{32} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{26} } func (x *JobResponse) GetKind() string { @@ -2255,7 +1901,7 @@ type JobMetadata struct { func (x *JobMetadata) Reset() { *x = JobMetadata{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[33] + mi := &file_pcm_modelarts_proto_msgTypes[27] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2268,7 +1914,7 @@ func (x *JobMetadata) String() string { func (*JobMetadata) ProtoMessage() {} func (x *JobMetadata) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[33] + mi := &file_pcm_modelarts_proto_msgTypes[27] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2281,7 +1927,7 @@ func (x *JobMetadata) ProtoReflect() protoreflect.Message { // Deprecated: Use JobMetadata.ProtoReflect.Descriptor instead. func (*JobMetadata) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{33} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{27} } func (x *JobMetadata) GetId() string { @@ -2338,18 +1984,18 @@ type Status struct { sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - Phase string `protobuf:"bytes,1,opt,name=phase,proto3" json:"phase,omitempty"` //@gotags: copier:"Phase" - SecondaryPhase string `protobuf:"bytes,2,opt,name=secondary_phase,json=secondaryPhase,proto3" json:"secondary_phase,omitempty"` //@gotags: copier:"SecondaryPhase" - Duration uint32 `protobuf:"varint,3,opt,name=duration,proto3" json:"duration,omitempty"` //@gotags: copier:"Duration" - Tasks []string `protobuf:"bytes,4,rep,name=tasks,proto3" json:"tasks,omitempty"` //@gotags: copier:"Tasks" - StartTime string `protobuf:"bytes,5,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` //@gotags: copier:"StartTime" - TaskStatuses []*TaskStatuses `protobuf:"bytes,6,rep,name=task_statuses,json=taskStatuses,proto3" json:"task_statuses,omitempty"` //@gotags: copier:"TaskStatuses" + Phase string `protobuf:"bytes,1,opt,name=phase,proto3" json:"phase,omitempty"` + SecondaryPhase string `protobuf:"bytes,2,opt,name=secondary_phase,json=secondaryPhase,proto3" json:"secondary_phase,omitempty"` + Duration uint32 `protobuf:"varint,3,opt,name=duration,proto3" json:"duration,omitempty"` + Tasks []string `protobuf:"bytes,4,rep,name=tasks,proto3" json:"tasks,omitempty"` + StartTime string `protobuf:"bytes,5,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` + TaskStatuses []*TaskStatuses `protobuf:"bytes,6,rep,name=task_statuses,json=taskStatuses,proto3" json:"task_statuses,omitempty"` // repeated demos node_count_metrics =7; } func (x *Status) Reset() { *x = Status{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[34] + mi := &file_pcm_modelarts_proto_msgTypes[28] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2362,7 +2008,7 @@ func (x *Status) String() string { func (*Status) ProtoMessage() {} func (x *Status) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[34] + mi := &file_pcm_modelarts_proto_msgTypes[28] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2375,7 +2021,7 @@ func (x *Status) ProtoReflect() protoreflect.Message { // Deprecated: Use Status.ProtoReflect.Descriptor instead. func (*Status) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{34} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{28} } func (x *Status) GetPhase() string { @@ -2446,7 +2092,7 @@ type JobAlgorithmResponse struct { func (x *JobAlgorithmResponse) Reset() { *x = JobAlgorithmResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[35] + mi := &file_pcm_modelarts_proto_msgTypes[29] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2459,7 +2105,7 @@ func (x *JobAlgorithmResponse) String() string { func (*JobAlgorithmResponse) ProtoMessage() {} func (x *JobAlgorithmResponse) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[35] + mi := &file_pcm_modelarts_proto_msgTypes[29] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2472,7 +2118,7 @@ func (x *JobAlgorithmResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use JobAlgorithmResponse.ProtoReflect.Descriptor instead. func (*JobAlgorithmResponse) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{35} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{29} } func (x *JobAlgorithmResponse) GetId() string { @@ -2603,7 +2249,7 @@ type TaskResponse struct { func (x *TaskResponse) Reset() { *x = TaskResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[36] + mi := &file_pcm_modelarts_proto_msgTypes[30] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2616,7 +2262,7 @@ func (x *TaskResponse) String() string { func (*TaskResponse) ProtoMessage() {} func (x *TaskResponse) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[36] + mi := &file_pcm_modelarts_proto_msgTypes[30] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2629,7 +2275,7 @@ func (x *TaskResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use TaskResponse.ProtoReflect.Descriptor instead. func (*TaskResponse) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{36} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{30} } func (x *TaskResponse) GetRole() string { @@ -2670,7 +2316,7 @@ type FlavorResponse struct { func (x *FlavorResponse) Reset() { *x = FlavorResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[37] + mi := &file_pcm_modelarts_proto_msgTypes[31] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2683,7 +2329,7 @@ func (x *FlavorResponse) String() string { func (*FlavorResponse) ProtoMessage() {} func (x *FlavorResponse) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[37] + mi := &file_pcm_modelarts_proto_msgTypes[31] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2696,7 +2342,7 @@ func (x *FlavorResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use FlavorResponse.ProtoReflect.Descriptor instead. func (*FlavorResponse) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{37} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{31} } func (x *FlavorResponse) GetFlavorId() string { @@ -2760,7 +2406,7 @@ type Billing struct { func (x *Billing) Reset() { *x = Billing{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[38] + mi := &file_pcm_modelarts_proto_msgTypes[32] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2773,7 +2419,7 @@ func (x *Billing) String() string { func (*Billing) ProtoMessage() {} func (x *Billing) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[38] + mi := &file_pcm_modelarts_proto_msgTypes[32] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2786,7 +2432,7 @@ func (x *Billing) ProtoReflect() protoreflect.Message { // Deprecated: Use Billing.ProtoReflect.Descriptor instead. func (*Billing) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{38} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{32} } func (x *Billing) GetCode() string { @@ -2819,7 +2465,7 @@ type FlavorInfo struct { func (x *FlavorInfo) Reset() { *x = FlavorInfo{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[39] + mi := &file_pcm_modelarts_proto_msgTypes[33] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2832,7 +2478,7 @@ func (x *FlavorInfo) String() string { func (*FlavorInfo) ProtoMessage() {} func (x *FlavorInfo) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[39] + mi := &file_pcm_modelarts_proto_msgTypes[33] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2845,7 +2491,7 @@ func (x *FlavorInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use FlavorInfo.ProtoReflect.Descriptor instead. func (*FlavorInfo) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{39} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{33} } func (x *FlavorInfo) GetMaxNum() int32 { @@ -2902,7 +2548,7 @@ type Cpu struct { func (x *Cpu) Reset() { *x = Cpu{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[40] + mi := &file_pcm_modelarts_proto_msgTypes[34] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2915,7 +2561,7 @@ func (x *Cpu) String() string { func (*Cpu) ProtoMessage() {} func (x *Cpu) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[40] + mi := &file_pcm_modelarts_proto_msgTypes[34] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2928,7 +2574,7 @@ func (x *Cpu) ProtoReflect() protoreflect.Message { // Deprecated: Use Cpu.ProtoReflect.Descriptor instead. func (*Cpu) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{40} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{34} } func (x *Cpu) GetArch() string { @@ -2958,7 +2604,7 @@ type Npu struct { func (x *Npu) Reset() { *x = Npu{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[41] + mi := &file_pcm_modelarts_proto_msgTypes[35] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2971,7 +2617,7 @@ func (x *Npu) String() string { func (*Npu) ProtoMessage() {} func (x *Npu) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[41] + mi := &file_pcm_modelarts_proto_msgTypes[35] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2984,7 +2630,7 @@ func (x *Npu) ProtoReflect() protoreflect.Message { // Deprecated: Use Npu.ProtoReflect.Descriptor instead. func (*Npu) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{41} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{35} } func (x *Npu) GetUnitNum() string { @@ -3021,7 +2667,7 @@ type Gpu struct { func (x *Gpu) Reset() { *x = Gpu{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[42] + mi := &file_pcm_modelarts_proto_msgTypes[36] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3034,7 +2680,7 @@ func (x *Gpu) String() string { func (*Gpu) ProtoMessage() {} func (x *Gpu) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[42] + mi := &file_pcm_modelarts_proto_msgTypes[36] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3047,7 +2693,7 @@ func (x *Gpu) ProtoReflect() protoreflect.Message { // Deprecated: Use Gpu.ProtoReflect.Descriptor instead. func (*Gpu) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{42} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{36} } func (x *Gpu) GetUnitNum() int32 { @@ -3083,7 +2729,7 @@ type Memory struct { func (x *Memory) Reset() { *x = Memory{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[43] + mi := &file_pcm_modelarts_proto_msgTypes[37] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3096,7 +2742,7 @@ func (x *Memory) String() string { func (*Memory) ProtoMessage() {} func (x *Memory) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[43] + mi := &file_pcm_modelarts_proto_msgTypes[37] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3109,7 +2755,7 @@ func (x *Memory) ProtoReflect() protoreflect.Message { // Deprecated: Use Memory.ProtoReflect.Descriptor instead. func (*Memory) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{43} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{37} } func (x *Memory) GetSize() int32 { @@ -3138,7 +2784,7 @@ type Disk struct { func (x *Disk) Reset() { *x = Disk{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[44] + mi := &file_pcm_modelarts_proto_msgTypes[38] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3151,7 +2797,7 @@ func (x *Disk) String() string { func (*Disk) ProtoMessage() {} func (x *Disk) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[44] + mi := &file_pcm_modelarts_proto_msgTypes[38] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3164,7 +2810,7 @@ func (x *Disk) ProtoReflect() protoreflect.Message { // Deprecated: Use Disk.ProtoReflect.Descriptor instead. func (*Disk) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{44} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{38} } func (x *Disk) GetSize() int32 { @@ -3198,7 +2844,7 @@ type Algorithm struct { func (x *Algorithm) Reset() { *x = Algorithm{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[45] + mi := &file_pcm_modelarts_proto_msgTypes[39] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3211,7 +2857,7 @@ func (x *Algorithm) String() string { func (*Algorithm) ProtoMessage() {} func (x *Algorithm) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[45] + mi := &file_pcm_modelarts_proto_msgTypes[39] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3224,7 +2870,7 @@ func (x *Algorithm) ProtoReflect() protoreflect.Message { // Deprecated: Use Algorithm.ProtoReflect.Descriptor instead. func (*Algorithm) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{45} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{39} } func (x *Algorithm) GetCodeDir() string { @@ -3290,7 +2936,7 @@ type Inputs struct { func (x *Inputs) Reset() { *x = Inputs{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[46] + mi := &file_pcm_modelarts_proto_msgTypes[40] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3303,7 +2949,7 @@ func (x *Inputs) String() string { func (*Inputs) ProtoMessage() {} func (x *Inputs) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[46] + mi := &file_pcm_modelarts_proto_msgTypes[40] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3316,7 +2962,7 @@ func (x *Inputs) ProtoReflect() protoreflect.Message { // Deprecated: Use Inputs.ProtoReflect.Descriptor instead. func (*Inputs) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{46} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{40} } func (x *Inputs) GetName() string { @@ -3362,7 +3008,7 @@ type Outputs struct { func (x *Outputs) Reset() { *x = Outputs{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[47] + mi := &file_pcm_modelarts_proto_msgTypes[41] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3375,7 +3021,7 @@ func (x *Outputs) String() string { func (*Outputs) ProtoMessage() {} func (x *Outputs) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[47] + mi := &file_pcm_modelarts_proto_msgTypes[41] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3388,7 +3034,7 @@ func (x *Outputs) ProtoReflect() protoreflect.Message { // Deprecated: Use Outputs.ProtoReflect.Descriptor instead. func (*Outputs) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{47} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{41} } func (x *Outputs) GetName() string { @@ -3441,7 +3087,7 @@ type Input struct { func (x *Input) Reset() { *x = Input{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[48] + mi := &file_pcm_modelarts_proto_msgTypes[42] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3454,7 +3100,7 @@ func (x *Input) String() string { func (*Input) ProtoMessage() {} func (x *Input) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[48] + mi := &file_pcm_modelarts_proto_msgTypes[42] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3467,7 +3113,7 @@ func (x *Input) ProtoReflect() protoreflect.Message { // Deprecated: Use Input.ProtoReflect.Descriptor instead. func (*Input) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{48} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{42} } func (x *Input) GetName() string { @@ -3517,7 +3163,7 @@ type InputDataInfo struct { func (x *InputDataInfo) Reset() { *x = InputDataInfo{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[49] + mi := &file_pcm_modelarts_proto_msgTypes[43] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3530,7 +3176,7 @@ func (x *InputDataInfo) String() string { func (*InputDataInfo) ProtoMessage() {} func (x *InputDataInfo) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[49] + mi := &file_pcm_modelarts_proto_msgTypes[43] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3543,7 +3189,7 @@ func (x *InputDataInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use InputDataInfo.ProtoReflect.Descriptor instead. func (*InputDataInfo) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{49} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{43} } func (x *InputDataInfo) GetDataset() *Dataset { @@ -3573,7 +3219,7 @@ type Dataset struct { func (x *Dataset) Reset() { *x = Dataset{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[50] + mi := &file_pcm_modelarts_proto_msgTypes[44] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3586,7 +3232,7 @@ func (x *Dataset) String() string { func (*Dataset) ProtoMessage() {} func (x *Dataset) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[50] + mi := &file_pcm_modelarts_proto_msgTypes[44] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3599,7 +3245,7 @@ func (x *Dataset) ProtoReflect() protoreflect.Message { // Deprecated: Use Dataset.ProtoReflect.Descriptor instead. func (*Dataset) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{50} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{44} } func (x *Dataset) GetId() string { @@ -3634,7 +3280,7 @@ type Obs struct { func (x *Obs) Reset() { *x = Obs{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[51] + mi := &file_pcm_modelarts_proto_msgTypes[45] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3647,7 +3293,7 @@ func (x *Obs) String() string { func (*Obs) ProtoMessage() {} func (x *Obs) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[51] + mi := &file_pcm_modelarts_proto_msgTypes[45] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3660,7 +3306,7 @@ func (x *Obs) ProtoReflect() protoreflect.Message { // Deprecated: Use Obs.ProtoReflect.Descriptor instead. func (*Obs) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{51} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{45} } func (x *Obs) GetObsUrl() string { @@ -3682,7 +3328,7 @@ type RemoteConstraint struct { func (x *RemoteConstraint) Reset() { *x = RemoteConstraint{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[52] + mi := &file_pcm_modelarts_proto_msgTypes[46] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3695,7 +3341,7 @@ func (x *RemoteConstraint) String() string { func (*RemoteConstraint) ProtoMessage() {} func (x *RemoteConstraint) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[52] + mi := &file_pcm_modelarts_proto_msgTypes[46] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3708,7 +3354,7 @@ func (x *RemoteConstraint) ProtoReflect() protoreflect.Message { // Deprecated: Use RemoteConstraint.ProtoReflect.Descriptor instead. func (*RemoteConstraint) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{52} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{46} } func (x *RemoteConstraint) GetDataType() string { @@ -3739,7 +3385,7 @@ type Output struct { func (x *Output) Reset() { *x = Output{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[53] + mi := &file_pcm_modelarts_proto_msgTypes[47] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3752,7 +3398,7 @@ func (x *Output) String() string { func (*Output) ProtoMessage() {} func (x *Output) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[53] + mi := &file_pcm_modelarts_proto_msgTypes[47] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3765,7 +3411,7 @@ func (x *Output) ProtoReflect() protoreflect.Message { // Deprecated: Use Output.ProtoReflect.Descriptor instead. func (*Output) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{53} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{47} } func (x *Output) GetName() string { @@ -3807,7 +3453,7 @@ type Remote struct { func (x *Remote) Reset() { *x = Remote{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[54] + mi := &file_pcm_modelarts_proto_msgTypes[48] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3820,7 +3466,7 @@ func (x *Remote) String() string { func (*Remote) ProtoMessage() {} func (x *Remote) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[54] + mi := &file_pcm_modelarts_proto_msgTypes[48] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3833,7 +3479,7 @@ func (x *Remote) ProtoReflect() protoreflect.Message { // Deprecated: Use Remote.ProtoReflect.Descriptor instead. func (*Remote) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{54} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{48} } func (x *Remote) GetObs() *Obs1 { @@ -3854,7 +3500,7 @@ type Obs1 struct { func (x *Obs1) Reset() { *x = Obs1{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[55] + mi := &file_pcm_modelarts_proto_msgTypes[49] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3867,7 +3513,7 @@ func (x *Obs1) String() string { func (*Obs1) ProtoMessage() {} func (x *Obs1) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[55] + mi := &file_pcm_modelarts_proto_msgTypes[49] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3880,7 +3526,7 @@ func (x *Obs1) ProtoReflect() protoreflect.Message { // Deprecated: Use Obs1.ProtoReflect.Descriptor instead. func (*Obs1) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{55} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{49} } func (x *Obs1) GetObsUrl() string { @@ -3906,7 +3552,7 @@ type Engine struct { func (x *Engine) Reset() { *x = Engine{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[56] + mi := &file_pcm_modelarts_proto_msgTypes[50] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3919,7 +3565,7 @@ func (x *Engine) String() string { func (*Engine) ProtoMessage() {} func (x *Engine) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[56] + mi := &file_pcm_modelarts_proto_msgTypes[50] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3932,7 +3578,7 @@ func (x *Engine) ProtoReflect() protoreflect.Message { // Deprecated: Use Engine.ProtoReflect.Descriptor instead. func (*Engine) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{56} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{50} } func (x *Engine) GetEngineId() string { @@ -3986,7 +3632,7 @@ type Policies struct { func (x *Policies) Reset() { *x = Policies{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[57] + mi := &file_pcm_modelarts_proto_msgTypes[51] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3999,7 +3645,7 @@ func (x *Policies) String() string { func (*Policies) ProtoMessage() {} func (x *Policies) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[57] + mi := &file_pcm_modelarts_proto_msgTypes[51] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4012,7 +3658,7 @@ func (x *Policies) ProtoReflect() protoreflect.Message { // Deprecated: Use Policies.ProtoReflect.Descriptor instead. func (*Policies) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{57} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{51} } type AutoSearch struct { @@ -4029,7 +3675,7 @@ type AutoSearch struct { func (x *AutoSearch) Reset() { *x = AutoSearch{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[58] + mi := &file_pcm_modelarts_proto_msgTypes[52] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4042,7 +3688,7 @@ func (x *AutoSearch) String() string { func (*AutoSearch) ProtoMessage() {} func (x *AutoSearch) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[58] + mi := &file_pcm_modelarts_proto_msgTypes[52] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4055,7 +3701,7 @@ func (x *AutoSearch) ProtoReflect() protoreflect.Message { // Deprecated: Use AutoSearch.ProtoReflect.Descriptor instead. func (*AutoSearch) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{58} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{52} } func (x *AutoSearch) GetSkipSearchParams() string { @@ -4099,7 +3745,7 @@ type RewardAttrs struct { func (x *RewardAttrs) Reset() { *x = RewardAttrs{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[59] + mi := &file_pcm_modelarts_proto_msgTypes[53] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4112,7 +3758,7 @@ func (x *RewardAttrs) String() string { func (*RewardAttrs) ProtoMessage() {} func (x *RewardAttrs) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[59] + mi := &file_pcm_modelarts_proto_msgTypes[53] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4125,7 +3771,7 @@ func (x *RewardAttrs) ProtoReflect() protoreflect.Message { // Deprecated: Use RewardAttrs.ProtoReflect.Descriptor instead. func (*RewardAttrs) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{59} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{53} } func (x *RewardAttrs) GetName() string { @@ -4165,7 +3811,7 @@ type SearchParams struct { func (x *SearchParams) Reset() { *x = SearchParams{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[60] + mi := &file_pcm_modelarts_proto_msgTypes[54] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4178,7 +3824,7 @@ func (x *SearchParams) String() string { func (*SearchParams) ProtoMessage() {} func (x *SearchParams) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[60] + mi := &file_pcm_modelarts_proto_msgTypes[54] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4191,7 +3837,7 @@ func (x *SearchParams) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchParams.ProtoReflect.Descriptor instead. func (*SearchParams) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{60} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{54} } func (x *SearchParams) GetName() string { @@ -4248,7 +3894,7 @@ type AlgoConfigs struct { func (x *AlgoConfigs) Reset() { *x = AlgoConfigs{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[61] + mi := &file_pcm_modelarts_proto_msgTypes[55] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4261,7 +3907,7 @@ func (x *AlgoConfigs) String() string { func (*AlgoConfigs) ProtoMessage() {} func (x *AlgoConfigs) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[61] + mi := &file_pcm_modelarts_proto_msgTypes[55] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4274,7 +3920,7 @@ func (x *AlgoConfigs) ProtoReflect() protoreflect.Message { // Deprecated: Use AlgoConfigs.ProtoReflect.Descriptor instead. func (*AlgoConfigs) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{61} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{55} } func (x *AlgoConfigs) GetName() string { @@ -4304,7 +3950,7 @@ type AutoSearchAlgoConfigParameter struct { func (x *AutoSearchAlgoConfigParameter) Reset() { *x = AutoSearchAlgoConfigParameter{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[62] + mi := &file_pcm_modelarts_proto_msgTypes[56] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4317,7 +3963,7 @@ func (x *AutoSearchAlgoConfigParameter) String() string { func (*AutoSearchAlgoConfigParameter) ProtoMessage() {} func (x *AutoSearchAlgoConfigParameter) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[62] + mi := &file_pcm_modelarts_proto_msgTypes[56] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4330,7 +3976,7 @@ func (x *AutoSearchAlgoConfigParameter) ProtoReflect() protoreflect.Message { // Deprecated: Use AutoSearchAlgoConfigParameter.ProtoReflect.Descriptor instead. func (*AutoSearchAlgoConfigParameter) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{62} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{56} } func (x *AutoSearchAlgoConfigParameter) GetKey() string { @@ -4369,7 +4015,7 @@ type Parameter struct { func (x *Parameter) Reset() { *x = Parameter{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[63] + mi := &file_pcm_modelarts_proto_msgTypes[57] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4382,7 +4028,7 @@ func (x *Parameter) String() string { func (*Parameter) ProtoMessage() {} func (x *Parameter) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[63] + mi := &file_pcm_modelarts_proto_msgTypes[57] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4395,7 +4041,7 @@ func (x *Parameter) ProtoReflect() protoreflect.Message { // Deprecated: Use Parameter.ProtoReflect.Descriptor instead. func (*Parameter) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{63} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{57} } func (x *Parameter) GetName() string { @@ -4445,7 +4091,7 @@ type I18NDescription struct { func (x *I18NDescription) Reset() { *x = I18NDescription{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[64] + mi := &file_pcm_modelarts_proto_msgTypes[58] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4458,7 +4104,7 @@ func (x *I18NDescription) String() string { func (*I18NDescription) ProtoMessage() {} func (x *I18NDescription) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[64] + mi := &file_pcm_modelarts_proto_msgTypes[58] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4471,7 +4117,7 @@ func (x *I18NDescription) ProtoReflect() protoreflect.Message { // Deprecated: Use I18NDescription.ProtoReflect.Descriptor instead. func (*I18NDescription) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{64} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{58} } func (x *I18NDescription) GetLanguage() string { @@ -4504,7 +4150,7 @@ type Constraint struct { func (x *Constraint) Reset() { *x = Constraint{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[65] + mi := &file_pcm_modelarts_proto_msgTypes[59] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4517,7 +4163,7 @@ func (x *Constraint) String() string { func (*Constraint) ProtoMessage() {} func (x *Constraint) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[65] + mi := &file_pcm_modelarts_proto_msgTypes[59] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4530,7 +4176,7 @@ func (x *Constraint) ProtoReflect() protoreflect.Message { // Deprecated: Use Constraint.ProtoReflect.Descriptor instead. func (*Constraint) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{65} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{59} } func (x *Constraint) GetType() string { @@ -4588,7 +4234,7 @@ type Spec struct { func (x *Spec) Reset() { *x = Spec{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[66] + mi := &file_pcm_modelarts_proto_msgTypes[60] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4601,7 +4247,7 @@ func (x *Spec) String() string { func (*Spec) ProtoMessage() {} func (x *Spec) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[66] + mi := &file_pcm_modelarts_proto_msgTypes[60] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4614,7 +4260,7 @@ func (x *Spec) ProtoReflect() protoreflect.Message { // Deprecated: Use Spec.ProtoReflect.Descriptor instead. func (*Spec) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{66} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{60} } func (x *Spec) GetResource() *Resource { @@ -4654,7 +4300,7 @@ type Resource struct { func (x *Resource) Reset() { *x = Resource{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[67] + mi := &file_pcm_modelarts_proto_msgTypes[61] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4667,7 +4313,7 @@ func (x *Resource) String() string { func (*Resource) ProtoMessage() {} func (x *Resource) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[67] + mi := &file_pcm_modelarts_proto_msgTypes[61] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4680,7 +4326,7 @@ func (x *Resource) ProtoReflect() protoreflect.Message { // Deprecated: Use Resource.ProtoReflect.Descriptor instead. func (*Resource) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{67} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{61} } func (x *Resource) GetPolicy() string { @@ -4738,7 +4384,7 @@ type FlavorDetail struct { func (x *FlavorDetail) Reset() { *x = FlavorDetail{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[68] + mi := &file_pcm_modelarts_proto_msgTypes[62] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4751,7 +4397,7 @@ func (x *FlavorDetail) String() string { func (*FlavorDetail) ProtoMessage() {} func (x *FlavorDetail) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[68] + mi := &file_pcm_modelarts_proto_msgTypes[62] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4764,7 +4410,7 @@ func (x *FlavorDetail) ProtoReflect() protoreflect.Message { // Deprecated: Use FlavorDetail.ProtoReflect.Descriptor instead. func (*FlavorDetail) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{68} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{62} } func (x *FlavorDetail) GetFlavorType() string { @@ -4799,7 +4445,7 @@ type Volumes struct { func (x *Volumes) Reset() { *x = Volumes{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[69] + mi := &file_pcm_modelarts_proto_msgTypes[63] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4812,7 +4458,7 @@ func (x *Volumes) String() string { func (*Volumes) ProtoMessage() {} func (x *Volumes) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[69] + mi := &file_pcm_modelarts_proto_msgTypes[63] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4825,7 +4471,7 @@ func (x *Volumes) ProtoReflect() protoreflect.Message { // Deprecated: Use Volumes.ProtoReflect.Descriptor instead. func (*Volumes) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{69} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{63} } func (x *Volumes) GetNfs() *Nfs { @@ -4848,7 +4494,7 @@ type Nfs struct { func (x *Nfs) Reset() { *x = Nfs{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[70] + mi := &file_pcm_modelarts_proto_msgTypes[64] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4861,7 +4507,7 @@ func (x *Nfs) String() string { func (*Nfs) ProtoMessage() {} func (x *Nfs) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[70] + mi := &file_pcm_modelarts_proto_msgTypes[64] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4874,7 +4520,7 @@ func (x *Nfs) ProtoReflect() protoreflect.Message { // Deprecated: Use Nfs.ProtoReflect.Descriptor instead. func (*Nfs) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{70} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{64} } func (x *Nfs) GetNfsServerPath() string { @@ -4910,7 +4556,7 @@ type LogExportPath struct { func (x *LogExportPath) Reset() { *x = LogExportPath{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[71] + mi := &file_pcm_modelarts_proto_msgTypes[65] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4923,7 +4569,7 @@ func (x *LogExportPath) String() string { func (*LogExportPath) ProtoMessage() {} func (x *LogExportPath) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[71] + mi := &file_pcm_modelarts_proto_msgTypes[65] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4936,7 +4582,7 @@ func (x *LogExportPath) ProtoReflect() protoreflect.Message { // Deprecated: Use LogExportPath.ProtoReflect.Descriptor instead. func (*LogExportPath) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{71} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{65} } func (x *LogExportPath) GetObsUrl() string { @@ -4977,7 +4623,7 @@ type TaskStatuses struct { func (x *TaskStatuses) Reset() { *x = TaskStatuses{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[72] + mi := &file_pcm_modelarts_proto_msgTypes[66] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4990,7 +4636,7 @@ func (x *TaskStatuses) String() string { func (*TaskStatuses) ProtoMessage() {} func (x *TaskStatuses) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[72] + mi := &file_pcm_modelarts_proto_msgTypes[66] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5003,7 +4649,7 @@ func (x *TaskStatuses) ProtoReflect() protoreflect.Message { // Deprecated: Use TaskStatuses.ProtoReflect.Descriptor instead. func (*TaskStatuses) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{72} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{66} } func (x *TaskStatuses) GetTask() string { @@ -5043,7 +4689,7 @@ type CreateTrainingJobReq struct { func (x *CreateTrainingJobReq) Reset() { *x = CreateTrainingJobReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[73] + mi := &file_pcm_modelarts_proto_msgTypes[67] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5056,7 +4702,7 @@ func (x *CreateTrainingJobReq) String() string { func (*CreateTrainingJobReq) ProtoMessage() {} func (x *CreateTrainingJobReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[73] + mi := &file_pcm_modelarts_proto_msgTypes[67] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5069,7 +4715,7 @@ func (x *CreateTrainingJobReq) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateTrainingJobReq.ProtoReflect.Descriptor instead. func (*CreateTrainingJobReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{73} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{67} } func (x *CreateTrainingJobReq) GetKind() string { @@ -5113,14 +4759,17 @@ type CreateTrainingJobResp struct { sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - Resp201 *CreateTrainingJobResp201 `protobuf:"bytes,1,opt,name=resp201,proto3" json:"resp201,omitempty"` // @gotags: copier:"Resp201" - Resp400 *CreateTrainingJobResp400 `protobuf:"bytes,2,opt,name=resp400,proto3" json:"resp400,omitempty"` // @gotags: copier:"Resp400" + Kind string `protobuf:"bytes,1,opt,name=kind,proto3" json:"kind,omitempty"` + Metadata *MetadataS `protobuf:"bytes,2,opt,name=metadata,proto3" json:"metadata,omitempty"` + Status *Status `protobuf:"bytes,3,opt,name=status,proto3" json:"status,omitempty"` + Algorithm *Algorithms `protobuf:"bytes,4,opt,name=algorithm,proto3" json:"algorithm,omitempty"` + Spec *Spec `protobuf:"bytes,5,opt,name=spec,proto3" json:"spec,omitempty"` } func (x *CreateTrainingJobResp) Reset() { *x = CreateTrainingJobResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[74] + mi := &file_pcm_modelarts_proto_msgTypes[68] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5133,7 +4782,7 @@ func (x *CreateTrainingJobResp) String() string { func (*CreateTrainingJobResp) ProtoMessage() {} func (x *CreateTrainingJobResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[74] + mi := &file_pcm_modelarts_proto_msgTypes[68] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5146,165 +4795,44 @@ func (x *CreateTrainingJobResp) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateTrainingJobResp.ProtoReflect.Descriptor instead. func (*CreateTrainingJobResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{74} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{68} } -func (x *CreateTrainingJobResp) GetResp201() *CreateTrainingJobResp201 { - if x != nil { - return x.Resp201 - } - return nil -} - -func (x *CreateTrainingJobResp) GetResp400() *CreateTrainingJobResp400 { - if x != nil { - return x.Resp400 - } - return nil -} - -type CreateTrainingJobResp201 struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Kind string `protobuf:"bytes,1,opt,name=kind,proto3" json:"kind,omitempty"` // @gotags: copier:"Kind" - Metadata *MetadataS `protobuf:"bytes,2,opt,name=metadata,proto3" json:"metadata,omitempty"` // @gotags: copier:"Metadatas" - Status *Status `protobuf:"bytes,3,opt,name=status,proto3" json:"status,omitempty"` // @gotags: copier:"Status" - Algorithm *Algorithms `protobuf:"bytes,4,opt,name=algorithm,proto3" json:"algorithm,omitempty"` // @gotags: copier:"Algorithms" - Spec *Spec `protobuf:"bytes,5,opt,name=spec,proto3" json:"spec,omitempty"` // @gotags: copier:"SpecCtRp" -} - -func (x *CreateTrainingJobResp201) Reset() { - *x = CreateTrainingJobResp201{} - if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[75] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *CreateTrainingJobResp201) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*CreateTrainingJobResp201) ProtoMessage() {} - -func (x *CreateTrainingJobResp201) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[75] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use CreateTrainingJobResp201.ProtoReflect.Descriptor instead. -func (*CreateTrainingJobResp201) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{75} -} - -func (x *CreateTrainingJobResp201) GetKind() string { +func (x *CreateTrainingJobResp) GetKind() string { if x != nil { return x.Kind } return "" } -func (x *CreateTrainingJobResp201) GetMetadata() *MetadataS { +func (x *CreateTrainingJobResp) GetMetadata() *MetadataS { if x != nil { return x.Metadata } return nil } -func (x *CreateTrainingJobResp201) GetStatus() *Status { +func (x *CreateTrainingJobResp) GetStatus() *Status { if x != nil { return x.Status } return nil } -func (x *CreateTrainingJobResp201) GetAlgorithm() *Algorithms { +func (x *CreateTrainingJobResp) GetAlgorithm() *Algorithms { if x != nil { return x.Algorithm } return nil } -func (x *CreateTrainingJobResp201) GetSpec() *Spec { +func (x *CreateTrainingJobResp) GetSpec() *Spec { if x != nil { return x.Spec } return nil } -type CreateTrainingJobResp400 struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - ErrorMsg string `protobuf:"bytes,1,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"` - ErrorCode string `protobuf:"bytes,2,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"` - ErrorSolution string `protobuf:"bytes,3,opt,name=error_solution,json=errorSolution,proto3" json:"error_solution,omitempty"` -} - -func (x *CreateTrainingJobResp400) Reset() { - *x = CreateTrainingJobResp400{} - if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[76] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *CreateTrainingJobResp400) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*CreateTrainingJobResp400) ProtoMessage() {} - -func (x *CreateTrainingJobResp400) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[76] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use CreateTrainingJobResp400.ProtoReflect.Descriptor instead. -func (*CreateTrainingJobResp400) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{76} -} - -func (x *CreateTrainingJobResp400) GetErrorMsg() string { - if x != nil { - return x.ErrorMsg - } - return "" -} - -func (x *CreateTrainingJobResp400) GetErrorCode() string { - if x != nil { - return x.ErrorCode - } - return "" -} - -func (x *CreateTrainingJobResp400) GetErrorSolution() string { - if x != nil { - return x.ErrorSolution - } - return "" -} - type MetadataS struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -5319,7 +4847,7 @@ type MetadataS struct { func (x *MetadataS) Reset() { *x = MetadataS{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[77] + mi := &file_pcm_modelarts_proto_msgTypes[69] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5332,7 +4860,7 @@ func (x *MetadataS) String() string { func (*MetadataS) ProtoMessage() {} func (x *MetadataS) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[77] + mi := &file_pcm_modelarts_proto_msgTypes[69] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5345,7 +4873,7 @@ func (x *MetadataS) ProtoReflect() protoreflect.Message { // Deprecated: Use MetadataS.ProtoReflect.Descriptor instead. func (*MetadataS) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{77} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{69} } func (x *MetadataS) GetId() string { @@ -5384,13 +4912,12 @@ type EngineCreateTraining struct { EngineId string `protobuf:"bytes,1,opt,name=engine_id,json=engineId,proto3" json:"engine_id,omitempty"` EngineName string `protobuf:"bytes,2,opt,name=engine_name,json=engineName,proto3" json:"engine_name,omitempty"` EngineVersion string `protobuf:"bytes,3,opt,name=engine_version,json=engineVersion,proto3" json:"engine_version,omitempty"` - ImageUrl string `protobuf:"bytes,4,opt,name=image_url,json=imageUrl,proto3" json:"image_url,omitempty"` } func (x *EngineCreateTraining) Reset() { *x = EngineCreateTraining{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[78] + mi := &file_pcm_modelarts_proto_msgTypes[70] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5403,7 +4930,7 @@ func (x *EngineCreateTraining) String() string { func (*EngineCreateTraining) ProtoMessage() {} func (x *EngineCreateTraining) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[78] + mi := &file_pcm_modelarts_proto_msgTypes[70] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5416,7 +4943,7 @@ func (x *EngineCreateTraining) ProtoReflect() protoreflect.Message { // Deprecated: Use EngineCreateTraining.ProtoReflect.Descriptor instead. func (*EngineCreateTraining) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{78} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{70} } func (x *EngineCreateTraining) GetEngineId() string { @@ -5440,13 +4967,6 @@ func (x *EngineCreateTraining) GetEngineVersion() string { return "" } -func (x *EngineCreateTraining) GetImageUrl() string { - if x != nil { - return x.ImageUrl - } - return "" -} - type ConstraintCreateTraining struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -5462,7 +4982,7 @@ type ConstraintCreateTraining struct { func (x *ConstraintCreateTraining) Reset() { *x = ConstraintCreateTraining{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[79] + mi := &file_pcm_modelarts_proto_msgTypes[71] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5475,7 +4995,7 @@ func (x *ConstraintCreateTraining) String() string { func (*ConstraintCreateTraining) ProtoMessage() {} func (x *ConstraintCreateTraining) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[79] + mi := &file_pcm_modelarts_proto_msgTypes[71] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5488,7 +5008,7 @@ func (x *ConstraintCreateTraining) ProtoReflect() protoreflect.Message { // Deprecated: Use ConstraintCreateTraining.ProtoReflect.Descriptor instead. func (*ConstraintCreateTraining) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{79} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{71} } func (x *ConstraintCreateTraining) GetType() string { @@ -5540,7 +5060,7 @@ type ParametersTrainJob struct { func (x *ParametersTrainJob) Reset() { *x = ParametersTrainJob{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[80] + mi := &file_pcm_modelarts_proto_msgTypes[72] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5553,7 +5073,7 @@ func (x *ParametersTrainJob) String() string { func (*ParametersTrainJob) ProtoMessage() {} func (x *ParametersTrainJob) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[80] + mi := &file_pcm_modelarts_proto_msgTypes[72] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5566,7 +5086,7 @@ func (x *ParametersTrainJob) ProtoReflect() protoreflect.Message { // Deprecated: Use ParametersTrainJob.ProtoReflect.Descriptor instead. func (*ParametersTrainJob) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{80} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{72} } func (x *ParametersTrainJob) GetName() string { @@ -5606,7 +5126,7 @@ type PoliciesCreateTraining struct { func (x *PoliciesCreateTraining) Reset() { *x = PoliciesCreateTraining{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[81] + mi := &file_pcm_modelarts_proto_msgTypes[73] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5619,7 +5139,7 @@ func (x *PoliciesCreateTraining) String() string { func (*PoliciesCreateTraining) ProtoMessage() {} func (x *PoliciesCreateTraining) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[81] + mi := &file_pcm_modelarts_proto_msgTypes[73] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5632,7 +5152,7 @@ func (x *PoliciesCreateTraining) ProtoReflect() protoreflect.Message { // Deprecated: Use PoliciesCreateTraining.ProtoReflect.Descriptor instead. func (*PoliciesCreateTraining) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{81} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{73} } type Algorithms struct { @@ -5652,7 +5172,7 @@ type Algorithms struct { func (x *Algorithms) Reset() { *x = Algorithms{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[82] + mi := &file_pcm_modelarts_proto_msgTypes[74] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5665,7 +5185,7 @@ func (x *Algorithms) String() string { func (*Algorithms) ProtoMessage() {} func (x *Algorithms) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[82] + mi := &file_pcm_modelarts_proto_msgTypes[74] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5678,7 +5198,7 @@ func (x *Algorithms) ProtoReflect() protoreflect.Message { // Deprecated: Use Algorithms.ProtoReflect.Descriptor instead. func (*Algorithms) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{82} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{74} } func (x *Algorithms) GetId() string { @@ -5742,7 +5262,7 @@ type ResourceCreateTraining struct { func (x *ResourceCreateTraining) Reset() { *x = ResourceCreateTraining{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[83] + mi := &file_pcm_modelarts_proto_msgTypes[75] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5755,7 +5275,7 @@ func (x *ResourceCreateTraining) String() string { func (*ResourceCreateTraining) ProtoMessage() {} func (x *ResourceCreateTraining) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[83] + mi := &file_pcm_modelarts_proto_msgTypes[75] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5768,7 +5288,7 @@ func (x *ResourceCreateTraining) ProtoReflect() protoreflect.Message { // Deprecated: Use ResourceCreateTraining.ProtoReflect.Descriptor instead. func (*ResourceCreateTraining) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{83} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{75} } func (x *ResourceCreateTraining) GetFlavorId() string { @@ -5794,7 +5314,7 @@ type LogExportPathCreateTraining struct { func (x *LogExportPathCreateTraining) Reset() { *x = LogExportPathCreateTraining{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[84] + mi := &file_pcm_modelarts_proto_msgTypes[76] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5807,7 +5327,7 @@ func (x *LogExportPathCreateTraining) String() string { func (*LogExportPathCreateTraining) ProtoMessage() {} func (x *LogExportPathCreateTraining) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[84] + mi := &file_pcm_modelarts_proto_msgTypes[76] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5820,7 +5340,7 @@ func (x *LogExportPathCreateTraining) ProtoReflect() protoreflect.Message { // Deprecated: Use LogExportPathCreateTraining.ProtoReflect.Descriptor instead. func (*LogExportPathCreateTraining) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{84} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{76} } type Specs struct { @@ -5836,7 +5356,7 @@ type Specs struct { func (x *Specs) Reset() { *x = Specs{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[85] + mi := &file_pcm_modelarts_proto_msgTypes[77] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5849,7 +5369,7 @@ func (x *Specs) String() string { func (*Specs) ProtoMessage() {} func (x *Specs) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[85] + mi := &file_pcm_modelarts_proto_msgTypes[77] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5862,7 +5382,7 @@ func (x *Specs) ProtoReflect() protoreflect.Message { // Deprecated: Use Specs.ProtoReflect.Descriptor instead. func (*Specs) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{85} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{77} } func (x *Specs) GetResource() *ResourceCreateTraining { @@ -5906,7 +5426,7 @@ type CreateTrainingJobConfigReq struct { func (x *CreateTrainingJobConfigReq) Reset() { *x = CreateTrainingJobConfigReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[86] + mi := &file_pcm_modelarts_proto_msgTypes[78] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5919,7 +5439,7 @@ func (x *CreateTrainingJobConfigReq) String() string { func (*CreateTrainingJobConfigReq) ProtoMessage() {} func (x *CreateTrainingJobConfigReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[86] + mi := &file_pcm_modelarts_proto_msgTypes[78] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5932,7 +5452,7 @@ func (x *CreateTrainingJobConfigReq) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateTrainingJobConfigReq.ProtoReflect.Descriptor instead. func (*CreateTrainingJobConfigReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{86} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{78} } func (x *CreateTrainingJobConfigReq) GetConfigName() string { @@ -6010,7 +5530,7 @@ type ParameterS struct { func (x *ParameterS) Reset() { *x = ParameterS{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[87] + mi := &file_pcm_modelarts_proto_msgTypes[79] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6023,7 +5543,7 @@ func (x *ParameterS) String() string { func (*ParameterS) ProtoMessage() {} func (x *ParameterS) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[87] + mi := &file_pcm_modelarts_proto_msgTypes[79] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6036,7 +5556,7 @@ func (x *ParameterS) ProtoReflect() protoreflect.Message { // Deprecated: Use ParameterS.ProtoReflect.Descriptor instead. func (*ParameterS) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{87} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{79} } func (x *ParameterS) GetLabel() string { @@ -6066,7 +5586,7 @@ type CreateTrainingJobConfigResp struct { func (x *CreateTrainingJobConfigResp) Reset() { *x = CreateTrainingJobConfigResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[88] + mi := &file_pcm_modelarts_proto_msgTypes[80] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6079,7 +5599,7 @@ func (x *CreateTrainingJobConfigResp) String() string { func (*CreateTrainingJobConfigResp) ProtoMessage() {} func (x *CreateTrainingJobConfigResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[88] + mi := &file_pcm_modelarts_proto_msgTypes[80] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6092,7 +5612,7 @@ func (x *CreateTrainingJobConfigResp) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateTrainingJobConfigResp.ProtoReflect.Descriptor instead. func (*CreateTrainingJobConfigResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{88} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{80} } func (x *CreateTrainingJobConfigResp) GetIsSuccess() bool { @@ -6128,7 +5648,7 @@ type DeleteTrainingJobReq struct { func (x *DeleteTrainingJobReq) Reset() { *x = DeleteTrainingJobReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[89] + mi := &file_pcm_modelarts_proto_msgTypes[81] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6141,7 +5661,7 @@ func (x *DeleteTrainingJobReq) String() string { func (*DeleteTrainingJobReq) ProtoMessage() {} func (x *DeleteTrainingJobReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[89] + mi := &file_pcm_modelarts_proto_msgTypes[81] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6154,7 +5674,7 @@ func (x *DeleteTrainingJobReq) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteTrainingJobReq.ProtoReflect.Descriptor instead. func (*DeleteTrainingJobReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{89} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{81} } func (x *DeleteTrainingJobReq) GetProjectId() string { @@ -6184,7 +5704,7 @@ type DeleteTrainingJobResp struct { func (x *DeleteTrainingJobResp) Reset() { *x = DeleteTrainingJobResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[90] + mi := &file_pcm_modelarts_proto_msgTypes[82] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6197,7 +5717,7 @@ func (x *DeleteTrainingJobResp) String() string { func (*DeleteTrainingJobResp) ProtoMessage() {} func (x *DeleteTrainingJobResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[90] + mi := &file_pcm_modelarts_proto_msgTypes[82] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6210,7 +5730,7 @@ func (x *DeleteTrainingJobResp) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteTrainingJobResp.ProtoReflect.Descriptor instead. func (*DeleteTrainingJobResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{90} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{82} } func (x *DeleteTrainingJobResp) GetIsSuccess() bool { @@ -6247,7 +5767,7 @@ type DeleteTrainingJobConfigReq struct { func (x *DeleteTrainingJobConfigReq) Reset() { *x = DeleteTrainingJobConfigReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[91] + mi := &file_pcm_modelarts_proto_msgTypes[83] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6260,7 +5780,7 @@ func (x *DeleteTrainingJobConfigReq) String() string { func (*DeleteTrainingJobConfigReq) ProtoMessage() {} func (x *DeleteTrainingJobConfigReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[91] + mi := &file_pcm_modelarts_proto_msgTypes[83] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6273,7 +5793,7 @@ func (x *DeleteTrainingJobConfigReq) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteTrainingJobConfigReq.ProtoReflect.Descriptor instead. func (*DeleteTrainingJobConfigReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{91} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{83} } func (x *DeleteTrainingJobConfigReq) GetProjectId() string { @@ -6303,7 +5823,7 @@ type DeleteTrainingJobConfigResp struct { func (x *DeleteTrainingJobConfigResp) Reset() { *x = DeleteTrainingJobConfigResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[92] + mi := &file_pcm_modelarts_proto_msgTypes[84] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6316,7 +5836,7 @@ func (x *DeleteTrainingJobConfigResp) String() string { func (*DeleteTrainingJobConfigResp) ProtoMessage() {} func (x *DeleteTrainingJobConfigResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[92] + mi := &file_pcm_modelarts_proto_msgTypes[84] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6329,7 +5849,7 @@ func (x *DeleteTrainingJobConfigResp) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteTrainingJobConfigResp.ProtoReflect.Descriptor instead. func (*DeleteTrainingJobConfigResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{92} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{84} } func (x *DeleteTrainingJobConfigResp) GetIsSuccess() bool { @@ -6371,7 +5891,7 @@ type ListTrainingJobConfigReq struct { func (x *ListTrainingJobConfigReq) Reset() { *x = ListTrainingJobConfigReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[93] + mi := &file_pcm_modelarts_proto_msgTypes[85] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6384,7 +5904,7 @@ func (x *ListTrainingJobConfigReq) String() string { func (*ListTrainingJobConfigReq) ProtoMessage() {} func (x *ListTrainingJobConfigReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[93] + mi := &file_pcm_modelarts_proto_msgTypes[85] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6397,7 +5917,7 @@ func (x *ListTrainingJobConfigReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ListTrainingJobConfigReq.ProtoReflect.Descriptor instead. func (*ListTrainingJobConfigReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{93} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{85} } func (x *ListTrainingJobConfigReq) GetProjectId() string { @@ -6464,7 +5984,7 @@ type ListTrainingJobConfigResp struct { func (x *ListTrainingJobConfigResp) Reset() { *x = ListTrainingJobConfigResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[94] + mi := &file_pcm_modelarts_proto_msgTypes[86] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6477,7 +5997,7 @@ func (x *ListTrainingJobConfigResp) String() string { func (*ListTrainingJobConfigResp) ProtoMessage() {} func (x *ListTrainingJobConfigResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[94] + mi := &file_pcm_modelarts_proto_msgTypes[86] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6490,7 +6010,7 @@ func (x *ListTrainingJobConfigResp) ProtoReflect() protoreflect.Message { // Deprecated: Use ListTrainingJobConfigResp.ProtoReflect.Descriptor instead. func (*ListTrainingJobConfigResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{94} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{86} } func (x *ListTrainingJobConfigResp) GetIsSuccess() bool { @@ -6547,7 +6067,7 @@ type ConfigResponse struct { func (x *ConfigResponse) Reset() { *x = ConfigResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[95] + mi := &file_pcm_modelarts_proto_msgTypes[87] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6560,7 +6080,7 @@ func (x *ConfigResponse) String() string { func (*ConfigResponse) ProtoMessage() {} func (x *ConfigResponse) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[95] + mi := &file_pcm_modelarts_proto_msgTypes[87] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6573,7 +6093,7 @@ func (x *ConfigResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ConfigResponse.ProtoReflect.Descriptor instead. func (*ConfigResponse) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{95} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{87} } func (x *ConfigResponse) GetConfigName() string { @@ -6655,7 +6175,7 @@ type CreateAlgorithmReq struct { func (x *CreateAlgorithmReq) Reset() { *x = CreateAlgorithmReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[96] + mi := &file_pcm_modelarts_proto_msgTypes[88] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6668,7 +6188,7 @@ func (x *CreateAlgorithmReq) String() string { func (*CreateAlgorithmReq) ProtoMessage() {} func (x *CreateAlgorithmReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[96] + mi := &file_pcm_modelarts_proto_msgTypes[88] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6681,7 +6201,7 @@ func (x *CreateAlgorithmReq) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateAlgorithmReq.ProtoReflect.Descriptor instead. func (*CreateAlgorithmReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{96} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{88} } func (x *CreateAlgorithmReq) GetMetadata() *MetadataAlRq { @@ -6732,7 +6252,7 @@ type ResourceRequirements struct { func (x *ResourceRequirements) Reset() { *x = ResourceRequirements{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[97] + mi := &file_pcm_modelarts_proto_msgTypes[89] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6745,7 +6265,7 @@ func (x *ResourceRequirements) String() string { func (*ResourceRequirements) ProtoMessage() {} func (x *ResourceRequirements) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[97] + mi := &file_pcm_modelarts_proto_msgTypes[89] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6758,7 +6278,7 @@ func (x *ResourceRequirements) ProtoReflect() protoreflect.Message { // Deprecated: Use ResourceRequirements.ProtoReflect.Descriptor instead. func (*ResourceRequirements) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{97} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{89} } func (x *ResourceRequirements) GetKey() string { @@ -6793,7 +6313,7 @@ type AdvancedConfigAl struct { func (x *AdvancedConfigAl) Reset() { *x = AdvancedConfigAl{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[98] + mi := &file_pcm_modelarts_proto_msgTypes[90] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6806,7 +6326,7 @@ func (x *AdvancedConfigAl) String() string { func (*AdvancedConfigAl) ProtoMessage() {} func (x *AdvancedConfigAl) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[98] + mi := &file_pcm_modelarts_proto_msgTypes[90] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6819,7 +6339,7 @@ func (x *AdvancedConfigAl) ProtoReflect() protoreflect.Message { // Deprecated: Use AdvancedConfigAl.ProtoReflect.Descriptor instead. func (*AdvancedConfigAl) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{98} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{90} } func (x *AdvancedConfigAl) GetAutoSearch() *AutoSearch { @@ -6844,7 +6364,7 @@ type MetadataAlRq struct { func (x *MetadataAlRq) Reset() { *x = MetadataAlRq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[99] + mi := &file_pcm_modelarts_proto_msgTypes[91] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6857,7 +6377,7 @@ func (x *MetadataAlRq) String() string { func (*MetadataAlRq) ProtoMessage() {} func (x *MetadataAlRq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[99] + mi := &file_pcm_modelarts_proto_msgTypes[91] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6870,7 +6390,7 @@ func (x *MetadataAlRq) ProtoReflect() protoreflect.Message { // Deprecated: Use MetadataAlRq.ProtoReflect.Descriptor instead. func (*MetadataAlRq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{99} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{91} } func (x *MetadataAlRq) GetId() string { @@ -6924,7 +6444,7 @@ type ConstraintAlRq struct { func (x *ConstraintAlRq) Reset() { *x = ConstraintAlRq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[100] + mi := &file_pcm_modelarts_proto_msgTypes[92] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6937,7 +6457,7 @@ func (x *ConstraintAlRq) String() string { func (*ConstraintAlRq) ProtoMessage() {} func (x *ConstraintAlRq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[100] + mi := &file_pcm_modelarts_proto_msgTypes[92] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6950,7 +6470,7 @@ func (x *ConstraintAlRq) ProtoReflect() protoreflect.Message { // Deprecated: Use ConstraintAlRq.ProtoReflect.Descriptor instead. func (*ConstraintAlRq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{100} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{92} } func (x *ConstraintAlRq) GetType() string { @@ -7010,7 +6530,7 @@ type ParametersAlRq struct { func (x *ParametersAlRq) Reset() { *x = ParametersAlRq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[101] + mi := &file_pcm_modelarts_proto_msgTypes[93] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7023,7 +6543,7 @@ func (x *ParametersAlRq) String() string { func (*ParametersAlRq) ProtoMessage() {} func (x *ParametersAlRq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[101] + mi := &file_pcm_modelarts_proto_msgTypes[93] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7036,7 +6556,7 @@ func (x *ParametersAlRq) ProtoReflect() protoreflect.Message { // Deprecated: Use ParametersAlRq.ProtoReflect.Descriptor instead. func (*ParametersAlRq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{101} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{93} } func (x *ParametersAlRq) GetName() string { @@ -7087,7 +6607,7 @@ type InputsAlRq struct { func (x *InputsAlRq) Reset() { *x = InputsAlRq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[102] + mi := &file_pcm_modelarts_proto_msgTypes[94] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7100,7 +6620,7 @@ func (x *InputsAlRq) String() string { func (*InputsAlRq) ProtoMessage() {} func (x *InputsAlRq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[102] + mi := &file_pcm_modelarts_proto_msgTypes[94] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7113,7 +6633,7 @@ func (x *InputsAlRq) ProtoReflect() protoreflect.Message { // Deprecated: Use InputsAlRq.ProtoReflect.Descriptor instead. func (*InputsAlRq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{102} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{94} } func (x *InputsAlRq) GetName() string { @@ -7149,7 +6669,7 @@ type RemoteConstraints struct { func (x *RemoteConstraints) Reset() { *x = RemoteConstraints{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[103] + mi := &file_pcm_modelarts_proto_msgTypes[95] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7162,7 +6682,7 @@ func (x *RemoteConstraints) String() string { func (*RemoteConstraints) ProtoMessage() {} func (x *RemoteConstraints) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[103] + mi := &file_pcm_modelarts_proto_msgTypes[95] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7175,7 +6695,7 @@ func (x *RemoteConstraints) ProtoReflect() protoreflect.Message { // Deprecated: Use RemoteConstraints.ProtoReflect.Descriptor instead. func (*RemoteConstraints) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{103} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{95} } func (x *RemoteConstraints) GetDataType() string { @@ -7203,7 +6723,7 @@ type AttributesAlRq struct { func (x *AttributesAlRq) Reset() { *x = AttributesAlRq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[104] + mi := &file_pcm_modelarts_proto_msgTypes[96] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7216,7 +6736,7 @@ func (x *AttributesAlRq) String() string { func (*AttributesAlRq) ProtoMessage() {} func (x *AttributesAlRq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[104] + mi := &file_pcm_modelarts_proto_msgTypes[96] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7229,7 +6749,7 @@ func (x *AttributesAlRq) ProtoReflect() protoreflect.Message { // Deprecated: Use AttributesAlRq.ProtoReflect.Descriptor instead. func (*AttributesAlRq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{104} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{96} } func (x *AttributesAlRq) GetAttributes() map[string]string { @@ -7251,7 +6771,7 @@ type OutputsAl struct { func (x *OutputsAl) Reset() { *x = OutputsAl{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[105] + mi := &file_pcm_modelarts_proto_msgTypes[97] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7264,7 +6784,7 @@ func (x *OutputsAl) String() string { func (*OutputsAl) ProtoMessage() {} func (x *OutputsAl) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[105] + mi := &file_pcm_modelarts_proto_msgTypes[97] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7277,7 +6797,7 @@ func (x *OutputsAl) ProtoReflect() protoreflect.Message { // Deprecated: Use OutputsAl.ProtoReflect.Descriptor instead. func (*OutputsAl) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{105} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{97} } func (x *OutputsAl) GetName() string { @@ -7308,7 +6828,7 @@ type EngineAlRq struct { func (x *EngineAlRq) Reset() { *x = EngineAlRq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[106] + mi := &file_pcm_modelarts_proto_msgTypes[98] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7321,7 +6841,7 @@ func (x *EngineAlRq) String() string { func (*EngineAlRq) ProtoMessage() {} func (x *EngineAlRq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[106] + mi := &file_pcm_modelarts_proto_msgTypes[98] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7334,7 +6854,7 @@ func (x *EngineAlRq) ProtoReflect() protoreflect.Message { // Deprecated: Use EngineAlRq.ProtoReflect.Descriptor instead. func (*EngineAlRq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{106} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{98} } func (x *EngineAlRq) GetEngineId() string { @@ -7376,7 +6896,7 @@ type Children struct { func (x *Children) Reset() { *x = Children{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[107] + mi := &file_pcm_modelarts_proto_msgTypes[99] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7389,7 +6909,7 @@ func (x *Children) String() string { func (*Children) ProtoMessage() {} func (x *Children) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[107] + mi := &file_pcm_modelarts_proto_msgTypes[99] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7402,7 +6922,7 @@ func (x *Children) ProtoReflect() protoreflect.Message { // Deprecated: Use Children.ProtoReflect.Descriptor instead. func (*Children) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{107} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{99} } func (x *Children) GetName() string { @@ -7424,7 +6944,7 @@ type CodeTree struct { func (x *CodeTree) Reset() { *x = CodeTree{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[108] + mi := &file_pcm_modelarts_proto_msgTypes[100] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7437,7 +6957,7 @@ func (x *CodeTree) String() string { func (*CodeTree) ProtoMessage() {} func (x *CodeTree) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[108] + mi := &file_pcm_modelarts_proto_msgTypes[100] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7450,7 +6970,7 @@ func (x *CodeTree) ProtoReflect() protoreflect.Message { // Deprecated: Use CodeTree.ProtoReflect.Descriptor instead. func (*CodeTree) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{108} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{100} } func (x *CodeTree) GetName() string { @@ -7485,7 +7005,7 @@ type JobConfigAl struct { func (x *JobConfigAl) Reset() { *x = JobConfigAl{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[109] + mi := &file_pcm_modelarts_proto_msgTypes[101] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7498,7 +7018,7 @@ func (x *JobConfigAl) String() string { func (*JobConfigAl) ProtoMessage() {} func (x *JobConfigAl) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[109] + mi := &file_pcm_modelarts_proto_msgTypes[101] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7511,7 +7031,7 @@ func (x *JobConfigAl) ProtoReflect() protoreflect.Message { // Deprecated: Use JobConfigAl.ProtoReflect.Descriptor instead. func (*JobConfigAl) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{109} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{101} } func (x *JobConfigAl) GetCodeDir() string { @@ -7571,7 +7091,7 @@ func (x *JobConfigAl) GetEngine() *EngineAlRq { } // 出参 -type CreateAlgorithmResp201 struct { +type CreateAlgorithmResp struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields @@ -7583,149 +7103,10 @@ type CreateAlgorithmResp201 struct { AdvancedConfig *AdvancedConfigAl `protobuf:"bytes,5,opt,name=advanced_config,json=advancedConfig,proto3" json:"advanced_config,omitempty"` // @gotags: copier:"AdvancedConfigCARp" } -func (x *CreateAlgorithmResp201) Reset() { - *x = CreateAlgorithmResp201{} - if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[110] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *CreateAlgorithmResp201) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*CreateAlgorithmResp201) ProtoMessage() {} - -func (x *CreateAlgorithmResp201) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[110] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use CreateAlgorithmResp201.ProtoReflect.Descriptor instead. -func (*CreateAlgorithmResp201) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{110} -} - -func (x *CreateAlgorithmResp201) GetMetadata() *MetadataCrAl { - if x != nil { - return x.Metadata - } - return nil -} - -func (x *CreateAlgorithmResp201) GetShareInfo() *ShareInfo { - if x != nil { - return x.ShareInfo - } - return nil -} - -func (x *CreateAlgorithmResp201) GetJobConfig() *JobConfigAl { - if x != nil { - return x.JobConfig - } - return nil -} - -func (x *CreateAlgorithmResp201) GetResourceRequirements() []*ResourceRequirements { - if x != nil { - return x.ResourceRequirements - } - return nil -} - -func (x *CreateAlgorithmResp201) GetAdvancedConfig() *AdvancedConfigAl { - if x != nil { - return x.AdvancedConfig - } - return nil -} - -type CreateAlgorithmResp400 struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - ErrorMsg string `protobuf:"bytes,1,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"` - ErrorCode string `protobuf:"bytes,2,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"` - ErrorSolution string `protobuf:"bytes,3,opt,name=error_solution,json=errorSolution,proto3" json:"error_solution,omitempty"` -} - -func (x *CreateAlgorithmResp400) Reset() { - *x = CreateAlgorithmResp400{} - if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[111] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *CreateAlgorithmResp400) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*CreateAlgorithmResp400) ProtoMessage() {} - -func (x *CreateAlgorithmResp400) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[111] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use CreateAlgorithmResp400.ProtoReflect.Descriptor instead. -func (*CreateAlgorithmResp400) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{111} -} - -func (x *CreateAlgorithmResp400) GetErrorMsg() string { - if x != nil { - return x.ErrorMsg - } - return "" -} - -func (x *CreateAlgorithmResp400) GetErrorCode() string { - if x != nil { - return x.ErrorCode - } - return "" -} - -func (x *CreateAlgorithmResp400) GetErrorSolution() string { - if x != nil { - return x.ErrorSolution - } - return "" -} - -type CreateAlgorithmResp struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Resp200 *CreateAlgorithmResp201 `protobuf:"bytes,1,opt,name=resp200,proto3" json:"resp200,omitempty"` - Resp400 *CreateAlgorithmResp400 `protobuf:"bytes,2,opt,name=resp400,proto3" json:"resp400,omitempty"` -} - func (x *CreateAlgorithmResp) Reset() { *x = CreateAlgorithmResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[112] + mi := &file_pcm_modelarts_proto_msgTypes[102] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7738,7 +7119,7 @@ func (x *CreateAlgorithmResp) String() string { func (*CreateAlgorithmResp) ProtoMessage() {} func (x *CreateAlgorithmResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[112] + mi := &file_pcm_modelarts_proto_msgTypes[102] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7751,19 +7132,40 @@ func (x *CreateAlgorithmResp) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateAlgorithmResp.ProtoReflect.Descriptor instead. func (*CreateAlgorithmResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{112} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{102} } -func (x *CreateAlgorithmResp) GetResp200() *CreateAlgorithmResp201 { +func (x *CreateAlgorithmResp) GetMetadata() *MetadataCrAl { if x != nil { - return x.Resp200 + return x.Metadata } return nil } -func (x *CreateAlgorithmResp) GetResp400() *CreateAlgorithmResp400 { +func (x *CreateAlgorithmResp) GetShareInfo() *ShareInfo { if x != nil { - return x.Resp400 + return x.ShareInfo + } + return nil +} + +func (x *CreateAlgorithmResp) GetJobConfig() *JobConfigAl { + if x != nil { + return x.JobConfig + } + return nil +} + +func (x *CreateAlgorithmResp) GetResourceRequirements() []*ResourceRequirements { + if x != nil { + return x.ResourceRequirements + } + return nil +} + +func (x *CreateAlgorithmResp) GetAdvancedConfig() *AdvancedConfigAl { + if x != nil { + return x.AdvancedConfig } return nil } @@ -7777,7 +7179,7 @@ type ShareInfo struct { func (x *ShareInfo) Reset() { *x = ShareInfo{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[113] + mi := &file_pcm_modelarts_proto_msgTypes[103] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7790,7 +7192,7 @@ func (x *ShareInfo) String() string { func (*ShareInfo) ProtoMessage() {} func (x *ShareInfo) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[113] + mi := &file_pcm_modelarts_proto_msgTypes[103] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7803,7 +7205,7 @@ func (x *ShareInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ShareInfo.ProtoReflect.Descriptor instead. func (*ShareInfo) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{113} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{103} } type MetadataCrAl struct { @@ -7833,7 +7235,7 @@ type MetadataCrAl struct { func (x *MetadataCrAl) Reset() { *x = MetadataCrAl{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[114] + mi := &file_pcm_modelarts_proto_msgTypes[104] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7846,7 +7248,7 @@ func (x *MetadataCrAl) String() string { func (*MetadataCrAl) ProtoMessage() {} func (x *MetadataCrAl) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[114] + mi := &file_pcm_modelarts_proto_msgTypes[104] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7859,7 +7261,7 @@ func (x *MetadataCrAl) ProtoReflect() protoreflect.Message { // Deprecated: Use MetadataCrAl.ProtoReflect.Descriptor instead. func (*MetadataCrAl) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{114} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{104} } func (x *MetadataCrAl) GetId() string { @@ -8008,7 +7410,7 @@ type MetadataAlRp struct { func (x *MetadataAlRp) Reset() { *x = MetadataAlRp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[115] + mi := &file_pcm_modelarts_proto_msgTypes[105] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8021,7 +7423,7 @@ func (x *MetadataAlRp) String() string { func (*MetadataAlRp) ProtoMessage() {} func (x *MetadataAlRp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[115] + mi := &file_pcm_modelarts_proto_msgTypes[105] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8034,7 +7436,7 @@ func (x *MetadataAlRp) ProtoReflect() protoreflect.Message { // Deprecated: Use MetadataAlRp.ProtoReflect.Descriptor instead. func (*MetadataAlRp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{115} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{105} } func (x *MetadataAlRp) GetId() string { @@ -8167,7 +7569,7 @@ type TagsAlRp struct { func (x *TagsAlRp) Reset() { *x = TagsAlRp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[116] + mi := &file_pcm_modelarts_proto_msgTypes[106] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8180,7 +7582,7 @@ func (x *TagsAlRp) String() string { func (*TagsAlRp) ProtoMessage() {} func (x *TagsAlRp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[116] + mi := &file_pcm_modelarts_proto_msgTypes[106] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8193,7 +7595,7 @@ func (x *TagsAlRp) ProtoReflect() protoreflect.Message { // Deprecated: Use TagsAlRp.ProtoReflect.Descriptor instead. func (*TagsAlRp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{116} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{106} } func (x *TagsAlRp) GetTags() map[string]string { @@ -8212,7 +7614,7 @@ type ShareInfoAlRp struct { func (x *ShareInfoAlRp) Reset() { *x = ShareInfoAlRp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[117] + mi := &file_pcm_modelarts_proto_msgTypes[107] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8225,7 +7627,7 @@ func (x *ShareInfoAlRp) String() string { func (*ShareInfoAlRp) ProtoMessage() {} func (x *ShareInfoAlRp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[117] + mi := &file_pcm_modelarts_proto_msgTypes[107] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8238,7 +7640,7 @@ func (x *ShareInfoAlRp) ProtoReflect() protoreflect.Message { // Deprecated: Use ShareInfoAlRp.ProtoReflect.Descriptor instead. func (*ShareInfoAlRp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{117} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{107} } type ConstraintAlRp struct { @@ -8257,7 +7659,7 @@ type ConstraintAlRp struct { func (x *ConstraintAlRp) Reset() { *x = ConstraintAlRp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[118] + mi := &file_pcm_modelarts_proto_msgTypes[108] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8270,7 +7672,7 @@ func (x *ConstraintAlRp) String() string { func (*ConstraintAlRp) ProtoMessage() {} func (x *ConstraintAlRp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[118] + mi := &file_pcm_modelarts_proto_msgTypes[108] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8283,7 +7685,7 @@ func (x *ConstraintAlRp) ProtoReflect() protoreflect.Message { // Deprecated: Use ConstraintAlRp.ProtoReflect.Descriptor instead. func (*ConstraintAlRp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{118} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{108} } func (x *ConstraintAlRp) GetType() string { @@ -8343,7 +7745,7 @@ type ParametersAlRp struct { func (x *ParametersAlRp) Reset() { *x = ParametersAlRp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[119] + mi := &file_pcm_modelarts_proto_msgTypes[109] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8356,7 +7758,7 @@ func (x *ParametersAlRp) String() string { func (*ParametersAlRp) ProtoMessage() {} func (x *ParametersAlRp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[119] + mi := &file_pcm_modelarts_proto_msgTypes[109] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8369,7 +7771,7 @@ func (x *ParametersAlRp) ProtoReflect() protoreflect.Message { // Deprecated: Use ParametersAlRp.ProtoReflect.Descriptor instead. func (*ParametersAlRp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{119} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{109} } func (x *ParametersAlRp) GetName() string { @@ -8419,7 +7821,7 @@ type InputsAlRp struct { func (x *InputsAlRp) Reset() { *x = InputsAlRp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[120] + mi := &file_pcm_modelarts_proto_msgTypes[110] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8432,7 +7834,7 @@ func (x *InputsAlRp) String() string { func (*InputsAlRp) ProtoMessage() {} func (x *InputsAlRp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[120] + mi := &file_pcm_modelarts_proto_msgTypes[110] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8445,7 +7847,7 @@ func (x *InputsAlRp) ProtoReflect() protoreflect.Message { // Deprecated: Use InputsAlRp.ProtoReflect.Descriptor instead. func (*InputsAlRp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{120} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{110} } func (x *InputsAlRp) GetName() string { @@ -8475,7 +7877,7 @@ type OutputsAlRp struct { func (x *OutputsAlRp) Reset() { *x = OutputsAlRp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[121] + mi := &file_pcm_modelarts_proto_msgTypes[111] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8488,7 +7890,7 @@ func (x *OutputsAlRp) String() string { func (*OutputsAlRp) ProtoMessage() {} func (x *OutputsAlRp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[121] + mi := &file_pcm_modelarts_proto_msgTypes[111] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8501,7 +7903,7 @@ func (x *OutputsAlRp) ProtoReflect() protoreflect.Message { // Deprecated: Use OutputsAlRp.ProtoReflect.Descriptor instead. func (*OutputsAlRp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{121} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{111} } func (x *OutputsAlRp) GetName() string { @@ -8538,7 +7940,7 @@ type ImageInfo struct { func (x *ImageInfo) Reset() { *x = ImageInfo{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[122] + mi := &file_pcm_modelarts_proto_msgTypes[112] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8551,7 +7953,7 @@ func (x *ImageInfo) String() string { func (*ImageInfo) ProtoMessage() {} func (x *ImageInfo) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[122] + mi := &file_pcm_modelarts_proto_msgTypes[112] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8564,7 +7966,7 @@ func (x *ImageInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ImageInfo.ProtoReflect.Descriptor instead. func (*ImageInfo) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{122} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{112} } func (x *ImageInfo) GetCpuImageUrl() string { @@ -8605,7 +8007,7 @@ type EngineAlRp struct { func (x *EngineAlRp) Reset() { *x = EngineAlRp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[123] + mi := &file_pcm_modelarts_proto_msgTypes[113] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8618,7 +8020,7 @@ func (x *EngineAlRp) String() string { func (*EngineAlRp) ProtoMessage() {} func (x *EngineAlRp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[123] + mi := &file_pcm_modelarts_proto_msgTypes[113] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8631,7 +8033,7 @@ func (x *EngineAlRp) ProtoReflect() protoreflect.Message { // Deprecated: Use EngineAlRp.ProtoReflect.Descriptor instead. func (*EngineAlRp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{123} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{113} } func (x *EngineAlRp) GetEngineId() string { @@ -8697,7 +8099,7 @@ type ListAlgorithmsReq struct { func (x *ListAlgorithmsReq) Reset() { *x = ListAlgorithmsReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[124] + mi := &file_pcm_modelarts_proto_msgTypes[114] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8710,7 +8112,7 @@ func (x *ListAlgorithmsReq) String() string { func (*ListAlgorithmsReq) ProtoMessage() {} func (x *ListAlgorithmsReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[124] + mi := &file_pcm_modelarts_proto_msgTypes[114] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8723,7 +8125,7 @@ func (x *ListAlgorithmsReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ListAlgorithmsReq.ProtoReflect.Descriptor instead. func (*ListAlgorithmsReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{124} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{114} } func (x *ListAlgorithmsReq) GetProjectId() string { @@ -8765,7 +8167,7 @@ type ListAlgorithmsResp struct { func (x *ListAlgorithmsResp) Reset() { *x = ListAlgorithmsResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[125] + mi := &file_pcm_modelarts_proto_msgTypes[115] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8778,7 +8180,7 @@ func (x *ListAlgorithmsResp) String() string { func (*ListAlgorithmsResp) ProtoMessage() {} func (x *ListAlgorithmsResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[125] + mi := &file_pcm_modelarts_proto_msgTypes[115] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8791,7 +8193,7 @@ func (x *ListAlgorithmsResp) ProtoReflect() protoreflect.Message { // Deprecated: Use ListAlgorithmsResp.ProtoReflect.Descriptor instead. func (*ListAlgorithmsResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{125} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{115} } func (x *ListAlgorithmsResp) GetTotal() int32 { @@ -8864,7 +8266,7 @@ type AlgorithmResponse struct { func (x *AlgorithmResponse) Reset() { *x = AlgorithmResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[126] + mi := &file_pcm_modelarts_proto_msgTypes[116] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8877,7 +8279,7 @@ func (x *AlgorithmResponse) String() string { func (*AlgorithmResponse) ProtoMessage() {} func (x *AlgorithmResponse) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[126] + mi := &file_pcm_modelarts_proto_msgTypes[116] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8890,7 +8292,7 @@ func (x *AlgorithmResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use AlgorithmResponse.ProtoReflect.Descriptor instead. func (*AlgorithmResponse) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{126} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{116} } func (x *AlgorithmResponse) GetMetadata() *MetadataAlRp { @@ -8939,7 +8341,7 @@ type JobConfigAlRq struct { func (x *JobConfigAlRq) Reset() { *x = JobConfigAlRq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[127] + mi := &file_pcm_modelarts_proto_msgTypes[117] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8952,7 +8354,7 @@ func (x *JobConfigAlRq) String() string { func (*JobConfigAlRq) ProtoMessage() {} func (x *JobConfigAlRq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[127] + mi := &file_pcm_modelarts_proto_msgTypes[117] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8965,7 +8367,7 @@ func (x *JobConfigAlRq) ProtoReflect() protoreflect.Message { // Deprecated: Use JobConfigAlRq.ProtoReflect.Descriptor instead. func (*JobConfigAlRq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{127} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{117} } func (x *JobConfigAlRq) GetCodeDir() string { @@ -9037,7 +8439,7 @@ type DeleteAlgorithmsReq struct { func (x *DeleteAlgorithmsReq) Reset() { *x = DeleteAlgorithmsReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[128] + mi := &file_pcm_modelarts_proto_msgTypes[118] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9050,7 +8452,7 @@ func (x *DeleteAlgorithmsReq) String() string { func (*DeleteAlgorithmsReq) ProtoMessage() {} func (x *DeleteAlgorithmsReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[128] + mi := &file_pcm_modelarts_proto_msgTypes[118] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9063,7 +8465,7 @@ func (x *DeleteAlgorithmsReq) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteAlgorithmsReq.ProtoReflect.Descriptor instead. func (*DeleteAlgorithmsReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{128} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{118} } func (x *DeleteAlgorithmsReq) GetProjectId() string { @@ -9092,7 +8494,7 @@ type DeleteAlgorithmsResp struct { func (x *DeleteAlgorithmsResp) Reset() { *x = DeleteAlgorithmsResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[129] + mi := &file_pcm_modelarts_proto_msgTypes[119] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9105,7 +8507,7 @@ func (x *DeleteAlgorithmsResp) String() string { func (*DeleteAlgorithmsResp) ProtoMessage() {} func (x *DeleteAlgorithmsResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[129] + mi := &file_pcm_modelarts_proto_msgTypes[119] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9118,7 +8520,7 @@ func (x *DeleteAlgorithmsResp) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteAlgorithmsResp.ProtoReflect.Descriptor instead. func (*DeleteAlgorithmsResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{129} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{119} } func (x *DeleteAlgorithmsResp) GetMsg() string { @@ -9148,7 +8550,7 @@ type ShowAlgorithmByUuidReq struct { func (x *ShowAlgorithmByUuidReq) Reset() { *x = ShowAlgorithmByUuidReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[130] + mi := &file_pcm_modelarts_proto_msgTypes[120] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9161,7 +8563,7 @@ func (x *ShowAlgorithmByUuidReq) String() string { func (*ShowAlgorithmByUuidReq) ProtoMessage() {} func (x *ShowAlgorithmByUuidReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[130] + mi := &file_pcm_modelarts_proto_msgTypes[120] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9174,7 +8576,7 @@ func (x *ShowAlgorithmByUuidReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ShowAlgorithmByUuidReq.ProtoReflect.Descriptor instead. func (*ShowAlgorithmByUuidReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{130} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{120} } func (x *ShowAlgorithmByUuidReq) GetProjectId() string { @@ -9207,7 +8609,7 @@ type ShowAlgorithmByUuidResp struct { func (x *ShowAlgorithmByUuidResp) Reset() { *x = ShowAlgorithmByUuidResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[131] + mi := &file_pcm_modelarts_proto_msgTypes[121] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9220,7 +8622,7 @@ func (x *ShowAlgorithmByUuidResp) String() string { func (*ShowAlgorithmByUuidResp) ProtoMessage() {} func (x *ShowAlgorithmByUuidResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[131] + mi := &file_pcm_modelarts_proto_msgTypes[121] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9233,7 +8635,7 @@ func (x *ShowAlgorithmByUuidResp) ProtoReflect() protoreflect.Message { // Deprecated: Use ShowAlgorithmByUuidResp.ProtoReflect.Descriptor instead. func (*ShowAlgorithmByUuidResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{131} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{121} } func (x *ShowAlgorithmByUuidResp) GetMetadata() *MetadataAlRq { @@ -9303,7 +8705,7 @@ type ExportTaskReq struct { func (x *ExportTaskReq) Reset() { *x = ExportTaskReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[132] + mi := &file_pcm_modelarts_proto_msgTypes[122] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9316,7 +8718,7 @@ func (x *ExportTaskReq) String() string { func (*ExportTaskReq) ProtoMessage() {} func (x *ExportTaskReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[132] + mi := &file_pcm_modelarts_proto_msgTypes[122] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9329,7 +8731,7 @@ func (x *ExportTaskReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ExportTaskReq.ProtoReflect.Descriptor instead. func (*ExportTaskReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{132} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{122} } func (x *ExportTaskReq) GetAnnotationFormat() string { @@ -9442,7 +8844,7 @@ type ExportTaskResp struct { func (x *ExportTaskResp) Reset() { *x = ExportTaskResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[133] + mi := &file_pcm_modelarts_proto_msgTypes[123] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9455,7 +8857,7 @@ func (x *ExportTaskResp) String() string { func (*ExportTaskResp) ProtoMessage() {} func (x *ExportTaskResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[133] + mi := &file_pcm_modelarts_proto_msgTypes[123] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9468,7 +8870,7 @@ func (x *ExportTaskResp) ProtoReflect() protoreflect.Message { // Deprecated: Use ExportTaskResp.ProtoReflect.Descriptor instead. func (*ExportTaskResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{133} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{123} } func (x *ExportTaskResp) GetResp200() *ExportTaskDataResp200 { @@ -9507,7 +8909,7 @@ type ExportTaskDataResp200 struct { func (x *ExportTaskDataResp200) Reset() { *x = ExportTaskDataResp200{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[134] + mi := &file_pcm_modelarts_proto_msgTypes[124] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9520,7 +8922,7 @@ func (x *ExportTaskDataResp200) String() string { func (*ExportTaskDataResp200) ProtoMessage() {} func (x *ExportTaskDataResp200) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[134] + mi := &file_pcm_modelarts_proto_msgTypes[124] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9533,7 +8935,7 @@ func (x *ExportTaskDataResp200) ProtoReflect() protoreflect.Message { // Deprecated: Use ExportTaskDataResp200.ProtoReflect.Descriptor instead. func (*ExportTaskDataResp200) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{134} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{124} } func (x *ExportTaskDataResp200) GetCreateTime() uint32 { @@ -9632,7 +9034,7 @@ type ExportTaskDataResp400 struct { func (x *ExportTaskDataResp400) Reset() { *x = ExportTaskDataResp400{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[135] + mi := &file_pcm_modelarts_proto_msgTypes[125] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9645,7 +9047,7 @@ func (x *ExportTaskDataResp400) String() string { func (*ExportTaskDataResp400) ProtoMessage() {} func (x *ExportTaskDataResp400) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[135] + mi := &file_pcm_modelarts_proto_msgTypes[125] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9658,7 +9060,7 @@ func (x *ExportTaskDataResp400) ProtoReflect() protoreflect.Message { // Deprecated: Use ExportTaskDataResp400.ProtoReflect.Descriptor instead. func (*ExportTaskDataResp400) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{135} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{125} } func (x *ExportTaskDataResp400) GetErrorCode() string { @@ -9696,7 +9098,7 @@ type ExportParams struct { func (x *ExportParams) Reset() { *x = ExportParams{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[136] + mi := &file_pcm_modelarts_proto_msgTypes[126] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9709,7 +9111,7 @@ func (x *ExportParams) String() string { func (*ExportParams) ProtoMessage() {} func (x *ExportParams) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[136] + mi := &file_pcm_modelarts_proto_msgTypes[126] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9722,7 +9124,7 @@ func (x *ExportParams) ProtoReflect() protoreflect.Message { // Deprecated: Use ExportParams.ProtoReflect.Descriptor instead. func (*ExportParams) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{136} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{126} } func (x *ExportParams) GetClearHardProperty() bool { @@ -9828,7 +9230,7 @@ type SearchCondition struct { func (x *SearchCondition) Reset() { *x = SearchCondition{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[137] + mi := &file_pcm_modelarts_proto_msgTypes[127] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9841,7 +9243,7 @@ func (x *SearchCondition) String() string { func (*SearchCondition) ProtoMessage() {} func (x *SearchCondition) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[137] + mi := &file_pcm_modelarts_proto_msgTypes[127] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9854,7 +9256,7 @@ func (x *SearchCondition) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchCondition.ProtoReflect.Descriptor instead. func (*SearchCondition) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{137} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{127} } func (x *SearchCondition) GetCoefficient() string { @@ -9981,7 +9383,7 @@ type SearchLabels struct { func (x *SearchLabels) Reset() { *x = SearchLabels{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[138] + mi := &file_pcm_modelarts_proto_msgTypes[128] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9994,7 +9396,7 @@ func (x *SearchLabels) String() string { func (*SearchLabels) ProtoMessage() {} func (x *SearchLabels) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[138] + mi := &file_pcm_modelarts_proto_msgTypes[128] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10007,7 +9409,7 @@ func (x *SearchLabels) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchLabels.ProtoReflect.Descriptor instead. func (*SearchLabels) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{138} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{128} } func (x *SearchLabels) GetLabels() []*SearchLabel { @@ -10035,7 +9437,7 @@ type Weigou struct { func (x *Weigou) Reset() { *x = Weigou{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[139] + mi := &file_pcm_modelarts_proto_msgTypes[129] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10048,7 +9450,7 @@ func (x *Weigou) String() string { func (*Weigou) ProtoMessage() {} func (x *Weigou) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[139] + mi := &file_pcm_modelarts_proto_msgTypes[129] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10061,7 +9463,7 @@ func (x *Weigou) ProtoReflect() protoreflect.Message { // Deprecated: Use Weigou.ProtoReflect.Descriptor instead. func (*Weigou) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{139} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{129} } func (x *Weigou) GetAaa() []string { @@ -10078,14 +9480,14 @@ type SearchLabel struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // @gotags: copier:"Name" Op string `protobuf:"bytes,2,opt,name=op,proto3" json:"op,omitempty"` // @gotags: copier:"Op" - // map property = 3; // @gotags: copier:"Property" + // map property = 3; // @gotags: copier:"Property" Type int64 `protobuf:"varint,4,opt,name=type,proto3" json:"type,omitempty"` // @gotags: copier:"Type" } func (x *SearchLabel) Reset() { *x = SearchLabel{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[140] + mi := &file_pcm_modelarts_proto_msgTypes[130] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10098,7 +9500,7 @@ func (x *SearchLabel) String() string { func (*SearchLabel) ProtoMessage() {} func (x *SearchLabel) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[140] + mi := &file_pcm_modelarts_proto_msgTypes[130] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10111,7 +9513,7 @@ func (x *SearchLabel) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchLabel.ProtoReflect.Descriptor instead. func (*SearchLabel) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{140} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{130} } func (x *SearchLabel) GetName() string { @@ -10147,7 +9549,7 @@ type SearchProp struct { func (x *SearchProp) Reset() { *x = SearchProp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[141] + mi := &file_pcm_modelarts_proto_msgTypes[131] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10160,7 +9562,7 @@ func (x *SearchProp) String() string { func (*SearchProp) ProtoMessage() {} func (x *SearchProp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[141] + mi := &file_pcm_modelarts_proto_msgTypes[131] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10173,7 +9575,7 @@ func (x *SearchProp) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchProp.ProtoReflect.Descriptor instead. func (*SearchProp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{141} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{131} } func (x *SearchProp) GetOp() string { @@ -10206,7 +9608,7 @@ type GetExportTasksOfDatasetReq struct { func (x *GetExportTasksOfDatasetReq) Reset() { *x = GetExportTasksOfDatasetReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[142] + mi := &file_pcm_modelarts_proto_msgTypes[132] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10219,7 +9621,7 @@ func (x *GetExportTasksOfDatasetReq) String() string { func (*GetExportTasksOfDatasetReq) ProtoMessage() {} func (x *GetExportTasksOfDatasetReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[142] + mi := &file_pcm_modelarts_proto_msgTypes[132] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10232,7 +9634,7 @@ func (x *GetExportTasksOfDatasetReq) ProtoReflect() protoreflect.Message { // Deprecated: Use GetExportTasksOfDatasetReq.ProtoReflect.Descriptor instead. func (*GetExportTasksOfDatasetReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{142} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{132} } func (x *GetExportTasksOfDatasetReq) GetDatasetId() string { @@ -10299,7 +9701,7 @@ type GetExportTasksOfDatasetResp struct { func (x *GetExportTasksOfDatasetResp) Reset() { *x = GetExportTasksOfDatasetResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[143] + mi := &file_pcm_modelarts_proto_msgTypes[133] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10312,7 +9714,7 @@ func (x *GetExportTasksOfDatasetResp) String() string { func (*GetExportTasksOfDatasetResp) ProtoMessage() {} func (x *GetExportTasksOfDatasetResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[143] + mi := &file_pcm_modelarts_proto_msgTypes[133] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10325,7 +9727,7 @@ func (x *GetExportTasksOfDatasetResp) ProtoReflect() protoreflect.Message { // Deprecated: Use GetExportTasksOfDatasetResp.ProtoReflect.Descriptor instead. func (*GetExportTasksOfDatasetResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{143} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{133} } func (x *GetExportTasksOfDatasetResp) GetCode() uint32 { @@ -10488,7 +9890,7 @@ type ExportTaskStatus struct { func (x *ExportTaskStatus) Reset() { *x = ExportTaskStatus{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[144] + mi := &file_pcm_modelarts_proto_msgTypes[134] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10501,7 +9903,7 @@ func (x *ExportTaskStatus) String() string { func (*ExportTaskStatus) ProtoMessage() {} func (x *ExportTaskStatus) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[144] + mi := &file_pcm_modelarts_proto_msgTypes[134] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10514,7 +9916,7 @@ func (x *ExportTaskStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use ExportTaskStatus.ProtoReflect.Descriptor instead. func (*ExportTaskStatus) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{144} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{134} } func (x *ExportTaskStatus) GetCode() uint32 { @@ -10650,7 +10052,7 @@ type GetExportTaskStatusOfDatasetReq struct { func (x *GetExportTaskStatusOfDatasetReq) Reset() { *x = GetExportTaskStatusOfDatasetReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[145] + mi := &file_pcm_modelarts_proto_msgTypes[135] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10663,7 +10065,7 @@ func (x *GetExportTaskStatusOfDatasetReq) String() string { func (*GetExportTaskStatusOfDatasetReq) ProtoMessage() {} func (x *GetExportTaskStatusOfDatasetReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[145] + mi := &file_pcm_modelarts_proto_msgTypes[135] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10676,7 +10078,7 @@ func (x *GetExportTaskStatusOfDatasetReq) ProtoReflect() protoreflect.Message { // Deprecated: Use GetExportTaskStatusOfDatasetReq.ProtoReflect.Descriptor instead. func (*GetExportTaskStatusOfDatasetReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{145} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{135} } func (x *GetExportTaskStatusOfDatasetReq) GetResourceId() string { @@ -10729,7 +10131,7 @@ type GetExportTaskStatusOfDatasetResp struct { func (x *GetExportTaskStatusOfDatasetResp) Reset() { *x = GetExportTaskStatusOfDatasetResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[146] + mi := &file_pcm_modelarts_proto_msgTypes[136] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10742,7 +10144,7 @@ func (x *GetExportTaskStatusOfDatasetResp) String() string { func (*GetExportTaskStatusOfDatasetResp) ProtoMessage() {} func (x *GetExportTaskStatusOfDatasetResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[146] + mi := &file_pcm_modelarts_proto_msgTypes[136] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10755,7 +10157,7 @@ func (x *GetExportTaskStatusOfDatasetResp) ProtoReflect() protoreflect.Message { // Deprecated: Use GetExportTaskStatusOfDatasetResp.ProtoReflect.Descriptor instead. func (*GetExportTaskStatusOfDatasetResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{146} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{136} } func (x *GetExportTaskStatusOfDatasetResp) GetCode() uint32 { @@ -10912,7 +10314,7 @@ type CreateProcessorTaskReq struct { func (x *CreateProcessorTaskReq) Reset() { *x = CreateProcessorTaskReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[147] + mi := &file_pcm_modelarts_proto_msgTypes[137] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10925,7 +10327,7 @@ func (x *CreateProcessorTaskReq) String() string { func (*CreateProcessorTaskReq) ProtoMessage() {} func (x *CreateProcessorTaskReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[147] + mi := &file_pcm_modelarts_proto_msgTypes[137] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10938,7 +10340,7 @@ func (x *CreateProcessorTaskReq) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateProcessorTaskReq.ProtoReflect.Descriptor instead. func (*CreateProcessorTaskReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{147} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{137} } func (x *CreateProcessorTaskReq) GetProjectId() string { @@ -11024,7 +10426,7 @@ type CreateProcessorTaskResp struct { func (x *CreateProcessorTaskResp) Reset() { *x = CreateProcessorTaskResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[148] + mi := &file_pcm_modelarts_proto_msgTypes[138] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11037,7 +10439,7 @@ func (x *CreateProcessorTaskResp) String() string { func (*CreateProcessorTaskResp) ProtoMessage() {} func (x *CreateProcessorTaskResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[148] + mi := &file_pcm_modelarts_proto_msgTypes[138] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11050,7 +10452,7 @@ func (x *CreateProcessorTaskResp) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateProcessorTaskResp.ProtoReflect.Descriptor instead. func (*CreateProcessorTaskResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{148} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{138} } func (x *CreateProcessorTaskResp) GetCode() int32 { @@ -11089,7 +10491,7 @@ type ProcessorDataSource struct { func (x *ProcessorDataSource) Reset() { *x = ProcessorDataSource{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[149] + mi := &file_pcm_modelarts_proto_msgTypes[139] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11102,7 +10504,7 @@ func (x *ProcessorDataSource) String() string { func (*ProcessorDataSource) ProtoMessage() {} func (x *ProcessorDataSource) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[149] + mi := &file_pcm_modelarts_proto_msgTypes[139] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11115,7 +10517,7 @@ func (x *ProcessorDataSource) ProtoReflect() protoreflect.Message { // Deprecated: Use ProcessorDataSource.ProtoReflect.Descriptor instead. func (*ProcessorDataSource) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{149} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{139} } func (x *ProcessorDataSource) GetName() string { @@ -11166,7 +10568,7 @@ type TemplateParam struct { func (x *TemplateParam) Reset() { *x = TemplateParam{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[150] + mi := &file_pcm_modelarts_proto_msgTypes[140] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11179,7 +10581,7 @@ func (x *TemplateParam) String() string { func (*TemplateParam) ProtoMessage() {} func (x *TemplateParam) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[150] + mi := &file_pcm_modelarts_proto_msgTypes[140] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11192,7 +10594,7 @@ func (x *TemplateParam) ProtoReflect() protoreflect.Message { // Deprecated: Use TemplateParam.ProtoReflect.Descriptor instead. func (*TemplateParam) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{150} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{140} } func (x *TemplateParam) GetId() string { @@ -11232,7 +10634,7 @@ type WorkPath struct { func (x *WorkPath) Reset() { *x = WorkPath{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[151] + mi := &file_pcm_modelarts_proto_msgTypes[141] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11245,7 +10647,7 @@ func (x *WorkPath) String() string { func (*WorkPath) ProtoMessage() {} func (x *WorkPath) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[151] + mi := &file_pcm_modelarts_proto_msgTypes[141] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11258,7 +10660,7 @@ func (x *WorkPath) ProtoReflect() protoreflect.Message { // Deprecated: Use WorkPath.ProtoReflect.Descriptor instead. func (*WorkPath) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{151} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{141} } func (x *WorkPath) GetName() string { @@ -11317,7 +10719,7 @@ type OperatorParam struct { func (x *OperatorParam) Reset() { *x = OperatorParam{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[152] + mi := &file_pcm_modelarts_proto_msgTypes[142] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11330,7 +10732,7 @@ func (x *OperatorParam) String() string { func (*OperatorParam) ProtoMessage() {} func (x *OperatorParam) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[152] + mi := &file_pcm_modelarts_proto_msgTypes[142] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11343,7 +10745,7 @@ func (x *OperatorParam) ProtoReflect() protoreflect.Message { // Deprecated: Use OperatorParam.ProtoReflect.Descriptor instead. func (*OperatorParam) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{152} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{142} } func (x *OperatorParam) GetAdvancedParamsSwitch() bool { @@ -11387,7 +10789,7 @@ type DescribeProcessorTaskReq struct { func (x *DescribeProcessorTaskReq) Reset() { *x = DescribeProcessorTaskReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[153] + mi := &file_pcm_modelarts_proto_msgTypes[143] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11400,7 +10802,7 @@ func (x *DescribeProcessorTaskReq) String() string { func (*DescribeProcessorTaskReq) ProtoMessage() {} func (x *DescribeProcessorTaskReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[153] + mi := &file_pcm_modelarts_proto_msgTypes[143] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11413,7 +10815,7 @@ func (x *DescribeProcessorTaskReq) ProtoReflect() protoreflect.Message { // Deprecated: Use DescribeProcessorTaskReq.ProtoReflect.Descriptor instead. func (*DescribeProcessorTaskReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{153} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{143} } func (x *DescribeProcessorTaskReq) GetProjectId() string { @@ -11458,7 +10860,7 @@ type DescribeProcessorTaskResp struct { func (x *DescribeProcessorTaskResp) Reset() { *x = DescribeProcessorTaskResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[154] + mi := &file_pcm_modelarts_proto_msgTypes[144] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11471,7 +10873,7 @@ func (x *DescribeProcessorTaskResp) String() string { func (*DescribeProcessorTaskResp) ProtoMessage() {} func (x *DescribeProcessorTaskResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[154] + mi := &file_pcm_modelarts_proto_msgTypes[144] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11484,7 +10886,7 @@ func (x *DescribeProcessorTaskResp) ProtoReflect() protoreflect.Message { // Deprecated: Use DescribeProcessorTaskResp.ProtoReflect.Descriptor instead. func (*DescribeProcessorTaskResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{154} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{144} } func (x *DescribeProcessorTaskResp) GetCode() int32 { @@ -11648,7 +11050,7 @@ type CreateModelReq struct { func (x *CreateModelReq) Reset() { *x = CreateModelReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[155] + mi := &file_pcm_modelarts_proto_msgTypes[145] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11661,7 +11063,7 @@ func (x *CreateModelReq) String() string { func (*CreateModelReq) ProtoMessage() {} func (x *CreateModelReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[155] + mi := &file_pcm_modelarts_proto_msgTypes[145] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11674,7 +11076,7 @@ func (x *CreateModelReq) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateModelReq.ProtoReflect.Descriptor instead. func (*CreateModelReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{155} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{145} } func (x *CreateModelReq) GetProjectId() string { @@ -11857,7 +11259,7 @@ type CreateModelResp struct { func (x *CreateModelResp) Reset() { *x = CreateModelResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[156] + mi := &file_pcm_modelarts_proto_msgTypes[146] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11870,7 +11272,7 @@ func (x *CreateModelResp) String() string { func (*CreateModelResp) ProtoMessage() {} func (x *CreateModelResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[156] + mi := &file_pcm_modelarts_proto_msgTypes[146] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11883,7 +11285,7 @@ func (x *CreateModelResp) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateModelResp.ProtoReflect.Descriptor instead. func (*CreateModelResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{156} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{146} } func (x *CreateModelResp) GetCode() int32 { @@ -11918,7 +11320,7 @@ type CreateModelRequestInferParams struct { func (x *CreateModelRequestInferParams) Reset() { *x = CreateModelRequestInferParams{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[157] + mi := &file_pcm_modelarts_proto_msgTypes[147] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11931,7 +11333,7 @@ func (x *CreateModelRequestInferParams) String() string { func (*CreateModelRequestInferParams) ProtoMessage() {} func (x *CreateModelRequestInferParams) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[157] + mi := &file_pcm_modelarts_proto_msgTypes[147] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11944,7 +11346,7 @@ func (x *CreateModelRequestInferParams) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateModelRequestInferParams.ProtoReflect.Descriptor instead. func (*CreateModelRequestInferParams) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{157} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{147} } func (x *CreateModelRequestInferParams) GetProtocol() string { @@ -12018,7 +11420,7 @@ type CreateModelRequestModelApis struct { func (x *CreateModelRequestModelApis) Reset() { *x = CreateModelRequestModelApis{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[158] + mi := &file_pcm_modelarts_proto_msgTypes[148] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12031,7 +11433,7 @@ func (x *CreateModelRequestModelApis) String() string { func (*CreateModelRequestModelApis) ProtoMessage() {} func (x *CreateModelRequestModelApis) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[158] + mi := &file_pcm_modelarts_proto_msgTypes[148] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12044,7 +11446,7 @@ func (x *CreateModelRequestModelApis) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateModelRequestModelApis.ProtoReflect.Descriptor instead. func (*CreateModelRequestModelApis) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{158} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{148} } func (x *CreateModelRequestModelApis) GetProtocol() string { @@ -12094,7 +11496,7 @@ type ModelInOutputParams struct { func (x *ModelInOutputParams) Reset() { *x = ModelInOutputParams{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[159] + mi := &file_pcm_modelarts_proto_msgTypes[149] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12107,7 +11509,7 @@ func (x *ModelInOutputParams) String() string { func (*ModelInOutputParams) ProtoMessage() {} func (x *ModelInOutputParams) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[159] + mi := &file_pcm_modelarts_proto_msgTypes[149] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12120,7 +11522,7 @@ func (x *ModelInOutputParams) ProtoReflect() protoreflect.Message { // Deprecated: Use ModelInOutputParams.ProtoReflect.Descriptor instead. func (*ModelInOutputParams) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{159} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{149} } func (x *ModelInOutputParams) GetType() string { @@ -12149,7 +11551,7 @@ type CreateModelRequestTemplateInput struct { func (x *CreateModelRequestTemplateInput) Reset() { *x = CreateModelRequestTemplateInput{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[160] + mi := &file_pcm_modelarts_proto_msgTypes[150] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12162,7 +11564,7 @@ func (x *CreateModelRequestTemplateInput) String() string { func (*CreateModelRequestTemplateInput) ProtoMessage() {} func (x *CreateModelRequestTemplateInput) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[160] + mi := &file_pcm_modelarts_proto_msgTypes[150] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12175,7 +11577,7 @@ func (x *CreateModelRequestTemplateInput) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateModelRequestTemplateInput.ProtoReflect.Descriptor instead. func (*CreateModelRequestTemplateInput) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{160} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{150} } func (x *CreateModelRequestTemplateInput) GetInput() string { @@ -12205,7 +11607,7 @@ type Template struct { func (x *Template) Reset() { *x = Template{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[161] + mi := &file_pcm_modelarts_proto_msgTypes[151] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12218,7 +11620,7 @@ func (x *Template) String() string { func (*Template) ProtoMessage() {} func (x *Template) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[161] + mi := &file_pcm_modelarts_proto_msgTypes[151] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12231,7 +11633,7 @@ func (x *Template) ProtoReflect() protoreflect.Message { // Deprecated: Use Template.ProtoReflect.Descriptor instead. func (*Template) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{161} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{151} } func (x *Template) GetInferFormat() string { @@ -12267,7 +11669,7 @@ type GuideDoc struct { func (x *GuideDoc) Reset() { *x = GuideDoc{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[162] + mi := &file_pcm_modelarts_proto_msgTypes[152] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12280,7 +11682,7 @@ func (x *GuideDoc) String() string { func (*GuideDoc) ProtoMessage() {} func (x *GuideDoc) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[162] + mi := &file_pcm_modelarts_proto_msgTypes[152] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12293,7 +11695,7 @@ func (x *GuideDoc) ProtoReflect() protoreflect.Message { // Deprecated: Use GuideDoc.ProtoReflect.Descriptor instead. func (*GuideDoc) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{162} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{152} } func (x *GuideDoc) GetDocUrl() string { @@ -12322,7 +11724,7 @@ type ModelDependencies struct { func (x *ModelDependencies) Reset() { *x = ModelDependencies{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[163] + mi := &file_pcm_modelarts_proto_msgTypes[153] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12335,7 +11737,7 @@ func (x *ModelDependencies) String() string { func (*ModelDependencies) ProtoMessage() {} func (x *ModelDependencies) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[163] + mi := &file_pcm_modelarts_proto_msgTypes[153] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12348,7 +11750,7 @@ func (x *ModelDependencies) ProtoReflect() protoreflect.Message { // Deprecated: Use ModelDependencies.ProtoReflect.Descriptor instead. func (*ModelDependencies) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{163} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{153} } func (x *ModelDependencies) GetInstaller() string { @@ -12378,7 +11780,7 @@ type Packages struct { func (x *Packages) Reset() { *x = Packages{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[164] + mi := &file_pcm_modelarts_proto_msgTypes[154] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12391,7 +11793,7 @@ func (x *Packages) String() string { func (*Packages) ProtoMessage() {} func (x *Packages) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[164] + mi := &file_pcm_modelarts_proto_msgTypes[154] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12404,7 +11806,7 @@ func (x *Packages) ProtoReflect() protoreflect.Message { // Deprecated: Use Packages.ProtoReflect.Descriptor instead. func (*Packages) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{164} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{154} } func (x *Packages) GetPackagesVersion() string { @@ -12442,7 +11844,7 @@ type DeleteModelReq struct { func (x *DeleteModelReq) Reset() { *x = DeleteModelReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[165] + mi := &file_pcm_modelarts_proto_msgTypes[155] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12455,7 +11857,7 @@ func (x *DeleteModelReq) String() string { func (*DeleteModelReq) ProtoMessage() {} func (x *DeleteModelReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[165] + mi := &file_pcm_modelarts_proto_msgTypes[155] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12468,7 +11870,7 @@ func (x *DeleteModelReq) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteModelReq.ProtoReflect.Descriptor instead. func (*DeleteModelReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{165} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{155} } func (x *DeleteModelReq) GetProjectId() string { @@ -12505,7 +11907,7 @@ type DeleteModelResp struct { func (x *DeleteModelResp) Reset() { *x = DeleteModelResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[166] + mi := &file_pcm_modelarts_proto_msgTypes[156] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12518,7 +11920,7 @@ func (x *DeleteModelResp) String() string { func (*DeleteModelResp) ProtoMessage() {} func (x *DeleteModelResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[166] + mi := &file_pcm_modelarts_proto_msgTypes[156] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12531,7 +11933,7 @@ func (x *DeleteModelResp) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteModelResp.ProtoReflect.Descriptor instead. func (*DeleteModelResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{166} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{156} } func (x *DeleteModelResp) GetCode() int32 { @@ -12568,7 +11970,7 @@ type DeleteModelResponseFailedList struct { func (x *DeleteModelResponseFailedList) Reset() { *x = DeleteModelResponseFailedList{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[167] + mi := &file_pcm_modelarts_proto_msgTypes[157] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12581,7 +11983,7 @@ func (x *DeleteModelResponseFailedList) String() string { func (*DeleteModelResponseFailedList) ProtoMessage() {} func (x *DeleteModelResponseFailedList) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[167] + mi := &file_pcm_modelarts_proto_msgTypes[157] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12594,7 +11996,7 @@ func (x *DeleteModelResponseFailedList) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteModelResponseFailedList.ProtoReflect.Descriptor instead. func (*DeleteModelResponseFailedList) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{167} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{157} } func (x *DeleteModelResponseFailedList) GetErrorMsg() string { @@ -12640,7 +12042,7 @@ type ListModelReq struct { func (x *ListModelReq) Reset() { *x = ListModelReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[168] + mi := &file_pcm_modelarts_proto_msgTypes[158] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12653,7 +12055,7 @@ func (x *ListModelReq) String() string { func (*ListModelReq) ProtoMessage() {} func (x *ListModelReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[168] + mi := &file_pcm_modelarts_proto_msgTypes[158] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12666,7 +12068,7 @@ func (x *ListModelReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ListModelReq.ProtoReflect.Descriptor instead. func (*ListModelReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{168} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{158} } func (x *ListModelReq) GetModelName() string { @@ -12760,7 +12162,7 @@ type ListModelResp struct { func (x *ListModelResp) Reset() { *x = ListModelResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[169] + mi := &file_pcm_modelarts_proto_msgTypes[159] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12773,7 +12175,7 @@ func (x *ListModelResp) String() string { func (*ListModelResp) ProtoMessage() {} func (x *ListModelResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[169] + mi := &file_pcm_modelarts_proto_msgTypes[159] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12786,7 +12188,7 @@ func (x *ListModelResp) ProtoReflect() protoreflect.Message { // Deprecated: Use ListModelResp.ProtoReflect.Descriptor instead. func (*ListModelResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{169} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{159} } func (x *ListModelResp) GetCode() int32 { @@ -12849,7 +12251,7 @@ type ModelListItem struct { func (x *ModelListItem) Reset() { *x = ModelListItem{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[170] + mi := &file_pcm_modelarts_proto_msgTypes[160] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12862,7 +12264,7 @@ func (x *ModelListItem) String() string { func (*ModelListItem) ProtoMessage() {} func (x *ModelListItem) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[170] + mi := &file_pcm_modelarts_proto_msgTypes[160] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12875,7 +12277,7 @@ func (x *ModelListItem) ProtoReflect() protoreflect.Message { // Deprecated: Use ModelListItem.ProtoReflect.Descriptor instead. func (*ModelListItem) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{170} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{160} } func (x *ModelListItem) GetModelName() string { @@ -13046,7 +12448,7 @@ type ModelSpecification struct { func (x *ModelSpecification) Reset() { *x = ModelSpecification{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[171] + mi := &file_pcm_modelarts_proto_msgTypes[161] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13059,7 +12461,7 @@ func (x *ModelSpecification) String() string { func (*ModelSpecification) ProtoMessage() {} func (x *ModelSpecification) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[171] + mi := &file_pcm_modelarts_proto_msgTypes[161] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13072,7 +12474,7 @@ func (x *ModelSpecification) ProtoReflect() protoreflect.Message { // Deprecated: Use ModelSpecification.ProtoReflect.Descriptor instead. func (*ModelSpecification) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{171} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{161} } func (x *ModelSpecification) GetMinCpu() string { @@ -13116,7 +12518,7 @@ type ShowModelReq struct { func (x *ShowModelReq) Reset() { *x = ShowModelReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[172] + mi := &file_pcm_modelarts_proto_msgTypes[162] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13129,7 +12531,7 @@ func (x *ShowModelReq) String() string { func (*ShowModelReq) ProtoMessage() {} func (x *ShowModelReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[172] + mi := &file_pcm_modelarts_proto_msgTypes[162] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13142,7 +12544,7 @@ func (x *ShowModelReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ShowModelReq.ProtoReflect.Descriptor instead. func (*ShowModelReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{172} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{162} } func (x *ShowModelReq) GetProjectId() string { @@ -13207,7 +12609,7 @@ type ShowModelResp struct { func (x *ShowModelResp) Reset() { *x = ShowModelResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[173] + mi := &file_pcm_modelarts_proto_msgTypes[163] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13220,7 +12622,7 @@ func (x *ShowModelResp) String() string { func (*ShowModelResp) ProtoMessage() {} func (x *ShowModelResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[173] + mi := &file_pcm_modelarts_proto_msgTypes[163] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13233,7 +12635,7 @@ func (x *ShowModelResp) ProtoReflect() protoreflect.Message { // Deprecated: Use ShowModelResp.ProtoReflect.Descriptor instead. func (*ShowModelResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{173} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{163} } func (x *ShowModelResp) GetCode() int32 { @@ -13516,7 +12918,7 @@ type ModelHealth struct { func (x *ModelHealth) Reset() { *x = ModelHealth{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[174] + mi := &file_pcm_modelarts_proto_msgTypes[164] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13529,7 +12931,7 @@ func (x *ModelHealth) String() string { func (*ModelHealth) ProtoMessage() {} func (x *ModelHealth) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[174] + mi := &file_pcm_modelarts_proto_msgTypes[164] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13542,7 +12944,7 @@ func (x *ModelHealth) ProtoReflect() protoreflect.Message { // Deprecated: Use ModelHealth.ProtoReflect.Descriptor instead. func (*ModelHealth) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{174} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{164} } func (x *ModelHealth) GetProtocol() string { @@ -13591,7 +12993,7 @@ type ModelParamsInfo struct { func (x *ModelParamsInfo) Reset() { *x = ModelParamsInfo{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[175] + mi := &file_pcm_modelarts_proto_msgTypes[165] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13604,7 +13006,7 @@ func (x *ModelParamsInfo) String() string { func (*ModelParamsInfo) ProtoMessage() {} func (x *ModelParamsInfo) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[175] + mi := &file_pcm_modelarts_proto_msgTypes[165] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13617,7 +13019,7 @@ func (x *ModelParamsInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ModelParamsInfo.ProtoReflect.Descriptor instead. func (*ModelParamsInfo) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{175} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{165} } func (x *ModelParamsInfo) GetProtocol() string { @@ -13698,7 +13100,7 @@ type CreateServiceReq struct { func (x *CreateServiceReq) Reset() { *x = CreateServiceReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[176] + mi := &file_pcm_modelarts_proto_msgTypes[166] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13711,7 +13113,7 @@ func (x *CreateServiceReq) String() string { func (*CreateServiceReq) ProtoMessage() {} func (x *CreateServiceReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[176] + mi := &file_pcm_modelarts_proto_msgTypes[166] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13724,7 +13126,7 @@ func (x *CreateServiceReq) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateServiceReq.ProtoReflect.Descriptor instead. func (*CreateServiceReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{176} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{166} } func (x *CreateServiceReq) GetWorkspaceId() string { @@ -13816,7 +13218,7 @@ type CreateServiceResp struct { func (x *CreateServiceResp) Reset() { *x = CreateServiceResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[177] + mi := &file_pcm_modelarts_proto_msgTypes[167] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13829,7 +13231,7 @@ func (x *CreateServiceResp) String() string { func (*CreateServiceResp) ProtoMessage() {} func (x *CreateServiceResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[177] + mi := &file_pcm_modelarts_proto_msgTypes[167] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13842,7 +13244,7 @@ func (x *CreateServiceResp) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateServiceResp.ProtoReflect.Descriptor instead. func (*CreateServiceResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{177} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{167} } func (x *CreateServiceResp) GetResp200() *CreateServiceResp200 { @@ -13871,7 +13273,7 @@ type CreateServiceResp200 struct { func (x *CreateServiceResp200) Reset() { *x = CreateServiceResp200{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[178] + mi := &file_pcm_modelarts_proto_msgTypes[168] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13884,7 +13286,7 @@ func (x *CreateServiceResp200) String() string { func (*CreateServiceResp200) ProtoMessage() {} func (x *CreateServiceResp200) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[178] + mi := &file_pcm_modelarts_proto_msgTypes[168] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13897,7 +13299,7 @@ func (x *CreateServiceResp200) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateServiceResp200.ProtoReflect.Descriptor instead. func (*CreateServiceResp200) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{178} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{168} } func (x *CreateServiceResp200) GetServiceId() string { @@ -13926,7 +13328,7 @@ type CreateServiceResp400 struct { func (x *CreateServiceResp400) Reset() { *x = CreateServiceResp400{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[179] + mi := &file_pcm_modelarts_proto_msgTypes[169] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13939,7 +13341,7 @@ func (x *CreateServiceResp400) String() string { func (*CreateServiceResp400) ProtoMessage() {} func (x *CreateServiceResp400) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[179] + mi := &file_pcm_modelarts_proto_msgTypes[169] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13952,7 +13354,7 @@ func (x *CreateServiceResp400) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateServiceResp400.ProtoReflect.Descriptor instead. func (*CreateServiceResp400) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{179} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{169} } func (x *CreateServiceResp400) GetErrorCode() string { @@ -13982,7 +13384,7 @@ type Scheduler struct { func (x *Scheduler) Reset() { *x = Scheduler{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[180] + mi := &file_pcm_modelarts_proto_msgTypes[170] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13995,7 +13397,7 @@ func (x *Scheduler) String() string { func (*Scheduler) ProtoMessage() {} func (x *Scheduler) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[180] + mi := &file_pcm_modelarts_proto_msgTypes[170] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14008,7 +13410,7 @@ func (x *Scheduler) ProtoReflect() protoreflect.Message { // Deprecated: Use Scheduler.ProtoReflect.Descriptor instead. func (*Scheduler) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{180} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{170} } func (x *Scheduler) GetDuration() int32 { @@ -14055,7 +13457,7 @@ type ServiceConfig struct { func (x *ServiceConfig) Reset() { *x = ServiceConfig{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[181] + mi := &file_pcm_modelarts_proto_msgTypes[171] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14068,7 +13470,7 @@ func (x *ServiceConfig) String() string { func (*ServiceConfig) ProtoMessage() {} func (x *ServiceConfig) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[181] + mi := &file_pcm_modelarts_proto_msgTypes[171] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14081,7 +13483,7 @@ func (x *ServiceConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use ServiceConfig.ProtoReflect.Descriptor instead. func (*ServiceConfig) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{181} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{171} } func (x *ServiceConfig) GetCustomSpec() *CustomSpec { @@ -14189,7 +13591,7 @@ type CustomSpec struct { func (x *CustomSpec) Reset() { *x = CustomSpec{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[182] + mi := &file_pcm_modelarts_proto_msgTypes[172] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14202,7 +13604,7 @@ func (x *CustomSpec) String() string { func (*CustomSpec) ProtoMessage() {} func (x *CustomSpec) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[182] + mi := &file_pcm_modelarts_proto_msgTypes[172] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14215,7 +13617,7 @@ func (x *CustomSpec) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomSpec.ProtoReflect.Descriptor instead. func (*CustomSpec) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{182} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{172} } func (x *CustomSpec) GetGpuP4() float32 { @@ -14259,7 +13661,7 @@ type DeleteServiceReq struct { func (x *DeleteServiceReq) Reset() { *x = DeleteServiceReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[183] + mi := &file_pcm_modelarts_proto_msgTypes[173] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14272,7 +13674,7 @@ func (x *DeleteServiceReq) String() string { func (*DeleteServiceReq) ProtoMessage() {} func (x *DeleteServiceReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[183] + mi := &file_pcm_modelarts_proto_msgTypes[173] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14285,7 +13687,7 @@ func (x *DeleteServiceReq) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteServiceReq.ProtoReflect.Descriptor instead. func (*DeleteServiceReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{183} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{173} } func (x *DeleteServiceReq) GetProjectId() string { @@ -14314,7 +13716,7 @@ type DeleteServiceResp struct { func (x *DeleteServiceResp) Reset() { *x = DeleteServiceResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[184] + mi := &file_pcm_modelarts_proto_msgTypes[174] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14327,7 +13729,7 @@ func (x *DeleteServiceResp) String() string { func (*DeleteServiceResp) ProtoMessage() {} func (x *DeleteServiceResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[184] + mi := &file_pcm_modelarts_proto_msgTypes[174] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14340,7 +13742,7 @@ func (x *DeleteServiceResp) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteServiceResp.ProtoReflect.Descriptor instead. func (*DeleteServiceResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{184} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{174} } func (x *DeleteServiceResp) GetResp200() *DeleteServiceResp200 { @@ -14366,7 +13768,7 @@ type DeleteServiceResp200 struct { func (x *DeleteServiceResp200) Reset() { *x = DeleteServiceResp200{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[185] + mi := &file_pcm_modelarts_proto_msgTypes[175] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14379,7 +13781,7 @@ func (x *DeleteServiceResp200) String() string { func (*DeleteServiceResp200) ProtoMessage() {} func (x *DeleteServiceResp200) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[185] + mi := &file_pcm_modelarts_proto_msgTypes[175] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14392,7 +13794,7 @@ func (x *DeleteServiceResp200) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteServiceResp200.ProtoReflect.Descriptor instead. func (*DeleteServiceResp200) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{185} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{175} } type DeleteServiceResp400 struct { @@ -14407,7 +13809,7 @@ type DeleteServiceResp400 struct { func (x *DeleteServiceResp400) Reset() { *x = DeleteServiceResp400{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[186] + mi := &file_pcm_modelarts_proto_msgTypes[176] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14420,7 +13822,7 @@ func (x *DeleteServiceResp400) String() string { func (*DeleteServiceResp400) ProtoMessage() {} func (x *DeleteServiceResp400) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[186] + mi := &file_pcm_modelarts_proto_msgTypes[176] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14433,7 +13835,7 @@ func (x *DeleteServiceResp400) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteServiceResp400.ProtoReflect.Descriptor instead. func (*DeleteServiceResp400) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{186} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{176} } func (x *DeleteServiceResp400) GetErrorCode() string { @@ -14463,7 +13865,7 @@ type ShowServiceReq struct { func (x *ShowServiceReq) Reset() { *x = ShowServiceReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[187] + mi := &file_pcm_modelarts_proto_msgTypes[177] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14476,7 +13878,7 @@ func (x *ShowServiceReq) String() string { func (*ShowServiceReq) ProtoMessage() {} func (x *ShowServiceReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[187] + mi := &file_pcm_modelarts_proto_msgTypes[177] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14489,7 +13891,7 @@ func (x *ShowServiceReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ShowServiceReq.ProtoReflect.Descriptor instead. func (*ShowServiceReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{187} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{177} } func (x *ShowServiceReq) GetProjectId() string { @@ -14518,7 +13920,7 @@ type ShowServiceResp struct { func (x *ShowServiceResp) Reset() { *x = ShowServiceResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[188] + mi := &file_pcm_modelarts_proto_msgTypes[178] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14531,7 +13933,7 @@ func (x *ShowServiceResp) String() string { func (*ShowServiceResp) ProtoMessage() {} func (x *ShowServiceResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[188] + mi := &file_pcm_modelarts_proto_msgTypes[178] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14544,7 +13946,7 @@ func (x *ShowServiceResp) ProtoReflect() protoreflect.Message { // Deprecated: Use ShowServiceResp.ProtoReflect.Descriptor instead. func (*ShowServiceResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{188} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{178} } func (x *ShowServiceResp) GetResp200() *ShowServiceResp200 { @@ -14604,7 +14006,7 @@ type ShowServiceResp200 struct { func (x *ShowServiceResp200) Reset() { *x = ShowServiceResp200{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[189] + mi := &file_pcm_modelarts_proto_msgTypes[179] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14617,7 +14019,7 @@ func (x *ShowServiceResp200) String() string { func (*ShowServiceResp200) ProtoMessage() {} func (x *ShowServiceResp200) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[189] + mi := &file_pcm_modelarts_proto_msgTypes[179] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14630,7 +14032,7 @@ func (x *ShowServiceResp200) ProtoReflect() protoreflect.Message { // Deprecated: Use ShowServiceResp200.ProtoReflect.Descriptor instead. func (*ShowServiceResp200) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{189} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{179} } func (x *ShowServiceResp200) GetFailedTimes() uint32 { @@ -14876,7 +14278,7 @@ type ShowServiceResp400 struct { func (x *ShowServiceResp400) Reset() { *x = ShowServiceResp400{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[190] + mi := &file_pcm_modelarts_proto_msgTypes[180] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14889,7 +14291,7 @@ func (x *ShowServiceResp400) String() string { func (*ShowServiceResp400) ProtoMessage() {} func (x *ShowServiceResp400) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[190] + mi := &file_pcm_modelarts_proto_msgTypes[180] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14902,7 +14304,7 @@ func (x *ShowServiceResp400) ProtoReflect() protoreflect.Message { // Deprecated: Use ShowServiceResp400.ProtoReflect.Descriptor instead. func (*ShowServiceResp400) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{190} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{180} } func (x *ShowServiceResp400) GetErrorCode() string { @@ -14951,7 +14353,7 @@ type QueryServiceConfig struct { func (x *QueryServiceConfig) Reset() { *x = QueryServiceConfig{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[191] + mi := &file_pcm_modelarts_proto_msgTypes[181] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14964,7 +14366,7 @@ func (x *QueryServiceConfig) String() string { func (*QueryServiceConfig) ProtoMessage() {} func (x *QueryServiceConfig) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[191] + mi := &file_pcm_modelarts_proto_msgTypes[181] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14977,7 +14379,7 @@ func (x *QueryServiceConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use QueryServiceConfig.ProtoReflect.Descriptor instead. func (*QueryServiceConfig) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{191} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{181} } func (x *QueryServiceConfig) GetModelVersion() string { @@ -15156,7 +14558,7 @@ type ListServicesReq struct { func (x *ListServicesReq) Reset() { *x = ListServicesReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[192] + mi := &file_pcm_modelarts_proto_msgTypes[182] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15169,7 +14571,7 @@ func (x *ListServicesReq) String() string { func (*ListServicesReq) ProtoMessage() {} func (x *ListServicesReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[192] + mi := &file_pcm_modelarts_proto_msgTypes[182] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15182,7 +14584,7 @@ func (x *ListServicesReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ListServicesReq.ProtoReflect.Descriptor instead. func (*ListServicesReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{192} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{182} } func (x *ListServicesReq) GetServiceId() string { @@ -15274,7 +14676,7 @@ type ListServicesResp struct { func (x *ListServicesResp) Reset() { *x = ListServicesResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[193] + mi := &file_pcm_modelarts_proto_msgTypes[183] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15287,7 +14689,7 @@ func (x *ListServicesResp) String() string { func (*ListServicesResp) ProtoMessage() {} func (x *ListServicesResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[193] + mi := &file_pcm_modelarts_proto_msgTypes[183] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15300,7 +14702,7 @@ func (x *ListServicesResp) ProtoReflect() protoreflect.Message { // Deprecated: Use ListServicesResp.ProtoReflect.Descriptor instead. func (*ListServicesResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{193} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{183} } func (x *ListServicesResp) GetResp200() *ListServicesResp200 { @@ -15330,7 +14732,7 @@ type ListServicesResp200 struct { func (x *ListServicesResp200) Reset() { *x = ListServicesResp200{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[194] + mi := &file_pcm_modelarts_proto_msgTypes[184] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15343,7 +14745,7 @@ func (x *ListServicesResp200) String() string { func (*ListServicesResp200) ProtoMessage() {} func (x *ListServicesResp200) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[194] + mi := &file_pcm_modelarts_proto_msgTypes[184] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15356,7 +14758,7 @@ func (x *ListServicesResp200) ProtoReflect() protoreflect.Message { // Deprecated: Use ListServicesResp200.ProtoReflect.Descriptor instead. func (*ListServicesResp200) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{194} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{184} } func (x *ListServicesResp200) GetTotalCount() int32 { @@ -15392,7 +14794,7 @@ type ListServicesResp400 struct { func (x *ListServicesResp400) Reset() { *x = ListServicesResp400{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[195] + mi := &file_pcm_modelarts_proto_msgTypes[185] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15405,7 +14807,7 @@ func (x *ListServicesResp400) String() string { func (*ListServicesResp400) ProtoMessage() {} func (x *ListServicesResp400) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[195] + mi := &file_pcm_modelarts_proto_msgTypes[185] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15418,7 +14820,7 @@ func (x *ListServicesResp400) ProtoReflect() protoreflect.Message { // Deprecated: Use ListServicesResp400.ProtoReflect.Descriptor instead. func (*ListServicesResp400) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{195} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{185} } func (x *ListServicesResp400) GetErrorCode() string { @@ -15469,7 +14871,7 @@ type ListServices struct { func (x *ListServices) Reset() { *x = ListServices{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[196] + mi := &file_pcm_modelarts_proto_msgTypes[186] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15482,7 +14884,7 @@ func (x *ListServices) String() string { func (*ListServices) ProtoMessage() {} func (x *ListServices) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[196] + mi := &file_pcm_modelarts_proto_msgTypes[186] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15495,7 +14897,7 @@ func (x *ListServices) ProtoReflect() protoreflect.Message { // Deprecated: Use ListServices.ProtoReflect.Descriptor instead. func (*ListServices) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{196} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{186} } func (x *ListServices) GetFailedTimes() uint32 { @@ -15683,7 +15085,7 @@ type ListClustersReq struct { func (x *ListClustersReq) Reset() { *x = ListClustersReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[197] + mi := &file_pcm_modelarts_proto_msgTypes[187] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15696,7 +15098,7 @@ func (x *ListClustersReq) String() string { func (*ListClustersReq) ProtoMessage() {} func (x *ListClustersReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[197] + mi := &file_pcm_modelarts_proto_msgTypes[187] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15709,7 +15111,7 @@ func (x *ListClustersReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ListClustersReq.ProtoReflect.Descriptor instead. func (*ListClustersReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{197} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{187} } func (x *ListClustersReq) GetProjectId() string { @@ -15766,7 +15168,7 @@ type ListClustersResp struct { func (x *ListClustersResp) Reset() { *x = ListClustersResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[198] + mi := &file_pcm_modelarts_proto_msgTypes[188] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15779,7 +15181,7 @@ func (x *ListClustersResp) String() string { func (*ListClustersResp) ProtoMessage() {} func (x *ListClustersResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[198] + mi := &file_pcm_modelarts_proto_msgTypes[188] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15792,7 +15194,7 @@ func (x *ListClustersResp) ProtoReflect() protoreflect.Message { // Deprecated: Use ListClustersResp.ProtoReflect.Descriptor instead. func (*ListClustersResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{198} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{188} } func (x *ListClustersResp) GetResp200() *ListClustersResp200 { @@ -15821,7 +15223,7 @@ type ListClustersResp200 struct { func (x *ListClustersResp200) Reset() { *x = ListClustersResp200{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[199] + mi := &file_pcm_modelarts_proto_msgTypes[189] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15834,7 +15236,7 @@ func (x *ListClustersResp200) String() string { func (*ListClustersResp200) ProtoMessage() {} func (x *ListClustersResp200) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[199] + mi := &file_pcm_modelarts_proto_msgTypes[189] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15847,7 +15249,7 @@ func (x *ListClustersResp200) ProtoReflect() protoreflect.Message { // Deprecated: Use ListClustersResp200.ProtoReflect.Descriptor instead. func (*ListClustersResp200) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{199} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{189} } func (x *ListClustersResp200) GetCount() int32 { @@ -15876,7 +15278,7 @@ type ListClustersResp400 struct { func (x *ListClustersResp400) Reset() { *x = ListClustersResp400{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[200] + mi := &file_pcm_modelarts_proto_msgTypes[190] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15889,7 +15291,7 @@ func (x *ListClustersResp400) String() string { func (*ListClustersResp400) ProtoMessage() {} func (x *ListClustersResp400) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[200] + mi := &file_pcm_modelarts_proto_msgTypes[190] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15902,7 +15304,7 @@ func (x *ListClustersResp400) ProtoReflect() protoreflect.Message { // Deprecated: Use ListClustersResp400.ProtoReflect.Descriptor instead. func (*ListClustersResp400) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{200} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{190} } func (x *ListClustersResp400) GetErrorCode() string { @@ -15943,7 +15345,7 @@ type Cluster struct { func (x *Cluster) Reset() { *x = Cluster{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[201] + mi := &file_pcm_modelarts_proto_msgTypes[191] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15956,7 +15358,7 @@ func (x *Cluster) String() string { func (*Cluster) ProtoMessage() {} func (x *Cluster) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[201] + mi := &file_pcm_modelarts_proto_msgTypes[191] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15969,7 +15371,7 @@ func (x *Cluster) ProtoReflect() protoreflect.Message { // Deprecated: Use Cluster.ProtoReflect.Descriptor instead. func (*Cluster) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{201} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{191} } func (x *Cluster) GetOwner() string { @@ -16083,7 +15485,7 @@ type ClusterNode struct { func (x *ClusterNode) Reset() { *x = ClusterNode{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[202] + mi := &file_pcm_modelarts_proto_msgTypes[192] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16096,7 +15498,7 @@ func (x *ClusterNode) String() string { func (*ClusterNode) ProtoMessage() {} func (x *ClusterNode) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[202] + mi := &file_pcm_modelarts_proto_msgTypes[192] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16109,7 +15511,7 @@ func (x *ClusterNode) ProtoReflect() protoreflect.Message { // Deprecated: Use ClusterNode.ProtoReflect.Descriptor instead. func (*ClusterNode) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{202} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{192} } func (x *ClusterNode) GetAvailableCount() int32 { @@ -16151,7 +15553,7 @@ type CreateDataSetReq struct { func (x *CreateDataSetReq) Reset() { *x = CreateDataSetReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[203] + mi := &file_pcm_modelarts_proto_msgTypes[193] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16164,7 +15566,7 @@ func (x *CreateDataSetReq) String() string { func (*CreateDataSetReq) ProtoMessage() {} func (x *CreateDataSetReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[203] + mi := &file_pcm_modelarts_proto_msgTypes[193] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16177,7 +15579,7 @@ func (x *CreateDataSetReq) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateDataSetReq.ProtoReflect.Descriptor instead. func (*CreateDataSetReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{203} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{193} } func (x *CreateDataSetReq) GetDataSources() []*DataSources { @@ -16240,7 +15642,7 @@ type CreateDataSetResq struct { func (x *CreateDataSetResq) Reset() { *x = CreateDataSetResq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[204] + mi := &file_pcm_modelarts_proto_msgTypes[194] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16253,7 +15655,7 @@ func (x *CreateDataSetResq) String() string { func (*CreateDataSetResq) ProtoMessage() {} func (x *CreateDataSetResq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[204] + mi := &file_pcm_modelarts_proto_msgTypes[194] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16266,7 +15668,7 @@ func (x *CreateDataSetResq) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateDataSetResq.ProtoReflect.Descriptor instead. func (*CreateDataSetResq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{204} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{194} } func (x *CreateDataSetResq) GetDatasetId() string { @@ -16289,7 +15691,7 @@ type DeleteDataSetReq struct { func (x *DeleteDataSetReq) Reset() { *x = DeleteDataSetReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[205] + mi := &file_pcm_modelarts_proto_msgTypes[195] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16302,7 +15704,7 @@ func (x *DeleteDataSetReq) String() string { func (*DeleteDataSetReq) ProtoMessage() {} func (x *DeleteDataSetReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[205] + mi := &file_pcm_modelarts_proto_msgTypes[195] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16315,7 +15717,7 @@ func (x *DeleteDataSetReq) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteDataSetReq.ProtoReflect.Descriptor instead. func (*DeleteDataSetReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{205} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{195} } func (x *DeleteDataSetReq) GetProjectId() string { @@ -16341,7 +15743,7 @@ type DeleteDataSetResq struct { func (x *DeleteDataSetResq) Reset() { *x = DeleteDataSetResq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[206] + mi := &file_pcm_modelarts_proto_msgTypes[196] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16354,7 +15756,7 @@ func (x *DeleteDataSetResq) String() string { func (*DeleteDataSetResq) ProtoMessage() {} func (x *DeleteDataSetResq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[206] + mi := &file_pcm_modelarts_proto_msgTypes[196] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16367,7 +15769,7 @@ func (x *DeleteDataSetResq) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteDataSetResq.ProtoReflect.Descriptor instead. func (*DeleteDataSetResq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{206} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{196} } // *****************Notebook Start************************ @@ -16383,7 +15785,7 @@ type ListNotebookReq struct { func (x *ListNotebookReq) Reset() { *x = ListNotebookReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[207] + mi := &file_pcm_modelarts_proto_msgTypes[197] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16396,7 +15798,7 @@ func (x *ListNotebookReq) String() string { func (*ListNotebookReq) ProtoMessage() {} func (x *ListNotebookReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[207] + mi := &file_pcm_modelarts_proto_msgTypes[197] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16409,7 +15811,7 @@ func (x *ListNotebookReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ListNotebookReq.ProtoReflect.Descriptor instead. func (*ListNotebookReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{207} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{197} } func (x *ListNotebookReq) GetProjectId() string { @@ -16441,7 +15843,7 @@ type ListNotebookResp struct { func (x *ListNotebookResp) Reset() { *x = ListNotebookResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[208] + mi := &file_pcm_modelarts_proto_msgTypes[198] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16454,7 +15856,7 @@ func (x *ListNotebookResp) String() string { func (*ListNotebookResp) ProtoMessage() {} func (x *ListNotebookResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[208] + mi := &file_pcm_modelarts_proto_msgTypes[198] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16467,7 +15869,7 @@ func (x *ListNotebookResp) ProtoReflect() protoreflect.Message { // Deprecated: Use ListNotebookResp.ProtoReflect.Descriptor instead. func (*ListNotebookResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{208} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{198} } func (x *ListNotebookResp) GetCurrent() int32 { @@ -16525,7 +15927,7 @@ type ListNotebookParam struct { func (x *ListNotebookParam) Reset() { *x = ListNotebookParam{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[209] + mi := &file_pcm_modelarts_proto_msgTypes[199] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16538,7 +15940,7 @@ func (x *ListNotebookParam) String() string { func (*ListNotebookParam) ProtoMessage() {} func (x *ListNotebookParam) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[209] + mi := &file_pcm_modelarts_proto_msgTypes[199] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16551,7 +15953,7 @@ func (x *ListNotebookParam) ProtoReflect() protoreflect.Message { // Deprecated: Use ListNotebookParam.ProtoReflect.Descriptor instead. func (*ListNotebookParam) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{209} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{199} } func (x *ListNotebookParam) GetFeature() string { @@ -16636,7 +16038,7 @@ type CreateNotebookReq struct { func (x *CreateNotebookReq) Reset() { *x = CreateNotebookReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[210] + mi := &file_pcm_modelarts_proto_msgTypes[200] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16649,7 +16051,7 @@ func (x *CreateNotebookReq) String() string { func (*CreateNotebookReq) ProtoMessage() {} func (x *CreateNotebookReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[210] + mi := &file_pcm_modelarts_proto_msgTypes[200] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16662,7 +16064,7 @@ func (x *CreateNotebookReq) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateNotebookReq.ProtoReflect.Descriptor instead. func (*CreateNotebookReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{210} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{200} } func (x *CreateNotebookReq) GetProjectId() string { @@ -16690,7 +16092,7 @@ type CreateNotebookResp struct { func (x *CreateNotebookResp) Reset() { *x = CreateNotebookResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[211] + mi := &file_pcm_modelarts_proto_msgTypes[201] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16703,7 +16105,7 @@ func (x *CreateNotebookResp) String() string { func (*CreateNotebookResp) ProtoMessage() {} func (x *CreateNotebookResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[211] + mi := &file_pcm_modelarts_proto_msgTypes[201] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16716,7 +16118,7 @@ func (x *CreateNotebookResp) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateNotebookResp.ProtoReflect.Descriptor instead. func (*CreateNotebookResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{211} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{201} } func (x *CreateNotebookResp) GetNotebookResp() *NotebookResp { @@ -16748,7 +16150,7 @@ type CreateNotebookParam struct { func (x *CreateNotebookParam) Reset() { *x = CreateNotebookParam{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[212] + mi := &file_pcm_modelarts_proto_msgTypes[202] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16761,7 +16163,7 @@ func (x *CreateNotebookParam) String() string { func (*CreateNotebookParam) ProtoMessage() {} func (x *CreateNotebookParam) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[212] + mi := &file_pcm_modelarts_proto_msgTypes[202] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16774,7 +16176,7 @@ func (x *CreateNotebookParam) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateNotebookParam.ProtoReflect.Descriptor instead. func (*CreateNotebookParam) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{212} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{202} } func (x *CreateNotebookParam) GetDescription() string { @@ -16874,7 +16276,7 @@ type StartNotebookReq struct { func (x *StartNotebookReq) Reset() { *x = StartNotebookReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[213] + mi := &file_pcm_modelarts_proto_msgTypes[203] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16887,7 +16289,7 @@ func (x *StartNotebookReq) String() string { func (*StartNotebookReq) ProtoMessage() {} func (x *StartNotebookReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[213] + mi := &file_pcm_modelarts_proto_msgTypes[203] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16900,7 +16302,7 @@ func (x *StartNotebookReq) ProtoReflect() protoreflect.Message { // Deprecated: Use StartNotebookReq.ProtoReflect.Descriptor instead. func (*StartNotebookReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{213} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{203} } func (x *StartNotebookReq) GetId() string { @@ -16935,7 +16337,7 @@ type StartNotebookResp struct { func (x *StartNotebookResp) Reset() { *x = StartNotebookResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[214] + mi := &file_pcm_modelarts_proto_msgTypes[204] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16948,7 +16350,7 @@ func (x *StartNotebookResp) String() string { func (*StartNotebookResp) ProtoMessage() {} func (x *StartNotebookResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[214] + mi := &file_pcm_modelarts_proto_msgTypes[204] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16961,7 +16363,7 @@ func (x *StartNotebookResp) ProtoReflect() protoreflect.Message { // Deprecated: Use StartNotebookResp.ProtoReflect.Descriptor instead. func (*StartNotebookResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{214} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{204} } func (x *StartNotebookResp) GetNotebookResp() *NotebookResp { @@ -16983,7 +16385,7 @@ type StartNotebookParam struct { func (x *StartNotebookParam) Reset() { *x = StartNotebookParam{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[215] + mi := &file_pcm_modelarts_proto_msgTypes[205] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16996,7 +16398,7 @@ func (x *StartNotebookParam) String() string { func (*StartNotebookParam) ProtoMessage() {} func (x *StartNotebookParam) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[215] + mi := &file_pcm_modelarts_proto_msgTypes[205] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17009,7 +16411,7 @@ func (x *StartNotebookParam) ProtoReflect() protoreflect.Message { // Deprecated: Use StartNotebookParam.ProtoReflect.Descriptor instead. func (*StartNotebookParam) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{215} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{205} } func (x *StartNotebookParam) GetDuration() int64 { @@ -17038,7 +16440,7 @@ type StopNotebookReq struct { func (x *StopNotebookReq) Reset() { *x = StopNotebookReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[216] + mi := &file_pcm_modelarts_proto_msgTypes[206] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17051,7 +16453,7 @@ func (x *StopNotebookReq) String() string { func (*StopNotebookReq) ProtoMessage() {} func (x *StopNotebookReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[216] + mi := &file_pcm_modelarts_proto_msgTypes[206] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17064,7 +16466,7 @@ func (x *StopNotebookReq) ProtoReflect() protoreflect.Message { // Deprecated: Use StopNotebookReq.ProtoReflect.Descriptor instead. func (*StopNotebookReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{216} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{206} } func (x *StopNotebookReq) GetId() string { @@ -17092,7 +16494,7 @@ type StopNotebookResp struct { func (x *StopNotebookResp) Reset() { *x = StopNotebookResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[217] + mi := &file_pcm_modelarts_proto_msgTypes[207] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17105,7 +16507,7 @@ func (x *StopNotebookResp) String() string { func (*StopNotebookResp) ProtoMessage() {} func (x *StopNotebookResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[217] + mi := &file_pcm_modelarts_proto_msgTypes[207] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17118,7 +16520,7 @@ func (x *StopNotebookResp) ProtoReflect() protoreflect.Message { // Deprecated: Use StopNotebookResp.ProtoReflect.Descriptor instead. func (*StopNotebookResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{217} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{207} } func (x *StopNotebookResp) GetNotebookResp() *NotebookResp { @@ -17140,7 +16542,7 @@ type GetNotebookStorageReq struct { func (x *GetNotebookStorageReq) Reset() { *x = GetNotebookStorageReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[218] + mi := &file_pcm_modelarts_proto_msgTypes[208] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17153,7 +16555,7 @@ func (x *GetNotebookStorageReq) String() string { func (*GetNotebookStorageReq) ProtoMessage() {} func (x *GetNotebookStorageReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[218] + mi := &file_pcm_modelarts_proto_msgTypes[208] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17166,7 +16568,7 @@ func (x *GetNotebookStorageReq) ProtoReflect() protoreflect.Message { // Deprecated: Use GetNotebookStorageReq.ProtoReflect.Descriptor instead. func (*GetNotebookStorageReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{218} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{208} } func (x *GetNotebookStorageReq) GetInstanceId() string { @@ -17198,7 +16600,7 @@ type GetNotebookStorageResp struct { func (x *GetNotebookStorageResp) Reset() { *x = GetNotebookStorageResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[219] + mi := &file_pcm_modelarts_proto_msgTypes[209] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17211,7 +16613,7 @@ func (x *GetNotebookStorageResp) String() string { func (*GetNotebookStorageResp) ProtoMessage() {} func (x *GetNotebookStorageResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[219] + mi := &file_pcm_modelarts_proto_msgTypes[209] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17224,7 +16626,7 @@ func (x *GetNotebookStorageResp) ProtoReflect() protoreflect.Message { // Deprecated: Use GetNotebookStorageResp.ProtoReflect.Descriptor instead. func (*GetNotebookStorageResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{219} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{209} } func (x *GetNotebookStorageResp) GetCurrent() int32 { @@ -17275,7 +16677,7 @@ type MountNotebookStorageReq struct { func (x *MountNotebookStorageReq) Reset() { *x = MountNotebookStorageReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[220] + mi := &file_pcm_modelarts_proto_msgTypes[210] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17288,7 +16690,7 @@ func (x *MountNotebookStorageReq) String() string { func (*MountNotebookStorageReq) ProtoMessage() {} func (x *MountNotebookStorageReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[220] + mi := &file_pcm_modelarts_proto_msgTypes[210] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17301,7 +16703,7 @@ func (x *MountNotebookStorageReq) ProtoReflect() protoreflect.Message { // Deprecated: Use MountNotebookStorageReq.ProtoReflect.Descriptor instead. func (*MountNotebookStorageReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{220} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{210} } func (x *MountNotebookStorageReq) GetInstanceId() string { @@ -17340,7 +16742,7 @@ type MountNotebookStorageResp struct { func (x *MountNotebookStorageResp) Reset() { *x = MountNotebookStorageResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[221] + mi := &file_pcm_modelarts_proto_msgTypes[211] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17353,7 +16755,7 @@ func (x *MountNotebookStorageResp) String() string { func (*MountNotebookStorageResp) ProtoMessage() {} func (x *MountNotebookStorageResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[221] + mi := &file_pcm_modelarts_proto_msgTypes[211] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17366,7 +16768,7 @@ func (x *MountNotebookStorageResp) ProtoReflect() protoreflect.Message { // Deprecated: Use MountNotebookStorageResp.ProtoReflect.Descriptor instead. func (*MountNotebookStorageResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{221} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{211} } func (x *MountNotebookStorageResp) GetCategory() string { @@ -17417,7 +16819,7 @@ type MountNotebookStorageParam struct { func (x *MountNotebookStorageParam) Reset() { *x = MountNotebookStorageParam{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[222] + mi := &file_pcm_modelarts_proto_msgTypes[212] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17430,7 +16832,7 @@ func (x *MountNotebookStorageParam) String() string { func (*MountNotebookStorageParam) ProtoMessage() {} func (x *MountNotebookStorageParam) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[222] + mi := &file_pcm_modelarts_proto_msgTypes[212] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17443,7 +16845,7 @@ func (x *MountNotebookStorageParam) ProtoReflect() protoreflect.Message { // Deprecated: Use MountNotebookStorageParam.ProtoReflect.Descriptor instead. func (*MountNotebookStorageParam) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{222} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{212} } func (x *MountNotebookStorageParam) GetCategory() string { @@ -17482,7 +16884,7 @@ type DataVolumesRes struct { func (x *DataVolumesRes) Reset() { *x = DataVolumesRes{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[223] + mi := &file_pcm_modelarts_proto_msgTypes[213] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17495,7 +16897,7 @@ func (x *DataVolumesRes) String() string { func (*DataVolumesRes) ProtoMessage() {} func (x *DataVolumesRes) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[223] + mi := &file_pcm_modelarts_proto_msgTypes[213] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17508,7 +16910,7 @@ func (x *DataVolumesRes) ProtoReflect() protoreflect.Message { // Deprecated: Use DataVolumesRes.ProtoReflect.Descriptor instead. func (*DataVolumesRes) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{223} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{213} } func (x *DataVolumesRes) GetCategory() string { @@ -17572,7 +16974,7 @@ type NotebookResp struct { func (x *NotebookResp) Reset() { *x = NotebookResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[224] + mi := &file_pcm_modelarts_proto_msgTypes[214] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17585,7 +16987,7 @@ func (x *NotebookResp) String() string { func (*NotebookResp) ProtoMessage() {} func (x *NotebookResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[224] + mi := &file_pcm_modelarts_proto_msgTypes[214] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17598,7 +17000,7 @@ func (x *NotebookResp) ProtoReflect() protoreflect.Message { // Deprecated: Use NotebookResp.ProtoReflect.Descriptor instead. func (*NotebookResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{224} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{214} } func (x *NotebookResp) GetActionProgress() []*JobProgress { @@ -17727,7 +17129,7 @@ type JobProgress struct { func (x *JobProgress) Reset() { *x = JobProgress{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[225] + mi := &file_pcm_modelarts_proto_msgTypes[215] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17740,7 +17142,7 @@ func (x *JobProgress) String() string { func (*JobProgress) ProtoMessage() {} func (x *JobProgress) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[225] + mi := &file_pcm_modelarts_proto_msgTypes[215] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17753,7 +17155,7 @@ func (x *JobProgress) ProtoReflect() protoreflect.Message { // Deprecated: Use JobProgress.ProtoReflect.Descriptor instead. func (*JobProgress) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{225} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{215} } func (x *JobProgress) GetNotebookId() string { @@ -17797,7 +17199,7 @@ type EndpointsRes struct { func (x *EndpointsRes) Reset() { *x = EndpointsRes{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[226] + mi := &file_pcm_modelarts_proto_msgTypes[216] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17810,7 +17212,7 @@ func (x *EndpointsRes) String() string { func (*EndpointsRes) ProtoMessage() {} func (x *EndpointsRes) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[226] + mi := &file_pcm_modelarts_proto_msgTypes[216] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17823,7 +17225,7 @@ func (x *EndpointsRes) ProtoReflect() protoreflect.Message { // Deprecated: Use EndpointsRes.ProtoReflect.Descriptor instead. func (*EndpointsRes) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{226} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{216} } func (x *EndpointsRes) GetAllowedAccessIps() []string { @@ -17877,7 +17279,7 @@ type Image struct { func (x *Image) Reset() { *x = Image{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[227] + mi := &file_pcm_modelarts_proto_msgTypes[217] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17890,7 +17292,7 @@ func (x *Image) String() string { func (*Image) ProtoMessage() {} func (x *Image) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[227] + mi := &file_pcm_modelarts_proto_msgTypes[217] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17903,7 +17305,7 @@ func (x *Image) ProtoReflect() protoreflect.Message { // Deprecated: Use Image.ProtoReflect.Descriptor instead. func (*Image) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{227} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{217} } func (x *Image) GetArch() string { @@ -18061,7 +17463,7 @@ type Lease struct { func (x *Lease) Reset() { *x = Lease{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[228] + mi := &file_pcm_modelarts_proto_msgTypes[218] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18074,7 +17476,7 @@ func (x *Lease) String() string { func (*Lease) ProtoMessage() {} func (x *Lease) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[228] + mi := &file_pcm_modelarts_proto_msgTypes[218] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18087,7 +17489,7 @@ func (x *Lease) ProtoReflect() protoreflect.Message { // Deprecated: Use Lease.ProtoReflect.Descriptor instead. func (*Lease) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{228} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{218} } func (x *Lease) GetCreateAt() int64 { @@ -18137,7 +17539,7 @@ type Pool struct { func (x *Pool) Reset() { *x = Pool{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[229] + mi := &file_pcm_modelarts_proto_msgTypes[219] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18150,7 +17552,7 @@ func (x *Pool) String() string { func (*Pool) ProtoMessage() {} func (x *Pool) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[229] + mi := &file_pcm_modelarts_proto_msgTypes[219] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18163,7 +17565,7 @@ func (x *Pool) ProtoReflect() protoreflect.Message { // Deprecated: Use Pool.ProtoReflect.Descriptor instead. func (*Pool) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{229} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{219} } func (x *Pool) GetId() string { @@ -18195,7 +17597,7 @@ type VolumeRes struct { func (x *VolumeRes) Reset() { *x = VolumeRes{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[230] + mi := &file_pcm_modelarts_proto_msgTypes[220] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18208,7 +17610,7 @@ func (x *VolumeRes) String() string { func (*VolumeRes) ProtoMessage() {} func (x *VolumeRes) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[230] + mi := &file_pcm_modelarts_proto_msgTypes[220] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18221,7 +17623,7 @@ func (x *VolumeRes) ProtoReflect() protoreflect.Message { // Deprecated: Use VolumeRes.ProtoReflect.Descriptor instead. func (*VolumeRes) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{230} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{220} } func (x *VolumeRes) GetCapacity() int64 { @@ -18272,7 +17674,7 @@ type EndpointsReq struct { func (x *EndpointsReq) Reset() { *x = EndpointsReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[231] + mi := &file_pcm_modelarts_proto_msgTypes[221] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18285,7 +17687,7 @@ func (x *EndpointsReq) String() string { func (*EndpointsReq) ProtoMessage() {} func (x *EndpointsReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[231] + mi := &file_pcm_modelarts_proto_msgTypes[221] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18298,7 +17700,7 @@ func (x *EndpointsReq) ProtoReflect() protoreflect.Message { // Deprecated: Use EndpointsReq.ProtoReflect.Descriptor instead. func (*EndpointsReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{231} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{221} } func (x *EndpointsReq) GetAllowedAccessIps() []string { @@ -18336,7 +17738,7 @@ type VolumeReq struct { func (x *VolumeReq) Reset() { *x = VolumeReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[232] + mi := &file_pcm_modelarts_proto_msgTypes[222] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18349,7 +17751,7 @@ func (x *VolumeReq) String() string { func (*VolumeReq) ProtoMessage() {} func (x *VolumeReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[232] + mi := &file_pcm_modelarts_proto_msgTypes[222] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18362,7 +17764,7 @@ func (x *VolumeReq) ProtoReflect() protoreflect.Message { // Deprecated: Use VolumeReq.ProtoReflect.Descriptor instead. func (*VolumeReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{232} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{222} } func (x *VolumeReq) GetCapacity() int64 { @@ -18404,7 +17806,7 @@ type CustomHooks struct { func (x *CustomHooks) Reset() { *x = CustomHooks{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[233] + mi := &file_pcm_modelarts_proto_msgTypes[223] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18417,7 +17819,7 @@ func (x *CustomHooks) String() string { func (*CustomHooks) ProtoMessage() {} func (x *CustomHooks) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[233] + mi := &file_pcm_modelarts_proto_msgTypes[223] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18430,7 +17832,7 @@ func (x *CustomHooks) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomHooks.ProtoReflect.Descriptor instead. func (*CustomHooks) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{233} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{223} } func (x *CustomHooks) GetContainerHooks() *ContainerHooks { @@ -18452,7 +17854,7 @@ type ContainerHooks struct { func (x *ContainerHooks) Reset() { *x = ContainerHooks{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[234] + mi := &file_pcm_modelarts_proto_msgTypes[224] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18465,7 +17867,7 @@ func (x *ContainerHooks) String() string { func (*ContainerHooks) ProtoMessage() {} func (x *ContainerHooks) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[234] + mi := &file_pcm_modelarts_proto_msgTypes[224] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18478,7 +17880,7 @@ func (x *ContainerHooks) ProtoReflect() protoreflect.Message { // Deprecated: Use ContainerHooks.ProtoReflect.Descriptor instead. func (*ContainerHooks) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{234} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{224} } func (x *ContainerHooks) GetPostStart() *Config { @@ -18507,7 +17909,7 @@ type Config struct { func (x *Config) Reset() { *x = Config{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[235] + mi := &file_pcm_modelarts_proto_msgTypes[225] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18520,7 +17922,7 @@ func (x *Config) String() string { func (*Config) ProtoMessage() {} func (x *Config) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[235] + mi := &file_pcm_modelarts_proto_msgTypes[225] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18533,7 +17935,7 @@ func (x *Config) ProtoReflect() protoreflect.Message { // Deprecated: Use Config.ProtoReflect.Descriptor instead. func (*Config) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{235} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{225} } func (x *Config) GetScript() string { @@ -18562,7 +17964,7 @@ type LeaseReq struct { func (x *LeaseReq) Reset() { *x = LeaseReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[236] + mi := &file_pcm_modelarts_proto_msgTypes[226] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18575,7 +17977,7 @@ func (x *LeaseReq) String() string { func (*LeaseReq) ProtoMessage() {} func (x *LeaseReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[236] + mi := &file_pcm_modelarts_proto_msgTypes[226] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18588,7 +17990,7 @@ func (x *LeaseReq) ProtoReflect() protoreflect.Message { // Deprecated: Use LeaseReq.ProtoReflect.Descriptor instead. func (*LeaseReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{236} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{226} } func (x *LeaseReq) GetDuration() int64 { @@ -18618,7 +18020,7 @@ type GetVisualizationJobReq struct { func (x *GetVisualizationJobReq) Reset() { *x = GetVisualizationJobReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[237] + mi := &file_pcm_modelarts_proto_msgTypes[227] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18631,7 +18033,7 @@ func (x *GetVisualizationJobReq) String() string { func (*GetVisualizationJobReq) ProtoMessage() {} func (x *GetVisualizationJobReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[237] + mi := &file_pcm_modelarts_proto_msgTypes[227] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18644,7 +18046,7 @@ func (x *GetVisualizationJobReq) ProtoReflect() protoreflect.Message { // Deprecated: Use GetVisualizationJobReq.ProtoReflect.Descriptor instead. func (*GetVisualizationJobReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{237} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{227} } func (x *GetVisualizationJobReq) GetProjectId() string { @@ -18678,7 +18080,7 @@ type GetVisualizationJobResp struct { func (x *GetVisualizationJobResp) Reset() { *x = GetVisualizationJobResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[238] + mi := &file_pcm_modelarts_proto_msgTypes[228] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18691,7 +18093,7 @@ func (x *GetVisualizationJobResp) String() string { func (*GetVisualizationJobResp) ProtoMessage() {} func (x *GetVisualizationJobResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[238] + mi := &file_pcm_modelarts_proto_msgTypes[228] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18704,7 +18106,7 @@ func (x *GetVisualizationJobResp) ProtoReflect() protoreflect.Message { // Deprecated: Use GetVisualizationJobResp.ProtoReflect.Descriptor instead. func (*GetVisualizationJobResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{238} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{228} } func (x *GetVisualizationJobResp) GetIsSuccess() bool { @@ -18775,7 +18177,7 @@ type Jobs struct { func (x *Jobs) Reset() { *x = Jobs{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[239] + mi := &file_pcm_modelarts_proto_msgTypes[229] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18788,7 +18190,7 @@ func (x *Jobs) String() string { func (*Jobs) ProtoMessage() {} func (x *Jobs) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[239] + mi := &file_pcm_modelarts_proto_msgTypes[229] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18801,7 +18203,7 @@ func (x *Jobs) ProtoReflect() protoreflect.Message { // Deprecated: Use Jobs.ProtoReflect.Descriptor instead. func (*Jobs) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{239} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{229} } func (x *Jobs) GetJobName() string { @@ -18884,7 +18286,7 @@ type GetVisualizationJobParam struct { func (x *GetVisualizationJobParam) Reset() { *x = GetVisualizationJobParam{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[240] + mi := &file_pcm_modelarts_proto_msgTypes[230] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18897,7 +18299,7 @@ func (x *GetVisualizationJobParam) String() string { func (*GetVisualizationJobParam) ProtoMessage() {} func (x *GetVisualizationJobParam) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[240] + mi := &file_pcm_modelarts_proto_msgTypes[230] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18910,7 +18312,7 @@ func (x *GetVisualizationJobParam) ProtoReflect() protoreflect.Message { // Deprecated: Use GetVisualizationJobParam.ProtoReflect.Descriptor instead. func (*GetVisualizationJobParam) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{240} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{230} } func (x *GetVisualizationJobParam) GetStatus() string { @@ -18974,7 +18376,7 @@ type CreateVisualizationJobReq struct { func (x *CreateVisualizationJobReq) Reset() { *x = CreateVisualizationJobReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[241] + mi := &file_pcm_modelarts_proto_msgTypes[231] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18987,7 +18389,7 @@ func (x *CreateVisualizationJobReq) String() string { func (*CreateVisualizationJobReq) ProtoMessage() {} func (x *CreateVisualizationJobReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[241] + mi := &file_pcm_modelarts_proto_msgTypes[231] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19000,7 +18402,7 @@ func (x *CreateVisualizationJobReq) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateVisualizationJobReq.ProtoReflect.Descriptor instead. func (*CreateVisualizationJobReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{241} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{231} } func (x *CreateVisualizationJobReq) GetProjectId() string { @@ -19034,7 +18436,7 @@ type CreateVisualizationJobResp struct { func (x *CreateVisualizationJobResp) Reset() { *x = CreateVisualizationJobResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[242] + mi := &file_pcm_modelarts_proto_msgTypes[232] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19047,7 +18449,7 @@ func (x *CreateVisualizationJobResp) String() string { func (*CreateVisualizationJobResp) ProtoMessage() {} func (x *CreateVisualizationJobResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[242] + mi := &file_pcm_modelarts_proto_msgTypes[232] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19060,7 +18462,7 @@ func (x *CreateVisualizationJobResp) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateVisualizationJobResp.ProtoReflect.Descriptor instead. func (*CreateVisualizationJobResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{242} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{232} } func (x *CreateVisualizationJobResp) GetErrorMessage() string { @@ -19128,7 +18530,7 @@ type CreateVisualizationJobParam struct { func (x *CreateVisualizationJobParam) Reset() { *x = CreateVisualizationJobParam{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[243] + mi := &file_pcm_modelarts_proto_msgTypes[233] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19141,7 +18543,7 @@ func (x *CreateVisualizationJobParam) String() string { func (*CreateVisualizationJobParam) ProtoMessage() {} func (x *CreateVisualizationJobParam) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[243] + mi := &file_pcm_modelarts_proto_msgTypes[233] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19154,7 +18556,7 @@ func (x *CreateVisualizationJobParam) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateVisualizationJobParam.ProtoReflect.Descriptor instead. func (*CreateVisualizationJobParam) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{243} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{233} } func (x *CreateVisualizationJobParam) GetJobName() string { @@ -19210,7 +18612,7 @@ type Flavor struct { func (x *Flavor) Reset() { *x = Flavor{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[244] + mi := &file_pcm_modelarts_proto_msgTypes[234] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19223,7 +18625,7 @@ func (x *Flavor) String() string { func (*Flavor) ProtoMessage() {} func (x *Flavor) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[244] + mi := &file_pcm_modelarts_proto_msgTypes[234] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19236,7 +18638,7 @@ func (x *Flavor) ProtoReflect() protoreflect.Message { // Deprecated: Use Flavor.ProtoReflect.Descriptor instead. func (*Flavor) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{244} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{234} } func (x *Flavor) GetCode() string { @@ -19259,7 +18661,7 @@ type Schedule struct { func (x *Schedule) Reset() { *x = Schedule{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[245] + mi := &file_pcm_modelarts_proto_msgTypes[235] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19272,7 +18674,7 @@ func (x *Schedule) String() string { func (*Schedule) ProtoMessage() {} func (x *Schedule) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[245] + mi := &file_pcm_modelarts_proto_msgTypes[235] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19285,7 +18687,7 @@ func (x *Schedule) ProtoReflect() protoreflect.Message { // Deprecated: Use Schedule.ProtoReflect.Descriptor instead. func (*Schedule) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{245} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{235} } func (x *Schedule) GetType() string { @@ -19350,21 +18752,21 @@ var file_pcm_modelarts_proto_rawDesc = []byte{ 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x52, 0x04, 0x61, 0x75, 0x74, 0x68, 0x22, 0x0b, 0x0a, 0x09, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x22, 0x2b, 0x0a, 0x0a, 0x44, 0x61, 0x74, - 0x61, 0x73, 0x65, 0x74, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, + 0x61, 0x53, 0x65, 0x74, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, - 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x22, 0x61, 0x0a, 0x0b, 0x44, 0x61, 0x74, 0x61, 0x73, 0x65, + 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x22, 0x61, 0x0a, 0x0b, 0x44, 0x61, 0x74, 0x61, 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x2f, 0x0a, 0x08, 0x64, 0x61, 0x74, 0x61, - 0x73, 0x65, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x6d, 0x6f, 0x64, - 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x73, 0x65, 0x74, 0x73, 0x52, - 0x08, 0x64, 0x61, 0x74, 0x61, 0x73, 0x65, 0x74, 0x73, 0x22, 0x93, 0x02, 0x0a, 0x08, 0x44, 0x61, - 0x74, 0x61, 0x73, 0x65, 0x74, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x64, 0x61, 0x74, 0x61, 0x73, 0x65, + 0x53, 0x65, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x6d, 0x6f, 0x64, + 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x53, 0x65, 0x74, 0x73, 0x52, + 0x08, 0x64, 0x61, 0x74, 0x61, 0x53, 0x65, 0x74, 0x73, 0x22, 0x93, 0x02, 0x0a, 0x08, 0x44, 0x61, + 0x74, 0x61, 0x53, 0x65, 0x74, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x64, 0x61, 0x74, 0x61, 0x73, 0x65, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x64, 0x61, 0x74, 0x61, 0x73, 0x65, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x61, 0x74, 0x61, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x12, 0x39, 0x0a, 0x0c, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x6d, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x52, 0x0b, 0x64, 0x61, 0x74, 0x61, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x64, 0x61, 0x74, 0x61, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x6f, 0x72, @@ -19387,60 +18789,26 @@ var file_pcm_modelarts_proto_rawDesc = []byte{ 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x0a, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x50, 0x61, 0x74, 0x68, 0x22, 0x30, 0x0a, 0x15, + 0x52, 0x0a, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x50, 0x61, 0x74, 0x68, 0x22, 0x2d, 0x0a, 0x12, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x54, 0x61, 0x73, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, - 0x73, 0x70, 0x32, 0x30, 0x30, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x61, 0x73, 0x6b, 0x5f, 0x69, 0x64, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x61, 0x73, 0x6b, 0x49, 0x64, 0x22, 0x7a, - 0x0a, 0x15, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x54, 0x61, 0x73, 0x6b, 0x44, 0x61, 0x74, 0x61, - 0x52, 0x65, 0x73, 0x70, 0x34, 0x30, 0x30, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, - 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, - 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, - 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, - 0x6f, 0x64, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x73, 0x6f, 0x6c, - 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x65, 0x72, 0x72, - 0x6f, 0x72, 0x53, 0x6f, 0x6c, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x8c, 0x01, 0x0a, 0x12, 0x49, - 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x54, 0x61, 0x73, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, - 0x70, 0x12, 0x3a, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x70, 0x32, 0x30, 0x30, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x49, - 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x54, 0x61, 0x73, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, - 0x70, 0x32, 0x30, 0x30, 0x52, 0x07, 0x72, 0x65, 0x73, 0x70, 0x32, 0x30, 0x30, 0x12, 0x3a, 0x0a, - 0x07, 0x72, 0x65, 0x73, 0x70, 0x34, 0x30, 0x30, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, - 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72, - 0x74, 0x54, 0x61, 0x73, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x34, 0x30, 0x30, - 0x52, 0x07, 0x72, 0x65, 0x73, 0x70, 0x34, 0x30, 0x30, 0x22, 0x80, 0x01, 0x0a, 0x12, 0x4c, 0x69, - 0x73, 0x74, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x54, 0x61, 0x73, 0x6b, 0x73, 0x52, 0x65, 0x71, - 0x12, 0x1d, 0x0a, 0x0a, 0x64, 0x61, 0x74, 0x61, 0x73, 0x65, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x64, 0x61, 0x74, 0x61, 0x73, 0x65, 0x74, 0x49, 0x64, 0x12, - 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x14, - 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, - 0x69, 0x6d, 0x69, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, - 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x22, 0x8f, 0x01, 0x0a, - 0x13, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x54, 0x61, 0x73, 0x6b, 0x73, - 0x52, 0x65, 0x73, 0x70, 0x12, 0x3b, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x70, 0x32, 0x30, 0x30, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, - 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x54, 0x61, 0x73, 0x6b, - 0x73, 0x52, 0x65, 0x73, 0x70, 0x32, 0x30, 0x30, 0x52, 0x07, 0x72, 0x65, 0x73, 0x70, 0x32, 0x30, - 0x30, 0x12, 0x3b, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x70, 0x34, 0x30, 0x30, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4c, - 0x69, 0x73, 0x74, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x54, 0x61, 0x73, 0x6b, 0x73, 0x52, 0x65, - 0x73, 0x70, 0x34, 0x30, 0x30, 0x52, 0x07, 0x72, 0x65, 0x73, 0x70, 0x34, 0x30, 0x30, 0x22, 0x75, - 0x0a, 0x16, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x54, 0x61, 0x73, 0x6b, - 0x73, 0x52, 0x65, 0x73, 0x70, 0x32, 0x30, 0x30, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x6f, 0x74, 0x61, - 0x6c, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x74, - 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x3a, 0x0a, 0x0c, 0x69, 0x6d, 0x70, - 0x6f, 0x72, 0x74, 0x5f, 0x74, 0x61, 0x73, 0x6b, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, - 0x17, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x49, 0x6d, 0x70, 0x6f, - 0x72, 0x74, 0x5f, 0x74, 0x61, 0x73, 0x6b, 0x73, 0x52, 0x0b, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, - 0x54, 0x61, 0x73, 0x6b, 0x73, 0x22, 0x7b, 0x0a, 0x16, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6d, 0x70, - 0x6f, 0x72, 0x74, 0x54, 0x61, 0x73, 0x6b, 0x73, 0x52, 0x65, 0x73, 0x70, 0x34, 0x30, 0x30, 0x12, - 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1d, 0x0a, 0x0a, - 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x65, - 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x0d, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x53, 0x6f, 0x6c, 0x75, 0x74, 0x69, - 0x6f, 0x6e, 0x22, 0xec, 0x08, 0x0a, 0x0c, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x74, 0x61, + 0x73, 0x70, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x61, 0x73, 0x6b, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x61, 0x73, 0x6b, 0x49, 0x64, 0x22, 0x80, 0x01, 0x0a, 0x12, + 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x54, 0x61, 0x73, 0x6b, 0x73, 0x52, + 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x64, 0x61, 0x74, 0x61, 0x73, 0x65, 0x74, 0x5f, 0x69, 0x64, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x64, 0x61, 0x74, 0x61, 0x73, 0x65, 0x74, 0x49, + 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, + 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, + 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, + 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x22, 0x72, + 0x0a, 0x13, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x54, 0x61, 0x73, 0x6b, + 0x73, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x63, + 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x74, 0x6f, 0x74, 0x61, + 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x3a, 0x0a, 0x0c, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, + 0x5f, 0x74, 0x61, 0x73, 0x6b, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x6d, + 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x5f, + 0x74, 0x61, 0x73, 0x6b, 0x73, 0x52, 0x0b, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x54, 0x61, 0x73, + 0x6b, 0x73, 0x22, 0xec, 0x08, 0x0a, 0x0c, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x74, 0x61, 0x73, 0x6b, 0x73, 0x12, 0x34, 0x0a, 0x16, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x14, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x64, 0x53, 0x61, @@ -19571,759 +18939,270 @@ var file_pcm_modelarts_proto_rawDesc = []byte{ 0x61, 0x6c, 0x22, 0x34, 0x0a, 0x13, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x4a, 0x6f, 0x62, 0x73, 0x72, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, - 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x22, 0x92, 0x01, 0x0a, 0x14, 0x4c, 0x69, 0x73, + 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x22, 0xaa, 0x02, 0x0a, 0x14, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x4a, 0x6f, 0x62, 0x73, 0x72, 0x65, 0x73, - 0x70, 0x12, 0x3c, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x70, 0x32, 0x30, 0x30, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4c, - 0x69, 0x73, 0x74, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x4a, 0x6f, 0x62, 0x73, 0x72, - 0x65, 0x73, 0x70, 0x32, 0x30, 0x30, 0x52, 0x07, 0x72, 0x65, 0x73, 0x70, 0x32, 0x30, 0x30, 0x12, - 0x3c, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x70, 0x34, 0x30, 0x30, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x22, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4c, 0x69, 0x73, - 0x74, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x4a, 0x6f, 0x62, 0x73, 0x72, 0x65, 0x73, - 0x70, 0x34, 0x30, 0x30, 0x52, 0x07, 0x72, 0x65, 0x73, 0x70, 0x34, 0x30, 0x30, 0x22, 0x7c, 0x0a, - 0x17, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x4a, 0x6f, 0x62, - 0x73, 0x72, 0x65, 0x73, 0x70, 0x34, 0x30, 0x30, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, - 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, - 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, - 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, - 0x43, 0x6f, 0x64, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x73, 0x6f, - 0x6c, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x65, 0x72, - 0x72, 0x6f, 0x72, 0x53, 0x6f, 0x6c, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xad, 0x02, 0x0a, 0x17, - 0x4c, 0x69, 0x73, 0x74, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x4a, 0x6f, 0x62, 0x73, - 0x72, 0x65, 0x73, 0x70, 0x32, 0x30, 0x30, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x14, 0x0a, - 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x63, 0x6f, - 0x75, 0x6e, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, - 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, - 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x6f, 0x72, 0x74, 0x5f, 0x62, 0x79, 0x18, 0x05, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x06, 0x73, 0x6f, 0x72, 0x74, 0x42, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x6f, 0x72, - 0x64, 0x65, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, - 0x12, 0x19, 0x0a, 0x08, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x62, 0x79, 0x18, 0x07, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x07, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x79, 0x12, 0x21, 0x0a, 0x0c, 0x77, - 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x0b, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x49, 0x64, 0x12, 0x1d, - 0x0a, 0x0a, 0x61, 0x69, 0x5f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x18, 0x09, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x09, 0x61, 0x69, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x12, 0x2c, 0x0a, - 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x6d, - 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x22, 0x93, 0x02, 0x0a, 0x0b, - 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6b, - 0x69, 0x6e, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6b, 0x69, 0x6e, 0x64, 0x12, - 0x32, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x16, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4a, 0x6f, - 0x62, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, - 0x61, 0x74, 0x61, 0x12, 0x29, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, - 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x3d, - 0x0a, 0x09, 0x61, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x18, 0x04, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x1f, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4a, 0x6f, - 0x62, 0x41, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x52, 0x09, 0x61, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x12, 0x2d, 0x0a, - 0x05, 0x74, 0x61, 0x73, 0x6b, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x6d, - 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x54, 0x61, 0x73, 0x6b, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x05, 0x74, 0x61, 0x73, 0x6b, 0x73, 0x12, 0x23, 0x0a, 0x04, - 0x73, 0x70, 0x65, 0x63, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x6d, 0x6f, 0x64, - 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x53, 0x70, 0x65, 0x63, 0x52, 0x04, 0x73, 0x70, 0x65, - 0x63, 0x22, 0xbf, 0x02, 0x0a, 0x0b, 0x4a, 0x6f, 0x62, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, - 0x61, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, - 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, - 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x77, 0x6f, 0x72, - 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, - 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, - 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x72, - 0x65, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, - 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x75, - 0x73, 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, - 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x49, 0x0a, 0x0b, 0x61, 0x6e, 0x6e, 0x6f, - 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, - 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4a, 0x6f, 0x62, 0x4d, 0x65, 0x74, - 0x61, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x41, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0b, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x73, 0x1a, 0x3e, 0x0a, 0x10, 0x41, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, - 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, - 0x02, 0x38, 0x01, 0x22, 0xd7, 0x01, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x14, - 0x0a, 0x05, 0x70, 0x68, 0x61, 0x73, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, - 0x68, 0x61, 0x73, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61, 0x72, - 0x79, 0x5f, 0x70, 0x68, 0x61, 0x73, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, - 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61, 0x72, 0x79, 0x50, 0x68, 0x61, 0x73, 0x65, 0x12, 0x1a, 0x0a, - 0x08, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, - 0x08, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x61, 0x73, - 0x6b, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x74, 0x61, 0x73, 0x6b, 0x73, 0x12, - 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x3d, - 0x0a, 0x0d, 0x74, 0x61, 0x73, 0x6b, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x18, - 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, - 0x73, 0x2e, 0x54, 0x61, 0x73, 0x6b, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x52, - 0x0c, 0x74, 0x61, 0x73, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x22, 0xff, 0x04, - 0x0a, 0x14, 0x4a, 0x6f, 0x62, 0x41, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x73, 0x75, - 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, - 0x6e, 0x49, 0x64, 0x12, 0x26, 0x0a, 0x0f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x76, 0x65, 0x72, 0x73, - 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x69, 0x74, - 0x65, 0x6d, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x63, - 0x6f, 0x64, 0x65, 0x5f, 0x64, 0x69, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, - 0x6f, 0x64, 0x65, 0x44, 0x69, 0x72, 0x12, 0x1b, 0x0a, 0x09, 0x62, 0x6f, 0x6f, 0x74, 0x5f, 0x66, - 0x69, 0x6c, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x6f, 0x6f, 0x74, 0x46, - 0x69, 0x6c, 0x65, 0x12, 0x34, 0x0a, 0x16, 0x61, 0x75, 0x74, 0x6f, 0x73, 0x65, 0x61, 0x72, 0x63, - 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x07, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x14, 0x61, 0x75, 0x74, 0x6f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x43, - 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x50, 0x61, 0x74, 0x68, 0x12, 0x3a, 0x0a, 0x19, 0x61, 0x75, 0x74, - 0x6f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72, - 0x6b, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x17, 0x61, 0x75, - 0x74, 0x6f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72, - 0x6b, 0x50, 0x61, 0x74, 0x68, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, - 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x12, - 0x34, 0x0a, 0x0a, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x18, 0x0a, 0x20, - 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, - 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x52, 0x0a, 0x70, 0x61, 0x72, 0x61, 0x6d, - 0x65, 0x74, 0x65, 0x72, 0x73, 0x12, 0x2f, 0x0a, 0x08, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, - 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, - 0x72, 0x74, 0x73, 0x2e, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x52, 0x08, 0x70, 0x6f, - 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x12, 0x28, 0x0a, 0x06, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x73, - 0x18, 0x0c, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, - 0x74, 0x73, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x52, 0x06, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x73, - 0x12, 0x2b, 0x0a, 0x07, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x73, 0x18, 0x0d, 0x20, 0x03, 0x28, - 0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4f, 0x75, - 0x74, 0x70, 0x75, 0x74, 0x52, 0x07, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x73, 0x12, 0x29, 0x0a, - 0x06, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, - 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, - 0x52, 0x06, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x12, 0x24, 0x0a, 0x0e, 0x6c, 0x6f, 0x63, 0x61, - 0x6c, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x5f, 0x64, 0x69, 0x72, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x0c, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x43, 0x6f, 0x64, 0x65, 0x44, 0x69, 0x72, 0x12, 0x1f, - 0x0a, 0x0b, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x69, 0x72, 0x18, 0x10, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x0a, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x44, 0x69, 0x72, 0x22, - 0x96, 0x01, 0x0a, 0x0c, 0x54, 0x61, 0x73, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x12, 0x12, 0x0a, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, - 0x72, 0x6f, 0x6c, 0x65, 0x12, 0x32, 0x0a, 0x09, 0x61, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, - 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, - 0x72, 0x74, 0x73, 0x2e, 0x61, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x52, 0x09, 0x61, - 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x12, 0x3e, 0x0a, 0x0d, 0x74, 0x61, 0x73, 0x6b, - 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x19, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x46, 0x6c, 0x61, 0x76, - 0x6f, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x0c, 0x74, 0x61, 0x73, 0x6b, - 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x22, 0xf9, 0x02, 0x0a, 0x0e, 0x46, 0x6c, 0x61, - 0x76, 0x6f, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x66, - 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, - 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x66, 0x6c, 0x61, 0x76, - 0x6f, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x66, - 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x6d, 0x61, 0x78, - 0x5f, 0x6e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6d, 0x61, 0x78, 0x4e, - 0x75, 0x6d, 0x12, 0x1f, 0x0a, 0x0b, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x5f, 0x74, 0x79, 0x70, - 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x54, - 0x79, 0x70, 0x65, 0x12, 0x2c, 0x0a, 0x07, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x18, 0x05, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, - 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x52, 0x07, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, - 0x67, 0x12, 0x37, 0x0a, 0x0b, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x5f, 0x69, 0x6e, 0x66, 0x6f, - 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, - 0x74, 0x73, 0x2e, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x52, 0x0a, - 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x49, 0x0a, 0x0a, 0x61, 0x74, - 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x29, - 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x46, 0x6c, 0x61, 0x76, 0x6f, - 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, - 0x75, 0x74, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, - 0x62, 0x75, 0x74, 0x65, 0x73, 0x1a, 0x3d, 0x0a, 0x0f, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, - 0x74, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, - 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, - 0x3a, 0x02, 0x38, 0x01, 0x22, 0x38, 0x0a, 0x07, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x12, - 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, - 0x6f, 0x64, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x75, 0x6e, 0x69, 0x74, 0x5f, 0x6e, 0x75, 0x6d, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x75, 0x6e, 0x69, 0x74, 0x4e, 0x75, 0x6d, 0x22, 0xdc, - 0x01, 0x0a, 0x0b, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x12, 0x17, - 0x0a, 0x07, 0x6d, 0x61, 0x78, 0x5f, 0x6e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, - 0x06, 0x6d, 0x61, 0x78, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x03, 0x63, 0x70, 0x75, 0x18, 0x02, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, - 0x2e, 0x63, 0x70, 0x75, 0x52, 0x03, 0x63, 0x70, 0x75, 0x12, 0x20, 0x0a, 0x03, 0x67, 0x70, 0x75, - 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, - 0x74, 0x73, 0x2e, 0x67, 0x70, 0x75, 0x52, 0x03, 0x67, 0x70, 0x75, 0x12, 0x20, 0x0a, 0x03, 0x6e, - 0x70, 0x75, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, - 0x61, 0x72, 0x74, 0x73, 0x2e, 0x6e, 0x70, 0x75, 0x52, 0x03, 0x6e, 0x70, 0x75, 0x12, 0x29, 0x0a, - 0x06, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, - 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, - 0x52, 0x06, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x12, 0x23, 0x0a, 0x04, 0x64, 0x69, 0x73, 0x6b, - 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, - 0x74, 0x73, 0x2e, 0x64, 0x69, 0x73, 0x6b, 0x52, 0x04, 0x64, 0x69, 0x73, 0x6b, 0x22, 0x34, 0x0a, - 0x03, 0x63, 0x70, 0x75, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x63, 0x68, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x63, 0x68, 0x12, 0x19, 0x0a, 0x08, 0x63, 0x6f, 0x72, 0x65, - 0x5f, 0x6e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x63, 0x6f, 0x72, 0x65, - 0x4e, 0x75, 0x6d, 0x22, 0x5b, 0x0a, 0x03, 0x6e, 0x70, 0x75, 0x12, 0x19, 0x0a, 0x08, 0x75, 0x6e, - 0x69, 0x74, 0x5f, 0x6e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x75, 0x6e, - 0x69, 0x74, 0x4e, 0x75, 0x6d, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, - 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x72, 0x6f, - 0x64, 0x75, 0x63, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x65, 0x6d, 0x6f, - 0x72, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, - 0x22, 0x5b, 0x0a, 0x03, 0x67, 0x70, 0x75, 0x12, 0x19, 0x0a, 0x08, 0x75, 0x6e, 0x69, 0x74, 0x5f, - 0x6e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x75, 0x6e, 0x69, 0x74, 0x4e, - 0x75, 0x6d, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6e, 0x61, - 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, - 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x18, - 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x22, 0x30, 0x0a, - 0x06, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x75, - 0x6e, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x75, 0x6e, 0x69, 0x74, 0x22, - 0x2e, 0x0a, 0x04, 0x64, 0x69, 0x73, 0x6b, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x75, - 0x6e, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x75, 0x6e, 0x69, 0x74, 0x22, - 0x8e, 0x02, 0x0a, 0x09, 0x61, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x12, 0x19, 0x0a, - 0x08, 0x63, 0x6f, 0x64, 0x65, 0x5f, 0x64, 0x69, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x07, 0x63, 0x6f, 0x64, 0x65, 0x44, 0x69, 0x72, 0x12, 0x1b, 0x0a, 0x09, 0x62, 0x6f, 0x6f, 0x74, - 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x6f, 0x6f, - 0x74, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x29, 0x0a, 0x06, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x73, 0x18, - 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, - 0x73, 0x2e, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x73, 0x52, 0x06, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x73, - 0x12, 0x2c, 0x0a, 0x07, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x12, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x6f, 0x75, - 0x74, 0x70, 0x75, 0x74, 0x73, 0x52, 0x07, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x73, 0x12, 0x29, - 0x0a, 0x06, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, - 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x65, 0x6e, 0x67, 0x69, 0x6e, - 0x65, 0x52, 0x06, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x12, 0x24, 0x0a, 0x0e, 0x6c, 0x6f, 0x63, - 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x5f, 0x64, 0x69, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x0c, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x43, 0x6f, 0x64, 0x65, 0x44, 0x69, 0x72, 0x12, - 0x1f, 0x0a, 0x0b, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x69, 0x72, 0x18, 0x07, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x44, 0x69, 0x72, - 0x22, 0x86, 0x01, 0x0a, 0x06, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x6e, - 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, - 0x1b, 0x0a, 0x09, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x64, 0x69, 0x72, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x44, 0x69, 0x72, 0x12, 0x29, 0x0a, 0x06, - 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d, - 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, - 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, - 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, - 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x91, 0x01, 0x0a, 0x07, 0x6f, 0x75, - 0x74, 0x70, 0x75, 0x74, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, + 0x70, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, + 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x14, 0x0a, + 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x69, + 0x6d, 0x69, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, + 0x01, 0x28, 0x05, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, + 0x6f, 0x72, 0x74, 0x5f, 0x62, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x6f, + 0x72, 0x74, 0x42, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x06, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x19, 0x0a, 0x08, 0x67, 0x72, + 0x6f, 0x75, 0x70, 0x5f, 0x62, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x67, 0x72, + 0x6f, 0x75, 0x70, 0x42, 0x79, 0x12, 0x21, 0x0a, 0x0c, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, + 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x77, 0x6f, 0x72, + 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x69, 0x5f, 0x70, + 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x69, + 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x12, 0x2c, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, + 0x18, 0x0a, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, + 0x74, 0x73, 0x2e, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x05, + 0x69, 0x74, 0x65, 0x6d, 0x73, 0x22, 0x93, 0x02, 0x0a, 0x0b, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6b, 0x69, 0x6e, 0x64, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x04, 0x6b, 0x69, 0x6e, 0x64, 0x12, 0x32, 0x0a, 0x08, 0x6d, 0x65, 0x74, + 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x6d, 0x6f, + 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4a, 0x6f, 0x62, 0x4d, 0x65, 0x74, 0x61, 0x64, + 0x61, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x29, 0x0a, + 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, + 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, + 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x3d, 0x0a, 0x09, 0x61, 0x6c, 0x67, 0x6f, + 0x72, 0x69, 0x74, 0x68, 0x6d, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x6d, 0x6f, + 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4a, 0x6f, 0x62, 0x41, 0x6c, 0x67, 0x6f, 0x72, + 0x69, 0x74, 0x68, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x09, 0x61, 0x6c, + 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x12, 0x2d, 0x0a, 0x05, 0x74, 0x61, 0x73, 0x6b, 0x73, + 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, + 0x74, 0x73, 0x2e, 0x54, 0x61, 0x73, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, + 0x05, 0x74, 0x61, 0x73, 0x6b, 0x73, 0x12, 0x23, 0x0a, 0x04, 0x73, 0x70, 0x65, 0x63, 0x18, 0x06, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, + 0x2e, 0x53, 0x70, 0x65, 0x63, 0x52, 0x04, 0x73, 0x70, 0x65, 0x63, 0x22, 0xbf, 0x02, 0x0a, 0x0b, + 0x4a, 0x6f, 0x62, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x0e, 0x0a, 0x02, 0x69, + 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, + 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, + 0x21, 0x0a, 0x0c, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, + 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, + 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, + 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, + 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x74, + 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, + 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6e, 0x61, + 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, + 0x6d, 0x65, 0x12, 0x49, 0x0a, 0x0b, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, + 0x72, 0x74, 0x73, 0x2e, 0x4a, 0x6f, 0x62, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x2e, + 0x41, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, + 0x52, 0x0b, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0x3e, 0x0a, + 0x10, 0x41, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72, + 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, + 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xd7, 0x01, + 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x61, 0x73, + 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x61, 0x73, 0x65, 0x12, 0x27, + 0x0a, 0x0f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61, 0x72, 0x79, 0x5f, 0x70, 0x68, 0x61, 0x73, + 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61, + 0x72, 0x79, 0x50, 0x68, 0x61, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x75, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x64, 0x75, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x61, 0x73, 0x6b, 0x73, 0x18, 0x04, 0x20, 0x03, + 0x28, 0x09, 0x52, 0x05, 0x74, 0x61, 0x73, 0x6b, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, + 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, + 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x3d, 0x0a, 0x0d, 0x74, 0x61, 0x73, 0x6b, + 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, + 0x18, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x54, 0x61, 0x73, 0x6b, + 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x52, 0x0c, 0x74, 0x61, 0x73, 0x6b, 0x53, + 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x22, 0xff, 0x04, 0x0a, 0x14, 0x4a, 0x6f, 0x62, 0x41, + 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, + 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, + 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, + 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, + 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x26, 0x0a, + 0x0f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, + 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x69, 0x74, 0x65, 0x6d, 0x56, 0x65, 0x72, 0x73, + 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x63, 0x6f, 0x64, 0x65, 0x5f, 0x64, 0x69, + 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x64, 0x65, 0x44, 0x69, 0x72, + 0x12, 0x1b, 0x0a, 0x09, 0x62, 0x6f, 0x6f, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x06, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x6f, 0x6f, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x34, 0x0a, + 0x16, 0x61, 0x75, 0x74, 0x6f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x66, + 0x69, 0x67, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x14, 0x61, + 0x75, 0x74, 0x6f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x50, + 0x61, 0x74, 0x68, 0x12, 0x3a, 0x0a, 0x19, 0x61, 0x75, 0x74, 0x6f, 0x73, 0x65, 0x61, 0x72, 0x63, + 0x68, 0x5f, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x70, 0x61, 0x74, 0x68, + 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x17, 0x61, 0x75, 0x74, 0x6f, 0x73, 0x65, 0x61, 0x72, + 0x63, 0x68, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x50, 0x61, 0x74, 0x68, 0x12, + 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x12, 0x34, 0x0a, 0x0a, 0x70, 0x61, 0x72, + 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, + 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, + 0x74, 0x65, 0x72, 0x52, 0x0a, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x12, + 0x2f, 0x0a, 0x08, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x13, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x70, 0x6f, + 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x52, 0x08, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, + 0x12, 0x28, 0x0a, 0x06, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x73, 0x18, 0x0c, 0x20, 0x03, 0x28, 0x0b, + 0x32, 0x10, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x49, 0x6e, 0x70, + 0x75, 0x74, 0x52, 0x06, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x73, 0x12, 0x2b, 0x0a, 0x07, 0x6f, 0x75, + 0x74, 0x70, 0x75, 0x74, 0x73, 0x18, 0x0d, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x6f, + 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x52, 0x07, + 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x73, 0x12, 0x29, 0x0a, 0x06, 0x65, 0x6e, 0x67, 0x69, 0x6e, + 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, + 0x72, 0x74, 0x73, 0x2e, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x52, 0x06, 0x65, 0x6e, 0x67, 0x69, + 0x6e, 0x65, 0x12, 0x24, 0x0a, 0x0e, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x64, 0x65, + 0x5f, 0x64, 0x69, 0x72, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6c, 0x6f, 0x63, 0x61, + 0x6c, 0x43, 0x6f, 0x64, 0x65, 0x44, 0x69, 0x72, 0x12, 0x1f, 0x0a, 0x0b, 0x77, 0x6f, 0x72, 0x6b, + 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x69, 0x72, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x77, + 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x44, 0x69, 0x72, 0x22, 0x96, 0x01, 0x0a, 0x0c, 0x54, 0x61, + 0x73, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x6f, + 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x12, 0x32, + 0x0a, 0x09, 0x61, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x14, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x61, 0x6c, + 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x52, 0x09, 0x61, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, + 0x68, 0x6d, 0x12, 0x3e, 0x0a, 0x0d, 0x74, 0x61, 0x73, 0x6b, 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x6d, 0x6f, 0x64, 0x65, + 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x46, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x52, 0x65, 0x73, 0x70, + 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x0c, 0x74, 0x61, 0x73, 0x6b, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x22, 0xf9, 0x02, 0x0a, 0x0e, 0x46, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x52, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x5f, + 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, + 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x5f, 0x6e, 0x61, 0x6d, + 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x4e, + 0x61, 0x6d, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x6d, 0x61, 0x78, 0x5f, 0x6e, 0x75, 0x6d, 0x18, 0x03, + 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6d, 0x61, 0x78, 0x4e, 0x75, 0x6d, 0x12, 0x1f, 0x0a, 0x0b, + 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x0a, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x2c, 0x0a, + 0x07, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, + 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, + 0x6e, 0x67, 0x52, 0x07, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x12, 0x37, 0x0a, 0x0b, 0x66, + 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x16, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x66, 0x6c, 0x61, + 0x76, 0x6f, 0x72, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x52, 0x0a, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, + 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x49, 0x0a, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, + 0x65, 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, + 0x61, 0x72, 0x74, 0x73, 0x2e, 0x46, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x6e, 0x73, 0x65, 0x2e, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x45, 0x6e, + 0x74, 0x72, 0x79, 0x52, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x1a, + 0x3d, 0x0a, 0x0f, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x45, 0x6e, 0x74, + 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x38, + 0x0a, 0x07, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, + 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x19, 0x0a, + 0x08, 0x75, 0x6e, 0x69, 0x74, 0x5f, 0x6e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, + 0x07, 0x75, 0x6e, 0x69, 0x74, 0x4e, 0x75, 0x6d, 0x22, 0xdc, 0x01, 0x0a, 0x0b, 0x66, 0x6c, 0x61, + 0x76, 0x6f, 0x72, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x12, 0x17, 0x0a, 0x07, 0x6d, 0x61, 0x78, 0x5f, + 0x6e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6d, 0x61, 0x78, 0x4e, 0x75, + 0x6d, 0x12, 0x20, 0x0a, 0x03, 0x63, 0x70, 0x75, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, + 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x63, 0x70, 0x75, 0x52, 0x03, + 0x63, 0x70, 0x75, 0x12, 0x20, 0x0a, 0x03, 0x67, 0x70, 0x75, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x0e, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x67, 0x70, 0x75, + 0x52, 0x03, 0x67, 0x70, 0x75, 0x12, 0x20, 0x0a, 0x03, 0x6e, 0x70, 0x75, 0x18, 0x04, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x6e, + 0x70, 0x75, 0x52, 0x03, 0x6e, 0x70, 0x75, 0x12, 0x29, 0x0a, 0x06, 0x6d, 0x65, 0x6d, 0x6f, 0x72, + 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, + 0x72, 0x74, 0x73, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x52, 0x06, 0x6d, 0x65, 0x6d, 0x6f, + 0x72, 0x79, 0x12, 0x23, 0x0a, 0x04, 0x64, 0x69, 0x73, 0x6b, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x0f, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x64, 0x69, 0x73, + 0x6b, 0x52, 0x04, 0x64, 0x69, 0x73, 0x6b, 0x22, 0x34, 0x0a, 0x03, 0x63, 0x70, 0x75, 0x12, 0x12, + 0x0a, 0x04, 0x61, 0x72, 0x63, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, + 0x63, 0x68, 0x12, 0x19, 0x0a, 0x08, 0x63, 0x6f, 0x72, 0x65, 0x5f, 0x6e, 0x75, 0x6d, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x63, 0x6f, 0x72, 0x65, 0x4e, 0x75, 0x6d, 0x22, 0x5b, 0x0a, + 0x03, 0x6e, 0x70, 0x75, 0x12, 0x19, 0x0a, 0x08, 0x75, 0x6e, 0x69, 0x74, 0x5f, 0x6e, 0x75, 0x6d, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x75, 0x6e, 0x69, 0x74, 0x4e, 0x75, 0x6d, 0x12, + 0x21, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4e, 0x61, + 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x18, 0x03, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x06, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x22, 0x5b, 0x0a, 0x03, 0x67, 0x70, + 0x75, 0x12, 0x19, 0x0a, 0x08, 0x75, 0x6e, 0x69, 0x74, 0x5f, 0x6e, 0x75, 0x6d, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x05, 0x52, 0x07, 0x75, 0x6e, 0x69, 0x74, 0x4e, 0x75, 0x6d, 0x12, 0x21, 0x0a, 0x0c, + 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, + 0x16, 0x0a, 0x06, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x06, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x22, 0x30, 0x0a, 0x06, 0x6d, 0x65, 0x6d, 0x6f, 0x72, + 0x79, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, + 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x6e, 0x69, 0x74, 0x18, 0x02, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x04, 0x75, 0x6e, 0x69, 0x74, 0x22, 0x2e, 0x0a, 0x04, 0x64, 0x69, 0x73, + 0x6b, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, + 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x6e, 0x69, 0x74, 0x18, 0x02, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x04, 0x75, 0x6e, 0x69, 0x74, 0x22, 0x8e, 0x02, 0x0a, 0x09, 0x61, 0x6c, + 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x12, 0x19, 0x0a, 0x08, 0x63, 0x6f, 0x64, 0x65, 0x5f, + 0x64, 0x69, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x64, 0x65, 0x44, + 0x69, 0x72, 0x12, 0x1b, 0x0a, 0x09, 0x62, 0x6f, 0x6f, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x6f, 0x6f, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x12, + 0x29, 0x0a, 0x06, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, + 0x11, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x69, 0x6e, 0x70, 0x75, + 0x74, 0x73, 0x52, 0x06, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x73, 0x12, 0x2c, 0x0a, 0x07, 0x6f, 0x75, + 0x74, 0x70, 0x75, 0x74, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x6d, 0x6f, + 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x73, 0x52, + 0x07, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x73, 0x12, 0x29, 0x0a, 0x06, 0x65, 0x6e, 0x67, 0x69, + 0x6e, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, + 0x61, 0x72, 0x74, 0x73, 0x2e, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x52, 0x06, 0x65, 0x6e, 0x67, + 0x69, 0x6e, 0x65, 0x12, 0x24, 0x0a, 0x0e, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x64, + 0x65, 0x5f, 0x64, 0x69, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6c, 0x6f, 0x63, + 0x61, 0x6c, 0x43, 0x6f, 0x64, 0x65, 0x44, 0x69, 0x72, 0x12, 0x1f, 0x0a, 0x0b, 0x77, 0x6f, 0x72, + 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x69, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, + 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x44, 0x69, 0x72, 0x22, 0x86, 0x01, 0x0a, 0x06, 0x69, + 0x6e, 0x70, 0x75, 0x74, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x64, 0x69, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x44, 0x69, 0x72, 0x12, 0x29, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x74, - 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6d, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x04, 0x6d, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x18, - 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x22, 0xd7, 0x01, - 0x0a, 0x05, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, - 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, - 0x09, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x64, 0x69, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x44, 0x69, 0x72, 0x12, 0x30, 0x0a, 0x06, 0x72, 0x65, - 0x6d, 0x6f, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x6d, 0x6f, 0x64, - 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x44, 0x61, 0x74, 0x61, - 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x12, 0x49, 0x0a, 0x11, - 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, - 0x74, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, - 0x72, 0x74, 0x73, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, - 0x72, 0x61, 0x69, 0x6e, 0x74, 0x52, 0x10, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x43, 0x6f, 0x6e, - 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x22, 0x5f, 0x0a, 0x0d, 0x49, 0x6e, 0x70, 0x75, 0x74, - 0x44, 0x61, 0x74, 0x61, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x2c, 0x0a, 0x07, 0x64, 0x61, 0x74, 0x61, - 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x6d, 0x6f, 0x64, 0x65, - 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x73, 0x65, 0x74, 0x52, 0x07, 0x64, - 0x61, 0x74, 0x61, 0x73, 0x65, 0x74, 0x12, 0x20, 0x0a, 0x03, 0x6f, 0x62, 0x73, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, - 0x6f, 0x62, 0x73, 0x52, 0x03, 0x6f, 0x62, 0x73, 0x22, 0x51, 0x0a, 0x07, 0x64, 0x61, 0x74, 0x61, - 0x73, 0x65, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x69, - 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, - 0x49, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x6f, 0x62, 0x73, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x03, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x62, 0x73, 0x55, 0x72, 0x6c, 0x22, 0x1e, 0x0a, 0x03, 0x6f, - 0x62, 0x73, 0x12, 0x17, 0x0a, 0x07, 0x6f, 0x62, 0x73, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x62, 0x73, 0x55, 0x72, 0x6c, 0x22, 0x50, 0x0a, 0x11, 0x72, - 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, - 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, - 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x22, 0x86, 0x01, - 0x0a, 0x06, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, - 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, - 0x0a, 0x09, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x64, 0x69, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x44, 0x69, 0x72, 0x12, 0x29, 0x0a, 0x06, 0x72, - 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x6f, - 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x06, - 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x22, 0x2b, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, - 0x12, 0x21, 0x0a, 0x03, 0x6f, 0x62, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, - 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x6f, 0x62, 0x73, 0x31, 0x52, 0x03, - 0x6f, 0x62, 0x73, 0x22, 0x1f, 0x0a, 0x04, 0x6f, 0x62, 0x73, 0x31, 0x12, 0x17, 0x0a, 0x07, 0x6f, - 0x62, 0x73, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x62, - 0x73, 0x55, 0x72, 0x6c, 0x22, 0xca, 0x01, 0x0a, 0x06, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x12, - 0x1b, 0x0a, 0x09, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x08, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, - 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x0a, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x25, 0x0a, - 0x0e, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, - 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x56, 0x65, 0x72, - 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x75, 0x72, - 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, - 0x6c, 0x12, 0x23, 0x0a, 0x0d, 0x76, 0x31, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x74, 0x69, 0x62, - 0x6c, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x76, 0x31, 0x43, 0x6f, 0x6d, 0x70, - 0x61, 0x74, 0x69, 0x62, 0x6c, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x72, 0x75, 0x6e, 0x5f, 0x75, 0x73, - 0x65, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x72, 0x75, 0x6e, 0x55, 0x73, 0x65, - 0x72, 0x22, 0x0a, 0x0a, 0x08, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x22, 0xf2, 0x01, - 0x0a, 0x0b, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x12, 0x2c, 0x0a, - 0x12, 0x73, 0x6b, 0x69, 0x70, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x70, 0x61, 0x72, - 0x61, 0x6d, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x73, 0x6b, 0x69, 0x70, 0x53, - 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x12, 0x3a, 0x0a, 0x0c, 0x72, - 0x65, 0x77, 0x61, 0x72, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, - 0x0b, 0x32, 0x17, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x72, 0x65, - 0x77, 0x61, 0x72, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x73, 0x52, 0x0b, 0x72, 0x65, 0x77, 0x61, - 0x72, 0x64, 0x41, 0x74, 0x74, 0x72, 0x73, 0x12, 0x3d, 0x0a, 0x0d, 0x73, 0x65, 0x61, 0x72, 0x63, - 0x68, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, - 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x73, 0x65, 0x61, 0x72, 0x63, - 0x68, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x52, 0x0c, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, - 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x12, 0x3a, 0x0a, 0x0c, 0x61, 0x6c, 0x67, 0x6f, 0x5f, 0x63, - 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x6d, - 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x61, 0x6c, 0x67, 0x6f, 0x5f, 0x63, 0x6f, - 0x6e, 0x66, 0x69, 0x67, 0x73, 0x52, 0x0b, 0x61, 0x6c, 0x67, 0x6f, 0x43, 0x6f, 0x6e, 0x66, 0x69, - 0x67, 0x73, 0x22, 0x4c, 0x0a, 0x0c, 0x72, 0x65, 0x77, 0x61, 0x72, 0x64, 0x5f, 0x61, 0x74, 0x74, - 0x72, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6d, 0x6f, 0x64, 0x65, 0x18, 0x02, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6d, 0x6f, 0x64, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x65, - 0x67, 0x65, 0x78, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x72, 0x65, 0x67, 0x65, 0x78, - 0x22, 0xdd, 0x01, 0x0a, 0x0d, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x70, 0x61, 0x72, 0x61, - 0x6d, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x5f, - 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x61, - 0x6d, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x6c, 0x6f, 0x77, 0x65, 0x72, 0x5f, 0x62, - 0x6f, 0x75, 0x6e, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6c, 0x6f, 0x77, 0x65, - 0x72, 0x42, 0x6f, 0x75, 0x6e, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x75, 0x70, 0x70, 0x65, 0x72, 0x5f, - 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x75, 0x70, 0x70, - 0x65, 0x72, 0x42, 0x6f, 0x75, 0x6e, 0x64, 0x12, 0x2e, 0x0a, 0x13, 0x64, 0x69, 0x73, 0x63, 0x72, - 0x65, 0x74, 0x65, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x5f, 0x6e, 0x75, 0x6d, 0x18, 0x05, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x64, 0x69, 0x73, 0x63, 0x72, 0x65, 0x74, 0x65, 0x50, 0x6f, - 0x69, 0x6e, 0x74, 0x73, 0x4e, 0x75, 0x6d, 0x12, 0x27, 0x0a, 0x0f, 0x64, 0x69, 0x73, 0x63, 0x72, - 0x65, 0x74, 0x65, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, - 0x52, 0x0e, 0x64, 0x69, 0x73, 0x63, 0x72, 0x65, 0x74, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, - 0x22, 0x64, 0x0a, 0x0c, 0x61, 0x6c, 0x67, 0x6f, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, - 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, - 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x40, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x18, 0x02, - 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, - 0x2e, 0x41, 0x75, 0x74, 0x6f, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x6c, 0x67, 0x6f, 0x43, - 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x52, 0x06, - 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x22, 0x5b, 0x0a, 0x1d, 0x41, 0x75, 0x74, 0x6f, 0x53, 0x65, - 0x61, 0x72, 0x63, 0x68, 0x41, 0x6c, 0x67, 0x6f, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x50, 0x61, - 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, - 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, - 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, - 0x79, 0x70, 0x65, 0x22, 0xd6, 0x01, 0x0a, 0x09, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, - 0x72, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, - 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x35, 0x0a, - 0x0a, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x15, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x63, 0x6f, - 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, - 0x61, 0x69, 0x6e, 0x74, 0x12, 0x46, 0x0a, 0x10, 0x69, 0x31, 0x38, 0x6e, 0x5f, 0x64, 0x65, 0x73, - 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, - 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x69, 0x31, 0x38, 0x6e, 0x5f, - 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0f, 0x69, 0x31, 0x38, - 0x6e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x50, 0x0a, 0x10, - 0x69, 0x31, 0x38, 0x6e, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, - 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x08, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x12, 0x20, 0x0a, 0x0b, - 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xb6, - 0x01, 0x0a, 0x0a, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x12, 0x12, 0x0a, - 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, - 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x65, 0x64, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x08, 0x52, 0x08, 0x65, 0x64, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x1a, 0x0a, - 0x08, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, - 0x08, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x65, 0x6e, - 0x73, 0x69, 0x74, 0x69, 0x76, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x73, 0x65, - 0x6e, 0x73, 0x69, 0x74, 0x69, 0x76, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x61, 0x6c, 0x69, 0x64, - 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x76, 0x61, 0x6c, - 0x69, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x5f, - 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x76, 0x61, 0x6c, - 0x69, 0x64, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x22, 0xa9, 0x01, 0x0a, 0x04, 0x53, 0x70, 0x65, 0x63, - 0x12, 0x2f, 0x0a, 0x08, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x08, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x12, 0x2c, 0x0a, 0x07, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, - 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x76, - 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x73, 0x52, 0x07, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x73, 0x12, - 0x42, 0x0a, 0x0f, 0x6c, 0x6f, 0x67, 0x5f, 0x65, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x70, 0x61, - 0x74, 0x68, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, - 0x61, 0x72, 0x74, 0x73, 0x2e, 0x6c, 0x6f, 0x67, 0x5f, 0x65, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x5f, - 0x70, 0x61, 0x74, 0x68, 0x52, 0x0d, 0x6c, 0x6f, 0x67, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x50, - 0x61, 0x74, 0x68, 0x22, 0xd7, 0x01, 0x0a, 0x08, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x12, 0x16, 0x0a, 0x06, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x06, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x6c, 0x61, 0x76, - 0x6f, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x6c, 0x61, - 0x76, 0x6f, 0x72, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x5f, - 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x66, 0x6c, 0x61, 0x76, - 0x6f, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x6e, 0x6f, 0x64, 0x65, 0x5f, 0x63, - 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6e, 0x6f, 0x64, 0x65, - 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x70, 0x6f, 0x6f, 0x6c, 0x5f, 0x69, 0x64, - 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x6f, 0x6f, 0x6c, 0x49, 0x64, 0x12, 0x3d, - 0x0a, 0x0d, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x18, - 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, - 0x73, 0x2e, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, - 0x0c, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x22, 0x97, 0x01, - 0x0a, 0x0d, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x12, - 0x1f, 0x0a, 0x0b, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, - 0x12, 0x2c, 0x0a, 0x07, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x12, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x62, 0x69, - 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x52, 0x07, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x12, 0x37, - 0x0a, 0x0b, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x03, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, - 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x52, 0x0a, 0x66, 0x6c, 0x61, - 0x76, 0x6f, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x2b, 0x0a, 0x07, 0x76, 0x6f, 0x6c, 0x75, 0x6d, - 0x65, 0x73, 0x12, 0x20, 0x0a, 0x03, 0x6e, 0x66, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x0e, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x6e, 0x66, 0x73, 0x52, - 0x03, 0x6e, 0x66, 0x73, 0x22, 0x69, 0x0a, 0x03, 0x6e, 0x66, 0x73, 0x12, 0x26, 0x0a, 0x0f, 0x6e, - 0x66, 0x73, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6e, 0x66, 0x73, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x50, - 0x61, 0x74, 0x68, 0x12, 0x1d, 0x0a, 0x0a, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x70, 0x61, 0x74, - 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x50, 0x61, - 0x74, 0x68, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, - 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x72, 0x65, 0x61, 0x64, 0x4f, 0x6e, 0x6c, 0x79, 0x22, - 0x47, 0x0a, 0x0f, 0x6c, 0x6f, 0x67, 0x5f, 0x65, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x70, 0x61, - 0x74, 0x68, 0x12, 0x17, 0x0a, 0x07, 0x6f, 0x62, 0x73, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x62, 0x73, 0x55, 0x72, 0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x68, - 0x6f, 0x73, 0x74, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, - 0x68, 0x6f, 0x73, 0x74, 0x50, 0x61, 0x74, 0x68, 0x22, 0x5a, 0x0a, 0x0d, 0x54, 0x61, 0x73, 0x6b, - 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x61, 0x73, - 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x61, 0x73, 0x6b, 0x12, 0x1b, 0x0a, - 0x09, 0x65, 0x78, 0x69, 0x74, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x08, 0x65, 0x78, 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, - 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, - 0x73, 0x61, 0x67, 0x65, 0x22, 0xd6, 0x01, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, - 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, - 0x04, 0x6b, 0x69, 0x6e, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6b, 0x69, 0x6e, - 0x64, 0x12, 0x30, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, - 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x53, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, - 0x61, 0x74, 0x61, 0x12, 0x33, 0x0a, 0x09, 0x61, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, - 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, - 0x74, 0x73, 0x2e, 0x41, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x73, 0x52, 0x09, 0x61, - 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x12, 0x24, 0x0a, 0x04, 0x73, 0x70, 0x65, 0x63, - 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, - 0x74, 0x73, 0x2e, 0x53, 0x70, 0x65, 0x63, 0x73, 0x52, 0x04, 0x73, 0x70, 0x65, 0x63, 0x12, 0x1d, - 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x22, 0x95, 0x01, - 0x0a, 0x15, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, - 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, 0x12, 0x3d, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x70, 0x32, - 0x30, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, - 0x61, 0x72, 0x74, 0x73, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, - 0x69, 0x6e, 0x67, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, 0x32, 0x30, 0x31, 0x52, 0x07, 0x72, - 0x65, 0x73, 0x70, 0x32, 0x30, 0x31, 0x12, 0x3d, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x70, 0x34, 0x30, - 0x30, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, - 0x72, 0x74, 0x73, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, - 0x6e, 0x67, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, 0x34, 0x30, 0x30, 0x52, 0x07, 0x72, 0x65, - 0x73, 0x70, 0x34, 0x30, 0x30, 0x22, 0xe5, 0x01, 0x0a, 0x18, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, - 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, 0x32, - 0x30, 0x31, 0x12, 0x12, 0x0a, 0x04, 0x6b, 0x69, 0x6e, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x04, 0x6b, 0x69, 0x6e, 0x64, 0x12, 0x30, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, - 0x74, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, - 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x53, 0x52, 0x08, - 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x29, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, - 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, - 0x61, 0x72, 0x74, 0x73, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, - 0x74, 0x75, 0x73, 0x12, 0x33, 0x0a, 0x09, 0x61, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, - 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, - 0x74, 0x73, 0x2e, 0x41, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x73, 0x52, 0x09, 0x61, - 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x12, 0x23, 0x0a, 0x04, 0x73, 0x70, 0x65, 0x63, - 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, - 0x74, 0x73, 0x2e, 0x53, 0x70, 0x65, 0x63, 0x52, 0x04, 0x73, 0x70, 0x65, 0x63, 0x22, 0x7d, 0x0a, - 0x18, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x4a, - 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, 0x34, 0x30, 0x30, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, - 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, - 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, - 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, - 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x73, - 0x6f, 0x6c, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x65, - 0x72, 0x72, 0x6f, 0x72, 0x53, 0x6f, 0x6c, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x74, 0x0a, 0x09, - 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x53, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, - 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, - 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, - 0x21, 0x0a, 0x0c, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, - 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, - 0x49, 0x64, 0x22, 0x98, 0x01, 0x0a, 0x14, 0x45, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x43, 0x72, 0x65, - 0x61, 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x12, 0x1b, 0x0a, 0x09, 0x65, - 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, - 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x65, 0x6e, 0x67, 0x69, - 0x6e, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x65, - 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x65, 0x6e, 0x67, - 0x69, 0x6e, 0x65, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x0d, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, - 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x04, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x22, 0xa3, 0x01, - 0x0a, 0x18, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x43, 0x72, 0x65, 0x61, - 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, - 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x1a, - 0x0a, 0x08, 0x65, 0x64, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, - 0x52, 0x08, 0x65, 0x64, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, - 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x72, 0x65, - 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x65, 0x6e, 0x73, 0x69, 0x74, - 0x69, 0x76, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x73, 0x65, 0x6e, 0x73, 0x69, - 0x74, 0x69, 0x76, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x5f, 0x74, 0x79, - 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x54, - 0x79, 0x70, 0x65, 0x22, 0xa5, 0x01, 0x0a, 0x12, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, - 0x72, 0x73, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x4a, 0x6f, 0x62, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, - 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, - 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, - 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x43, 0x0a, 0x0a, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, - 0x61, 0x69, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x6d, 0x6f, 0x64, - 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, - 0x74, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x52, - 0x0a, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x22, 0x18, 0x0a, 0x16, 0x50, - 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x61, - 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x22, 0x9f, 0x02, 0x0a, 0x0a, 0x41, 0x6c, 0x67, 0x6f, 0x72, 0x69, - 0x74, 0x68, 0x6d, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x63, 0x6f, 0x64, 0x65, - 0x5f, 0x64, 0x69, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x64, 0x65, - 0x44, 0x69, 0x72, 0x12, 0x1b, 0x0a, 0x09, 0x62, 0x6f, 0x6f, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, - 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x6f, 0x6f, 0x74, 0x46, 0x69, 0x6c, 0x65, - 0x12, 0x37, 0x0a, 0x06, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x1f, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x45, 0x6e, 0x67, - 0x69, 0x6e, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, - 0x67, 0x52, 0x06, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x12, 0x3d, 0x0a, 0x0a, 0x70, 0x61, 0x72, - 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1d, 0x2e, - 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, - 0x74, 0x65, 0x72, 0x73, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x4a, 0x6f, 0x62, 0x52, 0x0a, 0x70, 0x61, - 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x12, 0x3d, 0x0a, 0x08, 0x70, 0x6f, 0x6c, 0x69, - 0x63, 0x69, 0x65, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x6d, 0x6f, 0x64, - 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x43, - 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x52, 0x08, 0x70, - 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x22, 0x54, 0x0a, 0x16, 0x52, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, - 0x67, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x49, 0x64, 0x12, 0x1d, - 0x0a, 0x0a, 0x6e, 0x6f, 0x64, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x09, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x1d, 0x0a, - 0x1b, 0x4c, 0x6f, 0x67, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x50, 0x61, 0x74, 0x68, 0x43, 0x72, - 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x22, 0xba, 0x01, 0x0a, - 0x05, 0x53, 0x70, 0x65, 0x63, 0x73, 0x12, 0x3d, 0x0a, 0x08, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, - 0x61, 0x72, 0x74, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x72, 0x65, - 0x61, 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x52, 0x08, 0x72, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x4e, 0x0a, 0x0f, 0x6c, 0x6f, 0x67, 0x5f, 0x65, 0x78, 0x70, - 0x6f, 0x72, 0x74, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, - 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4c, 0x6f, 0x67, 0x45, 0x78, - 0x70, 0x6f, 0x72, 0x74, 0x50, 0x61, 0x74, 0x68, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, - 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x52, 0x0d, 0x6c, 0x6f, 0x67, 0x45, 0x78, 0x70, 0x6f, 0x72, - 0x74, 0x50, 0x61, 0x74, 0x68, 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x73, 0x5f, 0x68, 0x6f, 0x73, 0x74, - 0x65, 0x64, 0x5f, 0x6c, 0x6f, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x69, 0x73, - 0x48, 0x6f, 0x73, 0x74, 0x65, 0x64, 0x4c, 0x6f, 0x67, 0x22, 0xcb, 0x02, 0x0a, 0x1a, 0x43, 0x72, - 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x4a, 0x6f, 0x62, 0x43, - 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x66, - 0x69, 0x67, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, - 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x61, 0x70, 0x70, - 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x70, 0x70, 0x55, - 0x72, 0x6c, 0x12, 0x22, 0x0a, 0x0d, 0x62, 0x6f, 0x6f, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, - 0x75, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x62, 0x6f, 0x6f, 0x74, 0x46, - 0x69, 0x6c, 0x65, 0x55, 0x72, 0x6c, 0x12, 0x19, 0x0a, 0x08, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, - 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x49, - 0x64, 0x12, 0x2a, 0x0a, 0x11, 0x77, 0x6f, 0x72, 0x6b, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x72, 0x76, - 0x65, 0x72, 0x5f, 0x6e, 0x75, 0x6d, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0f, 0x77, 0x6f, - 0x72, 0x6b, 0x65, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x12, 0x1b, 0x0a, - 0x09, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, - 0x52, 0x08, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x70, - 0x65, 0x63, 0x5f, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x70, 0x65, - 0x63, 0x49, 0x64, 0x12, 0x33, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, - 0x18, 0x08, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, - 0x74, 0x73, 0x2e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x53, 0x52, 0x09, 0x70, - 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, - 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, - 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x22, 0x38, 0x0a, 0x0a, 0x50, 0x61, 0x72, 0x61, 0x6d, - 0x65, 0x74, 0x65, 0x72, 0x53, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x14, 0x0a, 0x05, 0x76, - 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, - 0x65, 0x22, 0x80, 0x01, 0x0a, 0x1b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, - 0x6e, 0x69, 0x6e, 0x67, 0x4a, 0x6f, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, - 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, - 0x12, 0x23, 0x0a, 0x0d, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, - 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x65, - 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, - 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, - 0x43, 0x6f, 0x64, 0x65, 0x22, 0x5d, 0x0a, 0x14, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x72, - 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, - 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x26, 0x0a, 0x0f, 0x74, - 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x6a, 0x6f, 0x62, 0x5f, 0x69, 0x64, 0x18, 0x02, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x4a, 0x6f, - 0x62, 0x49, 0x64, 0x22, 0x7a, 0x0a, 0x15, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x72, 0x61, - 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, - 0x69, 0x73, 0x5f, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, - 0x52, 0x09, 0x69, 0x73, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x65, - 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x0c, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, - 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x22, - 0x5c, 0x0a, 0x1a, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, - 0x67, 0x4a, 0x6f, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, - 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, - 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x80, 0x01, - 0x0a, 0x1b, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, - 0x4a, 0x6f, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, - 0x0a, 0x69, 0x73, 0x5f, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x08, 0x52, 0x09, 0x69, 0x73, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x23, 0x0a, 0x0d, - 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x0c, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, - 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, - 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, - 0x22, 0xde, 0x01, 0x0a, 0x18, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, - 0x67, 0x4a, 0x6f, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, - 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, - 0x70, 0x65, 0x72, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, - 0x70, 0x65, 0x72, 0x50, 0x61, 0x67, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, - 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, - 0x6f, 0x72, 0x74, 0x42, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x6f, 0x72, - 0x74, 0x42, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x25, 0x0a, 0x0e, 0x73, 0x65, 0x61, - 0x72, 0x63, 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x0d, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, - 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, - 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x54, 0x79, 0x70, - 0x65, 0x22, 0xe1, 0x01, 0x0a, 0x19, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, - 0x6e, 0x67, 0x4a, 0x6f, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x12, - 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x23, - 0x0a, 0x0d, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x65, 0x73, 0x73, - 0x61, 0x67, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, - 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, - 0x64, 0x65, 0x12, 0x2c, 0x0a, 0x12, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x74, 0x6f, 0x74, - 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, - 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, - 0x12, 0x33, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, - 0x0b, 0x32, 0x19, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x43, 0x6f, - 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x07, 0x63, 0x6f, - 0x6e, 0x66, 0x69, 0x67, 0x73, 0x22, 0xc2, 0x02, 0x0a, 0x0e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x66, - 0x69, 0x67, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, - 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, - 0x66, 0x69, 0x67, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, - 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x65, 0x73, 0x63, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x72, - 0x65, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, - 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x65, - 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, - 0x52, 0x0a, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1f, 0x0a, 0x0b, - 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x0a, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, - 0x09, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, - 0x52, 0x08, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x12, 0x25, 0x0a, 0x0e, 0x65, 0x6e, - 0x67, 0x69, 0x6e, 0x65, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x0d, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, - 0x6e, 0x12, 0x24, 0x0a, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, - 0x75, 0x72, 0x6c, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x75, 0x73, 0x65, 0x72, 0x49, - 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x12, 0x21, 0x0a, 0x0c, 0x75, 0x73, 0x65, 0x72, 0x5f, - 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x75, - 0x73, 0x65, 0x72, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x22, 0xbb, 0x02, 0x0a, 0x12, 0x43, - 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x52, 0x65, - 0x71, 0x12, 0x33, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, - 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x41, 0x6c, 0x52, 0x71, 0x52, 0x08, 0x6d, 0x65, - 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x35, 0x0a, 0x0a, 0x6a, 0x6f, 0x62, 0x5f, 0x63, 0x6f, - 0x6e, 0x66, 0x69, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x6d, 0x6f, 0x64, - 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4a, 0x6f, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, - 0x41, 0x6c, 0x52, 0x09, 0x6a, 0x6f, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x54, 0x0a, - 0x15, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, - 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x6d, - 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x14, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x6d, 0x65, - 0x6e, 0x74, 0x73, 0x12, 0x44, 0x0a, 0x0f, 0x61, 0x64, 0x76, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x5f, - 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x6d, - 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x41, 0x64, 0x76, 0x61, 0x6e, 0x63, 0x65, - 0x64, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x41, 0x6c, 0x52, 0x0e, 0x61, 0x64, 0x76, 0x61, 0x6e, - 0x63, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, - 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, - 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x22, 0x5a, 0x0a, 0x14, 0x52, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, - 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, - 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x03, 0x28, - 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x6f, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6f, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x6f, 0x72, 0x22, 0x4b, 0x0a, 0x10, 0x41, 0x64, 0x76, 0x61, 0x6e, 0x63, 0x65, 0x64, - 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x41, 0x6c, 0x12, 0x37, 0x0a, 0x0b, 0x61, 0x75, 0x74, 0x6f, - 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, - 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x73, - 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x0a, 0x61, 0x75, 0x74, 0x6f, 0x53, 0x65, 0x61, 0x72, 0x63, - 0x68, 0x22, 0x96, 0x01, 0x0a, 0x0c, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x41, 0x6c, - 0x52, 0x71, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, - 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, + 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, + 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, + 0x69, 0x6f, 0x6e, 0x22, 0x91, 0x01, 0x0a, 0x07, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x73, 0x12, + 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, + 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x64, 0x69, 0x72, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x44, 0x69, 0x72, + 0x12, 0x29, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x11, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x72, 0x65, 0x6d, + 0x6f, 0x74, 0x65, 0x52, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6d, + 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6d, 0x6f, 0x64, 0x65, 0x12, + 0x16, 0x0a, 0x06, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x06, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x22, 0xd7, 0x01, 0x0a, 0x05, 0x49, 0x6e, 0x70, 0x75, + 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, + 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, + 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x6c, 0x6f, 0x63, 0x61, 0x6c, + 0x5f, 0x64, 0x69, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, + 0x6c, 0x44, 0x69, 0x72, 0x12, 0x30, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x18, 0x04, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, + 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x44, 0x61, 0x74, 0x61, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x06, + 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x12, 0x49, 0x0a, 0x11, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, + 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x03, 0x28, + 0x0b, 0x32, 0x1c, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x72, 0x65, + 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x52, + 0x10, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, + 0x74, 0x22, 0x5f, 0x0a, 0x0d, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x44, 0x61, 0x74, 0x61, 0x49, 0x6e, + 0x66, 0x6f, 0x12, 0x2c, 0x0a, 0x07, 0x64, 0x61, 0x74, 0x61, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, + 0x64, 0x61, 0x74, 0x61, 0x73, 0x65, 0x74, 0x52, 0x07, 0x64, 0x61, 0x74, 0x61, 0x73, 0x65, 0x74, + 0x12, 0x20, 0x0a, 0x03, 0x6f, 0x62, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, + 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x6f, 0x62, 0x73, 0x52, 0x03, 0x6f, + 0x62, 0x73, 0x22, 0x51, 0x0a, 0x07, 0x64, 0x61, 0x74, 0x61, 0x73, 0x65, 0x74, 0x12, 0x0e, 0x0a, + 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, + 0x0a, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x09, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x07, + 0x6f, 0x62, 0x73, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, + 0x62, 0x73, 0x55, 0x72, 0x6c, 0x22, 0x1e, 0x0a, 0x03, 0x6f, 0x62, 0x73, 0x12, 0x17, 0x0a, 0x07, + 0x6f, 0x62, 0x73, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, + 0x62, 0x73, 0x55, 0x72, 0x6c, 0x22, 0x50, 0x0a, 0x11, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, + 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x61, + 0x74, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, + 0x61, 0x74, 0x61, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, + 0x62, 0x75, 0x74, 0x65, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x74, 0x74, + 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x22, 0x86, 0x01, 0x0a, 0x06, 0x4f, 0x75, 0x74, 0x70, + 0x75, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, - 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, - 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x21, 0x0a, 0x0c, 0x77, 0x6f, 0x72, 0x6b, - 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, - 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x61, - 0x69, 0x5f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x09, 0x61, 0x69, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x22, 0xba, 0x01, 0x0a, 0x0e, 0x43, - 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x41, 0x6c, 0x52, 0x71, 0x12, 0x12, 0x0a, - 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, - 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x65, 0x64, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x08, 0x52, 0x08, 0x65, 0x64, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x1a, 0x0a, - 0x08, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, - 0x08, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x65, 0x6e, - 0x73, 0x69, 0x74, 0x69, 0x76, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x73, 0x65, - 0x6e, 0x73, 0x69, 0x74, 0x69, 0x76, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x61, 0x6c, 0x69, 0x64, - 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x76, 0x61, 0x6c, - 0x69, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x5f, - 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x76, 0x61, 0x6c, - 0x69, 0x64, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x22, 0xdf, 0x01, 0x0a, 0x0e, 0x50, 0x61, 0x72, 0x61, - 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x41, 0x6c, 0x52, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, - 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, - 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, - 0x12, 0x46, 0x0a, 0x10, 0x69, 0x31, 0x38, 0x6e, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, - 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x6d, 0x6f, 0x64, - 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x69, 0x31, 0x38, 0x6e, 0x5f, 0x64, 0x65, 0x73, 0x63, - 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0f, 0x69, 0x31, 0x38, 0x6e, 0x44, 0x65, 0x73, - 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, - 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x39, - 0x0a, 0x0a, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x43, - 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x41, 0x6c, 0x52, 0x71, 0x52, 0x0a, 0x63, - 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x22, 0x90, 0x01, 0x0a, 0x0a, 0x49, 0x6e, - 0x70, 0x75, 0x74, 0x73, 0x41, 0x6c, 0x52, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, - 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4c, - 0x0a, 0x12, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, - 0x69, 0x6e, 0x74, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x6d, 0x6f, 0x64, - 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x63, 0x6f, - 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x73, 0x52, 0x11, 0x72, 0x65, 0x6d, 0x6f, 0x74, - 0x65, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x73, 0x22, 0x6c, 0x0a, 0x12, - 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, - 0x74, 0x73, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70, 0x65, 0x12, - 0x39, 0x0a, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x18, 0x02, 0x20, - 0x03, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, - 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x41, 0x6c, 0x52, 0x71, 0x52, 0x0a, - 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x22, 0x9a, 0x01, 0x0a, 0x0e, 0x61, - 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x41, 0x6c, 0x52, 0x71, 0x12, 0x49, 0x0a, - 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, - 0x0b, 0x32, 0x29, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x61, 0x74, - 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x41, 0x6c, 0x52, 0x71, 0x2e, 0x41, 0x74, 0x74, - 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0a, 0x61, 0x74, - 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x1a, 0x3d, 0x0a, 0x0f, 0x41, 0x74, 0x74, 0x72, - 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, - 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, - 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, - 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x41, 0x0a, 0x09, 0x4f, 0x75, 0x74, 0x70, 0x75, - 0x74, 0x73, 0x41, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, - 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, - 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x8e, 0x01, 0x0a, 0x0a, 0x45, - 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x41, 0x6c, 0x52, 0x71, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x6e, 0x67, + 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, + 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x6c, 0x6f, 0x63, 0x61, + 0x6c, 0x5f, 0x64, 0x69, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x6f, 0x63, + 0x61, 0x6c, 0x44, 0x69, 0x72, 0x12, 0x29, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x18, + 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, + 0x73, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, + 0x22, 0x2b, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x12, 0x21, 0x0a, 0x03, 0x6f, 0x62, + 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, + 0x72, 0x74, 0x73, 0x2e, 0x6f, 0x62, 0x73, 0x31, 0x52, 0x03, 0x6f, 0x62, 0x73, 0x22, 0x1f, 0x0a, + 0x04, 0x6f, 0x62, 0x73, 0x31, 0x12, 0x17, 0x0a, 0x07, 0x6f, 0x62, 0x73, 0x5f, 0x75, 0x72, 0x6c, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x62, 0x73, 0x55, 0x72, 0x6c, 0x22, 0xca, + 0x01, 0x0a, 0x06, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x65, 0x6e, 0x67, @@ -20331,75 +19210,510 @@ var file_pcm_modelarts_proto_rawDesc = []byte{ 0x65, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x08, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x22, 0x1e, 0x0a, 0x08, 0x43, - 0x68, 0x69, 0x6c, 0x64, 0x72, 0x65, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x4f, 0x0a, 0x08, 0x43, - 0x6f, 0x64, 0x65, 0x54, 0x72, 0x65, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x2f, 0x0a, 0x08, 0x63, - 0x68, 0x69, 0x6c, 0x64, 0x72, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, - 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x72, - 0x65, 0x6e, 0x52, 0x08, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x72, 0x65, 0x6e, 0x22, 0xe3, 0x02, 0x0a, - 0x0b, 0x4a, 0x6f, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x41, 0x6c, 0x12, 0x19, 0x0a, 0x08, - 0x63, 0x6f, 0x64, 0x65, 0x5f, 0x64, 0x69, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, - 0x63, 0x6f, 0x64, 0x65, 0x44, 0x69, 0x72, 0x12, 0x1b, 0x0a, 0x09, 0x62, 0x6f, 0x6f, 0x74, 0x5f, - 0x66, 0x69, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x6f, 0x6f, 0x74, - 0x46, 0x69, 0x6c, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x18, - 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x12, 0x39, - 0x0a, 0x0a, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x18, 0x04, 0x20, 0x03, - 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x50, - 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x41, 0x6c, 0x52, 0x71, 0x52, 0x0a, 0x70, - 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x12, 0x39, 0x0a, 0x18, 0x70, 0x61, 0x72, - 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x17, 0x70, 0x61, 0x72, - 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2d, 0x0a, 0x06, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x73, 0x18, 0x06, - 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, - 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x73, 0x41, 0x6c, 0x52, 0x71, 0x52, 0x06, 0x69, 0x6e, 0x70, - 0x75, 0x74, 0x73, 0x12, 0x2e, 0x0a, 0x07, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x73, 0x18, 0x07, - 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, - 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x73, 0x41, 0x6c, 0x52, 0x07, 0x6f, 0x75, 0x74, 0x70, - 0x75, 0x74, 0x73, 0x12, 0x2d, 0x0a, 0x06, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x18, 0x08, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, - 0x45, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x41, 0x6c, 0x52, 0x71, 0x52, 0x06, 0x65, 0x6e, 0x67, 0x69, - 0x6e, 0x65, 0x22, 0xd5, 0x02, 0x0a, 0x16, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x6c, 0x67, - 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x32, 0x30, 0x31, 0x12, 0x33, 0x0a, - 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x17, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4d, 0x65, 0x74, 0x61, - 0x64, 0x61, 0x74, 0x61, 0x43, 0x72, 0x41, 0x6c, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, - 0x74, 0x61, 0x12, 0x33, 0x0a, 0x0a, 0x73, 0x68, 0x61, 0x72, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, - 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, - 0x74, 0x73, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, 0x73, 0x68, - 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x35, 0x0a, 0x0a, 0x6a, 0x6f, 0x62, 0x5f, 0x63, - 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x6d, 0x6f, - 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4a, 0x6f, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, - 0x67, 0x41, 0x6c, 0x52, 0x09, 0x6a, 0x6f, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x54, - 0x0a, 0x15, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x69, - 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1f, 0x2e, - 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x14, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x6d, - 0x65, 0x6e, 0x74, 0x73, 0x12, 0x44, 0x0a, 0x0f, 0x61, 0x64, 0x76, 0x61, 0x6e, 0x63, 0x65, 0x64, - 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, - 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x41, 0x64, 0x76, 0x61, 0x6e, 0x63, - 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x41, 0x6c, 0x52, 0x0e, 0x61, 0x64, 0x76, 0x61, - 0x6e, 0x63, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x22, 0x7b, 0x0a, 0x16, 0x43, 0x72, - 0x65, 0x61, 0x74, 0x65, 0x41, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x52, 0x65, 0x73, - 0x70, 0x34, 0x30, 0x30, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, - 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, - 0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, - 0x12, 0x25, 0x0a, 0x0e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x69, - 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x53, - 0x6f, 0x6c, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x8f, 0x01, 0x0a, 0x13, 0x43, 0x72, 0x65, 0x61, - 0x74, 0x65, 0x41, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x12, - 0x3b, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x70, 0x32, 0x30, 0x30, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x21, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x43, 0x72, 0x65, - 0x61, 0x74, 0x65, 0x41, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x52, 0x65, 0x73, 0x70, - 0x32, 0x30, 0x31, 0x52, 0x07, 0x72, 0x65, 0x73, 0x70, 0x32, 0x30, 0x30, 0x12, 0x3b, 0x0a, 0x07, - 0x72, 0x65, 0x73, 0x70, 0x34, 0x30, 0x30, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, - 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, - 0x41, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x34, 0x30, 0x30, - 0x52, 0x07, 0x72, 0x65, 0x73, 0x70, 0x34, 0x30, 0x30, 0x22, 0x0b, 0x0a, 0x09, 0x53, 0x68, 0x61, + 0x09, 0x52, 0x08, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x12, 0x23, 0x0a, 0x0d, 0x76, + 0x31, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x74, 0x69, 0x62, 0x6c, 0x65, 0x18, 0x05, 0x20, 0x01, + 0x28, 0x08, 0x52, 0x0c, 0x76, 0x31, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x74, 0x69, 0x62, 0x6c, 0x65, + 0x12, 0x19, 0x0a, 0x08, 0x72, 0x75, 0x6e, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x18, 0x06, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x07, 0x72, 0x75, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x22, 0x0a, 0x0a, 0x08, 0x70, + 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x22, 0xf2, 0x01, 0x0a, 0x0b, 0x61, 0x75, 0x74, 0x6f, + 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x12, 0x2c, 0x0a, 0x12, 0x73, 0x6b, 0x69, 0x70, 0x5f, + 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x10, 0x73, 0x6b, 0x69, 0x70, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, + 0x61, 0x72, 0x61, 0x6d, 0x73, 0x12, 0x3a, 0x0a, 0x0c, 0x72, 0x65, 0x77, 0x61, 0x72, 0x64, 0x5f, + 0x61, 0x74, 0x74, 0x72, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x6d, 0x6f, + 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x72, 0x65, 0x77, 0x61, 0x72, 0x64, 0x5f, 0x61, + 0x74, 0x74, 0x72, 0x73, 0x52, 0x0b, 0x72, 0x65, 0x77, 0x61, 0x72, 0x64, 0x41, 0x74, 0x74, 0x72, + 0x73, 0x12, 0x3d, 0x0a, 0x0d, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x70, 0x61, 0x72, 0x61, + 0x6d, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, + 0x61, 0x72, 0x74, 0x73, 0x2e, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x70, 0x61, 0x72, 0x61, + 0x6d, 0x73, 0x52, 0x0c, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, + 0x12, 0x3a, 0x0a, 0x0c, 0x61, 0x6c, 0x67, 0x6f, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, + 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, + 0x74, 0x73, 0x2e, 0x61, 0x6c, 0x67, 0x6f, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x52, + 0x0b, 0x61, 0x6c, 0x67, 0x6f, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x22, 0x4c, 0x0a, 0x0c, + 0x72, 0x65, 0x77, 0x61, 0x72, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x73, 0x12, 0x12, 0x0a, 0x04, + 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, + 0x12, 0x12, 0x0a, 0x04, 0x6d, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, + 0x6d, 0x6f, 0x64, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x65, 0x67, 0x65, 0x78, 0x18, 0x03, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x05, 0x72, 0x65, 0x67, 0x65, 0x78, 0x22, 0xdd, 0x01, 0x0a, 0x0d, 0x73, + 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x12, 0x12, 0x0a, 0x04, + 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, + 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x54, 0x79, 0x70, 0x65, 0x12, + 0x1f, 0x0a, 0x0b, 0x6c, 0x6f, 0x77, 0x65, 0x72, 0x5f, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x18, 0x03, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6c, 0x6f, 0x77, 0x65, 0x72, 0x42, 0x6f, 0x75, 0x6e, 0x64, + 0x12, 0x1f, 0x0a, 0x0b, 0x75, 0x70, 0x70, 0x65, 0x72, 0x5f, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x18, + 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x75, 0x70, 0x70, 0x65, 0x72, 0x42, 0x6f, 0x75, 0x6e, + 0x64, 0x12, 0x2e, 0x0a, 0x13, 0x64, 0x69, 0x73, 0x63, 0x72, 0x65, 0x74, 0x65, 0x5f, 0x70, 0x6f, + 0x69, 0x6e, 0x74, 0x73, 0x5f, 0x6e, 0x75, 0x6d, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, + 0x64, 0x69, 0x73, 0x63, 0x72, 0x65, 0x74, 0x65, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x4e, 0x75, + 0x6d, 0x12, 0x27, 0x0a, 0x0f, 0x64, 0x69, 0x73, 0x63, 0x72, 0x65, 0x74, 0x65, 0x5f, 0x76, 0x61, + 0x6c, 0x75, 0x65, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0e, 0x64, 0x69, 0x73, 0x63, + 0x72, 0x65, 0x74, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x22, 0x64, 0x0a, 0x0c, 0x61, 0x6c, + 0x67, 0x6f, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, + 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x40, + 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28, + 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x41, 0x75, 0x74, 0x6f, 0x53, + 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x6c, 0x67, 0x6f, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x50, + 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, + 0x22, 0x5b, 0x0a, 0x1d, 0x41, 0x75, 0x74, 0x6f, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x6c, + 0x67, 0x6f, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, + 0x72, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, + 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, + 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0xd6, 0x01, + 0x0a, 0x09, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x6e, + 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, + 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, + 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, + 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, + 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x35, 0x0a, 0x0a, 0x63, 0x6f, 0x6e, 0x73, 0x74, + 0x72, 0x61, 0x69, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x6d, 0x6f, + 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, + 0x6e, 0x74, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x12, 0x46, + 0x0a, 0x10, 0x69, 0x31, 0x38, 0x6e, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, + 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, + 0x61, 0x72, 0x74, 0x73, 0x2e, 0x69, 0x31, 0x38, 0x6e, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, + 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0f, 0x69, 0x31, 0x38, 0x6e, 0x44, 0x65, 0x73, 0x63, 0x72, + 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x50, 0x0a, 0x10, 0x69, 0x31, 0x38, 0x6e, 0x5f, 0x64, + 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, + 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x61, + 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, + 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, + 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xb6, 0x01, 0x0a, 0x0a, 0x63, 0x6f, 0x6e, + 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x65, + 0x64, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x65, + 0x64, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x71, 0x75, 0x69, + 0x72, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x72, 0x65, 0x71, 0x75, 0x69, + 0x72, 0x65, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x65, 0x6e, 0x73, 0x69, 0x74, 0x69, 0x76, 0x65, + 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x73, 0x65, 0x6e, 0x73, 0x69, 0x74, 0x69, 0x76, + 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, + 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x54, 0x79, 0x70, 0x65, + 0x12, 0x1f, 0x0a, 0x0b, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, + 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x52, 0x61, 0x6e, 0x67, + 0x65, 0x22, 0xa9, 0x01, 0x0a, 0x04, 0x53, 0x70, 0x65, 0x63, 0x12, 0x2f, 0x0a, 0x08, 0x72, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x6d, + 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x52, 0x08, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x2c, 0x0a, 0x07, 0x76, + 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x6d, + 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x73, + 0x52, 0x07, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x73, 0x12, 0x42, 0x0a, 0x0f, 0x6c, 0x6f, 0x67, + 0x5f, 0x65, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x03, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x6c, + 0x6f, 0x67, 0x5f, 0x65, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x52, 0x0d, + 0x6c, 0x6f, 0x67, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x50, 0x61, 0x74, 0x68, 0x22, 0xd7, 0x01, + 0x0a, 0x08, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x6f, + 0x6c, 0x69, 0x63, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x6f, 0x6c, 0x69, + 0x63, 0x79, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x5f, 0x69, 0x64, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x49, 0x64, 0x12, + 0x1f, 0x0a, 0x0b, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x4e, 0x61, 0x6d, 0x65, + 0x12, 0x1d, 0x0a, 0x0a, 0x6e, 0x6f, 0x64, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, + 0x17, 0x0a, 0x07, 0x70, 0x6f, 0x6f, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x06, 0x70, 0x6f, 0x6f, 0x6c, 0x49, 0x64, 0x12, 0x3d, 0x0a, 0x0d, 0x66, 0x6c, 0x61, 0x76, + 0x6f, 0x72, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, + 0x18, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x66, 0x6c, 0x61, 0x76, + 0x6f, 0x72, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x0c, 0x66, 0x6c, 0x61, 0x76, 0x6f, + 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x22, 0x97, 0x01, 0x0a, 0x0d, 0x66, 0x6c, 0x61, 0x76, + 0x6f, 0x72, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x12, 0x1f, 0x0a, 0x0b, 0x66, 0x6c, 0x61, + 0x76, 0x6f, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, + 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x2c, 0x0a, 0x07, 0x62, 0x69, + 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x6d, 0x6f, + 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x52, + 0x07, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x12, 0x37, 0x0a, 0x0b, 0x66, 0x6c, 0x61, 0x76, + 0x6f, 0x72, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, + 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, + 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x52, 0x0a, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x49, 0x6e, 0x66, + 0x6f, 0x22, 0x2b, 0x0a, 0x07, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x73, 0x12, 0x20, 0x0a, 0x03, + 0x6e, 0x66, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x6d, 0x6f, 0x64, 0x65, + 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x6e, 0x66, 0x73, 0x52, 0x03, 0x6e, 0x66, 0x73, 0x22, 0x69, + 0x0a, 0x03, 0x6e, 0x66, 0x73, 0x12, 0x26, 0x0a, 0x0f, 0x6e, 0x66, 0x73, 0x5f, 0x73, 0x65, 0x72, + 0x76, 0x65, 0x72, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, + 0x6e, 0x66, 0x73, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x50, 0x61, 0x74, 0x68, 0x12, 0x1d, 0x0a, + 0x0a, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x09, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x50, 0x61, 0x74, 0x68, 0x12, 0x1b, 0x0a, 0x09, + 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, + 0x08, 0x72, 0x65, 0x61, 0x64, 0x4f, 0x6e, 0x6c, 0x79, 0x22, 0x47, 0x0a, 0x0f, 0x6c, 0x6f, 0x67, + 0x5f, 0x65, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x12, 0x17, 0x0a, 0x07, + 0x6f, 0x62, 0x73, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, + 0x62, 0x73, 0x55, 0x72, 0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x68, 0x6f, 0x73, 0x74, 0x5f, 0x70, 0x61, + 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x68, 0x6f, 0x73, 0x74, 0x50, 0x61, + 0x74, 0x68, 0x22, 0x5a, 0x0a, 0x0d, 0x54, 0x61, 0x73, 0x6b, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, + 0x73, 0x65, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x61, 0x73, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x04, 0x74, 0x61, 0x73, 0x6b, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x78, 0x69, 0x74, 0x5f, + 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x78, 0x69, 0x74, + 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, + 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0xd6, + 0x01, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, + 0x67, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x6b, 0x69, 0x6e, 0x64, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6b, 0x69, 0x6e, 0x64, 0x12, 0x30, 0x0a, 0x08, 0x6d, + 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, + 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, + 0x74, 0x61, 0x53, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x33, 0x0a, + 0x09, 0x61, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x15, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x41, 0x6c, 0x67, + 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x73, 0x52, 0x09, 0x61, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, + 0x68, 0x6d, 0x12, 0x24, 0x0a, 0x04, 0x73, 0x70, 0x65, 0x63, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x10, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x53, 0x70, 0x65, + 0x63, 0x73, 0x52, 0x04, 0x73, 0x70, 0x65, 0x63, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, + 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, + 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x22, 0xe2, 0x01, 0x0a, 0x15, 0x43, 0x72, 0x65, 0x61, + 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x73, + 0x70, 0x12, 0x12, 0x0a, 0x04, 0x6b, 0x69, 0x6e, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x04, 0x6b, 0x69, 0x6e, 0x64, 0x12, 0x30, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, + 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, + 0x72, 0x74, 0x73, 0x2e, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x53, 0x52, 0x08, 0x6d, + 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x29, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, + 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, + 0x72, 0x74, 0x73, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, + 0x75, 0x73, 0x12, 0x33, 0x0a, 0x09, 0x61, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x18, + 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, + 0x73, 0x2e, 0x41, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x73, 0x52, 0x09, 0x61, 0x6c, + 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x12, 0x23, 0x0a, 0x04, 0x73, 0x70, 0x65, 0x63, 0x18, + 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, + 0x73, 0x2e, 0x53, 0x70, 0x65, 0x63, 0x52, 0x04, 0x73, 0x70, 0x65, 0x63, 0x22, 0x74, 0x0a, 0x09, + 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x53, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, + 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, + 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, + 0x21, 0x0a, 0x0c, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, + 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, + 0x49, 0x64, 0x22, 0x7b, 0x0a, 0x14, 0x45, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x43, 0x72, 0x65, 0x61, + 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x6e, + 0x67, 0x69, 0x6e, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, + 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x65, 0x6e, 0x67, 0x69, 0x6e, + 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x65, 0x6e, + 0x67, 0x69, 0x6e, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x65, 0x6e, 0x67, 0x69, + 0x6e, 0x65, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x0d, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, + 0xa3, 0x01, 0x0a, 0x18, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x43, 0x72, + 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x12, 0x12, 0x0a, 0x04, + 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, + 0x12, 0x1a, 0x0a, 0x08, 0x65, 0x64, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x08, 0x52, 0x08, 0x65, 0x64, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x1a, 0x0a, 0x08, + 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, + 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x65, 0x6e, 0x73, + 0x69, 0x74, 0x69, 0x76, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x73, 0x65, 0x6e, + 0x73, 0x69, 0x74, 0x69, 0x76, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x5f, + 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x76, 0x61, 0x6c, 0x69, + 0x64, 0x54, 0x79, 0x70, 0x65, 0x22, 0xa5, 0x01, 0x0a, 0x12, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, + 0x74, 0x65, 0x72, 0x73, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x4a, 0x6f, 0x62, 0x12, 0x12, 0x0a, 0x04, + 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, + 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, + 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x43, 0x0a, 0x0a, 0x63, 0x6f, 0x6e, 0x73, + 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x6d, + 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, + 0x69, 0x6e, 0x74, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, + 0x67, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x22, 0x18, 0x0a, + 0x16, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, + 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x22, 0x9f, 0x02, 0x0a, 0x0a, 0x41, 0x6c, 0x67, 0x6f, + 0x72, 0x69, 0x74, 0x68, 0x6d, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x63, 0x6f, + 0x64, 0x65, 0x5f, 0x64, 0x69, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, + 0x64, 0x65, 0x44, 0x69, 0x72, 0x12, 0x1b, 0x0a, 0x09, 0x62, 0x6f, 0x6f, 0x74, 0x5f, 0x66, 0x69, + 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x6f, 0x6f, 0x74, 0x46, 0x69, + 0x6c, 0x65, 0x12, 0x37, 0x0a, 0x06, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x18, 0x05, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x45, + 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, + 0x69, 0x6e, 0x67, 0x52, 0x06, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x12, 0x3d, 0x0a, 0x0a, 0x70, + 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, + 0x1d, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x50, 0x61, 0x72, 0x61, + 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x4a, 0x6f, 0x62, 0x52, 0x0a, + 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x12, 0x3d, 0x0a, 0x08, 0x70, 0x6f, + 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x6d, + 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, + 0x73, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x52, + 0x08, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x22, 0x54, 0x0a, 0x16, 0x52, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, + 0x69, 0x6e, 0x67, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x5f, 0x69, 0x64, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x49, 0x64, + 0x12, 0x1d, 0x0a, 0x0a, 0x6e, 0x6f, 0x64, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, + 0x1d, 0x0a, 0x1b, 0x4c, 0x6f, 0x67, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x50, 0x61, 0x74, 0x68, + 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x22, 0xba, + 0x01, 0x0a, 0x05, 0x53, 0x70, 0x65, 0x63, 0x73, 0x12, 0x3d, 0x0a, 0x08, 0x72, 0x65, 0x73, 0x6f, + 0x75, 0x72, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x6d, 0x6f, 0x64, + 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, + 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x52, 0x08, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x4e, 0x0a, 0x0f, 0x6c, 0x6f, 0x67, 0x5f, 0x65, + 0x78, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x26, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4c, 0x6f, 0x67, + 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x50, 0x61, 0x74, 0x68, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, + 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x52, 0x0d, 0x6c, 0x6f, 0x67, 0x45, 0x78, 0x70, + 0x6f, 0x72, 0x74, 0x50, 0x61, 0x74, 0x68, 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x73, 0x5f, 0x68, 0x6f, + 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6c, 0x6f, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, + 0x69, 0x73, 0x48, 0x6f, 0x73, 0x74, 0x65, 0x64, 0x4c, 0x6f, 0x67, 0x22, 0xcb, 0x02, 0x0a, 0x1a, + 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x4a, 0x6f, + 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x6f, + 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x0a, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x61, + 0x70, 0x70, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x70, + 0x70, 0x55, 0x72, 0x6c, 0x12, 0x22, 0x0a, 0x0d, 0x62, 0x6f, 0x6f, 0x74, 0x5f, 0x66, 0x69, 0x6c, + 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x62, 0x6f, 0x6f, + 0x74, 0x46, 0x69, 0x6c, 0x65, 0x55, 0x72, 0x6c, 0x12, 0x19, 0x0a, 0x08, 0x6d, 0x6f, 0x64, 0x65, + 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x6d, 0x6f, 0x64, 0x65, + 0x6c, 0x49, 0x64, 0x12, 0x2a, 0x0a, 0x11, 0x77, 0x6f, 0x72, 0x6b, 0x65, 0x72, 0x5f, 0x73, 0x65, + 0x72, 0x76, 0x65, 0x72, 0x5f, 0x6e, 0x75, 0x6d, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0f, + 0x77, 0x6f, 0x72, 0x6b, 0x65, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x12, + 0x1b, 0x0a, 0x09, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, + 0x28, 0x05, 0x52, 0x08, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x07, + 0x73, 0x70, 0x65, 0x63, 0x5f, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, + 0x70, 0x65, 0x63, 0x49, 0x64, 0x12, 0x33, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, + 0x65, 0x72, 0x18, 0x08, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, + 0x61, 0x72, 0x74, 0x73, 0x2e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x53, 0x52, + 0x09, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, + 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, + 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x22, 0x38, 0x0a, 0x0a, 0x50, 0x61, 0x72, + 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x53, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x14, 0x0a, + 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, + 0x6c, 0x75, 0x65, 0x22, 0x80, 0x01, 0x0a, 0x1b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, + 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x4a, 0x6f, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, + 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, + 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x53, 0x75, 0x63, 0x63, 0x65, + 0x73, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x65, 0x73, 0x73, + 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x72, 0x72, + 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x22, 0x5d, 0x0a, 0x14, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, + 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x12, 0x1d, + 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x26, 0x0a, + 0x0f, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x6a, 0x6f, 0x62, 0x5f, 0x69, 0x64, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, + 0x4a, 0x6f, 0x62, 0x49, 0x64, 0x22, 0x7a, 0x0a, 0x15, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, + 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, + 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x23, 0x0a, + 0x0d, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, + 0x67, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, + 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, + 0x65, 0x22, 0x5c, 0x0a, 0x1a, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, + 0x69, 0x6e, 0x67, 0x4a, 0x6f, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x12, + 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, + 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4e, 0x61, 0x6d, 0x65, 0x22, + 0x80, 0x01, 0x0a, 0x1b, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x69, + 0x6e, 0x67, 0x4a, 0x6f, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x12, + 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x23, + 0x0a, 0x0d, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x65, 0x73, 0x73, + 0x61, 0x67, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, + 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, + 0x64, 0x65, 0x22, 0xde, 0x01, 0x0a, 0x18, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x72, 0x61, 0x69, 0x6e, + 0x69, 0x6e, 0x67, 0x4a, 0x6f, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x12, + 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x19, + 0x0a, 0x08, 0x70, 0x65, 0x72, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, + 0x52, 0x07, 0x70, 0x65, 0x72, 0x50, 0x61, 0x67, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, + 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, 0x16, 0x0a, + 0x06, 0x73, 0x6f, 0x72, 0x74, 0x42, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, + 0x6f, 0x72, 0x74, 0x42, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x05, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x25, 0x0a, 0x0e, 0x73, + 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x06, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x0d, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x43, 0x6f, 0x6e, 0x74, 0x65, + 0x6e, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x74, 0x79, 0x70, + 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x54, + 0x79, 0x70, 0x65, 0x22, 0xe1, 0x01, 0x0a, 0x19, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x72, 0x61, 0x69, + 0x6e, 0x69, 0x6e, 0x67, 0x4a, 0x6f, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, + 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, + 0x12, 0x23, 0x0a, 0x0d, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, + 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x65, + 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, + 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x43, 0x6f, 0x64, 0x65, 0x12, 0x2c, 0x0a, 0x12, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x74, + 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, + 0x52, 0x10, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x75, + 0x6e, 0x74, 0x12, 0x33, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x18, 0x05, 0x20, + 0x03, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, + 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x07, + 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x22, 0xc2, 0x02, 0x0a, 0x0e, 0x43, 0x6f, 0x6e, 0x66, + 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x6f, + 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x0a, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x63, + 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x65, 0x73, 0x63, 0x12, 0x1f, 0x0a, 0x0b, + 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, + 0x0d, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1f, 0x0a, + 0x0b, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, + 0x28, 0x05, 0x52, 0x0a, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1f, + 0x0a, 0x0b, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x0a, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, + 0x1b, 0x0a, 0x09, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, + 0x28, 0x0d, 0x52, 0x08, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x12, 0x25, 0x0a, 0x0e, + 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x07, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x56, 0x65, 0x72, 0x73, + 0x69, 0x6f, 0x6e, 0x12, 0x24, 0x0a, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6d, 0x61, 0x67, + 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x75, 0x73, 0x65, + 0x72, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x12, 0x21, 0x0a, 0x0c, 0x75, 0x73, 0x65, + 0x72, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x0b, 0x75, 0x73, 0x65, 0x72, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x22, 0xbb, 0x02, 0x0a, + 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, + 0x52, 0x65, 0x71, 0x12, 0x33, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, + 0x73, 0x2e, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x41, 0x6c, 0x52, 0x71, 0x52, 0x08, + 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x35, 0x0a, 0x0a, 0x6a, 0x6f, 0x62, 0x5f, + 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x6d, + 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4a, 0x6f, 0x62, 0x43, 0x6f, 0x6e, 0x66, + 0x69, 0x67, 0x41, 0x6c, 0x52, 0x09, 0x6a, 0x6f, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, + 0x54, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x72, 0x65, 0x71, 0x75, + 0x69, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1f, + 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, + 0x14, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, + 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x44, 0x0a, 0x0f, 0x61, 0x64, 0x76, 0x61, 0x6e, 0x63, 0x65, + 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, + 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x41, 0x64, 0x76, 0x61, 0x6e, + 0x63, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x41, 0x6c, 0x52, 0x0e, 0x61, 0x64, 0x76, + 0x61, 0x6e, 0x63, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x70, + 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x22, 0x5a, 0x0a, 0x14, 0x52, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x6d, 0x65, 0x6e, + 0x74, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, + 0x03, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6f, 0x70, + 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6f, 0x70, + 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x22, 0x4b, 0x0a, 0x10, 0x41, 0x64, 0x76, 0x61, 0x6e, 0x63, + 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x41, 0x6c, 0x12, 0x37, 0x0a, 0x0b, 0x61, 0x75, + 0x74, 0x6f, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, + 0x16, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x61, 0x75, 0x74, 0x6f, + 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x0a, 0x61, 0x75, 0x74, 0x6f, 0x53, 0x65, 0x61, + 0x72, 0x63, 0x68, 0x22, 0x96, 0x01, 0x0a, 0x0c, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, + 0x41, 0x6c, 0x52, 0x71, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, + 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, + 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x21, 0x0a, 0x0c, 0x77, 0x6f, + 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x0b, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x49, 0x64, 0x12, 0x1d, 0x0a, + 0x0a, 0x61, 0x69, 0x5f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x09, 0x61, 0x69, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x22, 0xba, 0x01, 0x0a, + 0x0e, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x41, 0x6c, 0x52, 0x71, 0x12, + 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, + 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x65, 0x64, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x65, 0x64, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x12, + 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, + 0x08, 0x52, 0x08, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x73, + 0x65, 0x6e, 0x73, 0x69, 0x74, 0x69, 0x76, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, + 0x73, 0x65, 0x6e, 0x73, 0x69, 0x74, 0x69, 0x76, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x61, 0x6c, + 0x69, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x76, + 0x61, 0x6c, 0x69, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x76, 0x61, 0x6c, 0x69, + 0x64, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x76, + 0x61, 0x6c, 0x69, 0x64, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x22, 0xdf, 0x01, 0x0a, 0x0e, 0x50, 0x61, + 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x41, 0x6c, 0x52, 0x71, 0x12, 0x12, 0x0a, 0x04, + 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, + 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, + 0x6f, 0x6e, 0x12, 0x46, 0x0a, 0x10, 0x69, 0x31, 0x38, 0x6e, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, + 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x6d, + 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x69, 0x31, 0x38, 0x6e, 0x5f, 0x64, 0x65, + 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0f, 0x69, 0x31, 0x38, 0x6e, 0x44, + 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, + 0x6c, 0x75, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, + 0x12, 0x39, 0x0a, 0x0a, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x18, 0x05, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, + 0x2e, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x41, 0x6c, 0x52, 0x71, 0x52, + 0x0a, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x22, 0x90, 0x01, 0x0a, 0x0a, + 0x49, 0x6e, 0x70, 0x75, 0x74, 0x73, 0x41, 0x6c, 0x52, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, + 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, + 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, + 0x12, 0x4c, 0x0a, 0x12, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, + 0x72, 0x61, 0x69, 0x6e, 0x74, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x6d, + 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, + 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x73, 0x52, 0x11, 0x72, 0x65, 0x6d, + 0x6f, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x73, 0x22, 0x6c, + 0x0a, 0x12, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, + 0x69, 0x6e, 0x74, 0x73, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x74, 0x79, 0x70, + 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70, + 0x65, 0x12, 0x39, 0x0a, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x18, + 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, + 0x73, 0x2e, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x41, 0x6c, 0x52, 0x71, + 0x52, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x22, 0x9a, 0x01, 0x0a, + 0x0e, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x41, 0x6c, 0x52, 0x71, 0x12, + 0x49, 0x0a, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x18, 0x01, 0x20, + 0x03, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, + 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x41, 0x6c, 0x52, 0x71, 0x2e, 0x41, + 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0a, + 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x1a, 0x3d, 0x0a, 0x0f, 0x41, 0x74, + 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, + 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, + 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, + 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x41, 0x0a, 0x09, 0x4f, 0x75, 0x74, + 0x70, 0x75, 0x74, 0x73, 0x41, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, + 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x8e, 0x01, 0x0a, + 0x0a, 0x45, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x41, 0x6c, 0x52, 0x71, 0x12, 0x1b, 0x0a, 0x09, 0x65, + 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, + 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x65, 0x6e, 0x67, 0x69, + 0x6e, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x65, + 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x65, 0x6e, 0x67, + 0x69, 0x6e, 0x65, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x0d, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, + 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x04, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x22, 0x1e, 0x0a, + 0x08, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x72, 0x65, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, + 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x4f, 0x0a, + 0x08, 0x43, 0x6f, 0x64, 0x65, 0x54, 0x72, 0x65, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, + 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x2f, 0x0a, + 0x08, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x72, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, + 0x13, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x43, 0x68, 0x69, 0x6c, + 0x64, 0x72, 0x65, 0x6e, 0x52, 0x08, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x72, 0x65, 0x6e, 0x22, 0xe3, + 0x02, 0x0a, 0x0b, 0x4a, 0x6f, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x41, 0x6c, 0x12, 0x19, + 0x0a, 0x08, 0x63, 0x6f, 0x64, 0x65, 0x5f, 0x64, 0x69, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x07, 0x63, 0x6f, 0x64, 0x65, 0x44, 0x69, 0x72, 0x12, 0x1b, 0x0a, 0x09, 0x62, 0x6f, 0x6f, + 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x6f, + 0x6f, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, + 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, + 0x12, 0x39, 0x0a, 0x0a, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x18, 0x04, + 0x20, 0x03, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, + 0x2e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x41, 0x6c, 0x52, 0x71, 0x52, + 0x0a, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x12, 0x39, 0x0a, 0x18, 0x70, + 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x17, 0x70, + 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, + 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2d, 0x0a, 0x06, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x73, + 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, + 0x74, 0x73, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x73, 0x41, 0x6c, 0x52, 0x71, 0x52, 0x06, 0x69, + 0x6e, 0x70, 0x75, 0x74, 0x73, 0x12, 0x2e, 0x0a, 0x07, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x73, + 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, + 0x74, 0x73, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x73, 0x41, 0x6c, 0x52, 0x07, 0x6f, 0x75, + 0x74, 0x70, 0x75, 0x74, 0x73, 0x12, 0x2d, 0x0a, 0x06, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x18, + 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, + 0x73, 0x2e, 0x45, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x41, 0x6c, 0x52, 0x71, 0x52, 0x06, 0x65, 0x6e, + 0x67, 0x69, 0x6e, 0x65, 0x22, 0xd2, 0x02, 0x0a, 0x13, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, + 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x12, 0x33, 0x0a, 0x08, + 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, + 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4d, 0x65, 0x74, 0x61, 0x64, + 0x61, 0x74, 0x61, 0x43, 0x72, 0x41, 0x6c, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, + 0x61, 0x12, 0x33, 0x0a, 0x0a, 0x73, 0x68, 0x61, 0x72, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, + 0x73, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, 0x73, 0x68, 0x61, + 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x35, 0x0a, 0x0a, 0x6a, 0x6f, 0x62, 0x5f, 0x63, 0x6f, + 0x6e, 0x66, 0x69, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x6d, 0x6f, 0x64, + 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4a, 0x6f, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, + 0x41, 0x6c, 0x52, 0x09, 0x6a, 0x6f, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x54, 0x0a, + 0x15, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, + 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x6d, + 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x14, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x6d, 0x65, + 0x6e, 0x74, 0x73, 0x12, 0x44, 0x0a, 0x0f, 0x61, 0x64, 0x76, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x5f, + 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x6d, + 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x41, 0x64, 0x76, 0x61, 0x6e, 0x63, 0x65, + 0x64, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x41, 0x6c, 0x52, 0x0e, 0x61, 0x64, 0x76, 0x61, 0x6e, + 0x63, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x22, 0x0b, 0x0a, 0x09, 0x53, 0x68, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0xf7, 0x03, 0x0a, 0x0c, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x43, 0x72, 0x41, 0x6c, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, @@ -22295,9 +21609,9 @@ var file_pcm_modelarts_proto_rawDesc = []byte{ 0x52, 0x65, 0x71, 0x1a, 0x14, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x12, 0x3f, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x44, 0x61, 0x74, 0x61, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x15, 0x2e, 0x6d, 0x6f, - 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x73, 0x65, 0x74, 0x52, + 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x53, 0x65, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x16, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x44, - 0x61, 0x74, 0x61, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x4a, 0x0a, 0x0d, 0x43, 0x72, + 0x61, 0x74, 0x61, 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x4a, 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x44, 0x61, 0x74, 0x61, 0x53, 0x65, 0x74, 0x12, 0x1b, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x44, 0x61, 0x74, 0x61, 0x53, 0x65, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x1c, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, @@ -22503,7 +21817,7 @@ func file_pcm_modelarts_proto_rawDescGZIP() []byte { return file_pcm_modelarts_proto_rawDescData } -var file_pcm_modelarts_proto_msgTypes = make([]protoimpl.MessageInfo, 257) +var file_pcm_modelarts_proto_msgTypes = make([]protoimpl.MessageInfo, 247) var file_pcm_modelarts_proto_goTypes = []interface{}{ (*Auth)(nil), // 0: modelarts.auth (*Identity)(nil), // 1: modelarts.identity @@ -22515,253 +21829,243 @@ var file_pcm_modelarts_proto_goTypes = []interface{}{ (*Domain)(nil), // 7: modelarts.domain (*TokenReq)(nil), // 8: modelarts.TokenReq (*TokenResp)(nil), // 9: modelarts.TokenResp - (*DatasetReq)(nil), // 10: modelarts.DatasetReq - (*DatasetResp)(nil), // 11: modelarts.DatasetResp - (*Datasets)(nil), // 12: modelarts.Datasets + (*DataSetReq)(nil), // 10: modelarts.DataSetReq + (*DataSetResp)(nil), // 11: modelarts.DataSetResp + (*DataSets)(nil), // 12: modelarts.DataSets (*DataSources)(nil), // 13: modelarts.DataSources (*ImportTaskDataReq)(nil), // 14: modelarts.ImportTaskDataReq - (*ImportTaskDataResp200)(nil), // 15: modelarts.ImportTaskDataResp200 - (*ImportTaskDataResp400)(nil), // 16: modelarts.ImportTaskDataResp400 - (*ImportTaskDataResp)(nil), // 17: modelarts.ImportTaskDataResp - (*ListImportTasksReq)(nil), // 18: modelarts.ListImportTasksReq - (*ListImportTasksResp)(nil), // 19: modelarts.ListImportTasksResp - (*ListImportTasksResp200)(nil), // 20: modelarts.ListImportTasksResp200 - (*ListImportTasksResp400)(nil), // 21: modelarts.ListImportTasksResp400 - (*ImportTasks)(nil), // 22: modelarts.Import_tasks - (*AnnotationFormatConfig)(nil), // 23: modelarts.Annotation_format_config - (*DataSource)(nil), // 24: modelarts.Data_source - (*SchemaMaps)(nil), // 25: modelarts.Schema_maps - (*SourceInfo)(nil), // 26: modelarts.Source_info - (*FileStatistics)(nil), // 27: modelarts.File_statistics - (*ListTrainingJobsreq)(nil), // 28: modelarts.ListTrainingJobsreq - (*ListTrainingJobsresp)(nil), // 29: modelarts.ListTrainingJobsresp - (*ListTrainingJobsresp400)(nil), // 30: modelarts.ListTrainingJobsresp400 - (*ListTrainingJobsresp200)(nil), // 31: modelarts.ListTrainingJobsresp200 - (*JobResponse)(nil), // 32: modelarts.JobResponse - (*JobMetadata)(nil), // 33: modelarts.JobMetadata - (*Status)(nil), // 34: modelarts.Status - (*JobAlgorithmResponse)(nil), // 35: modelarts.JobAlgorithmResponse - (*TaskResponse)(nil), // 36: modelarts.TaskResponse - (*FlavorResponse)(nil), // 37: modelarts.FlavorResponse - (*Billing)(nil), // 38: modelarts.billing - (*FlavorInfo)(nil), // 39: modelarts.flavor_info - (*Cpu)(nil), // 40: modelarts.cpu - (*Npu)(nil), // 41: modelarts.npu - (*Gpu)(nil), // 42: modelarts.gpu - (*Memory)(nil), // 43: modelarts.memory - (*Disk)(nil), // 44: modelarts.disk - (*Algorithm)(nil), // 45: modelarts.algorithm - (*Inputs)(nil), // 46: modelarts.inputs - (*Outputs)(nil), // 47: modelarts.outputs - (*Input)(nil), // 48: modelarts.Input - (*InputDataInfo)(nil), // 49: modelarts.InputDataInfo - (*Dataset)(nil), // 50: modelarts.dataset - (*Obs)(nil), // 51: modelarts.obs - (*RemoteConstraint)(nil), // 52: modelarts.remote_constraint - (*Output)(nil), // 53: modelarts.Output - (*Remote)(nil), // 54: modelarts.remote - (*Obs1)(nil), // 55: modelarts.obs1 - (*Engine)(nil), // 56: modelarts.engine - (*Policies)(nil), // 57: modelarts.policies - (*AutoSearch)(nil), // 58: modelarts.auto_search - (*RewardAttrs)(nil), // 59: modelarts.reward_attrs - (*SearchParams)(nil), // 60: modelarts.search_params - (*AlgoConfigs)(nil), // 61: modelarts.algo_configs - (*AutoSearchAlgoConfigParameter)(nil), // 62: modelarts.AutoSearchAlgoConfigParameter - (*Parameter)(nil), // 63: modelarts.Parameter - (*I18NDescription)(nil), // 64: modelarts.i18n_description - (*Constraint)(nil), // 65: modelarts.constraint - (*Spec)(nil), // 66: modelarts.Spec - (*Resource)(nil), // 67: modelarts.resource - (*FlavorDetail)(nil), // 68: modelarts.flavor_detail - (*Volumes)(nil), // 69: modelarts.volumes - (*Nfs)(nil), // 70: modelarts.nfs - (*LogExportPath)(nil), // 71: modelarts.log_export_path - (*TaskStatuses)(nil), // 72: modelarts.Task_statuses - (*CreateTrainingJobReq)(nil), // 73: modelarts.CreateTrainingJobReq - (*CreateTrainingJobResp)(nil), // 74: modelarts.CreateTrainingJobResp - (*CreateTrainingJobResp201)(nil), // 75: modelarts.CreateTrainingJobResp201 - (*CreateTrainingJobResp400)(nil), // 76: modelarts.CreateTrainingJobResp400 - (*MetadataS)(nil), // 77: modelarts.MetadataS - (*EngineCreateTraining)(nil), // 78: modelarts.EngineCreateTraining - (*ConstraintCreateTraining)(nil), // 79: modelarts.ConstraintCreateTraining - (*ParametersTrainJob)(nil), // 80: modelarts.ParametersTrainJob - (*PoliciesCreateTraining)(nil), // 81: modelarts.PoliciesCreateTraining - (*Algorithms)(nil), // 82: modelarts.Algorithms - (*ResourceCreateTraining)(nil), // 83: modelarts.ResourceCreateTraining - (*LogExportPathCreateTraining)(nil), // 84: modelarts.LogExportPathCreateTraining - (*Specs)(nil), // 85: modelarts.Specs - (*CreateTrainingJobConfigReq)(nil), // 86: modelarts.CreateTrainingJobConfigReq - (*ParameterS)(nil), // 87: modelarts.ParameterS - (*CreateTrainingJobConfigResp)(nil), // 88: modelarts.CreateTrainingJobConfigResp - (*DeleteTrainingJobReq)(nil), // 89: modelarts.DeleteTrainingJobReq - (*DeleteTrainingJobResp)(nil), // 90: modelarts.DeleteTrainingJobResp - (*DeleteTrainingJobConfigReq)(nil), // 91: modelarts.DeleteTrainingJobConfigReq - (*DeleteTrainingJobConfigResp)(nil), // 92: modelarts.DeleteTrainingJobConfigResp - (*ListTrainingJobConfigReq)(nil), // 93: modelarts.ListTrainingJobConfigReq - (*ListTrainingJobConfigResp)(nil), // 94: modelarts.ListTrainingJobConfigResp - (*ConfigResponse)(nil), // 95: modelarts.ConfigResponse - (*CreateAlgorithmReq)(nil), // 96: modelarts.CreateAlgorithmReq - (*ResourceRequirements)(nil), // 97: modelarts.ResourceRequirements - (*AdvancedConfigAl)(nil), // 98: modelarts.AdvancedConfigAl - (*MetadataAlRq)(nil), // 99: modelarts.MetadataAlRq - (*ConstraintAlRq)(nil), // 100: modelarts.ConstraintAlRq - (*ParametersAlRq)(nil), // 101: modelarts.ParametersAlRq - (*InputsAlRq)(nil), // 102: modelarts.InputsAlRq - (*RemoteConstraints)(nil), // 103: modelarts.remote_constraints - (*AttributesAlRq)(nil), // 104: modelarts.attributesAlRq - (*OutputsAl)(nil), // 105: modelarts.OutputsAl - (*EngineAlRq)(nil), // 106: modelarts.EngineAlRq - (*Children)(nil), // 107: modelarts.Children - (*CodeTree)(nil), // 108: modelarts.CodeTree - (*JobConfigAl)(nil), // 109: modelarts.JobConfigAl - (*CreateAlgorithmResp201)(nil), // 110: modelarts.CreateAlgorithmResp201 - (*CreateAlgorithmResp400)(nil), // 111: modelarts.CreateAlgorithmResp400 - (*CreateAlgorithmResp)(nil), // 112: modelarts.CreateAlgorithmResp - (*ShareInfo)(nil), // 113: modelarts.ShareInfo - (*MetadataCrAl)(nil), // 114: modelarts.MetadataCrAl - (*MetadataAlRp)(nil), // 115: modelarts.MetadataAlRp - (*TagsAlRp)(nil), // 116: modelarts.TagsAlRp - (*ShareInfoAlRp)(nil), // 117: modelarts.ShareInfoAlRp - (*ConstraintAlRp)(nil), // 118: modelarts.ConstraintAlRp - (*ParametersAlRp)(nil), // 119: modelarts.ParametersAlRp - (*InputsAlRp)(nil), // 120: modelarts.InputsAlRp - (*OutputsAlRp)(nil), // 121: modelarts.OutputsAlRp - (*ImageInfo)(nil), // 122: modelarts.ImageInfo - (*EngineAlRp)(nil), // 123: modelarts.EngineAlRp - (*ListAlgorithmsReq)(nil), // 124: modelarts.ListAlgorithmsReq - (*ListAlgorithmsResp)(nil), // 125: modelarts.ListAlgorithmsResp - (*AlgorithmResponse)(nil), // 126: modelarts.AlgorithmResponse - (*JobConfigAlRq)(nil), // 127: modelarts.JobConfigAlRq - (*DeleteAlgorithmsReq)(nil), // 128: modelarts.DeleteAlgorithmsReq - (*DeleteAlgorithmsResp)(nil), // 129: modelarts.DeleteAlgorithmsResp - (*ShowAlgorithmByUuidReq)(nil), // 130: modelarts.ShowAlgorithmByUuidReq - (*ShowAlgorithmByUuidResp)(nil), // 131: modelarts.ShowAlgorithmByUuidResp - (*ExportTaskReq)(nil), // 132: modelarts.ExportTaskReq - (*ExportTaskResp)(nil), // 133: modelarts.ExportTaskResp - (*ExportTaskDataResp200)(nil), // 134: modelarts.ExportTaskDataResp200 - (*ExportTaskDataResp400)(nil), // 135: modelarts.ExportTaskDataResp400 - (*ExportParams)(nil), // 136: modelarts.ExportParams - (*SearchCondition)(nil), // 137: modelarts.SearchCondition - (*SearchLabels)(nil), // 138: modelarts.SearchLabels - (*Weigou)(nil), // 139: modelarts.weigou - (*SearchLabel)(nil), // 140: modelarts.SearchLabel - (*SearchProp)(nil), // 141: modelarts.SearchProp - (*GetExportTasksOfDatasetReq)(nil), // 142: modelarts.GetExportTasksOfDatasetReq - (*GetExportTasksOfDatasetResp)(nil), // 143: modelarts.GetExportTasksOfDatasetResp - (*ExportTaskStatus)(nil), // 144: modelarts.ExportTaskStatus - (*GetExportTaskStatusOfDatasetReq)(nil), // 145: modelarts.GetExportTaskStatusOfDatasetReq - (*GetExportTaskStatusOfDatasetResp)(nil), // 146: modelarts.GetExportTaskStatusOfDatasetResp - (*CreateProcessorTaskReq)(nil), // 147: modelarts.CreateProcessorTaskReq - (*CreateProcessorTaskResp)(nil), // 148: modelarts.CreateProcessorTaskResp - (*ProcessorDataSource)(nil), // 149: modelarts.ProcessorDataSource - (*TemplateParam)(nil), // 150: modelarts.TemplateParam - (*WorkPath)(nil), // 151: modelarts.WorkPath - (*OperatorParam)(nil), // 152: modelarts.OperatorParam - (*DescribeProcessorTaskReq)(nil), // 153: modelarts.DescribeProcessorTaskReq - (*DescribeProcessorTaskResp)(nil), // 154: modelarts.DescribeProcessorTaskResp - (*CreateModelReq)(nil), // 155: modelarts.CreateModelReq - (*CreateModelResp)(nil), // 156: modelarts.CreateModelResp - (*CreateModelRequestInferParams)(nil), // 157: modelarts.CreateModelRequestInferParams - (*CreateModelRequestModelApis)(nil), // 158: modelarts.CreateModelRequestModelApis - (*ModelInOutputParams)(nil), // 159: modelarts.ModelInOutputParams - (*CreateModelRequestTemplateInput)(nil), // 160: modelarts.CreateModelRequestTemplateInput - (*Template)(nil), // 161: modelarts.Template - (*GuideDoc)(nil), // 162: modelarts.GuideDoc - (*ModelDependencies)(nil), // 163: modelarts.ModelDependencies - (*Packages)(nil), // 164: modelarts.Packages - (*DeleteModelReq)(nil), // 165: modelarts.DeleteModelReq - (*DeleteModelResp)(nil), // 166: modelarts.DeleteModelResp - (*DeleteModelResponseFailedList)(nil), // 167: modelarts.DeleteModelResponseFailedList - (*ListModelReq)(nil), // 168: modelarts.ListModelReq - (*ListModelResp)(nil), // 169: modelarts.ListModelResp - (*ModelListItem)(nil), // 170: modelarts.ModelListItem - (*ModelSpecification)(nil), // 171: modelarts.ModelSpecification - (*ShowModelReq)(nil), // 172: modelarts.ShowModelReq - (*ShowModelResp)(nil), // 173: modelarts.ShowModelResp - (*ModelHealth)(nil), // 174: modelarts.ModelHealth - (*ModelParamsInfo)(nil), // 175: modelarts.ModelParamsInfo - (*CreateServiceReq)(nil), // 176: modelarts.CreateServiceReq - (*CreateServiceResp)(nil), // 177: modelarts.CreateServiceResp - (*CreateServiceResp200)(nil), // 178: modelarts.CreateServiceResp200 - (*CreateServiceResp400)(nil), // 179: modelarts.CreateServiceResp400 - (*Scheduler)(nil), // 180: modelarts.Scheduler - (*ServiceConfig)(nil), // 181: modelarts.ServiceConfig - (*CustomSpec)(nil), // 182: modelarts.CustomSpec - (*DeleteServiceReq)(nil), // 183: modelarts.DeleteServiceReq - (*DeleteServiceResp)(nil), // 184: modelarts.DeleteServiceResp - (*DeleteServiceResp200)(nil), // 185: modelarts.DeleteServiceResp200 - (*DeleteServiceResp400)(nil), // 186: modelarts.DeleteServiceResp400 - (*ShowServiceReq)(nil), // 187: modelarts.ShowServiceReq - (*ShowServiceResp)(nil), // 188: modelarts.ShowServiceResp - (*ShowServiceResp200)(nil), // 189: modelarts.ShowServiceResp200 - (*ShowServiceResp400)(nil), // 190: modelarts.ShowServiceResp400 - (*QueryServiceConfig)(nil), // 191: modelarts.QueryServiceConfig - (*ListServicesReq)(nil), // 192: modelarts.ListServicesReq - (*ListServicesResp)(nil), // 193: modelarts.ListServicesResp - (*ListServicesResp200)(nil), // 194: modelarts.ListServicesResp200 - (*ListServicesResp400)(nil), // 195: modelarts.ListServicesResp400 - (*ListServices)(nil), // 196: modelarts.ListServices - (*ListClustersReq)(nil), // 197: modelarts.ListClustersReq - (*ListClustersResp)(nil), // 198: modelarts.ListClustersResp - (*ListClustersResp200)(nil), // 199: modelarts.ListClustersResp200 - (*ListClustersResp400)(nil), // 200: modelarts.ListClustersResp400 - (*Cluster)(nil), // 201: modelarts.Cluster - (*ClusterNode)(nil), // 202: modelarts.ClusterNode - (*CreateDataSetReq)(nil), // 203: modelarts.CreateDataSetReq - (*CreateDataSetResq)(nil), // 204: modelarts.CreateDataSetResq - (*DeleteDataSetReq)(nil), // 205: modelarts.DeleteDataSetReq - (*DeleteDataSetResq)(nil), // 206: modelarts.DeleteDataSetResq - (*ListNotebookReq)(nil), // 207: modelarts.ListNotebookReq - (*ListNotebookResp)(nil), // 208: modelarts.ListNotebookResp - (*ListNotebookParam)(nil), // 209: modelarts.ListNotebookParam - (*CreateNotebookReq)(nil), // 210: modelarts.CreateNotebookReq - (*CreateNotebookResp)(nil), // 211: modelarts.CreateNotebookResp - (*CreateNotebookParam)(nil), // 212: modelarts.CreateNotebookParam - (*StartNotebookReq)(nil), // 213: modelarts.StartNotebookReq - (*StartNotebookResp)(nil), // 214: modelarts.StartNotebookResp - (*StartNotebookParam)(nil), // 215: modelarts.StartNotebookParam - (*StopNotebookReq)(nil), // 216: modelarts.StopNotebookReq - (*StopNotebookResp)(nil), // 217: modelarts.StopNotebookResp - (*GetNotebookStorageReq)(nil), // 218: modelarts.GetNotebookStorageReq - (*GetNotebookStorageResp)(nil), // 219: modelarts.GetNotebookStorageResp - (*MountNotebookStorageReq)(nil), // 220: modelarts.MountNotebookStorageReq - (*MountNotebookStorageResp)(nil), // 221: modelarts.MountNotebookStorageResp - (*MountNotebookStorageParam)(nil), // 222: modelarts.MountNotebookStorageParam - (*DataVolumesRes)(nil), // 223: modelarts.DataVolumesRes - (*NotebookResp)(nil), // 224: modelarts.NotebookResp - (*JobProgress)(nil), // 225: modelarts.JobProgress - (*EndpointsRes)(nil), // 226: modelarts.EndpointsRes - (*Image)(nil), // 227: modelarts.Image - (*Lease)(nil), // 228: modelarts.Lease - (*Pool)(nil), // 229: modelarts.Pool - (*VolumeRes)(nil), // 230: modelarts.VolumeRes - (*EndpointsReq)(nil), // 231: modelarts.EndpointsReq - (*VolumeReq)(nil), // 232: modelarts.VolumeReq - (*CustomHooks)(nil), // 233: modelarts.CustomHooks - (*ContainerHooks)(nil), // 234: modelarts.ContainerHooks - (*Config)(nil), // 235: modelarts.Config - (*LeaseReq)(nil), // 236: modelarts.LeaseReq - (*GetVisualizationJobReq)(nil), // 237: modelarts.GetVisualizationJobReq - (*GetVisualizationJobResp)(nil), // 238: modelarts.GetVisualizationJobResp - (*Jobs)(nil), // 239: modelarts.Jobs - (*GetVisualizationJobParam)(nil), // 240: modelarts.GetVisualizationJobParam - (*CreateVisualizationJobReq)(nil), // 241: modelarts.CreateVisualizationJobReq - (*CreateVisualizationJobResp)(nil), // 242: modelarts.CreateVisualizationJobResp - (*CreateVisualizationJobParam)(nil), // 243: modelarts.CreateVisualizationJobParam - (*Flavor)(nil), // 244: modelarts.Flavor - (*Schedule)(nil), // 245: modelarts.Schedule - nil, // 246: modelarts.JobMetadata.AnnotationsEntry - nil, // 247: modelarts.FlavorResponse.AttributesEntry - nil, // 248: modelarts.attributesAlRq.AttributesEntry - nil, // 249: modelarts.TagsAlRp.TagsEntry - nil, // 250: modelarts.SearchProp.PropsEntry - nil, // 251: modelarts.ShowModelResp.LabelsMapEntry - nil, // 252: modelarts.ServiceConfig.EnvsEntry - nil, // 253: modelarts.ShowServiceResp200.AdditionalPropertiesEntry - nil, // 254: modelarts.QueryServiceConfig.EnvsEntry - nil, // 255: modelarts.QueryServiceConfig.AdditionalPropertiesEntry - nil, // 256: modelarts.ListServices.AdditionalPropertiesEntry + (*ImportTaskDataResp)(nil), // 15: modelarts.ImportTaskDataResp + (*ListImportTasksReq)(nil), // 16: modelarts.ListImportTasksReq + (*ListImportTasksResp)(nil), // 17: modelarts.ListImportTasksResp + (*ImportTasks)(nil), // 18: modelarts.Import_tasks + (*AnnotationFormatConfig)(nil), // 19: modelarts.Annotation_format_config + (*DataSource)(nil), // 20: modelarts.Data_source + (*SchemaMaps)(nil), // 21: modelarts.Schema_maps + (*SourceInfo)(nil), // 22: modelarts.Source_info + (*FileStatistics)(nil), // 23: modelarts.File_statistics + (*ListTrainingJobsreq)(nil), // 24: modelarts.ListTrainingJobsreq + (*ListTrainingJobsresp)(nil), // 25: modelarts.ListTrainingJobsresp + (*JobResponse)(nil), // 26: modelarts.JobResponse + (*JobMetadata)(nil), // 27: modelarts.JobMetadata + (*Status)(nil), // 28: modelarts.Status + (*JobAlgorithmResponse)(nil), // 29: modelarts.JobAlgorithmResponse + (*TaskResponse)(nil), // 30: modelarts.TaskResponse + (*FlavorResponse)(nil), // 31: modelarts.FlavorResponse + (*Billing)(nil), // 32: modelarts.billing + (*FlavorInfo)(nil), // 33: modelarts.flavor_info + (*Cpu)(nil), // 34: modelarts.cpu + (*Npu)(nil), // 35: modelarts.npu + (*Gpu)(nil), // 36: modelarts.gpu + (*Memory)(nil), // 37: modelarts.memory + (*Disk)(nil), // 38: modelarts.disk + (*Algorithm)(nil), // 39: modelarts.algorithm + (*Inputs)(nil), // 40: modelarts.inputs + (*Outputs)(nil), // 41: modelarts.outputs + (*Input)(nil), // 42: modelarts.Input + (*InputDataInfo)(nil), // 43: modelarts.InputDataInfo + (*Dataset)(nil), // 44: modelarts.dataset + (*Obs)(nil), // 45: modelarts.obs + (*RemoteConstraint)(nil), // 46: modelarts.remote_constraint + (*Output)(nil), // 47: modelarts.Output + (*Remote)(nil), // 48: modelarts.remote + (*Obs1)(nil), // 49: modelarts.obs1 + (*Engine)(nil), // 50: modelarts.engine + (*Policies)(nil), // 51: modelarts.policies + (*AutoSearch)(nil), // 52: modelarts.auto_search + (*RewardAttrs)(nil), // 53: modelarts.reward_attrs + (*SearchParams)(nil), // 54: modelarts.search_params + (*AlgoConfigs)(nil), // 55: modelarts.algo_configs + (*AutoSearchAlgoConfigParameter)(nil), // 56: modelarts.AutoSearchAlgoConfigParameter + (*Parameter)(nil), // 57: modelarts.Parameter + (*I18NDescription)(nil), // 58: modelarts.i18n_description + (*Constraint)(nil), // 59: modelarts.constraint + (*Spec)(nil), // 60: modelarts.Spec + (*Resource)(nil), // 61: modelarts.resource + (*FlavorDetail)(nil), // 62: modelarts.flavor_detail + (*Volumes)(nil), // 63: modelarts.volumes + (*Nfs)(nil), // 64: modelarts.nfs + (*LogExportPath)(nil), // 65: modelarts.log_export_path + (*TaskStatuses)(nil), // 66: modelarts.Task_statuses + (*CreateTrainingJobReq)(nil), // 67: modelarts.CreateTrainingJobReq + (*CreateTrainingJobResp)(nil), // 68: modelarts.CreateTrainingJobResp + (*MetadataS)(nil), // 69: modelarts.MetadataS + (*EngineCreateTraining)(nil), // 70: modelarts.EngineCreateTraining + (*ConstraintCreateTraining)(nil), // 71: modelarts.ConstraintCreateTraining + (*ParametersTrainJob)(nil), // 72: modelarts.ParametersTrainJob + (*PoliciesCreateTraining)(nil), // 73: modelarts.PoliciesCreateTraining + (*Algorithms)(nil), // 74: modelarts.Algorithms + (*ResourceCreateTraining)(nil), // 75: modelarts.ResourceCreateTraining + (*LogExportPathCreateTraining)(nil), // 76: modelarts.LogExportPathCreateTraining + (*Specs)(nil), // 77: modelarts.Specs + (*CreateTrainingJobConfigReq)(nil), // 78: modelarts.CreateTrainingJobConfigReq + (*ParameterS)(nil), // 79: modelarts.ParameterS + (*CreateTrainingJobConfigResp)(nil), // 80: modelarts.CreateTrainingJobConfigResp + (*DeleteTrainingJobReq)(nil), // 81: modelarts.DeleteTrainingJobReq + (*DeleteTrainingJobResp)(nil), // 82: modelarts.DeleteTrainingJobResp + (*DeleteTrainingJobConfigReq)(nil), // 83: modelarts.DeleteTrainingJobConfigReq + (*DeleteTrainingJobConfigResp)(nil), // 84: modelarts.DeleteTrainingJobConfigResp + (*ListTrainingJobConfigReq)(nil), // 85: modelarts.ListTrainingJobConfigReq + (*ListTrainingJobConfigResp)(nil), // 86: modelarts.ListTrainingJobConfigResp + (*ConfigResponse)(nil), // 87: modelarts.ConfigResponse + (*CreateAlgorithmReq)(nil), // 88: modelarts.CreateAlgorithmReq + (*ResourceRequirements)(nil), // 89: modelarts.ResourceRequirements + (*AdvancedConfigAl)(nil), // 90: modelarts.AdvancedConfigAl + (*MetadataAlRq)(nil), // 91: modelarts.MetadataAlRq + (*ConstraintAlRq)(nil), // 92: modelarts.ConstraintAlRq + (*ParametersAlRq)(nil), // 93: modelarts.ParametersAlRq + (*InputsAlRq)(nil), // 94: modelarts.InputsAlRq + (*RemoteConstraints)(nil), // 95: modelarts.remote_constraints + (*AttributesAlRq)(nil), // 96: modelarts.attributesAlRq + (*OutputsAl)(nil), // 97: modelarts.OutputsAl + (*EngineAlRq)(nil), // 98: modelarts.EngineAlRq + (*Children)(nil), // 99: modelarts.Children + (*CodeTree)(nil), // 100: modelarts.CodeTree + (*JobConfigAl)(nil), // 101: modelarts.JobConfigAl + (*CreateAlgorithmResp)(nil), // 102: modelarts.CreateAlgorithmResp + (*ShareInfo)(nil), // 103: modelarts.ShareInfo + (*MetadataCrAl)(nil), // 104: modelarts.MetadataCrAl + (*MetadataAlRp)(nil), // 105: modelarts.MetadataAlRp + (*TagsAlRp)(nil), // 106: modelarts.TagsAlRp + (*ShareInfoAlRp)(nil), // 107: modelarts.ShareInfoAlRp + (*ConstraintAlRp)(nil), // 108: modelarts.ConstraintAlRp + (*ParametersAlRp)(nil), // 109: modelarts.ParametersAlRp + (*InputsAlRp)(nil), // 110: modelarts.InputsAlRp + (*OutputsAlRp)(nil), // 111: modelarts.OutputsAlRp + (*ImageInfo)(nil), // 112: modelarts.ImageInfo + (*EngineAlRp)(nil), // 113: modelarts.EngineAlRp + (*ListAlgorithmsReq)(nil), // 114: modelarts.ListAlgorithmsReq + (*ListAlgorithmsResp)(nil), // 115: modelarts.ListAlgorithmsResp + (*AlgorithmResponse)(nil), // 116: modelarts.AlgorithmResponse + (*JobConfigAlRq)(nil), // 117: modelarts.JobConfigAlRq + (*DeleteAlgorithmsReq)(nil), // 118: modelarts.DeleteAlgorithmsReq + (*DeleteAlgorithmsResp)(nil), // 119: modelarts.DeleteAlgorithmsResp + (*ShowAlgorithmByUuidReq)(nil), // 120: modelarts.ShowAlgorithmByUuidReq + (*ShowAlgorithmByUuidResp)(nil), // 121: modelarts.ShowAlgorithmByUuidResp + (*ExportTaskReq)(nil), // 122: modelarts.ExportTaskReq + (*ExportTaskResp)(nil), // 123: modelarts.ExportTaskResp + (*ExportTaskDataResp200)(nil), // 124: modelarts.ExportTaskDataResp200 + (*ExportTaskDataResp400)(nil), // 125: modelarts.ExportTaskDataResp400 + (*ExportParams)(nil), // 126: modelarts.ExportParams + (*SearchCondition)(nil), // 127: modelarts.SearchCondition + (*SearchLabels)(nil), // 128: modelarts.SearchLabels + (*Weigou)(nil), // 129: modelarts.weigou + (*SearchLabel)(nil), // 130: modelarts.SearchLabel + (*SearchProp)(nil), // 131: modelarts.SearchProp + (*GetExportTasksOfDatasetReq)(nil), // 132: modelarts.GetExportTasksOfDatasetReq + (*GetExportTasksOfDatasetResp)(nil), // 133: modelarts.GetExportTasksOfDatasetResp + (*ExportTaskStatus)(nil), // 134: modelarts.ExportTaskStatus + (*GetExportTaskStatusOfDatasetReq)(nil), // 135: modelarts.GetExportTaskStatusOfDatasetReq + (*GetExportTaskStatusOfDatasetResp)(nil), // 136: modelarts.GetExportTaskStatusOfDatasetResp + (*CreateProcessorTaskReq)(nil), // 137: modelarts.CreateProcessorTaskReq + (*CreateProcessorTaskResp)(nil), // 138: modelarts.CreateProcessorTaskResp + (*ProcessorDataSource)(nil), // 139: modelarts.ProcessorDataSource + (*TemplateParam)(nil), // 140: modelarts.TemplateParam + (*WorkPath)(nil), // 141: modelarts.WorkPath + (*OperatorParam)(nil), // 142: modelarts.OperatorParam + (*DescribeProcessorTaskReq)(nil), // 143: modelarts.DescribeProcessorTaskReq + (*DescribeProcessorTaskResp)(nil), // 144: modelarts.DescribeProcessorTaskResp + (*CreateModelReq)(nil), // 145: modelarts.CreateModelReq + (*CreateModelResp)(nil), // 146: modelarts.CreateModelResp + (*CreateModelRequestInferParams)(nil), // 147: modelarts.CreateModelRequestInferParams + (*CreateModelRequestModelApis)(nil), // 148: modelarts.CreateModelRequestModelApis + (*ModelInOutputParams)(nil), // 149: modelarts.ModelInOutputParams + (*CreateModelRequestTemplateInput)(nil), // 150: modelarts.CreateModelRequestTemplateInput + (*Template)(nil), // 151: modelarts.Template + (*GuideDoc)(nil), // 152: modelarts.GuideDoc + (*ModelDependencies)(nil), // 153: modelarts.ModelDependencies + (*Packages)(nil), // 154: modelarts.Packages + (*DeleteModelReq)(nil), // 155: modelarts.DeleteModelReq + (*DeleteModelResp)(nil), // 156: modelarts.DeleteModelResp + (*DeleteModelResponseFailedList)(nil), // 157: modelarts.DeleteModelResponseFailedList + (*ListModelReq)(nil), // 158: modelarts.ListModelReq + (*ListModelResp)(nil), // 159: modelarts.ListModelResp + (*ModelListItem)(nil), // 160: modelarts.ModelListItem + (*ModelSpecification)(nil), // 161: modelarts.ModelSpecification + (*ShowModelReq)(nil), // 162: modelarts.ShowModelReq + (*ShowModelResp)(nil), // 163: modelarts.ShowModelResp + (*ModelHealth)(nil), // 164: modelarts.ModelHealth + (*ModelParamsInfo)(nil), // 165: modelarts.ModelParamsInfo + (*CreateServiceReq)(nil), // 166: modelarts.CreateServiceReq + (*CreateServiceResp)(nil), // 167: modelarts.CreateServiceResp + (*CreateServiceResp200)(nil), // 168: modelarts.CreateServiceResp200 + (*CreateServiceResp400)(nil), // 169: modelarts.CreateServiceResp400 + (*Scheduler)(nil), // 170: modelarts.Scheduler + (*ServiceConfig)(nil), // 171: modelarts.ServiceConfig + (*CustomSpec)(nil), // 172: modelarts.CustomSpec + (*DeleteServiceReq)(nil), // 173: modelarts.DeleteServiceReq + (*DeleteServiceResp)(nil), // 174: modelarts.DeleteServiceResp + (*DeleteServiceResp200)(nil), // 175: modelarts.DeleteServiceResp200 + (*DeleteServiceResp400)(nil), // 176: modelarts.DeleteServiceResp400 + (*ShowServiceReq)(nil), // 177: modelarts.ShowServiceReq + (*ShowServiceResp)(nil), // 178: modelarts.ShowServiceResp + (*ShowServiceResp200)(nil), // 179: modelarts.ShowServiceResp200 + (*ShowServiceResp400)(nil), // 180: modelarts.ShowServiceResp400 + (*QueryServiceConfig)(nil), // 181: modelarts.QueryServiceConfig + (*ListServicesReq)(nil), // 182: modelarts.ListServicesReq + (*ListServicesResp)(nil), // 183: modelarts.ListServicesResp + (*ListServicesResp200)(nil), // 184: modelarts.ListServicesResp200 + (*ListServicesResp400)(nil), // 185: modelarts.ListServicesResp400 + (*ListServices)(nil), // 186: modelarts.ListServices + (*ListClustersReq)(nil), // 187: modelarts.ListClustersReq + (*ListClustersResp)(nil), // 188: modelarts.ListClustersResp + (*ListClustersResp200)(nil), // 189: modelarts.ListClustersResp200 + (*ListClustersResp400)(nil), // 190: modelarts.ListClustersResp400 + (*Cluster)(nil), // 191: modelarts.Cluster + (*ClusterNode)(nil), // 192: modelarts.ClusterNode + (*CreateDataSetReq)(nil), // 193: modelarts.CreateDataSetReq + (*CreateDataSetResq)(nil), // 194: modelarts.CreateDataSetResq + (*DeleteDataSetReq)(nil), // 195: modelarts.DeleteDataSetReq + (*DeleteDataSetResq)(nil), // 196: modelarts.DeleteDataSetResq + (*ListNotebookReq)(nil), // 197: modelarts.ListNotebookReq + (*ListNotebookResp)(nil), // 198: modelarts.ListNotebookResp + (*ListNotebookParam)(nil), // 199: modelarts.ListNotebookParam + (*CreateNotebookReq)(nil), // 200: modelarts.CreateNotebookReq + (*CreateNotebookResp)(nil), // 201: modelarts.CreateNotebookResp + (*CreateNotebookParam)(nil), // 202: modelarts.CreateNotebookParam + (*StartNotebookReq)(nil), // 203: modelarts.StartNotebookReq + (*StartNotebookResp)(nil), // 204: modelarts.StartNotebookResp + (*StartNotebookParam)(nil), // 205: modelarts.StartNotebookParam + (*StopNotebookReq)(nil), // 206: modelarts.StopNotebookReq + (*StopNotebookResp)(nil), // 207: modelarts.StopNotebookResp + (*GetNotebookStorageReq)(nil), // 208: modelarts.GetNotebookStorageReq + (*GetNotebookStorageResp)(nil), // 209: modelarts.GetNotebookStorageResp + (*MountNotebookStorageReq)(nil), // 210: modelarts.MountNotebookStorageReq + (*MountNotebookStorageResp)(nil), // 211: modelarts.MountNotebookStorageResp + (*MountNotebookStorageParam)(nil), // 212: modelarts.MountNotebookStorageParam + (*DataVolumesRes)(nil), // 213: modelarts.DataVolumesRes + (*NotebookResp)(nil), // 214: modelarts.NotebookResp + (*JobProgress)(nil), // 215: modelarts.JobProgress + (*EndpointsRes)(nil), // 216: modelarts.EndpointsRes + (*Image)(nil), // 217: modelarts.Image + (*Lease)(nil), // 218: modelarts.Lease + (*Pool)(nil), // 219: modelarts.Pool + (*VolumeRes)(nil), // 220: modelarts.VolumeRes + (*EndpointsReq)(nil), // 221: modelarts.EndpointsReq + (*VolumeReq)(nil), // 222: modelarts.VolumeReq + (*CustomHooks)(nil), // 223: modelarts.CustomHooks + (*ContainerHooks)(nil), // 224: modelarts.ContainerHooks + (*Config)(nil), // 225: modelarts.Config + (*LeaseReq)(nil), // 226: modelarts.LeaseReq + (*GetVisualizationJobReq)(nil), // 227: modelarts.GetVisualizationJobReq + (*GetVisualizationJobResp)(nil), // 228: modelarts.GetVisualizationJobResp + (*Jobs)(nil), // 229: modelarts.Jobs + (*GetVisualizationJobParam)(nil), // 230: modelarts.GetVisualizationJobParam + (*CreateVisualizationJobReq)(nil), // 231: modelarts.CreateVisualizationJobReq + (*CreateVisualizationJobResp)(nil), // 232: modelarts.CreateVisualizationJobResp + (*CreateVisualizationJobParam)(nil), // 233: modelarts.CreateVisualizationJobParam + (*Flavor)(nil), // 234: modelarts.Flavor + (*Schedule)(nil), // 235: modelarts.Schedule + nil, // 236: modelarts.JobMetadata.AnnotationsEntry + nil, // 237: modelarts.FlavorResponse.AttributesEntry + nil, // 238: modelarts.attributesAlRq.AttributesEntry + nil, // 239: modelarts.TagsAlRp.TagsEntry + nil, // 240: modelarts.SearchProp.PropsEntry + nil, // 241: modelarts.ShowModelResp.LabelsMapEntry + nil, // 242: modelarts.ServiceConfig.EnvsEntry + nil, // 243: modelarts.ShowServiceResp200.AdditionalPropertiesEntry + nil, // 244: modelarts.QueryServiceConfig.EnvsEntry + nil, // 245: modelarts.QueryServiceConfig.AdditionalPropertiesEntry + nil, // 246: modelarts.ListServices.AdditionalPropertiesEntry } var file_pcm_modelarts_proto_depIdxs = []int32{ 1, // 0: modelarts.auth.identity:type_name -> modelarts.identity @@ -22772,303 +22076,293 @@ var file_pcm_modelarts_proto_depIdxs = []int32{ 6, // 5: modelarts.password.user:type_name -> modelarts.user 7, // 6: modelarts.user.domain:type_name -> modelarts.domain 0, // 7: modelarts.TokenReq.auth:type_name -> modelarts.auth - 12, // 8: modelarts.DatasetResp.datasets:type_name -> modelarts.Datasets - 13, // 9: modelarts.Datasets.data_sources:type_name -> modelarts.DataSources - 15, // 10: modelarts.ImportTaskDataResp.resp200:type_name -> modelarts.ImportTaskDataResp200 - 16, // 11: modelarts.ImportTaskDataResp.resp400:type_name -> modelarts.ImportTaskDataResp400 - 20, // 12: modelarts.ListImportTasksResp.resp200:type_name -> modelarts.ListImportTasksResp200 - 21, // 13: modelarts.ListImportTasksResp.resp400:type_name -> modelarts.ListImportTasksResp400 - 22, // 14: modelarts.ListImportTasksResp200.import_tasks:type_name -> modelarts.Import_tasks - 24, // 15: modelarts.Import_tasks.data_source:type_name -> modelarts.Data_source - 27, // 16: modelarts.Import_tasks.file_statistics:type_name -> modelarts.File_statistics - 23, // 17: modelarts.Import_tasks.annotation_format_config:type_name -> modelarts.Annotation_format_config - 25, // 18: modelarts.Data_source.schema_maps:type_name -> modelarts.Schema_maps - 26, // 19: modelarts.Data_source.source_info:type_name -> modelarts.Source_info - 31, // 20: modelarts.ListTrainingJobsresp.resp200:type_name -> modelarts.ListTrainingJobsresp200 - 30, // 21: modelarts.ListTrainingJobsresp.resp400:type_name -> modelarts.ListTrainingJobsresp400 - 32, // 22: modelarts.ListTrainingJobsresp200.items:type_name -> modelarts.JobResponse - 33, // 23: modelarts.JobResponse.metadata:type_name -> modelarts.JobMetadata - 34, // 24: modelarts.JobResponse.status:type_name -> modelarts.Status - 35, // 25: modelarts.JobResponse.algorithm:type_name -> modelarts.JobAlgorithmResponse - 36, // 26: modelarts.JobResponse.tasks:type_name -> modelarts.TaskResponse - 66, // 27: modelarts.JobResponse.spec:type_name -> modelarts.Spec - 246, // 28: modelarts.JobMetadata.annotations:type_name -> modelarts.JobMetadata.AnnotationsEntry - 72, // 29: modelarts.Status.task_statuses:type_name -> modelarts.Task_statuses - 63, // 30: modelarts.JobAlgorithmResponse.parameters:type_name -> modelarts.Parameter - 57, // 31: modelarts.JobAlgorithmResponse.policies:type_name -> modelarts.policies - 48, // 32: modelarts.JobAlgorithmResponse.inputs:type_name -> modelarts.Input - 53, // 33: modelarts.JobAlgorithmResponse.outputs:type_name -> modelarts.Output - 56, // 34: modelarts.JobAlgorithmResponse.engine:type_name -> modelarts.engine - 45, // 35: modelarts.TaskResponse.algorithm:type_name -> modelarts.algorithm - 37, // 36: modelarts.TaskResponse.task_resource:type_name -> modelarts.FlavorResponse - 38, // 37: modelarts.FlavorResponse.billing:type_name -> modelarts.billing - 39, // 38: modelarts.FlavorResponse.flavor_info:type_name -> modelarts.flavor_info - 247, // 39: modelarts.FlavorResponse.attributes:type_name -> modelarts.FlavorResponse.AttributesEntry - 40, // 40: modelarts.flavor_info.cpu:type_name -> modelarts.cpu - 42, // 41: modelarts.flavor_info.gpu:type_name -> modelarts.gpu - 41, // 42: modelarts.flavor_info.npu:type_name -> modelarts.npu - 43, // 43: modelarts.flavor_info.memory:type_name -> modelarts.memory - 44, // 44: modelarts.flavor_info.disk:type_name -> modelarts.disk - 46, // 45: modelarts.algorithm.inputs:type_name -> modelarts.inputs - 47, // 46: modelarts.algorithm.outputs:type_name -> modelarts.outputs - 56, // 47: modelarts.algorithm.engine:type_name -> modelarts.engine - 54, // 48: modelarts.inputs.remote:type_name -> modelarts.remote - 54, // 49: modelarts.outputs.remote:type_name -> modelarts.remote - 49, // 50: modelarts.Input.remote:type_name -> modelarts.InputDataInfo - 52, // 51: modelarts.Input.remote_constraint:type_name -> modelarts.remote_constraint - 50, // 52: modelarts.InputDataInfo.dataset:type_name -> modelarts.dataset - 51, // 53: modelarts.InputDataInfo.obs:type_name -> modelarts.obs - 54, // 54: modelarts.Output.remote:type_name -> modelarts.remote - 55, // 55: modelarts.remote.obs:type_name -> modelarts.obs1 - 59, // 56: modelarts.auto_search.reward_attrs:type_name -> modelarts.reward_attrs - 60, // 57: modelarts.auto_search.search_params:type_name -> modelarts.search_params - 61, // 58: modelarts.auto_search.algo_configs:type_name -> modelarts.algo_configs - 62, // 59: modelarts.algo_configs.params:type_name -> modelarts.AutoSearchAlgoConfigParameter - 65, // 60: modelarts.Parameter.constraint:type_name -> modelarts.constraint - 64, // 61: modelarts.Parameter.i18n_description:type_name -> modelarts.i18n_description - 67, // 62: modelarts.Spec.resource:type_name -> modelarts.resource - 69, // 63: modelarts.Spec.volumes:type_name -> modelarts.volumes - 71, // 64: modelarts.Spec.log_export_path:type_name -> modelarts.log_export_path - 68, // 65: modelarts.resource.flavor_detail:type_name -> modelarts.flavor_detail - 38, // 66: modelarts.flavor_detail.billing:type_name -> modelarts.billing - 39, // 67: modelarts.flavor_detail.flavor_info:type_name -> modelarts.flavor_info - 70, // 68: modelarts.volumes.nfs:type_name -> modelarts.nfs - 77, // 69: modelarts.CreateTrainingJobReq.metadata:type_name -> modelarts.MetadataS - 82, // 70: modelarts.CreateTrainingJobReq.algorithm:type_name -> modelarts.Algorithms - 85, // 71: modelarts.CreateTrainingJobReq.spec:type_name -> modelarts.Specs - 75, // 72: modelarts.CreateTrainingJobResp.resp201:type_name -> modelarts.CreateTrainingJobResp201 - 76, // 73: modelarts.CreateTrainingJobResp.resp400:type_name -> modelarts.CreateTrainingJobResp400 - 77, // 74: modelarts.CreateTrainingJobResp201.metadata:type_name -> modelarts.MetadataS - 34, // 75: modelarts.CreateTrainingJobResp201.status:type_name -> modelarts.Status - 82, // 76: modelarts.CreateTrainingJobResp201.algorithm:type_name -> modelarts.Algorithms - 66, // 77: modelarts.CreateTrainingJobResp201.spec:type_name -> modelarts.Spec - 79, // 78: modelarts.ParametersTrainJob.constraint:type_name -> modelarts.ConstraintCreateTraining - 78, // 79: modelarts.Algorithms.engine:type_name -> modelarts.EngineCreateTraining - 80, // 80: modelarts.Algorithms.parameters:type_name -> modelarts.ParametersTrainJob - 81, // 81: modelarts.Algorithms.policies:type_name -> modelarts.PoliciesCreateTraining - 83, // 82: modelarts.Specs.resource:type_name -> modelarts.ResourceCreateTraining - 84, // 83: modelarts.Specs.log_export_path:type_name -> modelarts.LogExportPathCreateTraining - 87, // 84: modelarts.CreateTrainingJobConfigReq.parameter:type_name -> modelarts.ParameterS - 95, // 85: modelarts.ListTrainingJobConfigResp.configs:type_name -> modelarts.ConfigResponse - 99, // 86: modelarts.CreateAlgorithmReq.metadata:type_name -> modelarts.MetadataAlRq - 109, // 87: modelarts.CreateAlgorithmReq.job_config:type_name -> modelarts.JobConfigAl - 97, // 88: modelarts.CreateAlgorithmReq.resource_requirements:type_name -> modelarts.ResourceRequirements - 98, // 89: modelarts.CreateAlgorithmReq.advanced_config:type_name -> modelarts.AdvancedConfigAl - 58, // 90: modelarts.AdvancedConfigAl.auto_search:type_name -> modelarts.auto_search - 64, // 91: modelarts.ParametersAlRq.i18n_description:type_name -> modelarts.i18n_description - 100, // 92: modelarts.ParametersAlRq.constraint:type_name -> modelarts.ConstraintAlRq - 103, // 93: modelarts.InputsAlRq.remote_constraints:type_name -> modelarts.remote_constraints - 104, // 94: modelarts.remote_constraints.attributes:type_name -> modelarts.attributesAlRq - 248, // 95: modelarts.attributesAlRq.attributes:type_name -> modelarts.attributesAlRq.AttributesEntry - 107, // 96: modelarts.CodeTree.children:type_name -> modelarts.Children - 101, // 97: modelarts.JobConfigAl.parameters:type_name -> modelarts.ParametersAlRq - 102, // 98: modelarts.JobConfigAl.inputs:type_name -> modelarts.InputsAlRq - 105, // 99: modelarts.JobConfigAl.outputs:type_name -> modelarts.OutputsAl - 106, // 100: modelarts.JobConfigAl.engine:type_name -> modelarts.EngineAlRq - 114, // 101: modelarts.CreateAlgorithmResp201.metadata:type_name -> modelarts.MetadataCrAl - 113, // 102: modelarts.CreateAlgorithmResp201.share_info:type_name -> modelarts.ShareInfo - 109, // 103: modelarts.CreateAlgorithmResp201.job_config:type_name -> modelarts.JobConfigAl - 97, // 104: modelarts.CreateAlgorithmResp201.resource_requirements:type_name -> modelarts.ResourceRequirements - 98, // 105: modelarts.CreateAlgorithmResp201.advanced_config:type_name -> modelarts.AdvancedConfigAl - 110, // 106: modelarts.CreateAlgorithmResp.resp200:type_name -> modelarts.CreateAlgorithmResp201 - 111, // 107: modelarts.CreateAlgorithmResp.resp400:type_name -> modelarts.CreateAlgorithmResp400 - 116, // 108: modelarts.MetadataCrAl.tags:type_name -> modelarts.TagsAlRp - 116, // 109: modelarts.MetadataAlRp.tags:type_name -> modelarts.TagsAlRp - 249, // 110: modelarts.TagsAlRp.tags:type_name -> modelarts.TagsAlRp.TagsEntry - 64, // 111: modelarts.ParametersAlRp.i18n_description:type_name -> modelarts.i18n_description - 118, // 112: modelarts.ParametersAlRp.constraint:type_name -> modelarts.ConstraintAlRp - 122, // 113: modelarts.EngineAlRp.image_info:type_name -> modelarts.ImageInfo - 126, // 114: modelarts.ListAlgorithmsResp.items:type_name -> modelarts.AlgorithmResponse - 115, // 115: modelarts.AlgorithmResponse.metadata:type_name -> modelarts.MetadataAlRp - 127, // 116: modelarts.AlgorithmResponse.job_config:type_name -> modelarts.JobConfigAlRq - 97, // 117: modelarts.AlgorithmResponse.resource_requirements:type_name -> modelarts.ResourceRequirements - 98, // 118: modelarts.AlgorithmResponse.advanced_config:type_name -> modelarts.AdvancedConfigAl - 101, // 119: modelarts.JobConfigAlRq.parameters:type_name -> modelarts.ParametersAlRq - 102, // 120: modelarts.JobConfigAlRq.inputs:type_name -> modelarts.InputsAlRq - 105, // 121: modelarts.JobConfigAlRq.outputs:type_name -> modelarts.OutputsAl - 106, // 122: modelarts.JobConfigAlRq.engine:type_name -> modelarts.EngineAlRq - 99, // 123: modelarts.ShowAlgorithmByUuidResp.metadata:type_name -> modelarts.MetadataAlRq - 127, // 124: modelarts.ShowAlgorithmByUuidResp.job_config:type_name -> modelarts.JobConfigAlRq - 97, // 125: modelarts.ShowAlgorithmByUuidResp.resource_requirements:type_name -> modelarts.ResourceRequirements - 98, // 126: modelarts.ShowAlgorithmByUuidResp.advanced_config:type_name -> modelarts.AdvancedConfigAl - 136, // 127: modelarts.ExportTaskReq.export_params:type_name -> modelarts.ExportParams - 134, // 128: modelarts.ExportTaskResp.resp200:type_name -> modelarts.ExportTaskDataResp200 - 135, // 129: modelarts.ExportTaskResp.resp400:type_name -> modelarts.ExportTaskDataResp400 - 136, // 130: modelarts.ExportTaskDataResp200.export_params:type_name -> modelarts.ExportParams - 137, // 131: modelarts.ExportParams.search_conditions:type_name -> modelarts.SearchCondition - 138, // 132: modelarts.SearchCondition.label_list:type_name -> modelarts.SearchLabels - 141, // 133: modelarts.SearchCondition.metadata:type_name -> modelarts.SearchProp - 140, // 134: modelarts.SearchLabels.labels:type_name -> modelarts.SearchLabel - 250, // 135: modelarts.SearchProp.props:type_name -> modelarts.SearchProp.PropsEntry - 136, // 136: modelarts.GetExportTasksOfDatasetResp.export_params:type_name -> modelarts.ExportParams - 144, // 137: modelarts.GetExportTasksOfDatasetResp.export_tasks:type_name -> modelarts.ExportTaskStatus - 136, // 138: modelarts.ExportTaskStatus.export_params:type_name -> modelarts.ExportParams - 136, // 139: modelarts.GetExportTaskStatusOfDatasetResp.export_params:type_name -> modelarts.ExportParams - 144, // 140: modelarts.GetExportTaskStatusOfDatasetResp.export_tasks:type_name -> modelarts.ExportTaskStatus - 149, // 141: modelarts.CreateProcessorTaskReq.data_source:type_name -> modelarts.ProcessorDataSource - 149, // 142: modelarts.CreateProcessorTaskReq.inputs:type_name -> modelarts.ProcessorDataSource - 150, // 143: modelarts.CreateProcessorTaskReq.template:type_name -> modelarts.TemplateParam - 151, // 144: modelarts.CreateProcessorTaskReq.work_path:type_name -> modelarts.WorkPath - 152, // 145: modelarts.TemplateParam.operator_params:type_name -> modelarts.OperatorParam - 149, // 146: modelarts.DescribeProcessorTaskResp.data_source:type_name -> modelarts.ProcessorDataSource - 149, // 147: modelarts.DescribeProcessorTaskResp.inputs:type_name -> modelarts.ProcessorDataSource - 150, // 148: modelarts.DescribeProcessorTaskResp.template:type_name -> modelarts.TemplateParam - 151, // 149: modelarts.DescribeProcessorTaskResp.work_path:type_name -> modelarts.WorkPath - 162, // 150: modelarts.CreateModelReq.model_docs:type_name -> modelarts.GuideDoc - 161, // 151: modelarts.CreateModelReq.template:type_name -> modelarts.Template - 157, // 152: modelarts.CreateModelReq.output_params:type_name -> modelarts.CreateModelRequestInferParams - 163, // 153: modelarts.CreateModelReq.dependencies:type_name -> modelarts.ModelDependencies - 158, // 154: modelarts.CreateModelReq.apis:type_name -> modelarts.CreateModelRequestModelApis - 157, // 155: modelarts.CreateModelReq.input_params:type_name -> modelarts.CreateModelRequestInferParams - 159, // 156: modelarts.CreateModelRequestModelApis.input_params:type_name -> modelarts.ModelInOutputParams - 159, // 157: modelarts.CreateModelRequestModelApis.output_params:type_name -> modelarts.ModelInOutputParams - 160, // 158: modelarts.Template.template_inputs:type_name -> modelarts.CreateModelRequestTemplateInput - 164, // 159: modelarts.ModelDependencies.packages:type_name -> modelarts.Packages - 167, // 160: modelarts.DeleteModelResp.delete_failed_list:type_name -> modelarts.DeleteModelResponseFailedList - 170, // 161: modelarts.ListModelResp.models:type_name -> modelarts.ModelListItem - 171, // 162: modelarts.ModelListItem.specification:type_name -> modelarts.ModelSpecification - 162, // 163: modelarts.ShowModelResp.model_docs:type_name -> modelarts.GuideDoc - 175, // 164: modelarts.ShowModelResp.output_params:type_name -> modelarts.ModelParamsInfo - 174, // 165: modelarts.ShowModelResp.healthy:type_name -> modelarts.ModelHealth - 163, // 166: modelarts.ShowModelResp.dependencies:type_name -> modelarts.ModelDependencies - 251, // 167: modelarts.ShowModelResp.labels_map:type_name -> modelarts.ShowModelResp.LabelsMapEntry - 171, // 168: modelarts.ShowModelResp.specification:type_name -> modelarts.ModelSpecification - 175, // 169: modelarts.ShowModelResp.input_params:type_name -> modelarts.ModelParamsInfo - 180, // 170: modelarts.CreateServiceReq.schedule:type_name -> modelarts.Scheduler - 181, // 171: modelarts.CreateServiceReq.config:type_name -> modelarts.ServiceConfig - 178, // 172: modelarts.CreateServiceResp.resp200:type_name -> modelarts.CreateServiceResp200 - 179, // 173: modelarts.CreateServiceResp.resp400:type_name -> modelarts.CreateServiceResp400 - 182, // 174: modelarts.ServiceConfig.custom_spec:type_name -> modelarts.CustomSpec - 252, // 175: modelarts.ServiceConfig.envs:type_name -> modelarts.ServiceConfig.EnvsEntry - 185, // 176: modelarts.DeleteServiceResp.resp200:type_name -> modelarts.DeleteServiceResp200 - 186, // 177: modelarts.DeleteServiceResp.resp400:type_name -> modelarts.DeleteServiceResp400 - 189, // 178: modelarts.ShowServiceResp.resp200:type_name -> modelarts.ShowServiceResp200 - 190, // 179: modelarts.ShowServiceResp.resp400:type_name -> modelarts.ShowServiceResp400 - 180, // 180: modelarts.ShowServiceResp200.scheduler:type_name -> modelarts.Scheduler - 253, // 181: modelarts.ShowServiceResp200.additional_properties:type_name -> modelarts.ShowServiceResp200.AdditionalPropertiesEntry - 191, // 182: modelarts.ShowServiceResp200.config:type_name -> modelarts.QueryServiceConfig - 182, // 183: modelarts.QueryServiceConfig.CustomSpec:type_name -> modelarts.CustomSpec - 254, // 184: modelarts.QueryServiceConfig.envs:type_name -> modelarts.QueryServiceConfig.EnvsEntry - 255, // 185: modelarts.QueryServiceConfig.additional_properties:type_name -> modelarts.QueryServiceConfig.AdditionalPropertiesEntry - 194, // 186: modelarts.ListServicesResp.resp200:type_name -> modelarts.ListServicesResp200 - 195, // 187: modelarts.ListServicesResp.resp400:type_name -> modelarts.ListServicesResp400 - 196, // 188: modelarts.ListServicesResp200.services:type_name -> modelarts.ListServices - 180, // 189: modelarts.ListServices.scheduler:type_name -> modelarts.Scheduler - 256, // 190: modelarts.ListServices.additional_properties:type_name -> modelarts.ListServices.AdditionalPropertiesEntry - 199, // 191: modelarts.ListClustersResp.resp200:type_name -> modelarts.ListClustersResp200 - 200, // 192: modelarts.ListClustersResp.resp400:type_name -> modelarts.ListClustersResp400 - 201, // 193: modelarts.ListClustersResp200.clusters:type_name -> modelarts.Cluster - 202, // 194: modelarts.Cluster.nodes:type_name -> modelarts.ClusterNode - 13, // 195: modelarts.CreateDataSetReq.data_sources:type_name -> modelarts.DataSources - 209, // 196: modelarts.ListNotebookReq.param:type_name -> modelarts.ListNotebookParam - 224, // 197: modelarts.ListNotebookResp.data:type_name -> modelarts.NotebookResp - 212, // 198: modelarts.CreateNotebookReq.param:type_name -> modelarts.CreateNotebookParam - 224, // 199: modelarts.CreateNotebookResp.notebookResp:type_name -> modelarts.NotebookResp - 231, // 200: modelarts.CreateNotebookParam.endpoints:type_name -> modelarts.EndpointsReq - 232, // 201: modelarts.CreateNotebookParam.volume:type_name -> modelarts.VolumeReq - 233, // 202: modelarts.CreateNotebookParam.hooks:type_name -> modelarts.CustomHooks - 236, // 203: modelarts.CreateNotebookParam.lease:type_name -> modelarts.LeaseReq - 215, // 204: modelarts.StartNotebookReq.param:type_name -> modelarts.StartNotebookParam - 224, // 205: modelarts.StartNotebookResp.notebookResp:type_name -> modelarts.NotebookResp - 224, // 206: modelarts.StopNotebookResp.notebookResp:type_name -> modelarts.NotebookResp - 223, // 207: modelarts.GetNotebookStorageResp.data:type_name -> modelarts.DataVolumesRes - 222, // 208: modelarts.MountNotebookStorageReq.param:type_name -> modelarts.MountNotebookStorageParam - 225, // 209: modelarts.NotebookResp.action_progress:type_name -> modelarts.JobProgress - 226, // 210: modelarts.NotebookResp.endpoints:type_name -> modelarts.EndpointsRes - 227, // 211: modelarts.NotebookResp.image:type_name -> modelarts.Image - 228, // 212: modelarts.NotebookResp.lease:type_name -> modelarts.Lease - 229, // 213: modelarts.NotebookResp.pool:type_name -> modelarts.Pool - 230, // 214: modelarts.NotebookResp.volume:type_name -> modelarts.VolumeRes - 234, // 215: modelarts.CustomHooks.container_hooks:type_name -> modelarts.ContainerHooks - 235, // 216: modelarts.ContainerHooks.post_start:type_name -> modelarts.Config - 235, // 217: modelarts.ContainerHooks.pre_start:type_name -> modelarts.Config - 240, // 218: modelarts.GetVisualizationJobReq.param:type_name -> modelarts.GetVisualizationJobParam - 239, // 219: modelarts.GetVisualizationJobResp.jobs:type_name -> modelarts.Jobs - 243, // 220: modelarts.CreateVisualizationJobReq.param:type_name -> modelarts.CreateVisualizationJobParam - 244, // 221: modelarts.CreateVisualizationJobParam.flavor:type_name -> modelarts.Flavor - 245, // 222: modelarts.CreateVisualizationJobParam.schedule:type_name -> modelarts.Schedule - 139, // 223: modelarts.SearchProp.PropsEntry.value:type_name -> modelarts.weigou - 8, // 224: modelarts.ModelArts.GetToken:input_type -> modelarts.TokenReq - 10, // 225: modelarts.ModelArts.GetDatasetList:input_type -> modelarts.DatasetReq - 203, // 226: modelarts.ModelArts.CreateDataSet:input_type -> modelarts.CreateDataSetReq - 205, // 227: modelarts.ModelArts.DeleteDataSet:input_type -> modelarts.DeleteDataSetReq - 14, // 228: modelarts.ModelArts.createTask:input_type -> modelarts.ImportTaskDataReq - 18, // 229: modelarts.ModelArts.GetImportTaskList:input_type -> modelarts.ListImportTasksReq - 28, // 230: modelarts.ModelArts.GetListTrainingJobs:input_type -> modelarts.ListTrainingJobsreq - 73, // 231: modelarts.ModelArts.CreateTrainingJob:input_type -> modelarts.CreateTrainingJobReq - 89, // 232: modelarts.ModelArts.DeleteTrainingJob:input_type -> modelarts.DeleteTrainingJobReq - 86, // 233: modelarts.ModelArts.CreateTrainingJobConfig:input_type -> modelarts.CreateTrainingJobConfigReq - 91, // 234: modelarts.ModelArts.DeleteTrainingJobConfig:input_type -> modelarts.DeleteTrainingJobConfigReq - 93, // 235: modelarts.ModelArts.ListTrainingJobConfig:input_type -> modelarts.ListTrainingJobConfigReq - 96, // 236: modelarts.ModelArts.CreateAlgorithm:input_type -> modelarts.CreateAlgorithmReq - 124, // 237: modelarts.ModelArts.ListAlgorithms:input_type -> modelarts.ListAlgorithmsReq - 128, // 238: modelarts.ModelArts.DeleteAlgorithms:input_type -> modelarts.DeleteAlgorithmsReq - 130, // 239: modelarts.ModelArts.ShowAlgorithmByUuid:input_type -> modelarts.ShowAlgorithmByUuidReq - 132, // 240: modelarts.ModelArts.ExportTask:input_type -> modelarts.ExportTaskReq - 142, // 241: modelarts.ModelArts.GetExportTasksOfDataset:input_type -> modelarts.GetExportTasksOfDatasetReq - 145, // 242: modelarts.ModelArts.GetExportTaskStatusOfDataset:input_type -> modelarts.GetExportTaskStatusOfDatasetReq - 147, // 243: modelarts.ModelArts.CreateProcessorTask:input_type -> modelarts.CreateProcessorTaskReq - 153, // 244: modelarts.ModelArts.DescribeProcessorTask:input_type -> modelarts.DescribeProcessorTaskReq - 155, // 245: modelarts.ModelArts.CreateModel:input_type -> modelarts.CreateModelReq - 165, // 246: modelarts.ModelArts.DeleteModel:input_type -> modelarts.DeleteModelReq - 168, // 247: modelarts.ModelArts.ListModels:input_type -> modelarts.ListModelReq - 172, // 248: modelarts.ModelArts.ShowModels:input_type -> modelarts.ShowModelReq - 176, // 249: modelarts.ModelArts.CreateService:input_type -> modelarts.CreateServiceReq - 192, // 250: modelarts.ModelArts.ListServices:input_type -> modelarts.ListServicesReq - 187, // 251: modelarts.ModelArts.ShowService:input_type -> modelarts.ShowServiceReq - 183, // 252: modelarts.ModelArts.DeleteService:input_type -> modelarts.DeleteServiceReq - 197, // 253: modelarts.ModelArts.ListClusters:input_type -> modelarts.ListClustersReq - 207, // 254: modelarts.ModelArts.ListNotebook:input_type -> modelarts.ListNotebookReq - 210, // 255: modelarts.ModelArts.CreateNotebook:input_type -> modelarts.CreateNotebookReq - 213, // 256: modelarts.ModelArts.StartNotebook:input_type -> modelarts.StartNotebookReq - 216, // 257: modelarts.ModelArts.StopNotebook:input_type -> modelarts.StopNotebookReq - 218, // 258: modelarts.ModelArts.GetNotebookStorage:input_type -> modelarts.GetNotebookStorageReq - 220, // 259: modelarts.ModelArts.MountNotebookStorage:input_type -> modelarts.MountNotebookStorageReq - 237, // 260: modelarts.ModelArts.GetVisualizationJob:input_type -> modelarts.GetVisualizationJobReq - 241, // 261: modelarts.ModelArts.CreateVisualizationJob:input_type -> modelarts.CreateVisualizationJobReq - 9, // 262: modelarts.ModelArts.GetToken:output_type -> modelarts.TokenResp - 11, // 263: modelarts.ModelArts.GetDatasetList:output_type -> modelarts.DatasetResp - 204, // 264: modelarts.ModelArts.CreateDataSet:output_type -> modelarts.CreateDataSetResq - 206, // 265: modelarts.ModelArts.DeleteDataSet:output_type -> modelarts.DeleteDataSetResq - 17, // 266: modelarts.ModelArts.createTask:output_type -> modelarts.ImportTaskDataResp - 19, // 267: modelarts.ModelArts.GetImportTaskList:output_type -> modelarts.ListImportTasksResp - 29, // 268: modelarts.ModelArts.GetListTrainingJobs:output_type -> modelarts.ListTrainingJobsresp - 74, // 269: modelarts.ModelArts.CreateTrainingJob:output_type -> modelarts.CreateTrainingJobResp - 90, // 270: modelarts.ModelArts.DeleteTrainingJob:output_type -> modelarts.DeleteTrainingJobResp - 88, // 271: modelarts.ModelArts.CreateTrainingJobConfig:output_type -> modelarts.CreateTrainingJobConfigResp - 92, // 272: modelarts.ModelArts.DeleteTrainingJobConfig:output_type -> modelarts.DeleteTrainingJobConfigResp - 94, // 273: modelarts.ModelArts.ListTrainingJobConfig:output_type -> modelarts.ListTrainingJobConfigResp - 112, // 274: modelarts.ModelArts.CreateAlgorithm:output_type -> modelarts.CreateAlgorithmResp - 125, // 275: modelarts.ModelArts.ListAlgorithms:output_type -> modelarts.ListAlgorithmsResp - 129, // 276: modelarts.ModelArts.DeleteAlgorithms:output_type -> modelarts.DeleteAlgorithmsResp - 131, // 277: modelarts.ModelArts.ShowAlgorithmByUuid:output_type -> modelarts.ShowAlgorithmByUuidResp - 133, // 278: modelarts.ModelArts.ExportTask:output_type -> modelarts.ExportTaskResp - 143, // 279: modelarts.ModelArts.GetExportTasksOfDataset:output_type -> modelarts.GetExportTasksOfDatasetResp - 146, // 280: modelarts.ModelArts.GetExportTaskStatusOfDataset:output_type -> modelarts.GetExportTaskStatusOfDatasetResp - 148, // 281: modelarts.ModelArts.CreateProcessorTask:output_type -> modelarts.CreateProcessorTaskResp - 154, // 282: modelarts.ModelArts.DescribeProcessorTask:output_type -> modelarts.DescribeProcessorTaskResp - 156, // 283: modelarts.ModelArts.CreateModel:output_type -> modelarts.CreateModelResp - 166, // 284: modelarts.ModelArts.DeleteModel:output_type -> modelarts.DeleteModelResp - 169, // 285: modelarts.ModelArts.ListModels:output_type -> modelarts.ListModelResp - 173, // 286: modelarts.ModelArts.ShowModels:output_type -> modelarts.ShowModelResp - 177, // 287: modelarts.ModelArts.CreateService:output_type -> modelarts.CreateServiceResp - 193, // 288: modelarts.ModelArts.ListServices:output_type -> modelarts.ListServicesResp - 188, // 289: modelarts.ModelArts.ShowService:output_type -> modelarts.ShowServiceResp - 184, // 290: modelarts.ModelArts.DeleteService:output_type -> modelarts.DeleteServiceResp - 198, // 291: modelarts.ModelArts.ListClusters:output_type -> modelarts.ListClustersResp - 208, // 292: modelarts.ModelArts.ListNotebook:output_type -> modelarts.ListNotebookResp - 211, // 293: modelarts.ModelArts.CreateNotebook:output_type -> modelarts.CreateNotebookResp - 214, // 294: modelarts.ModelArts.StartNotebook:output_type -> modelarts.StartNotebookResp - 217, // 295: modelarts.ModelArts.StopNotebook:output_type -> modelarts.StopNotebookResp - 219, // 296: modelarts.ModelArts.GetNotebookStorage:output_type -> modelarts.GetNotebookStorageResp - 221, // 297: modelarts.ModelArts.MountNotebookStorage:output_type -> modelarts.MountNotebookStorageResp - 238, // 298: modelarts.ModelArts.GetVisualizationJob:output_type -> modelarts.GetVisualizationJobResp - 242, // 299: modelarts.ModelArts.CreateVisualizationJob:output_type -> modelarts.CreateVisualizationJobResp - 262, // [262:300] is the sub-list for method output_type - 224, // [224:262] is the sub-list for method input_type - 224, // [224:224] is the sub-list for extension type_name - 224, // [224:224] is the sub-list for extension extendee - 0, // [0:224] is the sub-list for field type_name + 12, // 8: modelarts.DataSetResp.dataSets:type_name -> modelarts.DataSets + 13, // 9: modelarts.DataSets.data_sources:type_name -> modelarts.DataSources + 18, // 10: modelarts.ListImportTasksResp.import_tasks:type_name -> modelarts.Import_tasks + 20, // 11: modelarts.Import_tasks.data_source:type_name -> modelarts.Data_source + 23, // 12: modelarts.Import_tasks.file_statistics:type_name -> modelarts.File_statistics + 19, // 13: modelarts.Import_tasks.annotation_format_config:type_name -> modelarts.Annotation_format_config + 21, // 14: modelarts.Data_source.schema_maps:type_name -> modelarts.Schema_maps + 22, // 15: modelarts.Data_source.source_info:type_name -> modelarts.Source_info + 26, // 16: modelarts.ListTrainingJobsresp.items:type_name -> modelarts.JobResponse + 27, // 17: modelarts.JobResponse.metadata:type_name -> modelarts.JobMetadata + 28, // 18: modelarts.JobResponse.status:type_name -> modelarts.Status + 29, // 19: modelarts.JobResponse.algorithm:type_name -> modelarts.JobAlgorithmResponse + 30, // 20: modelarts.JobResponse.tasks:type_name -> modelarts.TaskResponse + 60, // 21: modelarts.JobResponse.spec:type_name -> modelarts.Spec + 236, // 22: modelarts.JobMetadata.annotations:type_name -> modelarts.JobMetadata.AnnotationsEntry + 66, // 23: modelarts.Status.task_statuses:type_name -> modelarts.Task_statuses + 57, // 24: modelarts.JobAlgorithmResponse.parameters:type_name -> modelarts.Parameter + 51, // 25: modelarts.JobAlgorithmResponse.policies:type_name -> modelarts.policies + 42, // 26: modelarts.JobAlgorithmResponse.inputs:type_name -> modelarts.Input + 47, // 27: modelarts.JobAlgorithmResponse.outputs:type_name -> modelarts.Output + 50, // 28: modelarts.JobAlgorithmResponse.engine:type_name -> modelarts.engine + 39, // 29: modelarts.TaskResponse.algorithm:type_name -> modelarts.algorithm + 31, // 30: modelarts.TaskResponse.task_resource:type_name -> modelarts.FlavorResponse + 32, // 31: modelarts.FlavorResponse.billing:type_name -> modelarts.billing + 33, // 32: modelarts.FlavorResponse.flavor_info:type_name -> modelarts.flavor_info + 237, // 33: modelarts.FlavorResponse.attributes:type_name -> modelarts.FlavorResponse.AttributesEntry + 34, // 34: modelarts.flavor_info.cpu:type_name -> modelarts.cpu + 36, // 35: modelarts.flavor_info.gpu:type_name -> modelarts.gpu + 35, // 36: modelarts.flavor_info.npu:type_name -> modelarts.npu + 37, // 37: modelarts.flavor_info.memory:type_name -> modelarts.memory + 38, // 38: modelarts.flavor_info.disk:type_name -> modelarts.disk + 40, // 39: modelarts.algorithm.inputs:type_name -> modelarts.inputs + 41, // 40: modelarts.algorithm.outputs:type_name -> modelarts.outputs + 50, // 41: modelarts.algorithm.engine:type_name -> modelarts.engine + 48, // 42: modelarts.inputs.remote:type_name -> modelarts.remote + 48, // 43: modelarts.outputs.remote:type_name -> modelarts.remote + 43, // 44: modelarts.Input.remote:type_name -> modelarts.InputDataInfo + 46, // 45: modelarts.Input.remote_constraint:type_name -> modelarts.remote_constraint + 44, // 46: modelarts.InputDataInfo.dataset:type_name -> modelarts.dataset + 45, // 47: modelarts.InputDataInfo.obs:type_name -> modelarts.obs + 48, // 48: modelarts.Output.remote:type_name -> modelarts.remote + 49, // 49: modelarts.remote.obs:type_name -> modelarts.obs1 + 53, // 50: modelarts.auto_search.reward_attrs:type_name -> modelarts.reward_attrs + 54, // 51: modelarts.auto_search.search_params:type_name -> modelarts.search_params + 55, // 52: modelarts.auto_search.algo_configs:type_name -> modelarts.algo_configs + 56, // 53: modelarts.algo_configs.params:type_name -> modelarts.AutoSearchAlgoConfigParameter + 59, // 54: modelarts.Parameter.constraint:type_name -> modelarts.constraint + 58, // 55: modelarts.Parameter.i18n_description:type_name -> modelarts.i18n_description + 61, // 56: modelarts.Spec.resource:type_name -> modelarts.resource + 63, // 57: modelarts.Spec.volumes:type_name -> modelarts.volumes + 65, // 58: modelarts.Spec.log_export_path:type_name -> modelarts.log_export_path + 62, // 59: modelarts.resource.flavor_detail:type_name -> modelarts.flavor_detail + 32, // 60: modelarts.flavor_detail.billing:type_name -> modelarts.billing + 33, // 61: modelarts.flavor_detail.flavor_info:type_name -> modelarts.flavor_info + 64, // 62: modelarts.volumes.nfs:type_name -> modelarts.nfs + 69, // 63: modelarts.CreateTrainingJobReq.metadata:type_name -> modelarts.MetadataS + 74, // 64: modelarts.CreateTrainingJobReq.algorithm:type_name -> modelarts.Algorithms + 77, // 65: modelarts.CreateTrainingJobReq.spec:type_name -> modelarts.Specs + 69, // 66: modelarts.CreateTrainingJobResp.metadata:type_name -> modelarts.MetadataS + 28, // 67: modelarts.CreateTrainingJobResp.status:type_name -> modelarts.Status + 74, // 68: modelarts.CreateTrainingJobResp.algorithm:type_name -> modelarts.Algorithms + 60, // 69: modelarts.CreateTrainingJobResp.spec:type_name -> modelarts.Spec + 71, // 70: modelarts.ParametersTrainJob.constraint:type_name -> modelarts.ConstraintCreateTraining + 70, // 71: modelarts.Algorithms.engine:type_name -> modelarts.EngineCreateTraining + 72, // 72: modelarts.Algorithms.parameters:type_name -> modelarts.ParametersTrainJob + 73, // 73: modelarts.Algorithms.policies:type_name -> modelarts.PoliciesCreateTraining + 75, // 74: modelarts.Specs.resource:type_name -> modelarts.ResourceCreateTraining + 76, // 75: modelarts.Specs.log_export_path:type_name -> modelarts.LogExportPathCreateTraining + 79, // 76: modelarts.CreateTrainingJobConfigReq.parameter:type_name -> modelarts.ParameterS + 87, // 77: modelarts.ListTrainingJobConfigResp.configs:type_name -> modelarts.ConfigResponse + 91, // 78: modelarts.CreateAlgorithmReq.metadata:type_name -> modelarts.MetadataAlRq + 101, // 79: modelarts.CreateAlgorithmReq.job_config:type_name -> modelarts.JobConfigAl + 89, // 80: modelarts.CreateAlgorithmReq.resource_requirements:type_name -> modelarts.ResourceRequirements + 90, // 81: modelarts.CreateAlgorithmReq.advanced_config:type_name -> modelarts.AdvancedConfigAl + 52, // 82: modelarts.AdvancedConfigAl.auto_search:type_name -> modelarts.auto_search + 58, // 83: modelarts.ParametersAlRq.i18n_description:type_name -> modelarts.i18n_description + 92, // 84: modelarts.ParametersAlRq.constraint:type_name -> modelarts.ConstraintAlRq + 95, // 85: modelarts.InputsAlRq.remote_constraints:type_name -> modelarts.remote_constraints + 96, // 86: modelarts.remote_constraints.attributes:type_name -> modelarts.attributesAlRq + 238, // 87: modelarts.attributesAlRq.attributes:type_name -> modelarts.attributesAlRq.AttributesEntry + 99, // 88: modelarts.CodeTree.children:type_name -> modelarts.Children + 93, // 89: modelarts.JobConfigAl.parameters:type_name -> modelarts.ParametersAlRq + 94, // 90: modelarts.JobConfigAl.inputs:type_name -> modelarts.InputsAlRq + 97, // 91: modelarts.JobConfigAl.outputs:type_name -> modelarts.OutputsAl + 98, // 92: modelarts.JobConfigAl.engine:type_name -> modelarts.EngineAlRq + 104, // 93: modelarts.CreateAlgorithmResp.metadata:type_name -> modelarts.MetadataCrAl + 103, // 94: modelarts.CreateAlgorithmResp.share_info:type_name -> modelarts.ShareInfo + 101, // 95: modelarts.CreateAlgorithmResp.job_config:type_name -> modelarts.JobConfigAl + 89, // 96: modelarts.CreateAlgorithmResp.resource_requirements:type_name -> modelarts.ResourceRequirements + 90, // 97: modelarts.CreateAlgorithmResp.advanced_config:type_name -> modelarts.AdvancedConfigAl + 106, // 98: modelarts.MetadataCrAl.tags:type_name -> modelarts.TagsAlRp + 106, // 99: modelarts.MetadataAlRp.tags:type_name -> modelarts.TagsAlRp + 239, // 100: modelarts.TagsAlRp.tags:type_name -> modelarts.TagsAlRp.TagsEntry + 58, // 101: modelarts.ParametersAlRp.i18n_description:type_name -> modelarts.i18n_description + 108, // 102: modelarts.ParametersAlRp.constraint:type_name -> modelarts.ConstraintAlRp + 112, // 103: modelarts.EngineAlRp.image_info:type_name -> modelarts.ImageInfo + 116, // 104: modelarts.ListAlgorithmsResp.items:type_name -> modelarts.AlgorithmResponse + 105, // 105: modelarts.AlgorithmResponse.metadata:type_name -> modelarts.MetadataAlRp + 117, // 106: modelarts.AlgorithmResponse.job_config:type_name -> modelarts.JobConfigAlRq + 89, // 107: modelarts.AlgorithmResponse.resource_requirements:type_name -> modelarts.ResourceRequirements + 90, // 108: modelarts.AlgorithmResponse.advanced_config:type_name -> modelarts.AdvancedConfigAl + 93, // 109: modelarts.JobConfigAlRq.parameters:type_name -> modelarts.ParametersAlRq + 94, // 110: modelarts.JobConfigAlRq.inputs:type_name -> modelarts.InputsAlRq + 97, // 111: modelarts.JobConfigAlRq.outputs:type_name -> modelarts.OutputsAl + 98, // 112: modelarts.JobConfigAlRq.engine:type_name -> modelarts.EngineAlRq + 91, // 113: modelarts.ShowAlgorithmByUuidResp.metadata:type_name -> modelarts.MetadataAlRq + 117, // 114: modelarts.ShowAlgorithmByUuidResp.job_config:type_name -> modelarts.JobConfigAlRq + 89, // 115: modelarts.ShowAlgorithmByUuidResp.resource_requirements:type_name -> modelarts.ResourceRequirements + 90, // 116: modelarts.ShowAlgorithmByUuidResp.advanced_config:type_name -> modelarts.AdvancedConfigAl + 126, // 117: modelarts.ExportTaskReq.export_params:type_name -> modelarts.ExportParams + 124, // 118: modelarts.ExportTaskResp.resp200:type_name -> modelarts.ExportTaskDataResp200 + 125, // 119: modelarts.ExportTaskResp.resp400:type_name -> modelarts.ExportTaskDataResp400 + 126, // 120: modelarts.ExportTaskDataResp200.export_params:type_name -> modelarts.ExportParams + 127, // 121: modelarts.ExportParams.search_conditions:type_name -> modelarts.SearchCondition + 128, // 122: modelarts.SearchCondition.label_list:type_name -> modelarts.SearchLabels + 131, // 123: modelarts.SearchCondition.metadata:type_name -> modelarts.SearchProp + 130, // 124: modelarts.SearchLabels.labels:type_name -> modelarts.SearchLabel + 240, // 125: modelarts.SearchProp.props:type_name -> modelarts.SearchProp.PropsEntry + 126, // 126: modelarts.GetExportTasksOfDatasetResp.export_params:type_name -> modelarts.ExportParams + 134, // 127: modelarts.GetExportTasksOfDatasetResp.export_tasks:type_name -> modelarts.ExportTaskStatus + 126, // 128: modelarts.ExportTaskStatus.export_params:type_name -> modelarts.ExportParams + 126, // 129: modelarts.GetExportTaskStatusOfDatasetResp.export_params:type_name -> modelarts.ExportParams + 134, // 130: modelarts.GetExportTaskStatusOfDatasetResp.export_tasks:type_name -> modelarts.ExportTaskStatus + 139, // 131: modelarts.CreateProcessorTaskReq.data_source:type_name -> modelarts.ProcessorDataSource + 139, // 132: modelarts.CreateProcessorTaskReq.inputs:type_name -> modelarts.ProcessorDataSource + 140, // 133: modelarts.CreateProcessorTaskReq.template:type_name -> modelarts.TemplateParam + 141, // 134: modelarts.CreateProcessorTaskReq.work_path:type_name -> modelarts.WorkPath + 142, // 135: modelarts.TemplateParam.operator_params:type_name -> modelarts.OperatorParam + 139, // 136: modelarts.DescribeProcessorTaskResp.data_source:type_name -> modelarts.ProcessorDataSource + 139, // 137: modelarts.DescribeProcessorTaskResp.inputs:type_name -> modelarts.ProcessorDataSource + 140, // 138: modelarts.DescribeProcessorTaskResp.template:type_name -> modelarts.TemplateParam + 141, // 139: modelarts.DescribeProcessorTaskResp.work_path:type_name -> modelarts.WorkPath + 152, // 140: modelarts.CreateModelReq.model_docs:type_name -> modelarts.GuideDoc + 151, // 141: modelarts.CreateModelReq.template:type_name -> modelarts.Template + 147, // 142: modelarts.CreateModelReq.output_params:type_name -> modelarts.CreateModelRequestInferParams + 153, // 143: modelarts.CreateModelReq.dependencies:type_name -> modelarts.ModelDependencies + 148, // 144: modelarts.CreateModelReq.apis:type_name -> modelarts.CreateModelRequestModelApis + 147, // 145: modelarts.CreateModelReq.input_params:type_name -> modelarts.CreateModelRequestInferParams + 149, // 146: modelarts.CreateModelRequestModelApis.input_params:type_name -> modelarts.ModelInOutputParams + 149, // 147: modelarts.CreateModelRequestModelApis.output_params:type_name -> modelarts.ModelInOutputParams + 150, // 148: modelarts.Template.template_inputs:type_name -> modelarts.CreateModelRequestTemplateInput + 154, // 149: modelarts.ModelDependencies.packages:type_name -> modelarts.Packages + 157, // 150: modelarts.DeleteModelResp.delete_failed_list:type_name -> modelarts.DeleteModelResponseFailedList + 160, // 151: modelarts.ListModelResp.models:type_name -> modelarts.ModelListItem + 161, // 152: modelarts.ModelListItem.specification:type_name -> modelarts.ModelSpecification + 152, // 153: modelarts.ShowModelResp.model_docs:type_name -> modelarts.GuideDoc + 165, // 154: modelarts.ShowModelResp.output_params:type_name -> modelarts.ModelParamsInfo + 164, // 155: modelarts.ShowModelResp.healthy:type_name -> modelarts.ModelHealth + 153, // 156: modelarts.ShowModelResp.dependencies:type_name -> modelarts.ModelDependencies + 241, // 157: modelarts.ShowModelResp.labels_map:type_name -> modelarts.ShowModelResp.LabelsMapEntry + 161, // 158: modelarts.ShowModelResp.specification:type_name -> modelarts.ModelSpecification + 165, // 159: modelarts.ShowModelResp.input_params:type_name -> modelarts.ModelParamsInfo + 170, // 160: modelarts.CreateServiceReq.schedule:type_name -> modelarts.Scheduler + 171, // 161: modelarts.CreateServiceReq.config:type_name -> modelarts.ServiceConfig + 168, // 162: modelarts.CreateServiceResp.resp200:type_name -> modelarts.CreateServiceResp200 + 169, // 163: modelarts.CreateServiceResp.resp400:type_name -> modelarts.CreateServiceResp400 + 172, // 164: modelarts.ServiceConfig.custom_spec:type_name -> modelarts.CustomSpec + 242, // 165: modelarts.ServiceConfig.envs:type_name -> modelarts.ServiceConfig.EnvsEntry + 175, // 166: modelarts.DeleteServiceResp.resp200:type_name -> modelarts.DeleteServiceResp200 + 176, // 167: modelarts.DeleteServiceResp.resp400:type_name -> modelarts.DeleteServiceResp400 + 179, // 168: modelarts.ShowServiceResp.resp200:type_name -> modelarts.ShowServiceResp200 + 180, // 169: modelarts.ShowServiceResp.resp400:type_name -> modelarts.ShowServiceResp400 + 170, // 170: modelarts.ShowServiceResp200.scheduler:type_name -> modelarts.Scheduler + 243, // 171: modelarts.ShowServiceResp200.additional_properties:type_name -> modelarts.ShowServiceResp200.AdditionalPropertiesEntry + 181, // 172: modelarts.ShowServiceResp200.config:type_name -> modelarts.QueryServiceConfig + 172, // 173: modelarts.QueryServiceConfig.CustomSpec:type_name -> modelarts.CustomSpec + 244, // 174: modelarts.QueryServiceConfig.envs:type_name -> modelarts.QueryServiceConfig.EnvsEntry + 245, // 175: modelarts.QueryServiceConfig.additional_properties:type_name -> modelarts.QueryServiceConfig.AdditionalPropertiesEntry + 184, // 176: modelarts.ListServicesResp.resp200:type_name -> modelarts.ListServicesResp200 + 185, // 177: modelarts.ListServicesResp.resp400:type_name -> modelarts.ListServicesResp400 + 186, // 178: modelarts.ListServicesResp200.services:type_name -> modelarts.ListServices + 170, // 179: modelarts.ListServices.scheduler:type_name -> modelarts.Scheduler + 246, // 180: modelarts.ListServices.additional_properties:type_name -> modelarts.ListServices.AdditionalPropertiesEntry + 189, // 181: modelarts.ListClustersResp.resp200:type_name -> modelarts.ListClustersResp200 + 190, // 182: modelarts.ListClustersResp.resp400:type_name -> modelarts.ListClustersResp400 + 191, // 183: modelarts.ListClustersResp200.clusters:type_name -> modelarts.Cluster + 192, // 184: modelarts.Cluster.nodes:type_name -> modelarts.ClusterNode + 13, // 185: modelarts.CreateDataSetReq.data_sources:type_name -> modelarts.DataSources + 199, // 186: modelarts.ListNotebookReq.param:type_name -> modelarts.ListNotebookParam + 214, // 187: modelarts.ListNotebookResp.data:type_name -> modelarts.NotebookResp + 202, // 188: modelarts.CreateNotebookReq.param:type_name -> modelarts.CreateNotebookParam + 214, // 189: modelarts.CreateNotebookResp.notebookResp:type_name -> modelarts.NotebookResp + 221, // 190: modelarts.CreateNotebookParam.endpoints:type_name -> modelarts.EndpointsReq + 222, // 191: modelarts.CreateNotebookParam.volume:type_name -> modelarts.VolumeReq + 223, // 192: modelarts.CreateNotebookParam.hooks:type_name -> modelarts.CustomHooks + 226, // 193: modelarts.CreateNotebookParam.lease:type_name -> modelarts.LeaseReq + 205, // 194: modelarts.StartNotebookReq.param:type_name -> modelarts.StartNotebookParam + 214, // 195: modelarts.StartNotebookResp.notebookResp:type_name -> modelarts.NotebookResp + 214, // 196: modelarts.StopNotebookResp.notebookResp:type_name -> modelarts.NotebookResp + 213, // 197: modelarts.GetNotebookStorageResp.data:type_name -> modelarts.DataVolumesRes + 212, // 198: modelarts.MountNotebookStorageReq.param:type_name -> modelarts.MountNotebookStorageParam + 215, // 199: modelarts.NotebookResp.action_progress:type_name -> modelarts.JobProgress + 216, // 200: modelarts.NotebookResp.endpoints:type_name -> modelarts.EndpointsRes + 217, // 201: modelarts.NotebookResp.image:type_name -> modelarts.Image + 218, // 202: modelarts.NotebookResp.lease:type_name -> modelarts.Lease + 219, // 203: modelarts.NotebookResp.pool:type_name -> modelarts.Pool + 220, // 204: modelarts.NotebookResp.volume:type_name -> modelarts.VolumeRes + 224, // 205: modelarts.CustomHooks.container_hooks:type_name -> modelarts.ContainerHooks + 225, // 206: modelarts.ContainerHooks.post_start:type_name -> modelarts.Config + 225, // 207: modelarts.ContainerHooks.pre_start:type_name -> modelarts.Config + 230, // 208: modelarts.GetVisualizationJobReq.param:type_name -> modelarts.GetVisualizationJobParam + 229, // 209: modelarts.GetVisualizationJobResp.jobs:type_name -> modelarts.Jobs + 233, // 210: modelarts.CreateVisualizationJobReq.param:type_name -> modelarts.CreateVisualizationJobParam + 234, // 211: modelarts.CreateVisualizationJobParam.flavor:type_name -> modelarts.Flavor + 235, // 212: modelarts.CreateVisualizationJobParam.schedule:type_name -> modelarts.Schedule + 129, // 213: modelarts.SearchProp.PropsEntry.value:type_name -> modelarts.weigou + 8, // 214: modelarts.ModelArts.GetToken:input_type -> modelarts.TokenReq + 10, // 215: modelarts.ModelArts.GetDatasetList:input_type -> modelarts.DataSetReq + 193, // 216: modelarts.ModelArts.CreateDataSet:input_type -> modelarts.CreateDataSetReq + 195, // 217: modelarts.ModelArts.DeleteDataSet:input_type -> modelarts.DeleteDataSetReq + 14, // 218: modelarts.ModelArts.createTask:input_type -> modelarts.ImportTaskDataReq + 16, // 219: modelarts.ModelArts.GetImportTaskList:input_type -> modelarts.ListImportTasksReq + 24, // 220: modelarts.ModelArts.GetListTrainingJobs:input_type -> modelarts.ListTrainingJobsreq + 67, // 221: modelarts.ModelArts.CreateTrainingJob:input_type -> modelarts.CreateTrainingJobReq + 81, // 222: modelarts.ModelArts.DeleteTrainingJob:input_type -> modelarts.DeleteTrainingJobReq + 78, // 223: modelarts.ModelArts.CreateTrainingJobConfig:input_type -> modelarts.CreateTrainingJobConfigReq + 83, // 224: modelarts.ModelArts.DeleteTrainingJobConfig:input_type -> modelarts.DeleteTrainingJobConfigReq + 85, // 225: modelarts.ModelArts.ListTrainingJobConfig:input_type -> modelarts.ListTrainingJobConfigReq + 88, // 226: modelarts.ModelArts.CreateAlgorithm:input_type -> modelarts.CreateAlgorithmReq + 114, // 227: modelarts.ModelArts.ListAlgorithms:input_type -> modelarts.ListAlgorithmsReq + 118, // 228: modelarts.ModelArts.DeleteAlgorithms:input_type -> modelarts.DeleteAlgorithmsReq + 120, // 229: modelarts.ModelArts.ShowAlgorithmByUuid:input_type -> modelarts.ShowAlgorithmByUuidReq + 122, // 230: modelarts.ModelArts.ExportTask:input_type -> modelarts.ExportTaskReq + 132, // 231: modelarts.ModelArts.GetExportTasksOfDataset:input_type -> modelarts.GetExportTasksOfDatasetReq + 135, // 232: modelarts.ModelArts.GetExportTaskStatusOfDataset:input_type -> modelarts.GetExportTaskStatusOfDatasetReq + 137, // 233: modelarts.ModelArts.CreateProcessorTask:input_type -> modelarts.CreateProcessorTaskReq + 143, // 234: modelarts.ModelArts.DescribeProcessorTask:input_type -> modelarts.DescribeProcessorTaskReq + 145, // 235: modelarts.ModelArts.CreateModel:input_type -> modelarts.CreateModelReq + 155, // 236: modelarts.ModelArts.DeleteModel:input_type -> modelarts.DeleteModelReq + 158, // 237: modelarts.ModelArts.ListModels:input_type -> modelarts.ListModelReq + 162, // 238: modelarts.ModelArts.ShowModels:input_type -> modelarts.ShowModelReq + 166, // 239: modelarts.ModelArts.CreateService:input_type -> modelarts.CreateServiceReq + 182, // 240: modelarts.ModelArts.ListServices:input_type -> modelarts.ListServicesReq + 177, // 241: modelarts.ModelArts.ShowService:input_type -> modelarts.ShowServiceReq + 173, // 242: modelarts.ModelArts.DeleteService:input_type -> modelarts.DeleteServiceReq + 187, // 243: modelarts.ModelArts.ListClusters:input_type -> modelarts.ListClustersReq + 197, // 244: modelarts.ModelArts.ListNotebook:input_type -> modelarts.ListNotebookReq + 200, // 245: modelarts.ModelArts.CreateNotebook:input_type -> modelarts.CreateNotebookReq + 203, // 246: modelarts.ModelArts.StartNotebook:input_type -> modelarts.StartNotebookReq + 206, // 247: modelarts.ModelArts.StopNotebook:input_type -> modelarts.StopNotebookReq + 208, // 248: modelarts.ModelArts.GetNotebookStorage:input_type -> modelarts.GetNotebookStorageReq + 210, // 249: modelarts.ModelArts.MountNotebookStorage:input_type -> modelarts.MountNotebookStorageReq + 227, // 250: modelarts.ModelArts.GetVisualizationJob:input_type -> modelarts.GetVisualizationJobReq + 231, // 251: modelarts.ModelArts.CreateVisualizationJob:input_type -> modelarts.CreateVisualizationJobReq + 9, // 252: modelarts.ModelArts.GetToken:output_type -> modelarts.TokenResp + 11, // 253: modelarts.ModelArts.GetDatasetList:output_type -> modelarts.DataSetResp + 194, // 254: modelarts.ModelArts.CreateDataSet:output_type -> modelarts.CreateDataSetResq + 196, // 255: modelarts.ModelArts.DeleteDataSet:output_type -> modelarts.DeleteDataSetResq + 15, // 256: modelarts.ModelArts.createTask:output_type -> modelarts.ImportTaskDataResp + 17, // 257: modelarts.ModelArts.GetImportTaskList:output_type -> modelarts.ListImportTasksResp + 25, // 258: modelarts.ModelArts.GetListTrainingJobs:output_type -> modelarts.ListTrainingJobsresp + 68, // 259: modelarts.ModelArts.CreateTrainingJob:output_type -> modelarts.CreateTrainingJobResp + 82, // 260: modelarts.ModelArts.DeleteTrainingJob:output_type -> modelarts.DeleteTrainingJobResp + 80, // 261: modelarts.ModelArts.CreateTrainingJobConfig:output_type -> modelarts.CreateTrainingJobConfigResp + 84, // 262: modelarts.ModelArts.DeleteTrainingJobConfig:output_type -> modelarts.DeleteTrainingJobConfigResp + 86, // 263: modelarts.ModelArts.ListTrainingJobConfig:output_type -> modelarts.ListTrainingJobConfigResp + 102, // 264: modelarts.ModelArts.CreateAlgorithm:output_type -> modelarts.CreateAlgorithmResp + 115, // 265: modelarts.ModelArts.ListAlgorithms:output_type -> modelarts.ListAlgorithmsResp + 119, // 266: modelarts.ModelArts.DeleteAlgorithms:output_type -> modelarts.DeleteAlgorithmsResp + 121, // 267: modelarts.ModelArts.ShowAlgorithmByUuid:output_type -> modelarts.ShowAlgorithmByUuidResp + 123, // 268: modelarts.ModelArts.ExportTask:output_type -> modelarts.ExportTaskResp + 133, // 269: modelarts.ModelArts.GetExportTasksOfDataset:output_type -> modelarts.GetExportTasksOfDatasetResp + 136, // 270: modelarts.ModelArts.GetExportTaskStatusOfDataset:output_type -> modelarts.GetExportTaskStatusOfDatasetResp + 138, // 271: modelarts.ModelArts.CreateProcessorTask:output_type -> modelarts.CreateProcessorTaskResp + 144, // 272: modelarts.ModelArts.DescribeProcessorTask:output_type -> modelarts.DescribeProcessorTaskResp + 146, // 273: modelarts.ModelArts.CreateModel:output_type -> modelarts.CreateModelResp + 156, // 274: modelarts.ModelArts.DeleteModel:output_type -> modelarts.DeleteModelResp + 159, // 275: modelarts.ModelArts.ListModels:output_type -> modelarts.ListModelResp + 163, // 276: modelarts.ModelArts.ShowModels:output_type -> modelarts.ShowModelResp + 167, // 277: modelarts.ModelArts.CreateService:output_type -> modelarts.CreateServiceResp + 183, // 278: modelarts.ModelArts.ListServices:output_type -> modelarts.ListServicesResp + 178, // 279: modelarts.ModelArts.ShowService:output_type -> modelarts.ShowServiceResp + 174, // 280: modelarts.ModelArts.DeleteService:output_type -> modelarts.DeleteServiceResp + 188, // 281: modelarts.ModelArts.ListClusters:output_type -> modelarts.ListClustersResp + 198, // 282: modelarts.ModelArts.ListNotebook:output_type -> modelarts.ListNotebookResp + 201, // 283: modelarts.ModelArts.CreateNotebook:output_type -> modelarts.CreateNotebookResp + 204, // 284: modelarts.ModelArts.StartNotebook:output_type -> modelarts.StartNotebookResp + 207, // 285: modelarts.ModelArts.StopNotebook:output_type -> modelarts.StopNotebookResp + 209, // 286: modelarts.ModelArts.GetNotebookStorage:output_type -> modelarts.GetNotebookStorageResp + 211, // 287: modelarts.ModelArts.MountNotebookStorage:output_type -> modelarts.MountNotebookStorageResp + 228, // 288: modelarts.ModelArts.GetVisualizationJob:output_type -> modelarts.GetVisualizationJobResp + 232, // 289: modelarts.ModelArts.CreateVisualizationJob:output_type -> modelarts.CreateVisualizationJobResp + 252, // [252:290] is the sub-list for method output_type + 214, // [214:252] is the sub-list for method input_type + 214, // [214:214] is the sub-list for extension type_name + 214, // [214:214] is the sub-list for extension extendee + 0, // [0:214] is the sub-list for field type_name } func init() { file_pcm_modelarts_proto_init() } @@ -23198,7 +22492,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DatasetReq); i { + switch v := v.(*DataSetReq); i { case 0: return &v.state case 1: @@ -23210,7 +22504,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DatasetResp); i { + switch v := v.(*DataSetResp); i { case 0: return &v.state case 1: @@ -23222,7 +22516,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Datasets); i { + switch v := v.(*DataSets); i { case 0: return &v.state case 1: @@ -23258,30 +22552,6 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ImportTaskDataResp200); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_pcm_modelarts_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ImportTaskDataResp400); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_pcm_modelarts_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ImportTaskDataResp); i { case 0: return &v.state @@ -23293,7 +22563,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListImportTasksReq); i { case 0: return &v.state @@ -23305,7 +22575,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListImportTasksResp); i { case 0: return &v.state @@ -23317,31 +22587,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListImportTasksResp200); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_pcm_modelarts_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListImportTasksResp400); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_pcm_modelarts_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ImportTasks); i { case 0: return &v.state @@ -23353,7 +22599,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AnnotationFormatConfig); i { case 0: return &v.state @@ -23365,7 +22611,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DataSource); i { case 0: return &v.state @@ -23377,7 +22623,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SchemaMaps); i { case 0: return &v.state @@ -23389,7 +22635,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SourceInfo); i { case 0: return &v.state @@ -23401,7 +22647,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*FileStatistics); i { case 0: return &v.state @@ -23413,7 +22659,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListTrainingJobsreq); i { case 0: return &v.state @@ -23425,7 +22671,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListTrainingJobsresp); i { case 0: return &v.state @@ -23437,31 +22683,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListTrainingJobsresp400); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_pcm_modelarts_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListTrainingJobsresp200); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_pcm_modelarts_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*JobResponse); i { case 0: return &v.state @@ -23473,7 +22695,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*JobMetadata); i { case 0: return &v.state @@ -23485,7 +22707,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Status); i { case 0: return &v.state @@ -23497,7 +22719,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*JobAlgorithmResponse); i { case 0: return &v.state @@ -23509,7 +22731,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TaskResponse); i { case 0: return &v.state @@ -23521,7 +22743,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*FlavorResponse); i { case 0: return &v.state @@ -23533,7 +22755,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Billing); i { case 0: return &v.state @@ -23545,7 +22767,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*FlavorInfo); i { case 0: return &v.state @@ -23557,7 +22779,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Cpu); i { case 0: return &v.state @@ -23569,7 +22791,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Npu); i { case 0: return &v.state @@ -23581,7 +22803,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Gpu); i { case 0: return &v.state @@ -23593,7 +22815,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Memory); i { case 0: return &v.state @@ -23605,7 +22827,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Disk); i { case 0: return &v.state @@ -23617,7 +22839,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Algorithm); i { case 0: return &v.state @@ -23629,7 +22851,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Inputs); i { case 0: return &v.state @@ -23641,7 +22863,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Outputs); i { case 0: return &v.state @@ -23653,7 +22875,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Input); i { case 0: return &v.state @@ -23665,7 +22887,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*InputDataInfo); i { case 0: return &v.state @@ -23677,7 +22899,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Dataset); i { case 0: return &v.state @@ -23689,7 +22911,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Obs); i { case 0: return &v.state @@ -23701,7 +22923,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RemoteConstraint); i { case 0: return &v.state @@ -23713,7 +22935,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Output); i { case 0: return &v.state @@ -23725,7 +22947,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Remote); i { case 0: return &v.state @@ -23737,7 +22959,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Obs1); i { case 0: return &v.state @@ -23749,7 +22971,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Engine); i { case 0: return &v.state @@ -23761,7 +22983,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Policies); i { case 0: return &v.state @@ -23773,7 +22995,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AutoSearch); i { case 0: return &v.state @@ -23785,7 +23007,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[59].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RewardAttrs); i { case 0: return &v.state @@ -23797,7 +23019,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[60].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SearchParams); i { case 0: return &v.state @@ -23809,7 +23031,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[61].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AlgoConfigs); i { case 0: return &v.state @@ -23821,7 +23043,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[62].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AutoSearchAlgoConfigParameter); i { case 0: return &v.state @@ -23833,7 +23055,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[63].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Parameter); i { case 0: return &v.state @@ -23845,7 +23067,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[64].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*I18NDescription); i { case 0: return &v.state @@ -23857,7 +23079,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[65].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[59].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Constraint); i { case 0: return &v.state @@ -23869,7 +23091,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[66].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[60].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Spec); i { case 0: return &v.state @@ -23881,7 +23103,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[67].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[61].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Resource); i { case 0: return &v.state @@ -23893,7 +23115,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[68].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[62].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*FlavorDetail); i { case 0: return &v.state @@ -23905,7 +23127,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[69].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[63].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Volumes); i { case 0: return &v.state @@ -23917,7 +23139,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[70].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[64].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Nfs); i { case 0: return &v.state @@ -23929,7 +23151,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[71].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[65].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*LogExportPath); i { case 0: return &v.state @@ -23941,7 +23163,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[72].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[66].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TaskStatuses); i { case 0: return &v.state @@ -23953,7 +23175,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[73].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[67].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateTrainingJobReq); i { case 0: return &v.state @@ -23965,7 +23187,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[74].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[68].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateTrainingJobResp); i { case 0: return &v.state @@ -23977,31 +23199,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[75].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateTrainingJobResp201); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_pcm_modelarts_proto_msgTypes[76].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateTrainingJobResp400); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_pcm_modelarts_proto_msgTypes[77].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[69].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MetadataS); i { case 0: return &v.state @@ -24013,7 +23211,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[78].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[70].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EngineCreateTraining); i { case 0: return &v.state @@ -24025,7 +23223,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[79].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[71].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConstraintCreateTraining); i { case 0: return &v.state @@ -24037,7 +23235,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[80].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[72].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ParametersTrainJob); i { case 0: return &v.state @@ -24049,7 +23247,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[81].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[73].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*PoliciesCreateTraining); i { case 0: return &v.state @@ -24061,7 +23259,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[82].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[74].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Algorithms); i { case 0: return &v.state @@ -24073,7 +23271,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[83].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[75].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ResourceCreateTraining); i { case 0: return &v.state @@ -24085,7 +23283,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[84].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[76].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*LogExportPathCreateTraining); i { case 0: return &v.state @@ -24097,7 +23295,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[85].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[77].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Specs); i { case 0: return &v.state @@ -24109,7 +23307,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[86].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[78].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateTrainingJobConfigReq); i { case 0: return &v.state @@ -24121,7 +23319,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[87].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[79].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ParameterS); i { case 0: return &v.state @@ -24133,7 +23331,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[88].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[80].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateTrainingJobConfigResp); i { case 0: return &v.state @@ -24145,7 +23343,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[89].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[81].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DeleteTrainingJobReq); i { case 0: return &v.state @@ -24157,7 +23355,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[90].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[82].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DeleteTrainingJobResp); i { case 0: return &v.state @@ -24169,7 +23367,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[91].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[83].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DeleteTrainingJobConfigReq); i { case 0: return &v.state @@ -24181,7 +23379,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[92].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[84].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DeleteTrainingJobConfigResp); i { case 0: return &v.state @@ -24193,7 +23391,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[93].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[85].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListTrainingJobConfigReq); i { case 0: return &v.state @@ -24205,7 +23403,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[94].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[86].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListTrainingJobConfigResp); i { case 0: return &v.state @@ -24217,7 +23415,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[95].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[87].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConfigResponse); i { case 0: return &v.state @@ -24229,7 +23427,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[96].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[88].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateAlgorithmReq); i { case 0: return &v.state @@ -24241,7 +23439,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[97].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[89].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ResourceRequirements); i { case 0: return &v.state @@ -24253,7 +23451,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[98].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[90].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AdvancedConfigAl); i { case 0: return &v.state @@ -24265,7 +23463,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[99].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[91].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MetadataAlRq); i { case 0: return &v.state @@ -24277,7 +23475,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[100].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[92].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConstraintAlRq); i { case 0: return &v.state @@ -24289,7 +23487,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[101].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[93].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ParametersAlRq); i { case 0: return &v.state @@ -24301,7 +23499,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[102].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[94].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*InputsAlRq); i { case 0: return &v.state @@ -24313,7 +23511,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[103].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[95].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RemoteConstraints); i { case 0: return &v.state @@ -24325,7 +23523,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[104].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[96].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AttributesAlRq); i { case 0: return &v.state @@ -24337,7 +23535,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[105].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[97].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*OutputsAl); i { case 0: return &v.state @@ -24349,7 +23547,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[106].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[98].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EngineAlRq); i { case 0: return &v.state @@ -24361,7 +23559,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[107].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[99].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Children); i { case 0: return &v.state @@ -24373,7 +23571,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[108].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[100].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CodeTree); i { case 0: return &v.state @@ -24385,7 +23583,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[109].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[101].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*JobConfigAl); i { case 0: return &v.state @@ -24397,31 +23595,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[110].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateAlgorithmResp201); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_pcm_modelarts_proto_msgTypes[111].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateAlgorithmResp400); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_pcm_modelarts_proto_msgTypes[112].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[102].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateAlgorithmResp); i { case 0: return &v.state @@ -24433,7 +23607,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[113].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[103].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ShareInfo); i { case 0: return &v.state @@ -24445,7 +23619,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[114].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[104].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MetadataCrAl); i { case 0: return &v.state @@ -24457,7 +23631,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[115].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[105].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MetadataAlRp); i { case 0: return &v.state @@ -24469,7 +23643,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[116].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[106].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TagsAlRp); i { case 0: return &v.state @@ -24481,7 +23655,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[117].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[107].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ShareInfoAlRp); i { case 0: return &v.state @@ -24493,7 +23667,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[118].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[108].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConstraintAlRp); i { case 0: return &v.state @@ -24505,7 +23679,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[119].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[109].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ParametersAlRp); i { case 0: return &v.state @@ -24517,7 +23691,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[120].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[110].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*InputsAlRp); i { case 0: return &v.state @@ -24529,7 +23703,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[121].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[111].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*OutputsAlRp); i { case 0: return &v.state @@ -24541,7 +23715,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[122].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[112].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ImageInfo); i { case 0: return &v.state @@ -24553,7 +23727,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[123].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[113].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EngineAlRp); i { case 0: return &v.state @@ -24565,7 +23739,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[124].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[114].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListAlgorithmsReq); i { case 0: return &v.state @@ -24577,7 +23751,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[125].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[115].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListAlgorithmsResp); i { case 0: return &v.state @@ -24589,7 +23763,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[126].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[116].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AlgorithmResponse); i { case 0: return &v.state @@ -24601,7 +23775,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[127].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[117].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*JobConfigAlRq); i { case 0: return &v.state @@ -24613,7 +23787,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[128].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[118].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DeleteAlgorithmsReq); i { case 0: return &v.state @@ -24625,7 +23799,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[129].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[119].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DeleteAlgorithmsResp); i { case 0: return &v.state @@ -24637,7 +23811,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[130].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[120].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ShowAlgorithmByUuidReq); i { case 0: return &v.state @@ -24649,7 +23823,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[131].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[121].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ShowAlgorithmByUuidResp); i { case 0: return &v.state @@ -24661,7 +23835,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[132].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[122].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ExportTaskReq); i { case 0: return &v.state @@ -24673,7 +23847,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[133].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[123].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ExportTaskResp); i { case 0: return &v.state @@ -24685,7 +23859,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[134].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[124].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ExportTaskDataResp200); i { case 0: return &v.state @@ -24697,7 +23871,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[135].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[125].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ExportTaskDataResp400); i { case 0: return &v.state @@ -24709,7 +23883,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[136].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[126].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ExportParams); i { case 0: return &v.state @@ -24721,7 +23895,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[137].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[127].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SearchCondition); i { case 0: return &v.state @@ -24733,7 +23907,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[138].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[128].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SearchLabels); i { case 0: return &v.state @@ -24745,7 +23919,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[139].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[129].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Weigou); i { case 0: return &v.state @@ -24757,7 +23931,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[140].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[130].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SearchLabel); i { case 0: return &v.state @@ -24769,7 +23943,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[141].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[131].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SearchProp); i { case 0: return &v.state @@ -24781,7 +23955,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[142].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[132].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetExportTasksOfDatasetReq); i { case 0: return &v.state @@ -24793,7 +23967,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[143].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[133].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetExportTasksOfDatasetResp); i { case 0: return &v.state @@ -24805,7 +23979,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[144].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[134].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ExportTaskStatus); i { case 0: return &v.state @@ -24817,7 +23991,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[145].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[135].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetExportTaskStatusOfDatasetReq); i { case 0: return &v.state @@ -24829,7 +24003,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[146].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[136].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetExportTaskStatusOfDatasetResp); i { case 0: return &v.state @@ -24841,7 +24015,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[147].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[137].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateProcessorTaskReq); i { case 0: return &v.state @@ -24853,7 +24027,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[148].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[138].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateProcessorTaskResp); i { case 0: return &v.state @@ -24865,7 +24039,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[149].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[139].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ProcessorDataSource); i { case 0: return &v.state @@ -24877,7 +24051,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[150].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[140].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TemplateParam); i { case 0: return &v.state @@ -24889,7 +24063,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[151].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[141].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*WorkPath); i { case 0: return &v.state @@ -24901,7 +24075,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[152].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[142].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*OperatorParam); i { case 0: return &v.state @@ -24913,7 +24087,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[153].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[143].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DescribeProcessorTaskReq); i { case 0: return &v.state @@ -24925,7 +24099,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[154].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[144].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DescribeProcessorTaskResp); i { case 0: return &v.state @@ -24937,7 +24111,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[155].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[145].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateModelReq); i { case 0: return &v.state @@ -24949,7 +24123,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[156].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[146].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateModelResp); i { case 0: return &v.state @@ -24961,7 +24135,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[157].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[147].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateModelRequestInferParams); i { case 0: return &v.state @@ -24973,7 +24147,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[158].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[148].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateModelRequestModelApis); i { case 0: return &v.state @@ -24985,7 +24159,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[159].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[149].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ModelInOutputParams); i { case 0: return &v.state @@ -24997,7 +24171,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[160].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[150].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateModelRequestTemplateInput); i { case 0: return &v.state @@ -25009,7 +24183,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[161].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[151].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Template); i { case 0: return &v.state @@ -25021,7 +24195,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[162].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[152].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GuideDoc); i { case 0: return &v.state @@ -25033,7 +24207,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[163].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[153].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ModelDependencies); i { case 0: return &v.state @@ -25045,7 +24219,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[164].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[154].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Packages); i { case 0: return &v.state @@ -25057,7 +24231,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[165].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[155].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DeleteModelReq); i { case 0: return &v.state @@ -25069,7 +24243,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[166].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[156].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DeleteModelResp); i { case 0: return &v.state @@ -25081,7 +24255,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[167].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[157].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DeleteModelResponseFailedList); i { case 0: return &v.state @@ -25093,7 +24267,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[168].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[158].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListModelReq); i { case 0: return &v.state @@ -25105,7 +24279,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[169].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[159].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListModelResp); i { case 0: return &v.state @@ -25117,7 +24291,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[170].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[160].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ModelListItem); i { case 0: return &v.state @@ -25129,7 +24303,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[171].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[161].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ModelSpecification); i { case 0: return &v.state @@ -25141,7 +24315,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[172].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[162].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ShowModelReq); i { case 0: return &v.state @@ -25153,7 +24327,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[173].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[163].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ShowModelResp); i { case 0: return &v.state @@ -25165,7 +24339,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[174].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[164].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ModelHealth); i { case 0: return &v.state @@ -25177,7 +24351,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[175].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[165].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ModelParamsInfo); i { case 0: return &v.state @@ -25189,7 +24363,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[176].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[166].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateServiceReq); i { case 0: return &v.state @@ -25201,7 +24375,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[177].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[167].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateServiceResp); i { case 0: return &v.state @@ -25213,7 +24387,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[178].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[168].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateServiceResp200); i { case 0: return &v.state @@ -25225,7 +24399,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[179].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[169].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateServiceResp400); i { case 0: return &v.state @@ -25237,7 +24411,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[180].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[170].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Scheduler); i { case 0: return &v.state @@ -25249,7 +24423,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[181].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[171].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ServiceConfig); i { case 0: return &v.state @@ -25261,7 +24435,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[182].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[172].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomSpec); i { case 0: return &v.state @@ -25273,7 +24447,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[183].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[173].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DeleteServiceReq); i { case 0: return &v.state @@ -25285,7 +24459,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[184].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[174].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DeleteServiceResp); i { case 0: return &v.state @@ -25297,7 +24471,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[185].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[175].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DeleteServiceResp200); i { case 0: return &v.state @@ -25309,7 +24483,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[186].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[176].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DeleteServiceResp400); i { case 0: return &v.state @@ -25321,7 +24495,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[187].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[177].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ShowServiceReq); i { case 0: return &v.state @@ -25333,7 +24507,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[188].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[178].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ShowServiceResp); i { case 0: return &v.state @@ -25345,7 +24519,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[189].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[179].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ShowServiceResp200); i { case 0: return &v.state @@ -25357,7 +24531,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[190].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[180].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ShowServiceResp400); i { case 0: return &v.state @@ -25369,7 +24543,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[191].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[181].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*QueryServiceConfig); i { case 0: return &v.state @@ -25381,7 +24555,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[192].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[182].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListServicesReq); i { case 0: return &v.state @@ -25393,7 +24567,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[193].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[183].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListServicesResp); i { case 0: return &v.state @@ -25405,7 +24579,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[194].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[184].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListServicesResp200); i { case 0: return &v.state @@ -25417,7 +24591,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[195].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[185].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListServicesResp400); i { case 0: return &v.state @@ -25429,7 +24603,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[196].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[186].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListServices); i { case 0: return &v.state @@ -25441,7 +24615,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[197].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[187].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListClustersReq); i { case 0: return &v.state @@ -25453,7 +24627,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[198].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[188].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListClustersResp); i { case 0: return &v.state @@ -25465,7 +24639,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[199].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[189].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListClustersResp200); i { case 0: return &v.state @@ -25477,7 +24651,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[200].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[190].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListClustersResp400); i { case 0: return &v.state @@ -25489,7 +24663,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[201].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[191].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Cluster); i { case 0: return &v.state @@ -25501,7 +24675,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[202].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[192].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ClusterNode); i { case 0: return &v.state @@ -25513,7 +24687,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[203].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[193].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateDataSetReq); i { case 0: return &v.state @@ -25525,7 +24699,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[204].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[194].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateDataSetResq); i { case 0: return &v.state @@ -25537,7 +24711,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[205].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[195].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DeleteDataSetReq); i { case 0: return &v.state @@ -25549,7 +24723,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[206].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[196].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DeleteDataSetResq); i { case 0: return &v.state @@ -25561,7 +24735,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[207].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[197].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListNotebookReq); i { case 0: return &v.state @@ -25573,7 +24747,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[208].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[198].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListNotebookResp); i { case 0: return &v.state @@ -25585,7 +24759,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[209].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[199].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListNotebookParam); i { case 0: return &v.state @@ -25597,7 +24771,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[210].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[200].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateNotebookReq); i { case 0: return &v.state @@ -25609,7 +24783,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[211].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[201].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateNotebookResp); i { case 0: return &v.state @@ -25621,7 +24795,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[212].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[202].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateNotebookParam); i { case 0: return &v.state @@ -25633,7 +24807,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[213].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[203].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*StartNotebookReq); i { case 0: return &v.state @@ -25645,7 +24819,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[214].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[204].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*StartNotebookResp); i { case 0: return &v.state @@ -25657,7 +24831,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[215].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[205].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*StartNotebookParam); i { case 0: return &v.state @@ -25669,7 +24843,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[216].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[206].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*StopNotebookReq); i { case 0: return &v.state @@ -25681,7 +24855,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[217].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[207].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*StopNotebookResp); i { case 0: return &v.state @@ -25693,7 +24867,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[218].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[208].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetNotebookStorageReq); i { case 0: return &v.state @@ -25705,7 +24879,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[219].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[209].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetNotebookStorageResp); i { case 0: return &v.state @@ -25717,7 +24891,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[220].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[210].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MountNotebookStorageReq); i { case 0: return &v.state @@ -25729,7 +24903,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[221].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[211].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MountNotebookStorageResp); i { case 0: return &v.state @@ -25741,7 +24915,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[222].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[212].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MountNotebookStorageParam); i { case 0: return &v.state @@ -25753,7 +24927,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[223].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[213].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DataVolumesRes); i { case 0: return &v.state @@ -25765,7 +24939,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[224].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[214].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*NotebookResp); i { case 0: return &v.state @@ -25777,7 +24951,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[225].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[215].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*JobProgress); i { case 0: return &v.state @@ -25789,7 +24963,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[226].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[216].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EndpointsRes); i { case 0: return &v.state @@ -25801,7 +24975,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[227].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[217].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Image); i { case 0: return &v.state @@ -25813,7 +24987,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[228].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[218].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Lease); i { case 0: return &v.state @@ -25825,7 +24999,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[229].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[219].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Pool); i { case 0: return &v.state @@ -25837,7 +25011,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[230].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[220].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*VolumeRes); i { case 0: return &v.state @@ -25849,7 +25023,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[231].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[221].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EndpointsReq); i { case 0: return &v.state @@ -25861,7 +25035,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[232].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[222].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*VolumeReq); i { case 0: return &v.state @@ -25873,7 +25047,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[233].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[223].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CustomHooks); i { case 0: return &v.state @@ -25885,7 +25059,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[234].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[224].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ContainerHooks); i { case 0: return &v.state @@ -25897,7 +25071,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[235].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[225].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Config); i { case 0: return &v.state @@ -25909,7 +25083,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[236].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[226].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*LeaseReq); i { case 0: return &v.state @@ -25921,7 +25095,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[237].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[227].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetVisualizationJobReq); i { case 0: return &v.state @@ -25933,7 +25107,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[238].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[228].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetVisualizationJobResp); i { case 0: return &v.state @@ -25945,7 +25119,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[239].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[229].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Jobs); i { case 0: return &v.state @@ -25957,7 +25131,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[240].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[230].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetVisualizationJobParam); i { case 0: return &v.state @@ -25969,7 +25143,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[241].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[231].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateVisualizationJobReq); i { case 0: return &v.state @@ -25981,7 +25155,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[242].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[232].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateVisualizationJobResp); i { case 0: return &v.state @@ -25993,7 +25167,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[243].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[233].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateVisualizationJobParam); i { case 0: return &v.state @@ -26005,7 +25179,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[244].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[234].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Flavor); i { case 0: return &v.state @@ -26017,7 +25191,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[245].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[235].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Schedule); i { case 0: return &v.state @@ -26036,7 +25210,7 @@ func file_pcm_modelarts_proto_init() { GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_pcm_modelarts_proto_rawDesc, NumEnums: 0, - NumMessages: 257, + NumMessages: 247, NumExtensions: 0, NumServices: 1, }, diff --git a/adaptor/PCM-AI/PCM-MODELARTS/rpc/modelarts/pcm-modelarts_grpc.pb.go b/adaptor/PCM-AI/PCM-MODELARTS/rpc/modelarts/pcm-modelarts_grpc.pb.go index 5acea059..3401d0ef 100644 --- a/adaptor/PCM-AI/PCM-MODELARTS/rpc/modelarts/pcm-modelarts_grpc.pb.go +++ b/adaptor/PCM-AI/PCM-MODELARTS/rpc/modelarts/pcm-modelarts_grpc.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.2.0 -// - protoc v3.19.4 +// - protoc v3.21.12 // source: pcm-modelarts.proto package modelarts @@ -22,64 +22,64 @@ const _ = grpc.SupportPackageIsVersion7 // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. type ModelArtsClient interface { - //get modelarts Token + // get modelarts Token GetToken(ctx context.Context, in *TokenReq, opts ...grpc.CallOption) (*TokenResp, error) - //get modelarts Token - GetDatasetList(ctx context.Context, in *DatasetReq, opts ...grpc.CallOption) (*DatasetResp, error) - //create DateSet + // get modelarts Token + GetDatasetList(ctx context.Context, in *DataSetReq, opts ...grpc.CallOption) (*DataSetResp, error) + // create DateSet CreateDataSet(ctx context.Context, in *CreateDataSetReq, opts ...grpc.CallOption) (*CreateDataSetResq, error) - //create DateSet + // create DateSet DeleteDataSet(ctx context.Context, in *DeleteDataSetReq, opts ...grpc.CallOption) (*DeleteDataSetResq, error) - //creat task 创建导入任务 + // creat task 创建导入任务 CreateTask(ctx context.Context, in *ImportTaskDataReq, opts ...grpc.CallOption) (*ImportTaskDataResp, error) - //get taskList 查询数据集导入任务列表 + // get taskList 查询数据集导入任务列表 GetImportTaskList(ctx context.Context, in *ListImportTasksReq, opts ...grpc.CallOption) (*ListImportTasksResp, error) - // ListTrainingJobs 查询训练作业列表 + // ListTrainingJobs 查询训练作业列表 GetListTrainingJobs(ctx context.Context, in *ListTrainingJobsreq, opts ...grpc.CallOption) (*ListTrainingJobsresp, error) - // CreateTrainingJob 创建训练作业 + // CreateTrainingJob 创建训练作业 CreateTrainingJob(ctx context.Context, in *CreateTrainingJobReq, opts ...grpc.CallOption) (*CreateTrainingJobResp, error) - // DeleteTrainingJobConfig 删除训练作业 + // DeleteTrainingJobConfig 删除训练作业 DeleteTrainingJob(ctx context.Context, in *DeleteTrainingJobReq, opts ...grpc.CallOption) (*DeleteTrainingJobResp, error) - // CreateTrainingJobConfig 创建训练作业参数 + // CreateTrainingJobConfig 创建训练作业参数 CreateTrainingJobConfig(ctx context.Context, in *CreateTrainingJobConfigReq, opts ...grpc.CallOption) (*CreateTrainingJobConfigResp, error) - // DeleteTrainingJobConfig 删除训练作业参数 + // DeleteTrainingJobConfig 删除训练作业参数 DeleteTrainingJobConfig(ctx context.Context, in *DeleteTrainingJobConfigReq, opts ...grpc.CallOption) (*DeleteTrainingJobConfigResp, error) - // ListTrainingJobConfig 查询训练作业参数 + // ListTrainingJobConfig 查询训练作业参数 ListTrainingJobConfig(ctx context.Context, in *ListTrainingJobConfigReq, opts ...grpc.CallOption) (*ListTrainingJobConfigResp, error) - // CreateAlgorithm 创建算法 + // CreateAlgorithm 创建算法 CreateAlgorithm(ctx context.Context, in *CreateAlgorithmReq, opts ...grpc.CallOption) (*CreateAlgorithmResp, error) - // ListAlgorithms 查询算法 + // ListAlgorithms 查询算法 ListAlgorithms(ctx context.Context, in *ListAlgorithmsReq, opts ...grpc.CallOption) (*ListAlgorithmsResp, error) - // DeleteAlgorithms 删除算法 + // DeleteAlgorithms 删除算法 DeleteAlgorithms(ctx context.Context, in *DeleteAlgorithmsReq, opts ...grpc.CallOption) (*DeleteAlgorithmsResp, error) - // ShowAlgorithmByUuid 展示算法详情 + // ShowAlgorithmByUuid 展示算法详情 ShowAlgorithmByUuid(ctx context.Context, in *ShowAlgorithmByUuidReq, opts ...grpc.CallOption) (*ShowAlgorithmByUuidResp, error) //export task ExportTask(ctx context.Context, in *ExportTaskReq, opts ...grpc.CallOption) (*ExportTaskResp, error) GetExportTasksOfDataset(ctx context.Context, in *GetExportTasksOfDatasetReq, opts ...grpc.CallOption) (*GetExportTasksOfDatasetResp, error) GetExportTaskStatusOfDataset(ctx context.Context, in *GetExportTaskStatusOfDatasetReq, opts ...grpc.CallOption) (*GetExportTaskStatusOfDatasetResp, error) - //processor task + // processor task CreateProcessorTask(ctx context.Context, in *CreateProcessorTaskReq, opts ...grpc.CallOption) (*CreateProcessorTaskResp, error) DescribeProcessorTask(ctx context.Context, in *DescribeProcessorTaskReq, opts ...grpc.CallOption) (*DescribeProcessorTaskResp, error) - //model management + // model management CreateModel(ctx context.Context, in *CreateModelReq, opts ...grpc.CallOption) (*CreateModelResp, error) DeleteModel(ctx context.Context, in *DeleteModelReq, opts ...grpc.CallOption) (*DeleteModelResp, error) ListModels(ctx context.Context, in *ListModelReq, opts ...grpc.CallOption) (*ListModelResp, error) ShowModels(ctx context.Context, in *ShowModelReq, opts ...grpc.CallOption) (*ShowModelResp, error) - //service management + // service management CreateService(ctx context.Context, in *CreateServiceReq, opts ...grpc.CallOption) (*CreateServiceResp, error) ListServices(ctx context.Context, in *ListServicesReq, opts ...grpc.CallOption) (*ListServicesResp, error) ShowService(ctx context.Context, in *ShowServiceReq, opts ...grpc.CallOption) (*ShowServiceResp, error) DeleteService(ctx context.Context, in *DeleteServiceReq, opts ...grpc.CallOption) (*DeleteServiceResp, error) ListClusters(ctx context.Context, in *ListClustersReq, opts ...grpc.CallOption) (*ListClustersResp, error) - //notebook task + // notebook task ListNotebook(ctx context.Context, in *ListNotebookReq, opts ...grpc.CallOption) (*ListNotebookResp, error) CreateNotebook(ctx context.Context, in *CreateNotebookReq, opts ...grpc.CallOption) (*CreateNotebookResp, error) StartNotebook(ctx context.Context, in *StartNotebookReq, opts ...grpc.CallOption) (*StartNotebookResp, error) StopNotebook(ctx context.Context, in *StopNotebookReq, opts ...grpc.CallOption) (*StopNotebookResp, error) GetNotebookStorage(ctx context.Context, in *GetNotebookStorageReq, opts ...grpc.CallOption) (*GetNotebookStorageResp, error) MountNotebookStorage(ctx context.Context, in *MountNotebookStorageReq, opts ...grpc.CallOption) (*MountNotebookStorageResp, error) - //visualization-jobs + // visualization-jobs GetVisualizationJob(ctx context.Context, in *GetVisualizationJobReq, opts ...grpc.CallOption) (*GetVisualizationJobResp, error) CreateVisualizationJob(ctx context.Context, in *CreateVisualizationJobReq, opts ...grpc.CallOption) (*CreateVisualizationJobResp, error) } @@ -101,8 +101,8 @@ func (c *modelArtsClient) GetToken(ctx context.Context, in *TokenReq, opts ...gr return out, nil } -func (c *modelArtsClient) GetDatasetList(ctx context.Context, in *DatasetReq, opts ...grpc.CallOption) (*DatasetResp, error) { - out := new(DatasetResp) +func (c *modelArtsClient) GetDatasetList(ctx context.Context, in *DataSetReq, opts ...grpc.CallOption) (*DataSetResp, error) { + out := new(DataSetResp) err := c.cc.Invoke(ctx, "/modelarts.ModelArts/GetDatasetList", in, out, opts...) if err != nil { return nil, err @@ -438,64 +438,64 @@ func (c *modelArtsClient) CreateVisualizationJob(ctx context.Context, in *Create // All implementations must embed UnimplementedModelArtsServer // for forward compatibility type ModelArtsServer interface { - //get modelarts Token + // get modelarts Token GetToken(context.Context, *TokenReq) (*TokenResp, error) - //get modelarts Token - GetDatasetList(context.Context, *DatasetReq) (*DatasetResp, error) - //create DateSet + // get modelarts Token + GetDatasetList(context.Context, *DataSetReq) (*DataSetResp, error) + // create DateSet CreateDataSet(context.Context, *CreateDataSetReq) (*CreateDataSetResq, error) - //create DateSet + // create DateSet DeleteDataSet(context.Context, *DeleteDataSetReq) (*DeleteDataSetResq, error) - //creat task 创建导入任务 + // creat task 创建导入任务 CreateTask(context.Context, *ImportTaskDataReq) (*ImportTaskDataResp, error) - //get taskList 查询数据集导入任务列表 + // get taskList 查询数据集导入任务列表 GetImportTaskList(context.Context, *ListImportTasksReq) (*ListImportTasksResp, error) - // ListTrainingJobs 查询训练作业列表 + // ListTrainingJobs 查询训练作业列表 GetListTrainingJobs(context.Context, *ListTrainingJobsreq) (*ListTrainingJobsresp, error) - // CreateTrainingJob 创建训练作业 + // CreateTrainingJob 创建训练作业 CreateTrainingJob(context.Context, *CreateTrainingJobReq) (*CreateTrainingJobResp, error) - // DeleteTrainingJobConfig 删除训练作业 + // DeleteTrainingJobConfig 删除训练作业 DeleteTrainingJob(context.Context, *DeleteTrainingJobReq) (*DeleteTrainingJobResp, error) - // CreateTrainingJobConfig 创建训练作业参数 + // CreateTrainingJobConfig 创建训练作业参数 CreateTrainingJobConfig(context.Context, *CreateTrainingJobConfigReq) (*CreateTrainingJobConfigResp, error) - // DeleteTrainingJobConfig 删除训练作业参数 + // DeleteTrainingJobConfig 删除训练作业参数 DeleteTrainingJobConfig(context.Context, *DeleteTrainingJobConfigReq) (*DeleteTrainingJobConfigResp, error) - // ListTrainingJobConfig 查询训练作业参数 + // ListTrainingJobConfig 查询训练作业参数 ListTrainingJobConfig(context.Context, *ListTrainingJobConfigReq) (*ListTrainingJobConfigResp, error) - // CreateAlgorithm 创建算法 + // CreateAlgorithm 创建算法 CreateAlgorithm(context.Context, *CreateAlgorithmReq) (*CreateAlgorithmResp, error) - // ListAlgorithms 查询算法 + // ListAlgorithms 查询算法 ListAlgorithms(context.Context, *ListAlgorithmsReq) (*ListAlgorithmsResp, error) - // DeleteAlgorithms 删除算法 + // DeleteAlgorithms 删除算法 DeleteAlgorithms(context.Context, *DeleteAlgorithmsReq) (*DeleteAlgorithmsResp, error) - // ShowAlgorithmByUuid 展示算法详情 + // ShowAlgorithmByUuid 展示算法详情 ShowAlgorithmByUuid(context.Context, *ShowAlgorithmByUuidReq) (*ShowAlgorithmByUuidResp, error) //export task ExportTask(context.Context, *ExportTaskReq) (*ExportTaskResp, error) GetExportTasksOfDataset(context.Context, *GetExportTasksOfDatasetReq) (*GetExportTasksOfDatasetResp, error) GetExportTaskStatusOfDataset(context.Context, *GetExportTaskStatusOfDatasetReq) (*GetExportTaskStatusOfDatasetResp, error) - //processor task + // processor task CreateProcessorTask(context.Context, *CreateProcessorTaskReq) (*CreateProcessorTaskResp, error) DescribeProcessorTask(context.Context, *DescribeProcessorTaskReq) (*DescribeProcessorTaskResp, error) - //model management + // model management CreateModel(context.Context, *CreateModelReq) (*CreateModelResp, error) DeleteModel(context.Context, *DeleteModelReq) (*DeleteModelResp, error) ListModels(context.Context, *ListModelReq) (*ListModelResp, error) ShowModels(context.Context, *ShowModelReq) (*ShowModelResp, error) - //service management + // service management CreateService(context.Context, *CreateServiceReq) (*CreateServiceResp, error) ListServices(context.Context, *ListServicesReq) (*ListServicesResp, error) ShowService(context.Context, *ShowServiceReq) (*ShowServiceResp, error) DeleteService(context.Context, *DeleteServiceReq) (*DeleteServiceResp, error) ListClusters(context.Context, *ListClustersReq) (*ListClustersResp, error) - //notebook task + // notebook task ListNotebook(context.Context, *ListNotebookReq) (*ListNotebookResp, error) CreateNotebook(context.Context, *CreateNotebookReq) (*CreateNotebookResp, error) StartNotebook(context.Context, *StartNotebookReq) (*StartNotebookResp, error) StopNotebook(context.Context, *StopNotebookReq) (*StopNotebookResp, error) GetNotebookStorage(context.Context, *GetNotebookStorageReq) (*GetNotebookStorageResp, error) MountNotebookStorage(context.Context, *MountNotebookStorageReq) (*MountNotebookStorageResp, error) - //visualization-jobs + // visualization-jobs GetVisualizationJob(context.Context, *GetVisualizationJobReq) (*GetVisualizationJobResp, error) CreateVisualizationJob(context.Context, *CreateVisualizationJobReq) (*CreateVisualizationJobResp, error) mustEmbedUnimplementedModelArtsServer() @@ -508,7 +508,7 @@ type UnimplementedModelArtsServer struct { func (UnimplementedModelArtsServer) GetToken(context.Context, *TokenReq) (*TokenResp, error) { return nil, status.Errorf(codes.Unimplemented, "method GetToken not implemented") } -func (UnimplementedModelArtsServer) GetDatasetList(context.Context, *DatasetReq) (*DatasetResp, error) { +func (UnimplementedModelArtsServer) GetDatasetList(context.Context, *DataSetReq) (*DataSetResp, error) { return nil, status.Errorf(codes.Unimplemented, "method GetDatasetList not implemented") } func (UnimplementedModelArtsServer) CreateDataSet(context.Context, *CreateDataSetReq) (*CreateDataSetResq, error) { @@ -651,7 +651,7 @@ func _ModelArts_GetToken_Handler(srv interface{}, ctx context.Context, dec func( } func _ModelArts_GetDatasetList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(DatasetReq) + in := new(DataSetReq) if err := dec(in); err != nil { return nil, err } @@ -663,7 +663,7 @@ func _ModelArts_GetDatasetList_Handler(srv interface{}, ctx context.Context, dec FullMethod: "/modelarts.ModelArts/GetDatasetList", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(ModelArtsServer).GetDatasetList(ctx, req.(*DatasetReq)) + return srv.(ModelArtsServer).GetDatasetList(ctx, req.(*DataSetReq)) } return interceptor(ctx, in, info, handler) } diff --git a/adaptor/PCM-AI/PCM-MODELARTS/rpc/modelartsclient/modelarts.go b/adaptor/PCM-AI/PCM-MODELARTS/rpc/modelartsclient/modelarts.go index a1219293..0a9ca0f7 100644 --- a/adaptor/PCM-AI/PCM-MODELARTS/rpc/modelartsclient/modelarts.go +++ b/adaptor/PCM-AI/PCM-MODELARTS/rpc/modelartsclient/modelarts.go @@ -67,13 +67,13 @@ type ( CreateVisualizationJobResp = modelarts.CreateVisualizationJobResp CustomHooks = modelarts.CustomHooks CustomSpec = modelarts.CustomSpec + DataSetReq = modelarts.DataSetReq + DataSetResp = modelarts.DataSetResp + DataSets = modelarts.DataSets DataSource = modelarts.DataSource DataSources = modelarts.DataSources DataVolumesRes = modelarts.DataVolumesRes Dataset = modelarts.Dataset - DatasetReq = modelarts.DatasetReq - DatasetResp = modelarts.DatasetResp - Datasets = modelarts.Datasets DeleteAlgorithmsReq = modelarts.DeleteAlgorithmsReq DeleteAlgorithmsResp = modelarts.DeleteAlgorithmsResp DeleteDataSetReq = modelarts.DeleteDataSetReq @@ -264,7 +264,7 @@ type ( // get modelarts Token GetToken(ctx context.Context, in *TokenReq, opts ...grpc.CallOption) (*TokenResp, error) // get modelarts Token - GetDatasetList(ctx context.Context, in *DatasetReq, opts ...grpc.CallOption) (*DatasetResp, error) + GetDatasetList(ctx context.Context, in *DataSetReq, opts ...grpc.CallOption) (*DataSetResp, error) // create DateSet CreateDataSet(ctx context.Context, in *CreateDataSetReq, opts ...grpc.CallOption) (*CreateDataSetResq, error) // create DateSet @@ -341,7 +341,7 @@ func (m *defaultModelArts) GetToken(ctx context.Context, in *TokenReq, opts ...g } // get modelarts Token -func (m *defaultModelArts) GetDatasetList(ctx context.Context, in *DatasetReq, opts ...grpc.CallOption) (*DatasetResp, error) { +func (m *defaultModelArts) GetDatasetList(ctx context.Context, in *DataSetReq, opts ...grpc.CallOption) (*DataSetResp, error) { client := modelarts.NewModelArtsClient(m.cli.Conn()) return client.GetDatasetList(ctx, in, opts...) } diff --git a/adaptor/PCM-AI/PCM-MODELARTS/rpc/pb/pcm-modelarts.proto b/adaptor/PCM-AI/PCM-MODELARTS/rpc/pb/pcm-modelarts.proto index 8387ad97..6da2c78b 100644 --- a/adaptor/PCM-AI/PCM-MODELARTS/rpc/pb/pcm-modelarts.proto +++ b/adaptor/PCM-AI/PCM-MODELARTS/rpc/pb/pcm-modelarts.proto @@ -49,19 +49,19 @@ message TokenResp{ /******************auth end*************************/ /******************find datasetList start*************************/ -message DatasetReq{ +message DataSetReq{ string project_id = 1; // @gotags: copier:"ProjectId" } -message DatasetResp{ +message DataSetResp{ uint32 total_number = 1; // @gotags: copier:"TotalNumber" - repeated Datasets datasets =2; // @gotags: copier:"Datasets" + repeated DataSets dataSets =2; // @gotags: copier:"DataSets" } -message Datasets{ +message DataSets{ string dataset_id =1; // @gotags: copier:"DatasetId" string data_format =2; // @gotags: copier:"DataFormat" - DataSources data_sources =3; // @gotags: copier:"DataSources" + repeated DataSources data_sources =3; // @gotags: copier:"DataSources" int32 dataset_format =4; // @gotags: copier:"DatasetFormat" string dataset_name =5; // @gotags: copier:"DatasetName" int32 dataset_type =6; // @gotags: copier:"DatasetType" @@ -1980,7 +1980,7 @@ service ModelArts { //get modelarts Token rpc GetToken(TokenReq) returns (TokenResp); //get modelarts Token - rpc GetDatasetList(DatasetReq) returns (DatasetResp); + rpc GetDatasetList(DataSetReq) returns (DataSetResp); //create DateSet rpc CreateDataSet(CreateDataSetReq) returns (CreateDataSetResq); //create DateSet