From 07ff355339dd42a16ee7dcfd71d8b48d5e3f02f9 Mon Sep 17 00:00:00 2001 From: qiwang <1364512070@qq.com> Date: Thu, 5 Sep 2024 17:29:54 +0800 Subject: [PATCH] update the models of modelarts --- client/imagesservice/imagesservice.go | 1 + client/modelartsservice/modelartsservice.go | 1 + .../logic/modelartsservice/showmodelslogic.go | 14 +- modelarts/pcm-modelarts.pb.go | 2452 +++++++++-------- pb/pcm-modelarts.proto | 30 +- 5 files changed, 1299 insertions(+), 1199 deletions(-) diff --git a/client/imagesservice/imagesservice.go b/client/imagesservice/imagesservice.go index 3afe8d89..16300da9 100644 --- a/client/imagesservice/imagesservice.go +++ b/client/imagesservice/imagesservice.go @@ -307,6 +307,7 @@ type ( ShareInfoAlRp = modelarts.ShareInfoAlRp ShowAlgorithmByUuidReq = modelarts.ShowAlgorithmByUuidReq ShowAlgorithmByUuidResp = modelarts.ShowAlgorithmByUuidResp + ShowModelDetail = modelarts.ShowModelDetail ShowModelReq = modelarts.ShowModelReq ShowModelResp = modelarts.ShowModelResp ShowRepositoryReq = modelarts.ShowRepositoryReq diff --git a/client/modelartsservice/modelartsservice.go b/client/modelartsservice/modelartsservice.go index 72214b4e..eaf1855c 100644 --- a/client/modelartsservice/modelartsservice.go +++ b/client/modelartsservice/modelartsservice.go @@ -307,6 +307,7 @@ type ( ShareInfoAlRp = modelarts.ShareInfoAlRp ShowAlgorithmByUuidReq = modelarts.ShowAlgorithmByUuidReq ShowAlgorithmByUuidResp = modelarts.ShowAlgorithmByUuidResp + ShowModelDetail = modelarts.ShowModelDetail ShowModelReq = modelarts.ShowModelReq ShowModelResp = modelarts.ShowModelResp ShowRepositoryReq = modelarts.ShowRepositoryReq diff --git a/internal/logic/modelartsservice/showmodelslogic.go b/internal/logic/modelartsservice/showmodelslogic.go index 2b3ba3b5..c8f30bad 100644 --- a/internal/logic/modelartsservice/showmodelslogic.go +++ b/internal/logic/modelartsservice/showmodelslogic.go @@ -32,17 +32,23 @@ func (l *ShowModelsLogic) ShowModels(in *modelarts.ShowModelReq) (*modelarts.Sho var resp modelarts.ShowModelResp - platform, err := util.GetModelArtsConfWithPlatform(in.Platform) + platform, err := util.GetModelArtsConfWithPlatform(l.svcCtx.Config.ModelArtsConf.Platform) if err != nil { return nil, err } body, err := util.SendRequest("GET", platform.Endpoint+"v1/"+platform.ProjectId+"/models/"+in.ModelId, - nil, in.Platform) + nil, l.svcCtx.Config.ModelArtsConf.Platform) if err != nil { return nil, err } - json.Unmarshal(*body, &resp) - + json.Unmarshal(*body, &resp.ShowModelDetail) + if resp.ShowModelDetail.ModelId != "" { + resp.Code = 200 + resp.Msg = "Success" + } else { + resp.Code = 201 + resp.Msg = "find Models is nil" + } return &resp, nil } diff --git a/modelarts/pcm-modelarts.pb.go b/modelarts/pcm-modelarts.pb.go index 20a8e5bc..1ca1bd01 100644 --- a/modelarts/pcm-modelarts.pb.go +++ b/modelarts/pcm-modelarts.pb.go @@ -14304,44 +14304,9 @@ type ShowModelResp struct { sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` // @gotags: copier:"Code" - ModelVersion string `protobuf:"bytes,2,opt,name=model_version,json=modelVersion,proto3" json:"model_version,omitempty"` - SourceJobVersion string `protobuf:"bytes,3,opt,name=source_job_version,json=sourceJobVersion,proto3" json:"source_job_version,omitempty"` - SourceLocation string `protobuf:"bytes,4,opt,name=source_location,json=sourceLocation,proto3" json:"source_location,omitempty"` - SourceJobId string `protobuf:"bytes,5,opt,name=source_job_id,json=sourceJobId,proto3" json:"source_job_id,omitempty"` - SourceCopy string `protobuf:"bytes,6,opt,name=source_copy,json=sourceCopy,proto3" json:"source_copy,omitempty"` - Description string `protobuf:"bytes,7,opt,name=description,proto3" json:"description,omitempty"` - Project string `protobuf:"bytes,8,opt,name=project,proto3" json:"project,omitempty"` - WorkspaceId string `protobuf:"bytes,9,opt,name=workspace_id,json=workspaceId,proto3" json:"workspace_id,omitempty"` - ModelAlgorithm string `protobuf:"bytes,10,opt,name=model_algorithm,json=modelAlgorithm,proto3" json:"model_algorithm,omitempty"` - ModelName string `protobuf:"bytes,11,opt,name=model_name,json=modelName,proto3" json:"model_name,omitempty"` - Tenant string `protobuf:"bytes,12,opt,name=tenant,proto3" json:"tenant,omitempty"` - ModelDocs []*GuideDoc `protobuf:"bytes,13,rep,name=model_docs,json=modelDocs,proto3" json:"model_docs,omitempty"` - Owner string `protobuf:"bytes,14,opt,name=owner,proto3" json:"owner,omitempty"` - ExecutionCode string `protobuf:"bytes,15,opt,name=execution_code,json=executionCode,proto3" json:"execution_code,omitempty"` - SchemaDoc string `protobuf:"bytes,16,opt,name=schema_doc,json=schemaDoc,proto3" json:"schema_doc,omitempty"` - ImageAddress string `protobuf:"bytes,17,opt,name=image_address,json=imageAddress,proto3" json:"image_address,omitempty"` - OutputParams []*ModelParamsInfo `protobuf:"bytes,18,rep,name=output_params,json=outputParams,proto3" json:"output_params,omitempty"` - Healthy *ModelHealth `protobuf:"bytes,19,opt,name=healthy,proto3" json:"healthy,omitempty"` - Runtime string `protobuf:"bytes,20,opt,name=runtime,proto3" json:"runtime,omitempty"` - ModelMetrics string `protobuf:"bytes,21,opt,name=model_metrics,json=modelMetrics,proto3" json:"model_metrics,omitempty"` - SourceType string `protobuf:"bytes,22,opt,name=source_type,json=sourceType,proto3" json:"source_type,omitempty"` - ModelType string `protobuf:"bytes,23,opt,name=model_type,json=modelType,proto3" json:"model_type,omitempty"` - ModelId string `protobuf:"bytes,24,opt,name=model_id,json=modelId,proto3" json:"model_id,omitempty"` - Dependencies []*ModelDependencies `protobuf:"bytes,25,rep,name=dependencies,proto3" json:"dependencies,omitempty"` - ModelSize uint32 `protobuf:"varint,26,opt,name=model_size,json=modelSize,proto3" json:"model_size,omitempty"` - Apis string `protobuf:"bytes,27,opt,name=apis,proto3" json:"apis,omitempty"` - ModelSource string `protobuf:"bytes,28,opt,name=model_source,json=modelSource,proto3" json:"model_source,omitempty"` - Tunable bool `protobuf:"varint,29,opt,name=tunable,proto3" json:"tunable,omitempty"` - MarketFlag bool `protobuf:"varint,30,opt,name=market_flag,json=marketFlag,proto3" json:"market_flag,omitempty"` - PublishableFlag bool `protobuf:"varint,31,opt,name=publishable_flag,json=publishableFlag,proto3" json:"publishable_flag,omitempty"` - ModelLabels []string `protobuf:"bytes,32,rep,name=model_labels,json=modelLabels,proto3" json:"model_labels,omitempty"` - LabelsMap map[string]string `protobuf:"bytes,33,rep,name=labels_map,json=labelsMap,proto3" json:"labels_map,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` - InstallType []string `protobuf:"bytes,34,rep,name=install_type,json=installType,proto3" json:"install_type,omitempty"` - Config string `protobuf:"bytes,35,opt,name=config,proto3" json:"config,omitempty"` - Specification *ModelSpecification `protobuf:"bytes,36,opt,name=specification,proto3" json:"specification,omitempty"` - InputParams []*ModelParamsInfo `protobuf:"bytes,37,rep,name=input_params,json=inputParams,proto3" json:"input_params,omitempty"` - CreateAt uint32 `protobuf:"varint,38,opt,name=create_at,json=createAt,proto3" json:"create_at,omitempty"` + Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` // @gotags: copier:"Code" + ShowModelDetail *ShowModelDetail `protobuf:"bytes,2,opt,name=ShowModelDetail,proto3" json:"ShowModelDetail,omitempty"` + Msg string `protobuf:"bytes,3,opt,name=msg,proto3" json:"msg,omitempty"` // @gotags: copier:"Msg" } func (x *ShowModelResp) Reset() { @@ -14383,259 +14348,357 @@ func (x *ShowModelResp) GetCode() int32 { return 0 } -func (x *ShowModelResp) GetModelVersion() string { +func (x *ShowModelResp) GetShowModelDetail() *ShowModelDetail { + if x != nil { + return x.ShowModelDetail + } + return nil +} + +func (x *ShowModelResp) GetMsg() string { + if x != nil { + return x.Msg + } + return "" +} + +type ShowModelDetail struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + ModelVersion string `protobuf:"bytes,2,opt,name=model_version,json=modelVersion,proto3" json:"model_version,omitempty"` + SourceJobVersion string `protobuf:"bytes,3,opt,name=source_job_version,json=sourceJobVersion,proto3" json:"source_job_version,omitempty"` + SourceLocation string `protobuf:"bytes,4,opt,name=source_location,json=sourceLocation,proto3" json:"source_location,omitempty"` + SourceJobId string `protobuf:"bytes,5,opt,name=source_job_id,json=sourceJobId,proto3" json:"source_job_id,omitempty"` + SourceCopy string `protobuf:"bytes,6,opt,name=source_copy,json=sourceCopy,proto3" json:"source_copy,omitempty"` + Description string `protobuf:"bytes,7,opt,name=description,proto3" json:"description,omitempty"` + Project string `protobuf:"bytes,8,opt,name=project,proto3" json:"project,omitempty"` + WorkspaceId string `protobuf:"bytes,9,opt,name=workspace_id,json=workspaceId,proto3" json:"workspace_id,omitempty"` + ModelAlgorithm string `protobuf:"bytes,10,opt,name=model_algorithm,json=modelAlgorithm,proto3" json:"model_algorithm,omitempty"` + ModelName string `protobuf:"bytes,11,opt,name=model_name,json=modelName,proto3" json:"model_name,omitempty"` + Tenant string `protobuf:"bytes,12,opt,name=tenant,proto3" json:"tenant,omitempty"` + ModelDocs []*GuideDoc `protobuf:"bytes,13,rep,name=model_docs,json=modelDocs,proto3" json:"model_docs,omitempty"` + Owner string `protobuf:"bytes,14,opt,name=owner,proto3" json:"owner,omitempty"` + ExecutionCode string `protobuf:"bytes,15,opt,name=execution_code,json=executionCode,proto3" json:"execution_code,omitempty"` + SchemaDoc string `protobuf:"bytes,16,opt,name=schema_doc,json=schemaDoc,proto3" json:"schema_doc,omitempty"` + ImageAddress string `protobuf:"bytes,17,opt,name=image_address,json=imageAddress,proto3" json:"image_address,omitempty"` + OutputParams []*ModelParamsInfo `protobuf:"bytes,18,rep,name=output_params,json=outputParams,proto3" json:"output_params,omitempty"` + Healthy *ModelHealth `protobuf:"bytes,19,opt,name=healthy,proto3" json:"healthy,omitempty"` + Runtime string `protobuf:"bytes,20,opt,name=runtime,proto3" json:"runtime,omitempty"` + ModelMetrics string `protobuf:"bytes,21,opt,name=model_metrics,json=modelMetrics,proto3" json:"model_metrics,omitempty"` + SourceType string `protobuf:"bytes,22,opt,name=source_type,json=sourceType,proto3" json:"source_type,omitempty"` + ModelType string `protobuf:"bytes,23,opt,name=model_type,json=modelType,proto3" json:"model_type,omitempty"` + ModelId string `protobuf:"bytes,24,opt,name=model_id,json=modelId,proto3" json:"model_id,omitempty"` + Dependencies []*ModelDependencies `protobuf:"bytes,25,rep,name=dependencies,proto3" json:"dependencies,omitempty"` + ModelSize uint32 `protobuf:"varint,26,opt,name=model_size,json=modelSize,proto3" json:"model_size,omitempty"` + ModelStatus string `protobuf:"bytes,27,opt,name=model_status,json=modelStatus,proto3" json:"model_status,omitempty"` + Apis string `protobuf:"bytes,28,opt,name=apis,proto3" json:"apis,omitempty"` + ModelSource string `protobuf:"bytes,29,opt,name=model_source,json=modelSource,proto3" json:"model_source,omitempty"` + Tunable bool `protobuf:"varint,30,opt,name=tunable,proto3" json:"tunable,omitempty"` + MarketFlag bool `protobuf:"varint,31,opt,name=market_flag,json=marketFlag,proto3" json:"market_flag,omitempty"` + PublishableFlag bool `protobuf:"varint,32,opt,name=publishable_flag,json=publishableFlag,proto3" json:"publishable_flag,omitempty"` + ModelLabels []string `protobuf:"bytes,33,rep,name=model_labels,json=modelLabels,proto3" json:"model_labels,omitempty"` + LabelsMap map[string]string `protobuf:"bytes,34,rep,name=labels_map,json=labelsMap,proto3" json:"labels_map,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + InstallType []string `protobuf:"bytes,35,rep,name=install_type,json=installType,proto3" json:"install_type,omitempty"` + Config string `protobuf:"bytes,36,opt,name=config,proto3" json:"config,omitempty"` + Specification *ModelSpecification `protobuf:"bytes,37,opt,name=specification,proto3" json:"specification,omitempty"` + InputParams []*ModelParamsInfo `protobuf:"bytes,38,rep,name=input_params,json=inputParams,proto3" json:"input_params,omitempty"` + CreateAt uint32 `protobuf:"varint,39,opt,name=create_at,json=createAt,proto3" json:"create_at,omitempty"` +} + +func (x *ShowModelDetail) Reset() { + *x = ShowModelDetail{} + if protoimpl.UnsafeEnabled { + mi := &file_pcm_modelarts_proto_msgTypes[179] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *ShowModelDetail) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ShowModelDetail) ProtoMessage() {} + +func (x *ShowModelDetail) ProtoReflect() protoreflect.Message { + mi := &file_pcm_modelarts_proto_msgTypes[179] + 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 ShowModelDetail.ProtoReflect.Descriptor instead. +func (*ShowModelDetail) Descriptor() ([]byte, []int) { + return file_pcm_modelarts_proto_rawDescGZIP(), []int{179} +} + +func (x *ShowModelDetail) GetModelVersion() string { if x != nil { return x.ModelVersion } return "" } -func (x *ShowModelResp) GetSourceJobVersion() string { +func (x *ShowModelDetail) GetSourceJobVersion() string { if x != nil { return x.SourceJobVersion } return "" } -func (x *ShowModelResp) GetSourceLocation() string { +func (x *ShowModelDetail) GetSourceLocation() string { if x != nil { return x.SourceLocation } return "" } -func (x *ShowModelResp) GetSourceJobId() string { +func (x *ShowModelDetail) GetSourceJobId() string { if x != nil { return x.SourceJobId } return "" } -func (x *ShowModelResp) GetSourceCopy() string { +func (x *ShowModelDetail) GetSourceCopy() string { if x != nil { return x.SourceCopy } return "" } -func (x *ShowModelResp) GetDescription() string { +func (x *ShowModelDetail) GetDescription() string { if x != nil { return x.Description } return "" } -func (x *ShowModelResp) GetProject() string { +func (x *ShowModelDetail) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ShowModelResp) GetWorkspaceId() string { +func (x *ShowModelDetail) GetWorkspaceId() string { if x != nil { return x.WorkspaceId } return "" } -func (x *ShowModelResp) GetModelAlgorithm() string { +func (x *ShowModelDetail) GetModelAlgorithm() string { if x != nil { return x.ModelAlgorithm } return "" } -func (x *ShowModelResp) GetModelName() string { +func (x *ShowModelDetail) GetModelName() string { if x != nil { return x.ModelName } return "" } -func (x *ShowModelResp) GetTenant() string { +func (x *ShowModelDetail) GetTenant() string { if x != nil { return x.Tenant } return "" } -func (x *ShowModelResp) GetModelDocs() []*GuideDoc { +func (x *ShowModelDetail) GetModelDocs() []*GuideDoc { if x != nil { return x.ModelDocs } return nil } -func (x *ShowModelResp) GetOwner() string { +func (x *ShowModelDetail) GetOwner() string { if x != nil { return x.Owner } return "" } -func (x *ShowModelResp) GetExecutionCode() string { +func (x *ShowModelDetail) GetExecutionCode() string { if x != nil { return x.ExecutionCode } return "" } -func (x *ShowModelResp) GetSchemaDoc() string { +func (x *ShowModelDetail) GetSchemaDoc() string { if x != nil { return x.SchemaDoc } return "" } -func (x *ShowModelResp) GetImageAddress() string { +func (x *ShowModelDetail) GetImageAddress() string { if x != nil { return x.ImageAddress } return "" } -func (x *ShowModelResp) GetOutputParams() []*ModelParamsInfo { +func (x *ShowModelDetail) GetOutputParams() []*ModelParamsInfo { if x != nil { return x.OutputParams } return nil } -func (x *ShowModelResp) GetHealthy() *ModelHealth { +func (x *ShowModelDetail) GetHealthy() *ModelHealth { if x != nil { return x.Healthy } return nil } -func (x *ShowModelResp) GetRuntime() string { +func (x *ShowModelDetail) GetRuntime() string { if x != nil { return x.Runtime } return "" } -func (x *ShowModelResp) GetModelMetrics() string { +func (x *ShowModelDetail) GetModelMetrics() string { if x != nil { return x.ModelMetrics } return "" } -func (x *ShowModelResp) GetSourceType() string { +func (x *ShowModelDetail) GetSourceType() string { if x != nil { return x.SourceType } return "" } -func (x *ShowModelResp) GetModelType() string { +func (x *ShowModelDetail) GetModelType() string { if x != nil { return x.ModelType } return "" } -func (x *ShowModelResp) GetModelId() string { +func (x *ShowModelDetail) GetModelId() string { if x != nil { return x.ModelId } return "" } -func (x *ShowModelResp) GetDependencies() []*ModelDependencies { +func (x *ShowModelDetail) GetDependencies() []*ModelDependencies { if x != nil { return x.Dependencies } return nil } -func (x *ShowModelResp) GetModelSize() uint32 { +func (x *ShowModelDetail) GetModelSize() uint32 { if x != nil { return x.ModelSize } return 0 } -func (x *ShowModelResp) GetApis() string { +func (x *ShowModelDetail) GetModelStatus() string { + if x != nil { + return x.ModelStatus + } + return "" +} + +func (x *ShowModelDetail) GetApis() string { if x != nil { return x.Apis } return "" } -func (x *ShowModelResp) GetModelSource() string { +func (x *ShowModelDetail) GetModelSource() string { if x != nil { return x.ModelSource } return "" } -func (x *ShowModelResp) GetTunable() bool { +func (x *ShowModelDetail) GetTunable() bool { if x != nil { return x.Tunable } return false } -func (x *ShowModelResp) GetMarketFlag() bool { +func (x *ShowModelDetail) GetMarketFlag() bool { if x != nil { return x.MarketFlag } return false } -func (x *ShowModelResp) GetPublishableFlag() bool { +func (x *ShowModelDetail) GetPublishableFlag() bool { if x != nil { return x.PublishableFlag } return false } -func (x *ShowModelResp) GetModelLabels() []string { +func (x *ShowModelDetail) GetModelLabels() []string { if x != nil { return x.ModelLabels } return nil } -func (x *ShowModelResp) GetLabelsMap() map[string]string { +func (x *ShowModelDetail) GetLabelsMap() map[string]string { if x != nil { return x.LabelsMap } return nil } -func (x *ShowModelResp) GetInstallType() []string { +func (x *ShowModelDetail) GetInstallType() []string { if x != nil { return x.InstallType } return nil } -func (x *ShowModelResp) GetConfig() string { +func (x *ShowModelDetail) GetConfig() string { if x != nil { return x.Config } return "" } -func (x *ShowModelResp) GetSpecification() *ModelSpecification { +func (x *ShowModelDetail) GetSpecification() *ModelSpecification { if x != nil { return x.Specification } return nil } -func (x *ShowModelResp) GetInputParams() []*ModelParamsInfo { +func (x *ShowModelDetail) GetInputParams() []*ModelParamsInfo { if x != nil { return x.InputParams } return nil } -func (x *ShowModelResp) GetCreateAt() uint32 { +func (x *ShowModelDetail) GetCreateAt() uint32 { if x != nil { return x.CreateAt } @@ -14656,7 +14719,7 @@ type ModelHealth struct { func (x *ModelHealth) Reset() { *x = ModelHealth{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[179] + mi := &file_pcm_modelarts_proto_msgTypes[180] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14669,7 +14732,7 @@ func (x *ModelHealth) String() string { func (*ModelHealth) ProtoMessage() {} func (x *ModelHealth) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[179] + mi := &file_pcm_modelarts_proto_msgTypes[180] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14682,7 +14745,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{179} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{180} } func (x *ModelHealth) GetProtocol() string { @@ -14731,7 +14794,7 @@ type ModelParamsInfo struct { func (x *ModelParamsInfo) Reset() { *x = ModelParamsInfo{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[180] + mi := &file_pcm_modelarts_proto_msgTypes[181] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14744,7 +14807,7 @@ func (x *ModelParamsInfo) String() string { func (*ModelParamsInfo) ProtoMessage() {} func (x *ModelParamsInfo) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[180] + mi := &file_pcm_modelarts_proto_msgTypes[181] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14757,7 +14820,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{180} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{181} } func (x *ModelParamsInfo) GetProtocol() string { @@ -14840,7 +14903,7 @@ type CreateServiceReq struct { func (x *CreateServiceReq) Reset() { *x = CreateServiceReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[181] + mi := &file_pcm_modelarts_proto_msgTypes[182] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14853,7 +14916,7 @@ func (x *CreateServiceReq) String() string { func (*CreateServiceReq) ProtoMessage() {} func (x *CreateServiceReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[181] + mi := &file_pcm_modelarts_proto_msgTypes[182] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14866,7 +14929,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{181} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{182} } func (x *CreateServiceReq) GetWorkspaceId() string { @@ -14975,7 +15038,7 @@ type CreateServiceResp struct { func (x *CreateServiceResp) Reset() { *x = CreateServiceResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[182] + mi := &file_pcm_modelarts_proto_msgTypes[183] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14988,7 +15051,7 @@ func (x *CreateServiceResp) String() string { func (*CreateServiceResp) ProtoMessage() {} func (x *CreateServiceResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[182] + mi := &file_pcm_modelarts_proto_msgTypes[183] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15001,7 +15064,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{182} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{183} } func (x *CreateServiceResp) GetServiceId() string { @@ -15052,7 +15115,7 @@ type Scheduler struct { func (x *Scheduler) Reset() { *x = Scheduler{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[183] + mi := &file_pcm_modelarts_proto_msgTypes[184] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15065,7 +15128,7 @@ func (x *Scheduler) String() string { func (*Scheduler) ProtoMessage() {} func (x *Scheduler) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[183] + mi := &file_pcm_modelarts_proto_msgTypes[184] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15078,7 +15141,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{183} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{184} } func (x *Scheduler) GetDuration() int32 { @@ -15125,7 +15188,7 @@ type ServiceConfig struct { func (x *ServiceConfig) Reset() { *x = ServiceConfig{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[184] + mi := &file_pcm_modelarts_proto_msgTypes[185] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15138,7 +15201,7 @@ func (x *ServiceConfig) String() string { func (*ServiceConfig) ProtoMessage() {} func (x *ServiceConfig) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[184] + mi := &file_pcm_modelarts_proto_msgTypes[185] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15151,7 +15214,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{184} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{185} } func (x *ServiceConfig) GetCustomSpec() *CustomSpec { @@ -15259,7 +15322,7 @@ type CustomSpec struct { func (x *CustomSpec) Reset() { *x = CustomSpec{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[185] + mi := &file_pcm_modelarts_proto_msgTypes[186] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15272,7 +15335,7 @@ func (x *CustomSpec) String() string { func (*CustomSpec) ProtoMessage() {} func (x *CustomSpec) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[185] + mi := &file_pcm_modelarts_proto_msgTypes[186] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15285,7 +15348,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{185} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{186} } func (x *CustomSpec) GetGpuP4() float32 { @@ -15331,7 +15394,7 @@ type DeleteServiceReq struct { func (x *DeleteServiceReq) Reset() { *x = DeleteServiceReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[186] + mi := &file_pcm_modelarts_proto_msgTypes[187] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15344,7 +15407,7 @@ func (x *DeleteServiceReq) String() string { func (*DeleteServiceReq) ProtoMessage() {} func (x *DeleteServiceReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[186] + mi := &file_pcm_modelarts_proto_msgTypes[187] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15357,7 +15420,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{186} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{187} } func (x *DeleteServiceReq) GetProjectId() string { @@ -15401,7 +15464,7 @@ type DeleteServiceResp struct { func (x *DeleteServiceResp) Reset() { *x = DeleteServiceResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[187] + mi := &file_pcm_modelarts_proto_msgTypes[188] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15414,7 +15477,7 @@ func (x *DeleteServiceResp) String() string { func (*DeleteServiceResp) ProtoMessage() {} func (x *DeleteServiceResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[187] + mi := &file_pcm_modelarts_proto_msgTypes[188] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15427,7 +15490,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{187} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{188} } func (x *DeleteServiceResp) GetCode() int32 { @@ -15466,7 +15529,7 @@ type ShowServiceReq struct { func (x *ShowServiceReq) Reset() { *x = ShowServiceReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[188] + mi := &file_pcm_modelarts_proto_msgTypes[189] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15479,7 +15542,7 @@ func (x *ShowServiceReq) String() string { func (*ShowServiceReq) ProtoMessage() {} func (x *ShowServiceReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[188] + mi := &file_pcm_modelarts_proto_msgTypes[189] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15492,7 +15555,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{188} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{189} } func (x *ShowServiceReq) GetProjectId() string { @@ -15569,7 +15632,7 @@ type ShowServiceResp struct { func (x *ShowServiceResp) Reset() { *x = ShowServiceResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[189] + mi := &file_pcm_modelarts_proto_msgTypes[190] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15582,7 +15645,7 @@ func (x *ShowServiceResp) String() string { func (*ShowServiceResp) ProtoMessage() {} func (x *ShowServiceResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[189] + mi := &file_pcm_modelarts_proto_msgTypes[190] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15595,7 +15658,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{189} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{190} } func (x *ShowServiceResp) GetFailedTimes() uint32 { @@ -15882,7 +15945,7 @@ type QueryServiceConfig struct { func (x *QueryServiceConfig) Reset() { *x = QueryServiceConfig{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[190] + mi := &file_pcm_modelarts_proto_msgTypes[191] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15895,7 +15958,7 @@ func (x *QueryServiceConfig) String() string { func (*QueryServiceConfig) ProtoMessage() {} func (x *QueryServiceConfig) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[190] + mi := &file_pcm_modelarts_proto_msgTypes[191] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15908,7 +15971,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{190} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{191} } func (x *QueryServiceConfig) GetModelVersion() string { @@ -16082,7 +16145,7 @@ type ListServicesReq struct { func (x *ListServicesReq) Reset() { *x = ListServicesReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[191] + mi := &file_pcm_modelarts_proto_msgTypes[192] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16095,7 +16158,7 @@ func (x *ListServicesReq) String() string { func (*ListServicesReq) ProtoMessage() {} func (x *ListServicesReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[191] + mi := &file_pcm_modelarts_proto_msgTypes[192] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16108,7 +16171,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{191} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{192} } func (x *ListServicesReq) GetProjectId() string { @@ -16169,7 +16232,7 @@ type ListServicesResp struct { func (x *ListServicesResp) Reset() { *x = ListServicesResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[192] + mi := &file_pcm_modelarts_proto_msgTypes[193] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16182,7 +16245,7 @@ func (x *ListServicesResp) String() string { func (*ListServicesResp) ProtoMessage() {} func (x *ListServicesResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[192] + mi := &file_pcm_modelarts_proto_msgTypes[193] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16195,7 +16258,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{192} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{193} } func (x *ListServicesResp) GetTotalCount() int32 { @@ -16274,7 +16337,7 @@ type ListServices struct { func (x *ListServices) Reset() { *x = ListServices{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[193] + mi := &file_pcm_modelarts_proto_msgTypes[194] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16287,7 +16350,7 @@ func (x *ListServices) String() string { func (*ListServices) ProtoMessage() {} func (x *ListServices) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[193] + mi := &file_pcm_modelarts_proto_msgTypes[194] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16300,7 +16363,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{193} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{194} } func (x *ListServices) GetFailedTimes() uint32 { @@ -16486,7 +16549,7 @@ type ListSpecificationsReq struct { func (x *ListSpecificationsReq) Reset() { *x = ListSpecificationsReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[194] + mi := &file_pcm_modelarts_proto_msgTypes[195] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16499,7 +16562,7 @@ func (x *ListSpecificationsReq) String() string { func (*ListSpecificationsReq) ProtoMessage() {} func (x *ListSpecificationsReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[194] + mi := &file_pcm_modelarts_proto_msgTypes[195] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16512,7 +16575,7 @@ func (x *ListSpecificationsReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ListSpecificationsReq.ProtoReflect.Descriptor instead. func (*ListSpecificationsReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{194} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{195} } func (x *ListSpecificationsReq) GetProjectId() string { @@ -16565,7 +16628,7 @@ type ListSpecificationsResp struct { func (x *ListSpecificationsResp) Reset() { *x = ListSpecificationsResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[195] + mi := &file_pcm_modelarts_proto_msgTypes[196] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16578,7 +16641,7 @@ func (x *ListSpecificationsResp) String() string { func (*ListSpecificationsResp) ProtoMessage() {} func (x *ListSpecificationsResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[195] + mi := &file_pcm_modelarts_proto_msgTypes[196] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16591,7 +16654,7 @@ func (x *ListSpecificationsResp) ProtoReflect() protoreflect.Message { // Deprecated: Use ListSpecificationsResp.ProtoReflect.Descriptor instead. func (*ListSpecificationsResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{195} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{196} } func (x *ListSpecificationsResp) GetTotalCount() uint32 { @@ -16642,7 +16705,7 @@ type UpdateServiceReq struct { func (x *UpdateServiceReq) Reset() { *x = UpdateServiceReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[196] + mi := &file_pcm_modelarts_proto_msgTypes[197] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16655,7 +16718,7 @@ func (x *UpdateServiceReq) String() string { func (*UpdateServiceReq) ProtoMessage() {} func (x *UpdateServiceReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[196] + mi := &file_pcm_modelarts_proto_msgTypes[197] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16668,7 +16731,7 @@ func (x *UpdateServiceReq) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateServiceReq.ProtoReflect.Descriptor instead. func (*UpdateServiceReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{196} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{197} } func (x *UpdateServiceReq) GetProjectId() string { @@ -16705,7 +16768,7 @@ type UpdateServiceResp struct { func (x *UpdateServiceResp) Reset() { *x = UpdateServiceResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[197] + mi := &file_pcm_modelarts_proto_msgTypes[198] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16718,7 +16781,7 @@ func (x *UpdateServiceResp) String() string { func (*UpdateServiceResp) ProtoMessage() {} func (x *UpdateServiceResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[197] + mi := &file_pcm_modelarts_proto_msgTypes[198] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16731,7 +16794,7 @@ func (x *UpdateServiceResp) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateServiceResp.ProtoReflect.Descriptor instead. func (*UpdateServiceResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{197} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{198} } func (x *UpdateServiceResp) GetCode() int32 { @@ -16767,7 +16830,7 @@ type GetPoolsRuntimeMetricsReq struct { func (x *GetPoolsRuntimeMetricsReq) Reset() { *x = GetPoolsRuntimeMetricsReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[198] + mi := &file_pcm_modelarts_proto_msgTypes[199] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16780,7 +16843,7 @@ func (x *GetPoolsRuntimeMetricsReq) String() string { func (*GetPoolsRuntimeMetricsReq) ProtoMessage() {} func (x *GetPoolsRuntimeMetricsReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[198] + mi := &file_pcm_modelarts_proto_msgTypes[199] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16793,7 +16856,7 @@ func (x *GetPoolsRuntimeMetricsReq) ProtoReflect() protoreflect.Message { // Deprecated: Use GetPoolsRuntimeMetricsReq.ProtoReflect.Descriptor instead. func (*GetPoolsRuntimeMetricsReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{198} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{199} } func (x *GetPoolsRuntimeMetricsReq) GetProjectId() string { @@ -16819,7 +16882,7 @@ type GetPoolsRuntimeMetricsResp struct { func (x *GetPoolsRuntimeMetricsResp) Reset() { *x = GetPoolsRuntimeMetricsResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[199] + mi := &file_pcm_modelarts_proto_msgTypes[200] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16832,7 +16895,7 @@ func (x *GetPoolsRuntimeMetricsResp) String() string { func (*GetPoolsRuntimeMetricsResp) ProtoMessage() {} func (x *GetPoolsRuntimeMetricsResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[199] + mi := &file_pcm_modelarts_proto_msgTypes[200] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16845,7 +16908,7 @@ func (x *GetPoolsRuntimeMetricsResp) ProtoReflect() protoreflect.Message { // Deprecated: Use GetPoolsRuntimeMetricsResp.ProtoReflect.Descriptor instead. func (*GetPoolsRuntimeMetricsResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{199} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{200} } func (x *GetPoolsRuntimeMetricsResp) GetCode() int32 { @@ -16901,7 +16964,7 @@ type GetResourceFlavorsReq struct { func (x *GetResourceFlavorsReq) Reset() { *x = GetResourceFlavorsReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[200] + mi := &file_pcm_modelarts_proto_msgTypes[201] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16914,7 +16977,7 @@ func (x *GetResourceFlavorsReq) String() string { func (*GetResourceFlavorsReq) ProtoMessage() {} func (x *GetResourceFlavorsReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[200] + mi := &file_pcm_modelarts_proto_msgTypes[201] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16927,7 +16990,7 @@ func (x *GetResourceFlavorsReq) ProtoReflect() protoreflect.Message { // Deprecated: Use GetResourceFlavorsReq.ProtoReflect.Descriptor instead. func (*GetResourceFlavorsReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{200} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{201} } func (x *GetResourceFlavorsReq) GetProjectId() string { @@ -16951,7 +17014,7 @@ type GetResourceFlavorsResp struct { func (x *GetResourceFlavorsResp) Reset() { *x = GetResourceFlavorsResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[201] + mi := &file_pcm_modelarts_proto_msgTypes[202] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16964,7 +17027,7 @@ func (x *GetResourceFlavorsResp) String() string { func (*GetResourceFlavorsResp) ProtoMessage() {} func (x *GetResourceFlavorsResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[201] + mi := &file_pcm_modelarts_proto_msgTypes[202] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16977,7 +17040,7 @@ func (x *GetResourceFlavorsResp) ProtoReflect() protoreflect.Message { // Deprecated: Use GetResourceFlavorsResp.ProtoReflect.Descriptor instead. func (*GetResourceFlavorsResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{201} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{202} } func (x *GetResourceFlavorsResp) GetKind() string { @@ -17027,7 +17090,7 @@ type ListClustersReq struct { func (x *ListClustersReq) Reset() { *x = ListClustersReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[202] + mi := &file_pcm_modelarts_proto_msgTypes[203] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17040,7 +17103,7 @@ func (x *ListClustersReq) String() string { func (*ListClustersReq) ProtoMessage() {} func (x *ListClustersReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[202] + mi := &file_pcm_modelarts_proto_msgTypes[203] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17053,7 +17116,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{202} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{203} } func (x *ListClustersReq) GetProjectId() string { @@ -17124,7 +17187,7 @@ type ListClustersResp struct { func (x *ListClustersResp) Reset() { *x = ListClustersResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[203] + mi := &file_pcm_modelarts_proto_msgTypes[204] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17137,7 +17200,7 @@ func (x *ListClustersResp) String() string { func (*ListClustersResp) ProtoMessage() {} func (x *ListClustersResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[203] + mi := &file_pcm_modelarts_proto_msgTypes[204] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17150,7 +17213,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{203} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{204} } func (x *ListClustersResp) GetResp200() *ListClustersResp200 { @@ -17179,7 +17242,7 @@ type ListClustersResp200 struct { func (x *ListClustersResp200) Reset() { *x = ListClustersResp200{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[204] + mi := &file_pcm_modelarts_proto_msgTypes[205] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17192,7 +17255,7 @@ func (x *ListClustersResp200) String() string { func (*ListClustersResp200) ProtoMessage() {} func (x *ListClustersResp200) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[204] + mi := &file_pcm_modelarts_proto_msgTypes[205] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17205,7 +17268,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{204} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{205} } func (x *ListClustersResp200) GetCount() int32 { @@ -17234,7 +17297,7 @@ type ListClustersResp400 struct { func (x *ListClustersResp400) Reset() { *x = ListClustersResp400{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[205] + mi := &file_pcm_modelarts_proto_msgTypes[206] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17247,7 +17310,7 @@ func (x *ListClustersResp400) String() string { func (*ListClustersResp400) ProtoMessage() {} func (x *ListClustersResp400) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[205] + mi := &file_pcm_modelarts_proto_msgTypes[206] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17260,7 +17323,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{205} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{206} } func (x *ListClustersResp400) GetErrorCode() string { @@ -17301,7 +17364,7 @@ type Cluster struct { func (x *Cluster) Reset() { *x = Cluster{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[206] + mi := &file_pcm_modelarts_proto_msgTypes[207] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17314,7 +17377,7 @@ func (x *Cluster) String() string { func (*Cluster) ProtoMessage() {} func (x *Cluster) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[206] + mi := &file_pcm_modelarts_proto_msgTypes[207] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17327,7 +17390,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{206} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{207} } func (x *Cluster) GetOwner() string { @@ -17441,7 +17504,7 @@ type ClusterNode struct { func (x *ClusterNode) Reset() { *x = ClusterNode{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[207] + mi := &file_pcm_modelarts_proto_msgTypes[208] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17454,7 +17517,7 @@ func (x *ClusterNode) String() string { func (*ClusterNode) ProtoMessage() {} func (x *ClusterNode) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[207] + mi := &file_pcm_modelarts_proto_msgTypes[208] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17467,7 +17530,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{207} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{208} } func (x *ClusterNode) GetAvailableCount() int32 { @@ -17513,7 +17576,7 @@ type CreateDataSetReq struct { func (x *CreateDataSetReq) Reset() { *x = CreateDataSetReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[208] + mi := &file_pcm_modelarts_proto_msgTypes[209] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17526,7 +17589,7 @@ func (x *CreateDataSetReq) String() string { func (*CreateDataSetReq) ProtoMessage() {} func (x *CreateDataSetReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[208] + mi := &file_pcm_modelarts_proto_msgTypes[209] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17539,7 +17602,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{208} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{209} } func (x *CreateDataSetReq) GetWorkspaceId() string { @@ -17633,7 +17696,7 @@ type CreateDataSetResq struct { func (x *CreateDataSetResq) Reset() { *x = CreateDataSetResq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[209] + mi := &file_pcm_modelarts_proto_msgTypes[210] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17646,7 +17709,7 @@ func (x *CreateDataSetResq) String() string { func (*CreateDataSetResq) ProtoMessage() {} func (x *CreateDataSetResq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[209] + mi := &file_pcm_modelarts_proto_msgTypes[210] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17659,7 +17722,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{209} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{210} } func (x *CreateDataSetResq) GetDatasetId() string { @@ -17703,7 +17766,7 @@ type DeleteDataSetReq struct { func (x *DeleteDataSetReq) Reset() { *x = DeleteDataSetReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[210] + mi := &file_pcm_modelarts_proto_msgTypes[211] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17716,7 +17779,7 @@ func (x *DeleteDataSetReq) String() string { func (*DeleteDataSetReq) ProtoMessage() {} func (x *DeleteDataSetReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[210] + mi := &file_pcm_modelarts_proto_msgTypes[211] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17729,7 +17792,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{210} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{211} } func (x *DeleteDataSetReq) GetDatasetId() string { @@ -17759,7 +17822,7 @@ type DeleteDataSetResq struct { func (x *DeleteDataSetResq) Reset() { *x = DeleteDataSetResq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[211] + mi := &file_pcm_modelarts_proto_msgTypes[212] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17772,7 +17835,7 @@ func (x *DeleteDataSetResq) String() string { func (*DeleteDataSetResq) ProtoMessage() {} func (x *DeleteDataSetResq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[211] + mi := &file_pcm_modelarts_proto_msgTypes[212] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17785,7 +17848,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{211} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{212} } func (x *DeleteDataSetResq) GetCode() int32 { @@ -17824,7 +17887,7 @@ type ListNotebookReq struct { func (x *ListNotebookReq) Reset() { *x = ListNotebookReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[212] + mi := &file_pcm_modelarts_proto_msgTypes[213] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17837,7 +17900,7 @@ func (x *ListNotebookReq) String() string { func (*ListNotebookReq) ProtoMessage() {} func (x *ListNotebookReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[212] + mi := &file_pcm_modelarts_proto_msgTypes[213] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17850,7 +17913,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{212} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{213} } func (x *ListNotebookReq) GetProjectId() string { @@ -17899,7 +17962,7 @@ type ListNotebookResp struct { func (x *ListNotebookResp) Reset() { *x = ListNotebookResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[213] + mi := &file_pcm_modelarts_proto_msgTypes[214] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17912,7 +17975,7 @@ func (x *ListNotebookResp) String() string { func (*ListNotebookResp) ProtoMessage() {} func (x *ListNotebookResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[213] + mi := &file_pcm_modelarts_proto_msgTypes[214] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17925,7 +17988,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{213} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{214} } func (x *ListNotebookResp) GetCurrent() int32 { @@ -18004,7 +18067,7 @@ type ListNotebookParam struct { func (x *ListNotebookParam) Reset() { *x = ListNotebookParam{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[214] + mi := &file_pcm_modelarts_proto_msgTypes[215] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18017,7 +18080,7 @@ func (x *ListNotebookParam) String() string { func (*ListNotebookParam) ProtoMessage() {} func (x *ListNotebookParam) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[214] + mi := &file_pcm_modelarts_proto_msgTypes[215] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18030,7 +18093,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{214} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{215} } func (x *ListNotebookParam) GetFeature() string { @@ -18117,7 +18180,7 @@ type CreateNotebookReq struct { func (x *CreateNotebookReq) Reset() { *x = CreateNotebookReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[215] + mi := &file_pcm_modelarts_proto_msgTypes[216] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18130,7 +18193,7 @@ func (x *CreateNotebookReq) String() string { func (*CreateNotebookReq) ProtoMessage() {} func (x *CreateNotebookReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[215] + mi := &file_pcm_modelarts_proto_msgTypes[216] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18143,7 +18206,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{215} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{216} } func (x *CreateNotebookReq) GetProjectId() string { @@ -18188,7 +18251,7 @@ type CreateNotebookResp struct { func (x *CreateNotebookResp) Reset() { *x = CreateNotebookResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[216] + mi := &file_pcm_modelarts_proto_msgTypes[217] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18201,7 +18264,7 @@ func (x *CreateNotebookResp) String() string { func (*CreateNotebookResp) ProtoMessage() {} func (x *CreateNotebookResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[216] + mi := &file_pcm_modelarts_proto_msgTypes[217] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18214,7 +18277,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{216} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{217} } func (x *CreateNotebookResp) GetNotebookResp() *NotebookResp { @@ -18267,7 +18330,7 @@ type CreateNotebookParam struct { func (x *CreateNotebookParam) Reset() { *x = CreateNotebookParam{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[217] + mi := &file_pcm_modelarts_proto_msgTypes[218] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18280,7 +18343,7 @@ func (x *CreateNotebookParam) String() string { func (*CreateNotebookParam) ProtoMessage() {} func (x *CreateNotebookParam) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[217] + mi := &file_pcm_modelarts_proto_msgTypes[218] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18293,7 +18356,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{217} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{218} } func (x *CreateNotebookParam) GetDescription() string { @@ -18395,7 +18458,7 @@ type StartNotebookReq struct { func (x *StartNotebookReq) Reset() { *x = StartNotebookReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[218] + mi := &file_pcm_modelarts_proto_msgTypes[219] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18408,7 +18471,7 @@ func (x *StartNotebookReq) String() string { func (*StartNotebookReq) ProtoMessage() {} func (x *StartNotebookReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[218] + mi := &file_pcm_modelarts_proto_msgTypes[219] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18421,7 +18484,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{218} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{219} } func (x *StartNotebookReq) GetId() string { @@ -18473,7 +18536,7 @@ type StartNotebookResp struct { func (x *StartNotebookResp) Reset() { *x = StartNotebookResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[219] + mi := &file_pcm_modelarts_proto_msgTypes[220] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18486,7 +18549,7 @@ func (x *StartNotebookResp) String() string { func (*StartNotebookResp) ProtoMessage() {} func (x *StartNotebookResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[219] + mi := &file_pcm_modelarts_proto_msgTypes[220] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18499,7 +18562,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{219} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{220} } func (x *StartNotebookResp) GetNotebookResp() *NotebookResp { @@ -18542,7 +18605,7 @@ type StartNotebookParam struct { func (x *StartNotebookParam) Reset() { *x = StartNotebookParam{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[220] + mi := &file_pcm_modelarts_proto_msgTypes[221] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18555,7 +18618,7 @@ func (x *StartNotebookParam) String() string { func (*StartNotebookParam) ProtoMessage() {} func (x *StartNotebookParam) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[220] + mi := &file_pcm_modelarts_proto_msgTypes[221] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18568,7 +18631,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{220} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{221} } func (x *StartNotebookParam) GetDuration() int64 { @@ -18599,7 +18662,7 @@ type StopNotebookReq struct { func (x *StopNotebookReq) Reset() { *x = StopNotebookReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[221] + mi := &file_pcm_modelarts_proto_msgTypes[222] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18612,7 +18675,7 @@ func (x *StopNotebookReq) String() string { func (*StopNotebookReq) ProtoMessage() {} func (x *StopNotebookReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[221] + mi := &file_pcm_modelarts_proto_msgTypes[222] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18625,7 +18688,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{221} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{222} } func (x *StopNotebookReq) GetId() string { @@ -18670,7 +18733,7 @@ type StopNotebookResp struct { func (x *StopNotebookResp) Reset() { *x = StopNotebookResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[222] + mi := &file_pcm_modelarts_proto_msgTypes[223] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18683,7 +18746,7 @@ func (x *StopNotebookResp) String() string { func (*StopNotebookResp) ProtoMessage() {} func (x *StopNotebookResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[222] + mi := &file_pcm_modelarts_proto_msgTypes[223] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18696,7 +18759,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{222} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{223} } func (x *StopNotebookResp) GetNotebookResp() *NotebookResp { @@ -18741,7 +18804,7 @@ type GetNotebookStorageReq struct { func (x *GetNotebookStorageReq) Reset() { *x = GetNotebookStorageReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[223] + mi := &file_pcm_modelarts_proto_msgTypes[224] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18754,7 +18817,7 @@ func (x *GetNotebookStorageReq) String() string { func (*GetNotebookStorageReq) ProtoMessage() {} func (x *GetNotebookStorageReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[223] + mi := &file_pcm_modelarts_proto_msgTypes[224] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18767,7 +18830,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{223} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{224} } func (x *GetNotebookStorageReq) GetInstanceId() string { @@ -18813,7 +18876,7 @@ type GetNotebookStorageResp struct { func (x *GetNotebookStorageResp) Reset() { *x = GetNotebookStorageResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[224] + mi := &file_pcm_modelarts_proto_msgTypes[225] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18826,7 +18889,7 @@ func (x *GetNotebookStorageResp) String() string { func (*GetNotebookStorageResp) ProtoMessage() {} func (x *GetNotebookStorageResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[224] + mi := &file_pcm_modelarts_proto_msgTypes[225] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18839,7 +18902,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{224} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{225} } func (x *GetNotebookStorageResp) GetCurrent() int32 { @@ -18892,7 +18955,7 @@ type MountNotebookStorageReq struct { func (x *MountNotebookStorageReq) Reset() { *x = MountNotebookStorageReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[225] + mi := &file_pcm_modelarts_proto_msgTypes[226] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18905,7 +18968,7 @@ func (x *MountNotebookStorageReq) String() string { func (*MountNotebookStorageReq) ProtoMessage() {} func (x *MountNotebookStorageReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[225] + mi := &file_pcm_modelarts_proto_msgTypes[226] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18918,7 +18981,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{225} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{226} } func (x *MountNotebookStorageReq) GetInstanceId() string { @@ -18971,7 +19034,7 @@ type MountNotebookStorageResp struct { func (x *MountNotebookStorageResp) Reset() { *x = MountNotebookStorageResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[226] + mi := &file_pcm_modelarts_proto_msgTypes[227] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18984,7 +19047,7 @@ func (x *MountNotebookStorageResp) String() string { func (*MountNotebookStorageResp) ProtoMessage() {} func (x *MountNotebookStorageResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[226] + mi := &file_pcm_modelarts_proto_msgTypes[227] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18997,7 +19060,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{226} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{227} } func (x *MountNotebookStorageResp) GetCategory() string { @@ -19050,7 +19113,7 @@ type GetNotebookFlavorsReq struct { func (x *GetNotebookFlavorsReq) Reset() { *x = GetNotebookFlavorsReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[227] + mi := &file_pcm_modelarts_proto_msgTypes[228] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19063,7 +19126,7 @@ func (x *GetNotebookFlavorsReq) String() string { func (*GetNotebookFlavorsReq) ProtoMessage() {} func (x *GetNotebookFlavorsReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[227] + mi := &file_pcm_modelarts_proto_msgTypes[228] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19076,7 +19139,7 @@ func (x *GetNotebookFlavorsReq) ProtoReflect() protoreflect.Message { // Deprecated: Use GetNotebookFlavorsReq.ProtoReflect.Descriptor instead. func (*GetNotebookFlavorsReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{227} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{228} } func (x *GetNotebookFlavorsReq) GetProjectId() string { @@ -19129,7 +19192,7 @@ type GetNotebookFlavorsResp struct { func (x *GetNotebookFlavorsResp) Reset() { *x = GetNotebookFlavorsResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[228] + mi := &file_pcm_modelarts_proto_msgTypes[229] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19142,7 +19205,7 @@ func (x *GetNotebookFlavorsResp) String() string { func (*GetNotebookFlavorsResp) ProtoMessage() {} func (x *GetNotebookFlavorsResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[228] + mi := &file_pcm_modelarts_proto_msgTypes[229] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19155,7 +19218,7 @@ func (x *GetNotebookFlavorsResp) ProtoReflect() protoreflect.Message { // Deprecated: Use GetNotebookFlavorsResp.ProtoReflect.Descriptor instead. func (*GetNotebookFlavorsResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{228} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{229} } func (x *GetNotebookFlavorsResp) GetCurrent() uint32 { @@ -19211,7 +19274,7 @@ type ListImagesReq struct { func (x *ListImagesReq) Reset() { *x = ListImagesReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[229] + mi := &file_pcm_modelarts_proto_msgTypes[230] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19224,7 +19287,7 @@ func (x *ListImagesReq) String() string { func (*ListImagesReq) ProtoMessage() {} func (x *ListImagesReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[229] + mi := &file_pcm_modelarts_proto_msgTypes[230] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19237,7 +19300,7 @@ func (x *ListImagesReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ListImagesReq.ProtoReflect.Descriptor instead. func (*ListImagesReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{229} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{230} } func (x *ListImagesReq) GetProjectId() string { @@ -19313,7 +19376,7 @@ type ListImagesResp struct { func (x *ListImagesResp) Reset() { *x = ListImagesResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[230] + mi := &file_pcm_modelarts_proto_msgTypes[231] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19326,7 +19389,7 @@ func (x *ListImagesResp) String() string { func (*ListImagesResp) ProtoMessage() {} func (x *ListImagesResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[230] + mi := &file_pcm_modelarts_proto_msgTypes[231] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19339,7 +19402,7 @@ func (x *ListImagesResp) ProtoReflect() protoreflect.Message { // Deprecated: Use ListImagesResp.ProtoReflect.Descriptor instead. func (*ListImagesResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{230} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{231} } func (x *ListImagesResp) GetCurrent() uint32 { @@ -19400,7 +19463,7 @@ type DeleteImagesReq struct { func (x *DeleteImagesReq) Reset() { *x = DeleteImagesReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[231] + mi := &file_pcm_modelarts_proto_msgTypes[232] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19413,7 +19476,7 @@ func (x *DeleteImagesReq) String() string { func (*DeleteImagesReq) ProtoMessage() {} func (x *DeleteImagesReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[231] + mi := &file_pcm_modelarts_proto_msgTypes[232] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19426,7 +19489,7 @@ func (x *DeleteImagesReq) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteImagesReq.ProtoReflect.Descriptor instead. func (*DeleteImagesReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{231} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{232} } type DeleteImagesResp struct { @@ -19438,7 +19501,7 @@ type DeleteImagesResp struct { func (x *DeleteImagesResp) Reset() { *x = DeleteImagesResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[232] + mi := &file_pcm_modelarts_proto_msgTypes[233] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19451,7 +19514,7 @@ func (x *DeleteImagesResp) String() string { func (*DeleteImagesResp) ProtoMessage() {} func (x *DeleteImagesResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[232] + mi := &file_pcm_modelarts_proto_msgTypes[233] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19464,7 +19527,7 @@ func (x *DeleteImagesResp) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteImagesResp.ProtoReflect.Descriptor instead. func (*DeleteImagesResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{232} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{233} } type MountNotebookStorageParam struct { @@ -19480,7 +19543,7 @@ type MountNotebookStorageParam struct { func (x *MountNotebookStorageParam) Reset() { *x = MountNotebookStorageParam{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[233] + mi := &file_pcm_modelarts_proto_msgTypes[234] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19493,7 +19556,7 @@ func (x *MountNotebookStorageParam) String() string { func (*MountNotebookStorageParam) ProtoMessage() {} func (x *MountNotebookStorageParam) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[233] + mi := &file_pcm_modelarts_proto_msgTypes[234] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19506,7 +19569,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{233} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{234} } func (x *MountNotebookStorageParam) GetCategory() string { @@ -19545,7 +19608,7 @@ type DataVolumesRes struct { func (x *DataVolumesRes) Reset() { *x = DataVolumesRes{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[234] + mi := &file_pcm_modelarts_proto_msgTypes[235] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19558,7 +19621,7 @@ func (x *DataVolumesRes) String() string { func (*DataVolumesRes) ProtoMessage() {} func (x *DataVolumesRes) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[234] + mi := &file_pcm_modelarts_proto_msgTypes[235] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19571,7 +19634,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{234} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{235} } func (x *DataVolumesRes) GetCategory() string { @@ -19642,7 +19705,7 @@ type NotebookResp struct { func (x *NotebookResp) Reset() { *x = NotebookResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[235] + mi := &file_pcm_modelarts_proto_msgTypes[236] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19655,7 +19718,7 @@ func (x *NotebookResp) String() string { func (*NotebookResp) ProtoMessage() {} func (x *NotebookResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[235] + mi := &file_pcm_modelarts_proto_msgTypes[236] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19668,7 +19731,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{235} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{236} } func (x *NotebookResp) GetActionProgress() []*ActionProgress { @@ -19845,7 +19908,7 @@ type UserNotebookResp struct { func (x *UserNotebookResp) Reset() { *x = UserNotebookResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[236] + mi := &file_pcm_modelarts_proto_msgTypes[237] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19858,7 +19921,7 @@ func (x *UserNotebookResp) String() string { func (*UserNotebookResp) ProtoMessage() {} func (x *UserNotebookResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[236] + mi := &file_pcm_modelarts_proto_msgTypes[237] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19871,7 +19934,7 @@ func (x *UserNotebookResp) ProtoReflect() protoreflect.Message { // Deprecated: Use UserNotebookResp.ProtoReflect.Descriptor instead. func (*UserNotebookResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{236} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{237} } func (x *UserNotebookResp) GetDomain() *UserNotebookDomain { @@ -19907,7 +19970,7 @@ type UserNotebookDomain struct { func (x *UserNotebookDomain) Reset() { *x = UserNotebookDomain{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[237] + mi := &file_pcm_modelarts_proto_msgTypes[238] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19920,7 +19983,7 @@ func (x *UserNotebookDomain) String() string { func (*UserNotebookDomain) ProtoMessage() {} func (x *UserNotebookDomain) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[237] + mi := &file_pcm_modelarts_proto_msgTypes[238] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19933,7 +19996,7 @@ func (x *UserNotebookDomain) ProtoReflect() protoreflect.Message { // Deprecated: Use UserNotebookDomain.ProtoReflect.Descriptor instead. func (*UserNotebookDomain) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{237} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{238} } func (x *UserNotebookDomain) GetId() string { @@ -19961,7 +20024,7 @@ type Hooks struct { func (x *Hooks) Reset() { *x = Hooks{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[238] + mi := &file_pcm_modelarts_proto_msgTypes[239] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19974,7 +20037,7 @@ func (x *Hooks) String() string { func (*Hooks) ProtoMessage() {} func (x *Hooks) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[238] + mi := &file_pcm_modelarts_proto_msgTypes[239] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19987,7 +20050,7 @@ func (x *Hooks) ProtoReflect() protoreflect.Message { // Deprecated: Use Hooks.ProtoReflect.Descriptor instead. func (*Hooks) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{238} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{239} } func (x *Hooks) GetContainerHooks() *ContainerHooksResp { @@ -20009,7 +20072,7 @@ type ContainerHooksResp struct { func (x *ContainerHooksResp) Reset() { *x = ContainerHooksResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[239] + mi := &file_pcm_modelarts_proto_msgTypes[240] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20022,7 +20085,7 @@ func (x *ContainerHooksResp) String() string { func (*ContainerHooksResp) ProtoMessage() {} func (x *ContainerHooksResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[239] + mi := &file_pcm_modelarts_proto_msgTypes[240] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20035,7 +20098,7 @@ func (x *ContainerHooksResp) ProtoReflect() protoreflect.Message { // Deprecated: Use ContainerHooksResp.ProtoReflect.Descriptor instead. func (*ContainerHooksResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{239} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{240} } func (x *ContainerHooksResp) GetPostStart() *PostStart { @@ -20065,7 +20128,7 @@ type PostStart struct { func (x *PostStart) Reset() { *x = PostStart{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[240] + mi := &file_pcm_modelarts_proto_msgTypes[241] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20078,7 +20141,7 @@ func (x *PostStart) String() string { func (*PostStart) ProtoMessage() {} func (x *PostStart) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[240] + mi := &file_pcm_modelarts_proto_msgTypes[241] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20091,7 +20154,7 @@ func (x *PostStart) ProtoReflect() protoreflect.Message { // Deprecated: Use PostStart.ProtoReflect.Descriptor instead. func (*PostStart) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{240} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{241} } func (x *PostStart) GetMode() string { @@ -20128,7 +20191,7 @@ type PreStart struct { func (x *PreStart) Reset() { *x = PreStart{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[241] + mi := &file_pcm_modelarts_proto_msgTypes[242] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20141,7 +20204,7 @@ func (x *PreStart) String() string { func (*PreStart) ProtoMessage() {} func (x *PreStart) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[241] + mi := &file_pcm_modelarts_proto_msgTypes[242] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20154,7 +20217,7 @@ func (x *PreStart) ProtoReflect() protoreflect.Message { // Deprecated: Use PreStart.ProtoReflect.Descriptor instead. func (*PreStart) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{241} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{242} } func (x *PreStart) GetMode() string { @@ -20191,7 +20254,7 @@ type ActionProgress struct { func (x *ActionProgress) Reset() { *x = ActionProgress{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[242] + mi := &file_pcm_modelarts_proto_msgTypes[243] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20204,7 +20267,7 @@ func (x *ActionProgress) String() string { func (*ActionProgress) ProtoMessage() {} func (x *ActionProgress) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[242] + mi := &file_pcm_modelarts_proto_msgTypes[243] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20217,7 +20280,7 @@ func (x *ActionProgress) ProtoReflect() protoreflect.Message { // Deprecated: Use ActionProgress.ProtoReflect.Descriptor instead. func (*ActionProgress) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{242} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{243} } func (x *ActionProgress) GetStep() int32 { @@ -20255,7 +20318,7 @@ type JobProgress struct { func (x *JobProgress) Reset() { *x = JobProgress{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[243] + mi := &file_pcm_modelarts_proto_msgTypes[244] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20268,7 +20331,7 @@ func (x *JobProgress) String() string { func (*JobProgress) ProtoMessage() {} func (x *JobProgress) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[243] + mi := &file_pcm_modelarts_proto_msgTypes[244] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20281,7 +20344,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{243} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{244} } func (x *JobProgress) GetNotebookId() string { @@ -20325,7 +20388,7 @@ type EndpointsRes struct { func (x *EndpointsRes) Reset() { *x = EndpointsRes{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[244] + mi := &file_pcm_modelarts_proto_msgTypes[245] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20338,7 +20401,7 @@ func (x *EndpointsRes) String() string { func (*EndpointsRes) ProtoMessage() {} func (x *EndpointsRes) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[244] + mi := &file_pcm_modelarts_proto_msgTypes[245] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20351,7 +20414,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{244} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{245} } func (x *EndpointsRes) GetAllowedAccessIps() []string { @@ -20405,7 +20468,7 @@ type Image struct { func (x *Image) Reset() { *x = Image{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[245] + mi := &file_pcm_modelarts_proto_msgTypes[246] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20418,7 +20481,7 @@ func (x *Image) String() string { func (*Image) ProtoMessage() {} func (x *Image) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[245] + mi := &file_pcm_modelarts_proto_msgTypes[246] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20431,7 +20494,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{245} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{246} } func (x *Image) GetArch() string { @@ -20589,7 +20652,7 @@ type Lease struct { func (x *Lease) Reset() { *x = Lease{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[246] + mi := &file_pcm_modelarts_proto_msgTypes[247] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20602,7 +20665,7 @@ func (x *Lease) String() string { func (*Lease) ProtoMessage() {} func (x *Lease) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[246] + mi := &file_pcm_modelarts_proto_msgTypes[247] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20615,7 +20678,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{246} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{247} } func (x *Lease) GetCreateAt() int64 { @@ -20665,7 +20728,7 @@ type Pool struct { func (x *Pool) Reset() { *x = Pool{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[247] + mi := &file_pcm_modelarts_proto_msgTypes[248] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20678,7 +20741,7 @@ func (x *Pool) String() string { func (*Pool) ProtoMessage() {} func (x *Pool) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[247] + mi := &file_pcm_modelarts_proto_msgTypes[248] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20691,7 +20754,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{247} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{248} } func (x *Pool) GetId() string { @@ -20723,7 +20786,7 @@ type VolumeRes struct { func (x *VolumeRes) Reset() { *x = VolumeRes{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[248] + mi := &file_pcm_modelarts_proto_msgTypes[249] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20736,7 +20799,7 @@ func (x *VolumeRes) String() string { func (*VolumeRes) ProtoMessage() {} func (x *VolumeRes) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[248] + mi := &file_pcm_modelarts_proto_msgTypes[249] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20749,7 +20812,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{248} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{249} } func (x *VolumeRes) GetCapacity() int64 { @@ -20800,7 +20863,7 @@ type EndpointsReq struct { func (x *EndpointsReq) Reset() { *x = EndpointsReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[249] + mi := &file_pcm_modelarts_proto_msgTypes[250] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20813,7 +20876,7 @@ func (x *EndpointsReq) String() string { func (*EndpointsReq) ProtoMessage() {} func (x *EndpointsReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[249] + mi := &file_pcm_modelarts_proto_msgTypes[250] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20826,7 +20889,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{249} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{250} } func (x *EndpointsReq) GetAllowedAccessIps() []string { @@ -20864,7 +20927,7 @@ type VolumeReq struct { func (x *VolumeReq) Reset() { *x = VolumeReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[250] + mi := &file_pcm_modelarts_proto_msgTypes[251] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20877,7 +20940,7 @@ func (x *VolumeReq) String() string { func (*VolumeReq) ProtoMessage() {} func (x *VolumeReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[250] + mi := &file_pcm_modelarts_proto_msgTypes[251] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20890,7 +20953,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{250} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{251} } func (x *VolumeReq) GetCapacity() int64 { @@ -20932,7 +20995,7 @@ type CustomHooks struct { func (x *CustomHooks) Reset() { *x = CustomHooks{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[251] + mi := &file_pcm_modelarts_proto_msgTypes[252] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20945,7 +21008,7 @@ func (x *CustomHooks) String() string { func (*CustomHooks) ProtoMessage() {} func (x *CustomHooks) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[251] + mi := &file_pcm_modelarts_proto_msgTypes[252] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20958,7 +21021,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{251} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{252} } func (x *CustomHooks) GetContainerHooks() *ContainerHooks { @@ -20980,7 +21043,7 @@ type ContainerHooks struct { func (x *ContainerHooks) Reset() { *x = ContainerHooks{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[252] + mi := &file_pcm_modelarts_proto_msgTypes[253] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20993,7 +21056,7 @@ func (x *ContainerHooks) String() string { func (*ContainerHooks) ProtoMessage() {} func (x *ContainerHooks) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[252] + mi := &file_pcm_modelarts_proto_msgTypes[253] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21006,7 +21069,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{252} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{253} } func (x *ContainerHooks) GetPostStart() *Config { @@ -21035,7 +21098,7 @@ type Config struct { func (x *Config) Reset() { *x = Config{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[253] + mi := &file_pcm_modelarts_proto_msgTypes[254] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21048,7 +21111,7 @@ func (x *Config) String() string { func (*Config) ProtoMessage() {} func (x *Config) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[253] + mi := &file_pcm_modelarts_proto_msgTypes[254] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21061,7 +21124,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{253} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{254} } func (x *Config) GetScript() string { @@ -21090,7 +21153,7 @@ type LeaseReq struct { func (x *LeaseReq) Reset() { *x = LeaseReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[254] + mi := &file_pcm_modelarts_proto_msgTypes[255] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21103,7 +21166,7 @@ func (x *LeaseReq) String() string { func (*LeaseReq) ProtoMessage() {} func (x *LeaseReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[254] + mi := &file_pcm_modelarts_proto_msgTypes[255] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21116,7 +21179,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{254} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{255} } func (x *LeaseReq) GetDuration() int64 { @@ -21148,7 +21211,7 @@ type GetVisualizationJobReq struct { func (x *GetVisualizationJobReq) Reset() { *x = GetVisualizationJobReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[255] + mi := &file_pcm_modelarts_proto_msgTypes[256] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21161,7 +21224,7 @@ func (x *GetVisualizationJobReq) String() string { func (*GetVisualizationJobReq) ProtoMessage() {} func (x *GetVisualizationJobReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[255] + mi := &file_pcm_modelarts_proto_msgTypes[256] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21174,7 +21237,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{255} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{256} } func (x *GetVisualizationJobReq) GetProjectId() string { @@ -21222,7 +21285,7 @@ type GetVisualizationJobResp struct { func (x *GetVisualizationJobResp) Reset() { *x = GetVisualizationJobResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[256] + mi := &file_pcm_modelarts_proto_msgTypes[257] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21235,7 +21298,7 @@ func (x *GetVisualizationJobResp) String() string { func (*GetVisualizationJobResp) ProtoMessage() {} func (x *GetVisualizationJobResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[256] + mi := &file_pcm_modelarts_proto_msgTypes[257] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21248,7 +21311,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{256} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{257} } func (x *GetVisualizationJobResp) GetIsSuccess() bool { @@ -21319,7 +21382,7 @@ type Jobs struct { func (x *Jobs) Reset() { *x = Jobs{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[257] + mi := &file_pcm_modelarts_proto_msgTypes[258] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21332,7 +21395,7 @@ func (x *Jobs) String() string { func (*Jobs) ProtoMessage() {} func (x *Jobs) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[257] + mi := &file_pcm_modelarts_proto_msgTypes[258] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21345,7 +21408,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{257} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{258} } func (x *Jobs) GetJobName() string { @@ -21428,7 +21491,7 @@ type GetVisualizationJobParam struct { func (x *GetVisualizationJobParam) Reset() { *x = GetVisualizationJobParam{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[258] + mi := &file_pcm_modelarts_proto_msgTypes[259] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21441,7 +21504,7 @@ func (x *GetVisualizationJobParam) String() string { func (*GetVisualizationJobParam) ProtoMessage() {} func (x *GetVisualizationJobParam) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[258] + mi := &file_pcm_modelarts_proto_msgTypes[259] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21454,7 +21517,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{258} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{259} } func (x *GetVisualizationJobParam) GetStatus() string { @@ -21520,7 +21583,7 @@ type CreateVisualizationJobReq struct { func (x *CreateVisualizationJobReq) Reset() { *x = CreateVisualizationJobReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[259] + mi := &file_pcm_modelarts_proto_msgTypes[260] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21533,7 +21596,7 @@ func (x *CreateVisualizationJobReq) String() string { func (*CreateVisualizationJobReq) ProtoMessage() {} func (x *CreateVisualizationJobReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[259] + mi := &file_pcm_modelarts_proto_msgTypes[260] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21546,7 +21609,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{259} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{260} } func (x *CreateVisualizationJobReq) GetProjectId() string { @@ -21594,7 +21657,7 @@ type CreateVisualizationJobResp struct { func (x *CreateVisualizationJobResp) Reset() { *x = CreateVisualizationJobResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[260] + mi := &file_pcm_modelarts_proto_msgTypes[261] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21607,7 +21670,7 @@ func (x *CreateVisualizationJobResp) String() string { func (*CreateVisualizationJobResp) ProtoMessage() {} func (x *CreateVisualizationJobResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[260] + mi := &file_pcm_modelarts_proto_msgTypes[261] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21620,7 +21683,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{260} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{261} } func (x *CreateVisualizationJobResp) GetErrorMessage() string { @@ -21688,7 +21751,7 @@ type CreateVisualizationJobParam struct { func (x *CreateVisualizationJobParam) Reset() { *x = CreateVisualizationJobParam{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[261] + mi := &file_pcm_modelarts_proto_msgTypes[262] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21701,7 +21764,7 @@ func (x *CreateVisualizationJobParam) String() string { func (*CreateVisualizationJobParam) ProtoMessage() {} func (x *CreateVisualizationJobParam) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[261] + mi := &file_pcm_modelarts_proto_msgTypes[262] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21714,7 +21777,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{261} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{262} } func (x *CreateVisualizationJobParam) GetJobName() string { @@ -21770,7 +21833,7 @@ type Flavor struct { func (x *Flavor) Reset() { *x = Flavor{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[262] + mi := &file_pcm_modelarts_proto_msgTypes[263] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21783,7 +21846,7 @@ func (x *Flavor) String() string { func (*Flavor) ProtoMessage() {} func (x *Flavor) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[262] + mi := &file_pcm_modelarts_proto_msgTypes[263] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21796,7 +21859,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{262} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{263} } func (x *Flavor) GetCode() string { @@ -21819,7 +21882,7 @@ type Schedule struct { func (x *Schedule) Reset() { *x = Schedule{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[263] + mi := &file_pcm_modelarts_proto_msgTypes[264] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21832,7 +21895,7 @@ func (x *Schedule) String() string { func (*Schedule) ProtoMessage() {} func (x *Schedule) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[263] + mi := &file_pcm_modelarts_proto_msgTypes[264] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21845,7 +21908,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{263} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{264} } func (x *Schedule) GetType() string { @@ -21884,7 +21947,7 @@ type ImageReasoningReq struct { func (x *ImageReasoningReq) Reset() { *x = ImageReasoningReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[264] + mi := &file_pcm_modelarts_proto_msgTypes[265] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21897,7 +21960,7 @@ func (x *ImageReasoningReq) String() string { func (*ImageReasoningReq) ProtoMessage() {} func (x *ImageReasoningReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[264] + mi := &file_pcm_modelarts_proto_msgTypes[265] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21910,7 +21973,7 @@ func (x *ImageReasoningReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ImageReasoningReq.ProtoReflect.Descriptor instead. func (*ImageReasoningReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{264} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{265} } func (x *ImageReasoningReq) GetFile() string { @@ -21961,7 +22024,7 @@ type ImageReasoningResp struct { func (x *ImageReasoningResp) Reset() { *x = ImageReasoningResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[265] + mi := &file_pcm_modelarts_proto_msgTypes[266] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21974,7 +22037,7 @@ func (x *ImageReasoningResp) String() string { func (*ImageReasoningResp) ProtoMessage() {} func (x *ImageReasoningResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[265] + mi := &file_pcm_modelarts_proto_msgTypes[266] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21987,7 +22050,7 @@ func (x *ImageReasoningResp) ProtoReflect() protoreflect.Message { // Deprecated: Use ImageReasoningResp.ProtoReflect.Descriptor instead. func (*ImageReasoningResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{265} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{266} } func (x *ImageReasoningResp) GetFilePath() string { @@ -22024,7 +22087,7 @@ type ChatglmReasoningReq struct { func (x *ChatglmReasoningReq) Reset() { *x = ChatglmReasoningReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[266] + mi := &file_pcm_modelarts_proto_msgTypes[267] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22037,7 +22100,7 @@ func (x *ChatglmReasoningReq) String() string { func (*ChatglmReasoningReq) ProtoMessage() {} func (x *ChatglmReasoningReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[266] + mi := &file_pcm_modelarts_proto_msgTypes[267] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22050,7 +22113,7 @@ func (x *ChatglmReasoningReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ChatglmReasoningReq.ProtoReflect.Descriptor instead. func (*ChatglmReasoningReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{266} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{267} } func (x *ChatglmReasoningReq) GetPlatform() string { @@ -22083,7 +22146,7 @@ type ChatglmReasoningResp struct { func (x *ChatglmReasoningResp) Reset() { *x = ChatglmReasoningResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[267] + mi := &file_pcm_modelarts_proto_msgTypes[268] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22096,7 +22159,7 @@ func (x *ChatglmReasoningResp) String() string { func (*ChatglmReasoningResp) ProtoMessage() {} func (x *ChatglmReasoningResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[267] + mi := &file_pcm_modelarts_proto_msgTypes[268] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22109,7 +22172,7 @@ func (x *ChatglmReasoningResp) ProtoReflect() protoreflect.Message { // Deprecated: Use ChatglmReasoningResp.ProtoReflect.Descriptor instead. func (*ChatglmReasoningResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{267} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{268} } type ImageReasoningUrlReq struct { @@ -22125,7 +22188,7 @@ type ImageReasoningUrlReq struct { func (x *ImageReasoningUrlReq) Reset() { *x = ImageReasoningUrlReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[268] + mi := &file_pcm_modelarts_proto_msgTypes[269] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22138,7 +22201,7 @@ func (x *ImageReasoningUrlReq) String() string { func (*ImageReasoningUrlReq) ProtoMessage() {} func (x *ImageReasoningUrlReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[268] + mi := &file_pcm_modelarts_proto_msgTypes[269] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22151,7 +22214,7 @@ func (x *ImageReasoningUrlReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ImageReasoningUrlReq.ProtoReflect.Descriptor instead. func (*ImageReasoningUrlReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{268} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{269} } func (x *ImageReasoningUrlReq) GetServiceName() string { @@ -22188,7 +22251,7 @@ type ImageReasoningUrlResp struct { func (x *ImageReasoningUrlResp) Reset() { *x = ImageReasoningUrlResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[269] + mi := &file_pcm_modelarts_proto_msgTypes[270] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22201,7 +22264,7 @@ func (x *ImageReasoningUrlResp) String() string { func (*ImageReasoningUrlResp) ProtoMessage() {} func (x *ImageReasoningUrlResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[269] + mi := &file_pcm_modelarts_proto_msgTypes[270] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22214,7 +22277,7 @@ func (x *ImageReasoningUrlResp) ProtoReflect() protoreflect.Message { // Deprecated: Use ImageReasoningUrlResp.ProtoReflect.Descriptor instead. func (*ImageReasoningUrlResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{269} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{270} } func (x *ImageReasoningUrlResp) GetCode() string { @@ -22252,7 +22315,7 @@ type GetTrainingJobLogsPreviewReq struct { func (x *GetTrainingJobLogsPreviewReq) Reset() { *x = GetTrainingJobLogsPreviewReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[270] + mi := &file_pcm_modelarts_proto_msgTypes[271] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22265,7 +22328,7 @@ func (x *GetTrainingJobLogsPreviewReq) String() string { func (*GetTrainingJobLogsPreviewReq) ProtoMessage() {} func (x *GetTrainingJobLogsPreviewReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[270] + mi := &file_pcm_modelarts_proto_msgTypes[271] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22278,7 +22341,7 @@ func (x *GetTrainingJobLogsPreviewReq) ProtoReflect() protoreflect.Message { // Deprecated: Use GetTrainingJobLogsPreviewReq.ProtoReflect.Descriptor instead. func (*GetTrainingJobLogsPreviewReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{270} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{271} } func (x *GetTrainingJobLogsPreviewReq) GetProjectId() string { @@ -22322,7 +22385,7 @@ type GetTrainingJobLogsPreviewResp struct { func (x *GetTrainingJobLogsPreviewResp) Reset() { *x = GetTrainingJobLogsPreviewResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[271] + mi := &file_pcm_modelarts_proto_msgTypes[272] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22335,7 +22398,7 @@ func (x *GetTrainingJobLogsPreviewResp) String() string { func (*GetTrainingJobLogsPreviewResp) ProtoMessage() {} func (x *GetTrainingJobLogsPreviewResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[271] + mi := &file_pcm_modelarts_proto_msgTypes[272] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22348,7 +22411,7 @@ func (x *GetTrainingJobLogsPreviewResp) ProtoReflect() protoreflect.Message { // Deprecated: Use GetTrainingJobLogsPreviewResp.ProtoReflect.Descriptor instead. func (*GetTrainingJobLogsPreviewResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{271} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{272} } func (x *GetTrainingJobLogsPreviewResp) GetContent() string { @@ -22385,7 +22448,7 @@ type Errors struct { func (x *Errors) Reset() { *x = Errors{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[272] + mi := &file_pcm_modelarts_proto_msgTypes[273] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22398,7 +22461,7 @@ func (x *Errors) String() string { func (*Errors) ProtoMessage() {} func (x *Errors) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[272] + mi := &file_pcm_modelarts_proto_msgTypes[273] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22411,7 +22474,7 @@ func (x *Errors) ProtoReflect() protoreflect.Message { // Deprecated: Use Errors.ProtoReflect.Descriptor instead. func (*Errors) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{272} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{273} } func (x *Errors) GetErrorCode() string { @@ -22449,7 +22512,7 @@ type NamespaceReq struct { func (x *NamespaceReq) Reset() { *x = NamespaceReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[273] + mi := &file_pcm_modelarts_proto_msgTypes[274] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22462,7 +22525,7 @@ func (x *NamespaceReq) String() string { func (*NamespaceReq) ProtoMessage() {} func (x *NamespaceReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[273] + mi := &file_pcm_modelarts_proto_msgTypes[274] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22475,7 +22538,7 @@ func (x *NamespaceReq) ProtoReflect() protoreflect.Message { // Deprecated: Use NamespaceReq.ProtoReflect.Descriptor instead. func (*NamespaceReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{273} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{274} } func (x *NamespaceReq) GetNamespace() string { @@ -22515,7 +22578,7 @@ type NamespaceInfo struct { func (x *NamespaceInfo) Reset() { *x = NamespaceInfo{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[274] + mi := &file_pcm_modelarts_proto_msgTypes[275] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22528,7 +22591,7 @@ func (x *NamespaceInfo) String() string { func (*NamespaceInfo) ProtoMessage() {} func (x *NamespaceInfo) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[274] + mi := &file_pcm_modelarts_proto_msgTypes[275] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22541,7 +22604,7 @@ func (x *NamespaceInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use NamespaceInfo.ProtoReflect.Descriptor instead. func (*NamespaceInfo) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{274} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{275} } func (x *NamespaceInfo) GetId() uint32 { @@ -22594,7 +22657,7 @@ type ListNamespacesReq struct { func (x *ListNamespacesReq) Reset() { *x = ListNamespacesReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[275] + mi := &file_pcm_modelarts_proto_msgTypes[276] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22607,7 +22670,7 @@ func (x *ListNamespacesReq) String() string { func (*ListNamespacesReq) ProtoMessage() {} func (x *ListNamespacesReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[275] + mi := &file_pcm_modelarts_proto_msgTypes[276] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22620,7 +22683,7 @@ func (x *ListNamespacesReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ListNamespacesReq.ProtoReflect.Descriptor instead. func (*ListNamespacesReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{275} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{276} } func (x *ListNamespacesReq) GetNamespace() string { @@ -22664,7 +22727,7 @@ type ListNamespacesResp struct { func (x *ListNamespacesResp) Reset() { *x = ListNamespacesResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[276] + mi := &file_pcm_modelarts_proto_msgTypes[277] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22677,7 +22740,7 @@ func (x *ListNamespacesResp) String() string { func (*ListNamespacesResp) ProtoMessage() {} func (x *ListNamespacesResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[276] + mi := &file_pcm_modelarts_proto_msgTypes[277] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22690,7 +22753,7 @@ func (x *ListNamespacesResp) ProtoReflect() protoreflect.Message { // Deprecated: Use ListNamespacesResp.ProtoReflect.Descriptor instead. func (*ListNamespacesResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{276} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{277} } func (x *ListNamespacesResp) GetNamespaces() []*NamespaceInfo { @@ -22720,7 +22783,7 @@ type Resp struct { func (x *Resp) Reset() { *x = Resp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[277] + mi := &file_pcm_modelarts_proto_msgTypes[278] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22733,7 +22796,7 @@ func (x *Resp) String() string { func (*Resp) ProtoMessage() {} func (x *Resp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[277] + mi := &file_pcm_modelarts_proto_msgTypes[278] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22746,7 +22809,7 @@ func (x *Resp) ProtoReflect() protoreflect.Message { // Deprecated: Use Resp.ProtoReflect.Descriptor instead. func (*Resp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{277} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{278} } func (x *Resp) GetCode() int32 { @@ -22788,7 +22851,7 @@ type CreateRepoReq struct { func (x *CreateRepoReq) Reset() { *x = CreateRepoReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[278] + mi := &file_pcm_modelarts_proto_msgTypes[279] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22801,7 +22864,7 @@ func (x *CreateRepoReq) String() string { func (*CreateRepoReq) ProtoMessage() {} func (x *CreateRepoReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[278] + mi := &file_pcm_modelarts_proto_msgTypes[279] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22814,7 +22877,7 @@ func (x *CreateRepoReq) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateRepoReq.ProtoReflect.Descriptor instead. func (*CreateRepoReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{278} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{279} } func (x *CreateRepoReq) GetRepository() string { @@ -22880,7 +22943,7 @@ type DeleteRepoReq struct { func (x *DeleteRepoReq) Reset() { *x = DeleteRepoReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[279] + mi := &file_pcm_modelarts_proto_msgTypes[280] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22893,7 +22956,7 @@ func (x *DeleteRepoReq) String() string { func (*DeleteRepoReq) ProtoMessage() {} func (x *DeleteRepoReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[279] + mi := &file_pcm_modelarts_proto_msgTypes[280] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22906,7 +22969,7 @@ func (x *DeleteRepoReq) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteRepoReq.ProtoReflect.Descriptor instead. func (*DeleteRepoReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{279} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{280} } func (x *DeleteRepoReq) GetNamespace() string { @@ -22958,7 +23021,7 @@ type ListRepoReq struct { func (x *ListRepoReq) Reset() { *x = ListRepoReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[280] + mi := &file_pcm_modelarts_proto_msgTypes[281] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22971,7 +23034,7 @@ func (x *ListRepoReq) String() string { func (*ListRepoReq) ProtoMessage() {} func (x *ListRepoReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[280] + mi := &file_pcm_modelarts_proto_msgTypes[281] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22984,7 +23047,7 @@ func (x *ListRepoReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ListRepoReq.ProtoReflect.Descriptor instead. func (*ListRepoReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{280} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{281} } func (x *ListRepoReq) GetNamespace() string { @@ -23092,7 +23155,7 @@ type ReposDetails struct { func (x *ReposDetails) Reset() { *x = ReposDetails{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[281] + mi := &file_pcm_modelarts_proto_msgTypes[282] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23105,7 +23168,7 @@ func (x *ReposDetails) String() string { func (*ReposDetails) ProtoMessage() {} func (x *ReposDetails) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[281] + mi := &file_pcm_modelarts_proto_msgTypes[282] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23118,7 +23181,7 @@ func (x *ReposDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use ReposDetails.ProtoReflect.Descriptor instead. func (*ReposDetails) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{281} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{282} } func (x *ReposDetails) GetName() string { @@ -23259,7 +23322,7 @@ type ListReposDetailsResp struct { func (x *ListReposDetailsResp) Reset() { *x = ListReposDetailsResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[282] + mi := &file_pcm_modelarts_proto_msgTypes[283] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23272,7 +23335,7 @@ func (x *ListReposDetailsResp) String() string { func (*ListReposDetailsResp) ProtoMessage() {} func (x *ListReposDetailsResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[282] + mi := &file_pcm_modelarts_proto_msgTypes[283] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23285,7 +23348,7 @@ func (x *ListReposDetailsResp) ProtoReflect() protoreflect.Message { // Deprecated: Use ListReposDetailsResp.ProtoReflect.Descriptor instead. func (*ListReposDetailsResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{282} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{283} } func (x *ListReposDetailsResp) GetItems() []*ReposDetails { @@ -23317,7 +23380,7 @@ type ShowRepositoryReq struct { func (x *ShowRepositoryReq) Reset() { *x = ShowRepositoryReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[283] + mi := &file_pcm_modelarts_proto_msgTypes[284] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23330,7 +23393,7 @@ func (x *ShowRepositoryReq) String() string { func (*ShowRepositoryReq) ProtoMessage() {} func (x *ShowRepositoryReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[283] + mi := &file_pcm_modelarts_proto_msgTypes[284] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23343,7 +23406,7 @@ func (x *ShowRepositoryReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ShowRepositoryReq.ProtoReflect.Descriptor instead. func (*ShowRepositoryReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{283} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{284} } func (x *ShowRepositoryReq) GetNamespace() string { @@ -23402,7 +23465,7 @@ type ShowRepositoryResp struct { func (x *ShowRepositoryResp) Reset() { *x = ShowRepositoryResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[284] + mi := &file_pcm_modelarts_proto_msgTypes[285] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23415,7 +23478,7 @@ func (x *ShowRepositoryResp) String() string { func (*ShowRepositoryResp) ProtoMessage() {} func (x *ShowRepositoryResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[284] + mi := &file_pcm_modelarts_proto_msgTypes[285] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23428,7 +23491,7 @@ func (x *ShowRepositoryResp) ProtoReflect() protoreflect.Message { // Deprecated: Use ShowRepositoryResp.ProtoReflect.Descriptor instead. func (*ShowRepositoryResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{284} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{285} } func (x *ShowRepositoryResp) GetId() int64 { @@ -23574,7 +23637,7 @@ type UpdateRepoReq struct { func (x *UpdateRepoReq) Reset() { *x = UpdateRepoReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[285] + mi := &file_pcm_modelarts_proto_msgTypes[286] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23587,7 +23650,7 @@ func (x *UpdateRepoReq) String() string { func (*UpdateRepoReq) ProtoMessage() {} func (x *UpdateRepoReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[285] + mi := &file_pcm_modelarts_proto_msgTypes[286] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23600,7 +23663,7 @@ func (x *UpdateRepoReq) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateRepoReq.ProtoReflect.Descriptor instead. func (*UpdateRepoReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{285} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{286} } func (x *UpdateRepoReq) GetCategory() string { @@ -23672,7 +23735,7 @@ type ListRepositoryTagsReq struct { func (x *ListRepositoryTagsReq) Reset() { *x = ListRepositoryTagsReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[286] + mi := &file_pcm_modelarts_proto_msgTypes[287] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23685,7 +23748,7 @@ func (x *ListRepositoryTagsReq) String() string { func (*ListRepositoryTagsReq) ProtoMessage() {} func (x *ListRepositoryTagsReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[286] + mi := &file_pcm_modelarts_proto_msgTypes[287] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23698,7 +23761,7 @@ func (x *ListRepositoryTagsReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ListRepositoryTagsReq.ProtoReflect.Descriptor instead. func (*ListRepositoryTagsReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{286} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{287} } func (x *ListRepositoryTagsReq) GetNamespace() string { @@ -23782,7 +23845,7 @@ type ListRepositoryTagsResp struct { func (x *ListRepositoryTagsResp) Reset() { *x = ListRepositoryTagsResp{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[287] + mi := &file_pcm_modelarts_proto_msgTypes[288] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23795,7 +23858,7 @@ func (x *ListRepositoryTagsResp) String() string { func (*ListRepositoryTagsResp) ProtoMessage() {} func (x *ListRepositoryTagsResp) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[287] + mi := &file_pcm_modelarts_proto_msgTypes[288] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23808,7 +23871,7 @@ func (x *ListRepositoryTagsResp) ProtoReflect() protoreflect.Message { // Deprecated: Use ListRepositoryTagsResp.ProtoReflect.Descriptor instead. func (*ListRepositoryTagsResp) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{287} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{288} } func (x *ListRepositoryTagsResp) GetItems() []*RepositoryTags { @@ -23846,7 +23909,7 @@ type RepositoryTags struct { func (x *RepositoryTags) Reset() { *x = RepositoryTags{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[288] + mi := &file_pcm_modelarts_proto_msgTypes[289] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23859,7 +23922,7 @@ func (x *RepositoryTags) String() string { func (*RepositoryTags) ProtoMessage() {} func (x *RepositoryTags) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[288] + mi := &file_pcm_modelarts_proto_msgTypes[289] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23872,7 +23935,7 @@ func (x *RepositoryTags) ProtoReflect() protoreflect.Message { // Deprecated: Use RepositoryTags.ProtoReflect.Descriptor instead. func (*RepositoryTags) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{288} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{289} } func (x *RepositoryTags) GetId() int64 { @@ -24016,7 +24079,7 @@ type DeleteRepoTagReq struct { func (x *DeleteRepoTagReq) Reset() { *x = DeleteRepoTagReq{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[289] + mi := &file_pcm_modelarts_proto_msgTypes[290] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24029,7 +24092,7 @@ func (x *DeleteRepoTagReq) String() string { func (*DeleteRepoTagReq) ProtoMessage() {} func (x *DeleteRepoTagReq) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[289] + mi := &file_pcm_modelarts_proto_msgTypes[290] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24042,7 +24105,7 @@ func (x *DeleteRepoTagReq) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteRepoTagReq.ProtoReflect.Descriptor instead. func (*DeleteRepoTagReq) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{289} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{290} } func (x *DeleteRepoTagReq) GetNamespace() string { @@ -24094,7 +24157,7 @@ type FileRequest struct { func (x *FileRequest) Reset() { *x = FileRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[290] + mi := &file_pcm_modelarts_proto_msgTypes[291] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24107,7 +24170,7 @@ func (x *FileRequest) String() string { func (*FileRequest) ProtoMessage() {} func (x *FileRequest) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[290] + mi := &file_pcm_modelarts_proto_msgTypes[291] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24120,7 +24183,7 @@ func (x *FileRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use FileRequest.ProtoReflect.Descriptor instead. func (*FileRequest) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{290} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{291} } func (x *FileRequest) GetFileName() string { @@ -24155,7 +24218,7 @@ type FileResponse struct { func (x *FileResponse) Reset() { *x = FileResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[291] + mi := &file_pcm_modelarts_proto_msgTypes[292] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24168,7 +24231,7 @@ func (x *FileResponse) String() string { func (*FileResponse) ProtoMessage() {} func (x *FileResponse) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[291] + mi := &file_pcm_modelarts_proto_msgTypes[292] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24181,7 +24244,7 @@ func (x *FileResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use FileResponse.ProtoReflect.Descriptor instead. func (*FileResponse) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{291} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{292} } func (x *FileResponse) GetFilePath() string { @@ -24203,7 +24266,7 @@ type FileData struct { func (x *FileData) Reset() { *x = FileData{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[292] + mi := &file_pcm_modelarts_proto_msgTypes[293] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24216,7 +24279,7 @@ func (x *FileData) String() string { func (*FileData) ProtoMessage() {} func (x *FileData) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[292] + mi := &file_pcm_modelarts_proto_msgTypes[293] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24229,7 +24292,7 @@ func (x *FileData) ProtoReflect() protoreflect.Message { // Deprecated: Use FileData.ProtoReflect.Descriptor instead. func (*FileData) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{292} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{293} } func (x *FileData) GetFilename() string { @@ -24255,7 +24318,7 @@ type MetricsPoolsRequest struct { func (x *MetricsPoolsRequest) Reset() { *x = MetricsPoolsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[293] + mi := &file_pcm_modelarts_proto_msgTypes[294] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24268,7 +24331,7 @@ func (x *MetricsPoolsRequest) String() string { func (*MetricsPoolsRequest) ProtoMessage() {} func (x *MetricsPoolsRequest) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[293] + mi := &file_pcm_modelarts_proto_msgTypes[294] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24281,7 +24344,7 @@ func (x *MetricsPoolsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MetricsPoolsRequest.ProtoReflect.Descriptor instead. func (*MetricsPoolsRequest) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{293} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{294} } type MetricsPoolsResponse struct { @@ -24293,7 +24356,7 @@ type MetricsPoolsResponse struct { func (x *MetricsPoolsResponse) Reset() { *x = MetricsPoolsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[294] + mi := &file_pcm_modelarts_proto_msgTypes[295] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24306,7 +24369,7 @@ func (x *MetricsPoolsResponse) String() string { func (*MetricsPoolsResponse) ProtoMessage() {} func (x *MetricsPoolsResponse) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[294] + mi := &file_pcm_modelarts_proto_msgTypes[295] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24319,7 +24382,7 @@ func (x *MetricsPoolsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MetricsPoolsResponse.ProtoReflect.Descriptor instead. func (*MetricsPoolsResponse) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{294} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{295} } type ListSpecificationsResp_CpuInfo struct { @@ -24334,7 +24397,7 @@ type ListSpecificationsResp_CpuInfo struct { func (x *ListSpecificationsResp_CpuInfo) Reset() { *x = ListSpecificationsResp_CpuInfo{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[311] + mi := &file_pcm_modelarts_proto_msgTypes[312] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24347,7 +24410,7 @@ func (x *ListSpecificationsResp_CpuInfo) String() string { func (*ListSpecificationsResp_CpuInfo) ProtoMessage() {} func (x *ListSpecificationsResp_CpuInfo) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[311] + mi := &file_pcm_modelarts_proto_msgTypes[312] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24360,7 +24423,7 @@ func (x *ListSpecificationsResp_CpuInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ListSpecificationsResp_CpuInfo.ProtoReflect.Descriptor instead. func (*ListSpecificationsResp_CpuInfo) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{195, 0} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{196, 0} } func (x *ListSpecificationsResp_CpuInfo) GetArch() string { @@ -24389,7 +24452,7 @@ type ListSpecificationsResp_MemoryInfo struct { func (x *ListSpecificationsResp_MemoryInfo) Reset() { *x = ListSpecificationsResp_MemoryInfo{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[312] + mi := &file_pcm_modelarts_proto_msgTypes[313] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24402,7 +24465,7 @@ func (x *ListSpecificationsResp_MemoryInfo) String() string { func (*ListSpecificationsResp_MemoryInfo) ProtoMessage() {} func (x *ListSpecificationsResp_MemoryInfo) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[312] + mi := &file_pcm_modelarts_proto_msgTypes[313] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24415,7 +24478,7 @@ func (x *ListSpecificationsResp_MemoryInfo) ProtoReflect() protoreflect.Message // Deprecated: Use ListSpecificationsResp_MemoryInfo.ProtoReflect.Descriptor instead. func (*ListSpecificationsResp_MemoryInfo) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{195, 1} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{196, 1} } func (x *ListSpecificationsResp_MemoryInfo) GetUnit() string { @@ -24445,7 +24508,7 @@ type ListSpecificationsResp_GpuInfo struct { func (x *ListSpecificationsResp_GpuInfo) Reset() { *x = ListSpecificationsResp_GpuInfo{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[313] + mi := &file_pcm_modelarts_proto_msgTypes[314] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24458,7 +24521,7 @@ func (x *ListSpecificationsResp_GpuInfo) String() string { func (*ListSpecificationsResp_GpuInfo) ProtoMessage() {} func (x *ListSpecificationsResp_GpuInfo) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[313] + mi := &file_pcm_modelarts_proto_msgTypes[314] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24471,7 +24534,7 @@ func (x *ListSpecificationsResp_GpuInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ListSpecificationsResp_GpuInfo.ProtoReflect.Descriptor instead. func (*ListSpecificationsResp_GpuInfo) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{195, 2} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{196, 2} } func (x *ListSpecificationsResp_GpuInfo) GetUnit() string { @@ -24508,7 +24571,7 @@ type ListSpecificationsResp_NpuInfo struct { func (x *ListSpecificationsResp_NpuInfo) Reset() { *x = ListSpecificationsResp_NpuInfo{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[314] + mi := &file_pcm_modelarts_proto_msgTypes[315] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24521,7 +24584,7 @@ func (x *ListSpecificationsResp_NpuInfo) String() string { func (*ListSpecificationsResp_NpuInfo) ProtoMessage() {} func (x *ListSpecificationsResp_NpuInfo) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[314] + mi := &file_pcm_modelarts_proto_msgTypes[315] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24534,7 +24597,7 @@ func (x *ListSpecificationsResp_NpuInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ListSpecificationsResp_NpuInfo.ProtoReflect.Descriptor instead. func (*ListSpecificationsResp_NpuInfo) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{195, 3} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{196, 3} } func (x *ListSpecificationsResp_NpuInfo) GetUnit() string { @@ -24582,7 +24645,7 @@ type ListSpecificationsResp_Specifications struct { func (x *ListSpecificationsResp_Specifications) Reset() { *x = ListSpecificationsResp_Specifications{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[315] + mi := &file_pcm_modelarts_proto_msgTypes[316] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24595,7 +24658,7 @@ func (x *ListSpecificationsResp_Specifications) String() string { func (*ListSpecificationsResp_Specifications) ProtoMessage() {} func (x *ListSpecificationsResp_Specifications) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[315] + mi := &file_pcm_modelarts_proto_msgTypes[316] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24608,7 +24671,7 @@ func (x *ListSpecificationsResp_Specifications) ProtoReflect() protoreflect.Mess // Deprecated: Use ListSpecificationsResp_Specifications.ProtoReflect.Descriptor instead. func (*ListSpecificationsResp_Specifications) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{195, 4} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{196, 4} } func (x *ListSpecificationsResp_Specifications) GetSpecification() string { @@ -24718,7 +24781,7 @@ type GetPoolsRuntimeMetricsResp_Labels struct { func (x *GetPoolsRuntimeMetricsResp_Labels) Reset() { *x = GetPoolsRuntimeMetricsResp_Labels{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[316] + mi := &file_pcm_modelarts_proto_msgTypes[317] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24731,7 +24794,7 @@ func (x *GetPoolsRuntimeMetricsResp_Labels) String() string { func (*GetPoolsRuntimeMetricsResp_Labels) ProtoMessage() {} func (x *GetPoolsRuntimeMetricsResp_Labels) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[316] + mi := &file_pcm_modelarts_proto_msgTypes[317] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24744,7 +24807,7 @@ func (x *GetPoolsRuntimeMetricsResp_Labels) ProtoReflect() protoreflect.Message // Deprecated: Use GetPoolsRuntimeMetricsResp_Labels.ProtoReflect.Descriptor instead. func (*GetPoolsRuntimeMetricsResp_Labels) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{199, 0} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{200, 0} } type GetPoolsRuntimeMetricsResp_Metadata struct { @@ -24760,7 +24823,7 @@ type GetPoolsRuntimeMetricsResp_Metadata struct { func (x *GetPoolsRuntimeMetricsResp_Metadata) Reset() { *x = GetPoolsRuntimeMetricsResp_Metadata{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[317] + mi := &file_pcm_modelarts_proto_msgTypes[318] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24773,7 +24836,7 @@ func (x *GetPoolsRuntimeMetricsResp_Metadata) String() string { func (*GetPoolsRuntimeMetricsResp_Metadata) ProtoMessage() {} func (x *GetPoolsRuntimeMetricsResp_Metadata) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[317] + mi := &file_pcm_modelarts_proto_msgTypes[318] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24786,7 +24849,7 @@ func (x *GetPoolsRuntimeMetricsResp_Metadata) ProtoReflect() protoreflect.Messag // Deprecated: Use GetPoolsRuntimeMetricsResp_Metadata.ProtoReflect.Descriptor instead. func (*GetPoolsRuntimeMetricsResp_Metadata) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{199, 1} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{200, 1} } func (x *GetPoolsRuntimeMetricsResp_Metadata) GetName() string { @@ -24823,7 +24886,7 @@ type GetPoolsRuntimeMetricsResp_Value struct { func (x *GetPoolsRuntimeMetricsResp_Value) Reset() { *x = GetPoolsRuntimeMetricsResp_Value{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[318] + mi := &file_pcm_modelarts_proto_msgTypes[319] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24836,7 +24899,7 @@ func (x *GetPoolsRuntimeMetricsResp_Value) String() string { func (*GetPoolsRuntimeMetricsResp_Value) ProtoMessage() {} func (x *GetPoolsRuntimeMetricsResp_Value) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[318] + mi := &file_pcm_modelarts_proto_msgTypes[319] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24849,7 +24912,7 @@ func (x *GetPoolsRuntimeMetricsResp_Value) ProtoReflect() protoreflect.Message { // Deprecated: Use GetPoolsRuntimeMetricsResp_Value.ProtoReflect.Descriptor instead. func (*GetPoolsRuntimeMetricsResp_Value) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{199, 2} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{200, 2} } func (x *GetPoolsRuntimeMetricsResp_Value) GetCpu() string { @@ -24879,7 +24942,7 @@ type GetPoolsRuntimeMetricsResp_Allocated struct { func (x *GetPoolsRuntimeMetricsResp_Allocated) Reset() { *x = GetPoolsRuntimeMetricsResp_Allocated{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[319] + mi := &file_pcm_modelarts_proto_msgTypes[320] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24892,7 +24955,7 @@ func (x *GetPoolsRuntimeMetricsResp_Allocated) String() string { func (*GetPoolsRuntimeMetricsResp_Allocated) ProtoMessage() {} func (x *GetPoolsRuntimeMetricsResp_Allocated) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[319] + mi := &file_pcm_modelarts_proto_msgTypes[320] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24905,7 +24968,7 @@ func (x *GetPoolsRuntimeMetricsResp_Allocated) ProtoReflect() protoreflect.Messa // Deprecated: Use GetPoolsRuntimeMetricsResp_Allocated.ProtoReflect.Descriptor instead. func (*GetPoolsRuntimeMetricsResp_Allocated) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{199, 3} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{200, 3} } func (x *GetPoolsRuntimeMetricsResp_Allocated) GetValue() *GetPoolsRuntimeMetricsResp_Value { @@ -24942,7 +25005,7 @@ type GetPoolsRuntimeMetricsResp_Value1 struct { func (x *GetPoolsRuntimeMetricsResp_Value1) Reset() { *x = GetPoolsRuntimeMetricsResp_Value1{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[320] + mi := &file_pcm_modelarts_proto_msgTypes[321] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24955,7 +25018,7 @@ func (x *GetPoolsRuntimeMetricsResp_Value1) String() string { func (*GetPoolsRuntimeMetricsResp_Value1) ProtoMessage() {} func (x *GetPoolsRuntimeMetricsResp_Value1) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[320] + mi := &file_pcm_modelarts_proto_msgTypes[321] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24968,7 +25031,7 @@ func (x *GetPoolsRuntimeMetricsResp_Value1) ProtoReflect() protoreflect.Message // Deprecated: Use GetPoolsRuntimeMetricsResp_Value1.ProtoReflect.Descriptor instead. func (*GetPoolsRuntimeMetricsResp_Value1) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{199, 4} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{200, 4} } func (x *GetPoolsRuntimeMetricsResp_Value1) GetCpu() string { @@ -24998,7 +25061,7 @@ type GetPoolsRuntimeMetricsResp_MaxValue struct { func (x *GetPoolsRuntimeMetricsResp_MaxValue) Reset() { *x = GetPoolsRuntimeMetricsResp_MaxValue{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[321] + mi := &file_pcm_modelarts_proto_msgTypes[322] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25011,7 +25074,7 @@ func (x *GetPoolsRuntimeMetricsResp_MaxValue) String() string { func (*GetPoolsRuntimeMetricsResp_MaxValue) ProtoMessage() {} func (x *GetPoolsRuntimeMetricsResp_MaxValue) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[321] + mi := &file_pcm_modelarts_proto_msgTypes[322] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25024,7 +25087,7 @@ func (x *GetPoolsRuntimeMetricsResp_MaxValue) ProtoReflect() protoreflect.Messag // Deprecated: Use GetPoolsRuntimeMetricsResp_MaxValue.ProtoReflect.Descriptor instead. func (*GetPoolsRuntimeMetricsResp_MaxValue) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{199, 5} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{200, 5} } func (x *GetPoolsRuntimeMetricsResp_MaxValue) GetCpu() string { @@ -25056,7 +25119,7 @@ type GetPoolsRuntimeMetricsResp_Capacity struct { func (x *GetPoolsRuntimeMetricsResp_Capacity) Reset() { *x = GetPoolsRuntimeMetricsResp_Capacity{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[322] + mi := &file_pcm_modelarts_proto_msgTypes[323] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25069,7 +25132,7 @@ func (x *GetPoolsRuntimeMetricsResp_Capacity) String() string { func (*GetPoolsRuntimeMetricsResp_Capacity) ProtoMessage() {} func (x *GetPoolsRuntimeMetricsResp_Capacity) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[322] + mi := &file_pcm_modelarts_proto_msgTypes[323] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25082,7 +25145,7 @@ func (x *GetPoolsRuntimeMetricsResp_Capacity) ProtoReflect() protoreflect.Messag // Deprecated: Use GetPoolsRuntimeMetricsResp_Capacity.ProtoReflect.Descriptor instead. func (*GetPoolsRuntimeMetricsResp_Capacity) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{199, 6} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{200, 6} } func (x *GetPoolsRuntimeMetricsResp_Capacity) GetValue() *GetPoolsRuntimeMetricsResp_Value1 { @@ -25132,7 +25195,7 @@ type GetPoolsRuntimeMetricsResp_Table struct { func (x *GetPoolsRuntimeMetricsResp_Table) Reset() { *x = GetPoolsRuntimeMetricsResp_Table{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[323] + mi := &file_pcm_modelarts_proto_msgTypes[324] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25145,7 +25208,7 @@ func (x *GetPoolsRuntimeMetricsResp_Table) String() string { func (*GetPoolsRuntimeMetricsResp_Table) ProtoMessage() {} func (x *GetPoolsRuntimeMetricsResp_Table) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[323] + mi := &file_pcm_modelarts_proto_msgTypes[324] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25158,7 +25221,7 @@ func (x *GetPoolsRuntimeMetricsResp_Table) ProtoReflect() protoreflect.Message { // Deprecated: Use GetPoolsRuntimeMetricsResp_Table.ProtoReflect.Descriptor instead. func (*GetPoolsRuntimeMetricsResp_Table) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{199, 7} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{200, 7} } func (x *GetPoolsRuntimeMetricsResp_Table) GetAllocated() *GetPoolsRuntimeMetricsResp_Allocated { @@ -25187,7 +25250,7 @@ type GetPoolsRuntimeMetricsResp_Items struct { func (x *GetPoolsRuntimeMetricsResp_Items) Reset() { *x = GetPoolsRuntimeMetricsResp_Items{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[324] + mi := &file_pcm_modelarts_proto_msgTypes[325] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25200,7 +25263,7 @@ func (x *GetPoolsRuntimeMetricsResp_Items) String() string { func (*GetPoolsRuntimeMetricsResp_Items) ProtoMessage() {} func (x *GetPoolsRuntimeMetricsResp_Items) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[324] + mi := &file_pcm_modelarts_proto_msgTypes[325] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25213,7 +25276,7 @@ func (x *GetPoolsRuntimeMetricsResp_Items) ProtoReflect() protoreflect.Message { // Deprecated: Use GetPoolsRuntimeMetricsResp_Items.ProtoReflect.Descriptor instead. func (*GetPoolsRuntimeMetricsResp_Items) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{199, 8} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{200, 8} } func (x *GetPoolsRuntimeMetricsResp_Items) GetMetadata() *GetPoolsRuntimeMetricsResp_Metadata { @@ -25239,7 +25302,7 @@ type GetResourceFlavorsResp_Metadata struct { func (x *GetResourceFlavorsResp_Metadata) Reset() { *x = GetResourceFlavorsResp_Metadata{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[325] + mi := &file_pcm_modelarts_proto_msgTypes[326] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25252,7 +25315,7 @@ func (x *GetResourceFlavorsResp_Metadata) String() string { func (*GetResourceFlavorsResp_Metadata) ProtoMessage() {} func (x *GetResourceFlavorsResp_Metadata) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[325] + mi := &file_pcm_modelarts_proto_msgTypes[326] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25265,7 +25328,7 @@ func (x *GetResourceFlavorsResp_Metadata) ProtoReflect() protoreflect.Message { // Deprecated: Use GetResourceFlavorsResp_Metadata.ProtoReflect.Descriptor instead. func (*GetResourceFlavorsResp_Metadata) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{201, 0} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{202, 0} } type GetResourceFlavorsResp_Labels struct { @@ -25277,7 +25340,7 @@ type GetResourceFlavorsResp_Labels struct { func (x *GetResourceFlavorsResp_Labels) Reset() { *x = GetResourceFlavorsResp_Labels{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[326] + mi := &file_pcm_modelarts_proto_msgTypes[327] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25290,7 +25353,7 @@ func (x *GetResourceFlavorsResp_Labels) String() string { func (*GetResourceFlavorsResp_Labels) ProtoMessage() {} func (x *GetResourceFlavorsResp_Labels) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[326] + mi := &file_pcm_modelarts_proto_msgTypes[327] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25303,7 +25366,7 @@ func (x *GetResourceFlavorsResp_Labels) ProtoReflect() protoreflect.Message { // Deprecated: Use GetResourceFlavorsResp_Labels.ProtoReflect.Descriptor instead. func (*GetResourceFlavorsResp_Labels) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{201, 1} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{202, 1} } type GetResourceFlavorsResp_Metadata1 struct { @@ -25318,7 +25381,7 @@ type GetResourceFlavorsResp_Metadata1 struct { func (x *GetResourceFlavorsResp_Metadata1) Reset() { *x = GetResourceFlavorsResp_Metadata1{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[327] + mi := &file_pcm_modelarts_proto_msgTypes[328] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25331,7 +25394,7 @@ func (x *GetResourceFlavorsResp_Metadata1) String() string { func (*GetResourceFlavorsResp_Metadata1) ProtoMessage() {} func (x *GetResourceFlavorsResp_Metadata1) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[327] + mi := &file_pcm_modelarts_proto_msgTypes[328] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25344,7 +25407,7 @@ func (x *GetResourceFlavorsResp_Metadata1) ProtoReflect() protoreflect.Message { // Deprecated: Use GetResourceFlavorsResp_Metadata1.ProtoReflect.Descriptor instead. func (*GetResourceFlavorsResp_Metadata1) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{201, 2} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{202, 2} } func (x *GetResourceFlavorsResp_Metadata1) GetName() string { @@ -25373,7 +25436,7 @@ type GetResourceFlavorsResp_DataVolumes struct { func (x *GetResourceFlavorsResp_DataVolumes) Reset() { *x = GetResourceFlavorsResp_DataVolumes{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[328] + mi := &file_pcm_modelarts_proto_msgTypes[329] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25386,7 +25449,7 @@ func (x *GetResourceFlavorsResp_DataVolumes) String() string { func (*GetResourceFlavorsResp_DataVolumes) ProtoMessage() {} func (x *GetResourceFlavorsResp_DataVolumes) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[328] + mi := &file_pcm_modelarts_proto_msgTypes[329] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25399,7 +25462,7 @@ func (x *GetResourceFlavorsResp_DataVolumes) ProtoReflect() protoreflect.Message // Deprecated: Use GetResourceFlavorsResp_DataVolumes.ProtoReflect.Descriptor instead. func (*GetResourceFlavorsResp_DataVolumes) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{201, 3} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{202, 3} } func (x *GetResourceFlavorsResp_DataVolumes) GetVolumeType() string { @@ -25434,7 +25497,7 @@ type GetResourceFlavorsResp_Spec struct { func (x *GetResourceFlavorsResp_Spec) Reset() { *x = GetResourceFlavorsResp_Spec{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[329] + mi := &file_pcm_modelarts_proto_msgTypes[330] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25447,7 +25510,7 @@ func (x *GetResourceFlavorsResp_Spec) String() string { func (*GetResourceFlavorsResp_Spec) ProtoMessage() {} func (x *GetResourceFlavorsResp_Spec) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[329] + mi := &file_pcm_modelarts_proto_msgTypes[330] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25460,7 +25523,7 @@ func (x *GetResourceFlavorsResp_Spec) ProtoReflect() protoreflect.Message { // Deprecated: Use GetResourceFlavorsResp_Spec.ProtoReflect.Descriptor instead. func (*GetResourceFlavorsResp_Spec) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{201, 4} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{202, 4} } func (x *GetResourceFlavorsResp_Spec) GetCpuArch() string { @@ -25532,7 +25595,7 @@ type GetResourceFlavorsResp_Npu struct { func (x *GetResourceFlavorsResp_Npu) Reset() { *x = GetResourceFlavorsResp_Npu{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[330] + mi := &file_pcm_modelarts_proto_msgTypes[331] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25545,7 +25608,7 @@ func (x *GetResourceFlavorsResp_Npu) String() string { func (*GetResourceFlavorsResp_Npu) ProtoMessage() {} func (x *GetResourceFlavorsResp_Npu) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[330] + mi := &file_pcm_modelarts_proto_msgTypes[331] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25558,7 +25621,7 @@ func (x *GetResourceFlavorsResp_Npu) ProtoReflect() protoreflect.Message { // Deprecated: Use GetResourceFlavorsResp_Npu.ProtoReflect.Descriptor instead. func (*GetResourceFlavorsResp_Npu) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{201, 5} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{202, 5} } func (x *GetResourceFlavorsResp_Npu) GetType() string { @@ -25591,7 +25654,7 @@ type GetResourceFlavorsResp_Phase struct { func (x *GetResourceFlavorsResp_Phase) Reset() { *x = GetResourceFlavorsResp_Phase{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[331] + mi := &file_pcm_modelarts_proto_msgTypes[332] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25604,7 +25667,7 @@ func (x *GetResourceFlavorsResp_Phase) String() string { func (*GetResourceFlavorsResp_Phase) ProtoMessage() {} func (x *GetResourceFlavorsResp_Phase) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[331] + mi := &file_pcm_modelarts_proto_msgTypes[332] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25617,7 +25680,7 @@ func (x *GetResourceFlavorsResp_Phase) ProtoReflect() protoreflect.Message { // Deprecated: Use GetResourceFlavorsResp_Phase.ProtoReflect.Descriptor instead. func (*GetResourceFlavorsResp_Phase) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{201, 6} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{202, 6} } type GetResourceFlavorsResp_Status struct { @@ -25631,7 +25694,7 @@ type GetResourceFlavorsResp_Status struct { func (x *GetResourceFlavorsResp_Status) Reset() { *x = GetResourceFlavorsResp_Status{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[332] + mi := &file_pcm_modelarts_proto_msgTypes[333] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25644,7 +25707,7 @@ func (x *GetResourceFlavorsResp_Status) String() string { func (*GetResourceFlavorsResp_Status) ProtoMessage() {} func (x *GetResourceFlavorsResp_Status) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[332] + mi := &file_pcm_modelarts_proto_msgTypes[333] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25657,7 +25720,7 @@ func (x *GetResourceFlavorsResp_Status) ProtoReflect() protoreflect.Message { // Deprecated: Use GetResourceFlavorsResp_Status.ProtoReflect.Descriptor instead. func (*GetResourceFlavorsResp_Status) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{201, 7} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{202, 7} } func (x *GetResourceFlavorsResp_Status) GetPhase() *GetResourceFlavorsResp_Phase { @@ -25682,7 +25745,7 @@ type GetResourceFlavorsResp_Items struct { func (x *GetResourceFlavorsResp_Items) Reset() { *x = GetResourceFlavorsResp_Items{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[333] + mi := &file_pcm_modelarts_proto_msgTypes[334] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25695,7 +25758,7 @@ func (x *GetResourceFlavorsResp_Items) String() string { func (*GetResourceFlavorsResp_Items) ProtoMessage() {} func (x *GetResourceFlavorsResp_Items) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[333] + mi := &file_pcm_modelarts_proto_msgTypes[334] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25708,7 +25771,7 @@ func (x *GetResourceFlavorsResp_Items) ProtoReflect() protoreflect.Message { // Deprecated: Use GetResourceFlavorsResp_Items.ProtoReflect.Descriptor instead. func (*GetResourceFlavorsResp_Items) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{201, 8} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{202, 8} } func (x *GetResourceFlavorsResp_Items) GetKind() string { @@ -25758,7 +25821,7 @@ type GetNotebookFlavorsResp_Billing struct { func (x *GetNotebookFlavorsResp_Billing) Reset() { *x = GetNotebookFlavorsResp_Billing{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[334] + mi := &file_pcm_modelarts_proto_msgTypes[335] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25771,7 +25834,7 @@ func (x *GetNotebookFlavorsResp_Billing) String() string { func (*GetNotebookFlavorsResp_Billing) ProtoMessage() {} func (x *GetNotebookFlavorsResp_Billing) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[334] + mi := &file_pcm_modelarts_proto_msgTypes[335] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25784,7 +25847,7 @@ func (x *GetNotebookFlavorsResp_Billing) ProtoReflect() protoreflect.Message { // Deprecated: Use GetNotebookFlavorsResp_Billing.ProtoReflect.Descriptor instead. func (*GetNotebookFlavorsResp_Billing) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{228, 0} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{229, 0} } func (x *GetNotebookFlavorsResp_Billing) GetCode() string { @@ -25814,7 +25877,7 @@ type GetNotebookFlavorsResp_Gpu struct { func (x *GetNotebookFlavorsResp_Gpu) Reset() { *x = GetNotebookFlavorsResp_Gpu{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[335] + mi := &file_pcm_modelarts_proto_msgTypes[336] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25827,7 +25890,7 @@ func (x *GetNotebookFlavorsResp_Gpu) String() string { func (*GetNotebookFlavorsResp_Gpu) ProtoMessage() {} func (x *GetNotebookFlavorsResp_Gpu) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[335] + mi := &file_pcm_modelarts_proto_msgTypes[336] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25840,7 +25903,7 @@ func (x *GetNotebookFlavorsResp_Gpu) ProtoReflect() protoreflect.Message { // Deprecated: Use GetNotebookFlavorsResp_Gpu.ProtoReflect.Descriptor instead. func (*GetNotebookFlavorsResp_Gpu) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{228, 1} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{229, 1} } func (x *GetNotebookFlavorsResp_Gpu) GetGpu() float64 { @@ -25888,7 +25951,7 @@ type GetNotebookFlavorsResp_Data struct { func (x *GetNotebookFlavorsResp_Data) Reset() { *x = GetNotebookFlavorsResp_Data{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[336] + mi := &file_pcm_modelarts_proto_msgTypes[337] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25901,7 +25964,7 @@ func (x *GetNotebookFlavorsResp_Data) String() string { func (*GetNotebookFlavorsResp_Data) ProtoMessage() {} func (x *GetNotebookFlavorsResp_Data) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[336] + mi := &file_pcm_modelarts_proto_msgTypes[337] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25914,7 +25977,7 @@ func (x *GetNotebookFlavorsResp_Data) ProtoReflect() protoreflect.Message { // Deprecated: Use GetNotebookFlavorsResp_Data.ProtoReflect.Descriptor instead. func (*GetNotebookFlavorsResp_Data) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{228, 2} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{229, 2} } func (x *GetNotebookFlavorsResp_Data) GetArch() string { @@ -26039,7 +26102,7 @@ type ListImagesResp_Data struct { func (x *ListImagesResp_Data) Reset() { *x = ListImagesResp_Data{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[337] + mi := &file_pcm_modelarts_proto_msgTypes[338] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26052,7 +26115,7 @@ func (x *ListImagesResp_Data) String() string { func (*ListImagesResp_Data) ProtoMessage() {} func (x *ListImagesResp_Data) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[337] + mi := &file_pcm_modelarts_proto_msgTypes[338] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26065,7 +26128,7 @@ func (x *ListImagesResp_Data) ProtoReflect() protoreflect.Message { // Deprecated: Use ListImagesResp_Data.ProtoReflect.Descriptor instead. func (*ListImagesResp_Data) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{230, 0} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{231, 0} } func (x *ListImagesResp_Data) GetArch() string { @@ -26179,7 +26242,7 @@ type MetricsPoolsResponse_SomeMessage struct { func (x *MetricsPoolsResponse_SomeMessage) Reset() { *x = MetricsPoolsResponse_SomeMessage{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[338] + mi := &file_pcm_modelarts_proto_msgTypes[339] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26192,7 +26255,7 @@ func (x *MetricsPoolsResponse_SomeMessage) String() string { func (*MetricsPoolsResponse_SomeMessage) ProtoMessage() {} func (x *MetricsPoolsResponse_SomeMessage) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[338] + mi := &file_pcm_modelarts_proto_msgTypes[339] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26205,7 +26268,7 @@ func (x *MetricsPoolsResponse_SomeMessage) ProtoReflect() protoreflect.Message { // Deprecated: Use MetricsPoolsResponse_SomeMessage.ProtoReflect.Descriptor instead. func (*MetricsPoolsResponse_SomeMessage) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{294, 0} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{295, 0} } func (x *MetricsPoolsResponse_SomeMessage) GetApiVersion() string { @@ -26241,7 +26304,7 @@ type MetricsPoolsResponse_SomeMessage_Value struct { func (x *MetricsPoolsResponse_SomeMessage_Value) Reset() { *x = MetricsPoolsResponse_SomeMessage_Value{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[339] + mi := &file_pcm_modelarts_proto_msgTypes[340] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26254,7 +26317,7 @@ func (x *MetricsPoolsResponse_SomeMessage_Value) String() string { func (*MetricsPoolsResponse_SomeMessage_Value) ProtoMessage() {} func (x *MetricsPoolsResponse_SomeMessage_Value) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[339] + mi := &file_pcm_modelarts_proto_msgTypes[340] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26267,7 +26330,7 @@ func (x *MetricsPoolsResponse_SomeMessage_Value) ProtoReflect() protoreflect.Mes // Deprecated: Use MetricsPoolsResponse_SomeMessage_Value.ProtoReflect.Descriptor instead. func (*MetricsPoolsResponse_SomeMessage_Value) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{294, 0, 0} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{295, 0, 0} } func (x *MetricsPoolsResponse_SomeMessage_Value) GetCpu() uint32 { @@ -26297,7 +26360,7 @@ type MetricsPoolsResponse_SomeMessage_Allocated struct { func (x *MetricsPoolsResponse_SomeMessage_Allocated) Reset() { *x = MetricsPoolsResponse_SomeMessage_Allocated{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[340] + mi := &file_pcm_modelarts_proto_msgTypes[341] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26310,7 +26373,7 @@ func (x *MetricsPoolsResponse_SomeMessage_Allocated) String() string { func (*MetricsPoolsResponse_SomeMessage_Allocated) ProtoMessage() {} func (x *MetricsPoolsResponse_SomeMessage_Allocated) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[340] + mi := &file_pcm_modelarts_proto_msgTypes[341] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26323,7 +26386,7 @@ func (x *MetricsPoolsResponse_SomeMessage_Allocated) ProtoReflect() protoreflect // Deprecated: Use MetricsPoolsResponse_SomeMessage_Allocated.ProtoReflect.Descriptor instead. func (*MetricsPoolsResponse_SomeMessage_Allocated) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{294, 0, 1} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{295, 0, 1} } func (x *MetricsPoolsResponse_SomeMessage_Allocated) GetValue() *MetricsPoolsResponse_SomeMessage_Value { @@ -26359,7 +26422,7 @@ type MetricsPoolsResponse_SomeMessage_Value1 struct { func (x *MetricsPoolsResponse_SomeMessage_Value1) Reset() { *x = MetricsPoolsResponse_SomeMessage_Value1{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[341] + mi := &file_pcm_modelarts_proto_msgTypes[342] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26372,7 +26435,7 @@ func (x *MetricsPoolsResponse_SomeMessage_Value1) String() string { func (*MetricsPoolsResponse_SomeMessage_Value1) ProtoMessage() {} func (x *MetricsPoolsResponse_SomeMessage_Value1) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[341] + mi := &file_pcm_modelarts_proto_msgTypes[342] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26385,7 +26448,7 @@ func (x *MetricsPoolsResponse_SomeMessage_Value1) ProtoReflect() protoreflect.Me // Deprecated: Use MetricsPoolsResponse_SomeMessage_Value1.ProtoReflect.Descriptor instead. func (*MetricsPoolsResponse_SomeMessage_Value1) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{294, 0, 2} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{295, 0, 2} } func (x *MetricsPoolsResponse_SomeMessage_Value1) GetCpu() uint32 { @@ -26414,7 +26477,7 @@ type MetricsPoolsResponse_SomeMessage_Maxvalue struct { func (x *MetricsPoolsResponse_SomeMessage_Maxvalue) Reset() { *x = MetricsPoolsResponse_SomeMessage_Maxvalue{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[342] + mi := &file_pcm_modelarts_proto_msgTypes[343] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26427,7 +26490,7 @@ func (x *MetricsPoolsResponse_SomeMessage_Maxvalue) String() string { func (*MetricsPoolsResponse_SomeMessage_Maxvalue) ProtoMessage() {} func (x *MetricsPoolsResponse_SomeMessage_Maxvalue) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[342] + mi := &file_pcm_modelarts_proto_msgTypes[343] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26440,7 +26503,7 @@ func (x *MetricsPoolsResponse_SomeMessage_Maxvalue) ProtoReflect() protoreflect. // Deprecated: Use MetricsPoolsResponse_SomeMessage_Maxvalue.ProtoReflect.Descriptor instead. func (*MetricsPoolsResponse_SomeMessage_Maxvalue) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{294, 0, 3} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{295, 0, 3} } func (x *MetricsPoolsResponse_SomeMessage_Maxvalue) GetCpu() uint32 { @@ -26471,7 +26534,7 @@ type MetricsPoolsResponse_SomeMessage_Capacity struct { func (x *MetricsPoolsResponse_SomeMessage_Capacity) Reset() { *x = MetricsPoolsResponse_SomeMessage_Capacity{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[343] + mi := &file_pcm_modelarts_proto_msgTypes[344] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26484,7 +26547,7 @@ func (x *MetricsPoolsResponse_SomeMessage_Capacity) String() string { func (*MetricsPoolsResponse_SomeMessage_Capacity) ProtoMessage() {} func (x *MetricsPoolsResponse_SomeMessage_Capacity) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[343] + mi := &file_pcm_modelarts_proto_msgTypes[344] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26497,7 +26560,7 @@ func (x *MetricsPoolsResponse_SomeMessage_Capacity) ProtoReflect() protoreflect. // Deprecated: Use MetricsPoolsResponse_SomeMessage_Capacity.ProtoReflect.Descriptor instead. func (*MetricsPoolsResponse_SomeMessage_Capacity) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{294, 0, 4} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{295, 0, 4} } func (x *MetricsPoolsResponse_SomeMessage_Capacity) GetValue() *MetricsPoolsResponse_SomeMessage_Value1 { @@ -26540,7 +26603,7 @@ type MetricsPoolsResponse_SomeMessage_Table struct { func (x *MetricsPoolsResponse_SomeMessage_Table) Reset() { *x = MetricsPoolsResponse_SomeMessage_Table{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[344] + mi := &file_pcm_modelarts_proto_msgTypes[345] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26553,7 +26616,7 @@ func (x *MetricsPoolsResponse_SomeMessage_Table) String() string { func (*MetricsPoolsResponse_SomeMessage_Table) ProtoMessage() {} func (x *MetricsPoolsResponse_SomeMessage_Table) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[344] + mi := &file_pcm_modelarts_proto_msgTypes[345] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26566,7 +26629,7 @@ func (x *MetricsPoolsResponse_SomeMessage_Table) ProtoReflect() protoreflect.Mes // Deprecated: Use MetricsPoolsResponse_SomeMessage_Table.ProtoReflect.Descriptor instead. func (*MetricsPoolsResponse_SomeMessage_Table) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{294, 0, 5} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{295, 0, 5} } func (x *MetricsPoolsResponse_SomeMessage_Table) GetAllocated() *MetricsPoolsResponse_SomeMessage_Allocated { @@ -26594,7 +26657,7 @@ type MetricsPoolsResponse_SomeMessage_Metadata struct { func (x *MetricsPoolsResponse_SomeMessage_Metadata) Reset() { *x = MetricsPoolsResponse_SomeMessage_Metadata{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[345] + mi := &file_pcm_modelarts_proto_msgTypes[346] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26607,7 +26670,7 @@ func (x *MetricsPoolsResponse_SomeMessage_Metadata) String() string { func (*MetricsPoolsResponse_SomeMessage_Metadata) ProtoMessage() {} func (x *MetricsPoolsResponse_SomeMessage_Metadata) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[345] + mi := &file_pcm_modelarts_proto_msgTypes[346] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26620,7 +26683,7 @@ func (x *MetricsPoolsResponse_SomeMessage_Metadata) ProtoReflect() protoreflect. // Deprecated: Use MetricsPoolsResponse_SomeMessage_Metadata.ProtoReflect.Descriptor instead. func (*MetricsPoolsResponse_SomeMessage_Metadata) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{294, 0, 6} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{295, 0, 6} } func (x *MetricsPoolsResponse_SomeMessage_Metadata) GetName() string { @@ -26642,7 +26705,7 @@ type MetricsPoolsResponse_SomeMessage_Items struct { func (x *MetricsPoolsResponse_SomeMessage_Items) Reset() { *x = MetricsPoolsResponse_SomeMessage_Items{} if protoimpl.UnsafeEnabled { - mi := &file_pcm_modelarts_proto_msgTypes[346] + mi := &file_pcm_modelarts_proto_msgTypes[347] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26655,7 +26718,7 @@ func (x *MetricsPoolsResponse_SomeMessage_Items) String() string { func (*MetricsPoolsResponse_SomeMessage_Items) ProtoMessage() {} func (x *MetricsPoolsResponse_SomeMessage_Items) ProtoReflect() protoreflect.Message { - mi := &file_pcm_modelarts_proto_msgTypes[346] + mi := &file_pcm_modelarts_proto_msgTypes[347] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26668,7 +26731,7 @@ func (x *MetricsPoolsResponse_SomeMessage_Items) ProtoReflect() protoreflect.Mes // Deprecated: Use MetricsPoolsResponse_SomeMessage_Items.ProtoReflect.Descriptor instead. func (*MetricsPoolsResponse_SomeMessage_Items) Descriptor() ([]byte, []int) { - return file_pcm_modelarts_proto_rawDescGZIP(), []int{294, 0, 7} + return file_pcm_modelarts_proto_rawDescGZIP(), []int{295, 0, 7} } func (x *MetricsPoolsResponse_SomeMessage_Items) GetTable() *MetricsPoolsResponse_SomeMessage_Table { @@ -28920,97 +28983,106 @@ var file_pcm_modelarts_proto_rawDesc = []byte{ 0x65, 0x6c, 0x41, 0x72, 0x74, 0x73, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x41, 0x72, 0x74, 0x73, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x18, 0x04, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x22, 0xe8, 0x0b, 0x0a, 0x0d, - 0x53, 0x68, 0x6f, 0x77, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x12, 0x12, 0x0a, - 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64, - 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, - 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x56, - 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2c, 0x0a, 0x12, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x5f, 0x6a, 0x6f, 0x62, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x10, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4a, 0x6f, 0x62, 0x56, 0x65, 0x72, - 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x27, 0x0a, 0x0f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6c, - 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x22, 0x0a, - 0x0d, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6a, 0x6f, 0x62, 0x5f, 0x69, 0x64, 0x18, 0x05, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4a, 0x6f, 0x62, 0x49, - 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x70, 0x79, - 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x6f, - 0x70, 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, - 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, - 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x18, - 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x12, 0x21, - 0x0a, 0x0c, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x09, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x49, - 0x64, 0x12, 0x27, 0x0a, 0x0f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x61, 0x6c, 0x67, 0x6f, 0x72, - 0x69, 0x74, 0x68, 0x6d, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6d, 0x6f, 0x64, 0x65, - 0x6c, 0x41, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x12, 0x1d, 0x0a, 0x0a, 0x6d, 0x6f, - 0x64, 0x65, 0x6c, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, - 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x65, 0x6e, - 0x61, 0x6e, 0x74, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, - 0x74, 0x12, 0x32, 0x0a, 0x0a, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x64, 0x6f, 0x63, 0x73, 0x18, - 0x0d, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, - 0x73, 0x2e, 0x47, 0x75, 0x69, 0x64, 0x65, 0x44, 0x6f, 0x63, 0x52, 0x09, 0x6d, 0x6f, 0x64, 0x65, - 0x6c, 0x44, 0x6f, 0x63, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x18, 0x0e, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x12, 0x25, 0x0a, 0x0e, 0x65, - 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x0f, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x0d, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, - 0x64, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x5f, 0x64, 0x6f, 0x63, - 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x44, 0x6f, - 0x63, 0x12, 0x23, 0x0a, 0x0d, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, - 0x73, 0x73, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x41, - 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x3f, 0x0a, 0x0d, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, - 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x18, 0x12, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, - 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x50, - 0x61, 0x72, 0x61, 0x6d, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0c, 0x6f, 0x75, 0x74, 0x70, 0x75, - 0x74, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x12, 0x30, 0x0a, 0x07, 0x68, 0x65, 0x61, 0x6c, 0x74, - 0x68, 0x79, 0x18, 0x13, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, - 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, - 0x52, 0x07, 0x68, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x75, 0x6e, - 0x74, 0x69, 0x6d, 0x65, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x72, 0x75, 0x6e, 0x74, - 0x69, 0x6d, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x6d, 0x65, 0x74, - 0x72, 0x69, 0x63, 0x73, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6d, 0x6f, 0x64, 0x65, - 0x6c, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x6d, 0x6f, 0x64, - 0x65, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x17, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6d, - 0x6f, 0x64, 0x65, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x6d, 0x6f, 0x64, 0x65, - 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x18, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x6f, 0x64, 0x65, - 0x6c, 0x49, 0x64, 0x12, 0x40, 0x0a, 0x0c, 0x64, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x65, 0x6e, 0x63, - 0x69, 0x65, 0x73, 0x18, 0x19, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x6d, 0x6f, 0x64, 0x65, - 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x44, 0x65, 0x70, 0x65, 0x6e, - 0x64, 0x65, 0x6e, 0x63, 0x69, 0x65, 0x73, 0x52, 0x0c, 0x64, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x65, - 0x6e, 0x63, 0x69, 0x65, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x73, - 0x69, 0x7a, 0x65, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x6d, 0x6f, 0x64, 0x65, 0x6c, - 0x53, 0x69, 0x7a, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x70, 0x69, 0x73, 0x18, 0x1b, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x04, 0x61, 0x70, 0x69, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x6d, 0x6f, 0x64, 0x65, - 0x6c, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, - 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x74, - 0x75, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x74, 0x75, - 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x5f, - 0x66, 0x6c, 0x61, 0x67, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x6d, 0x61, 0x72, 0x6b, - 0x65, 0x74, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, - 0x68, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x66, 0x6c, 0x61, 0x67, 0x18, 0x1f, 0x20, 0x01, 0x28, 0x08, - 0x52, 0x0f, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x61, 0x62, 0x6c, 0x65, 0x46, 0x6c, 0x61, - 0x67, 0x12, 0x21, 0x0a, 0x0c, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, - 0x73, 0x18, 0x20, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0b, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x4c, 0x61, - 0x62, 0x65, 0x6c, 0x73, 0x12, 0x46, 0x0a, 0x0a, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x5f, 0x6d, - 0x61, 0x70, 0x18, 0x21, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, - 0x61, 0x72, 0x74, 0x73, 0x2e, 0x53, 0x68, 0x6f, 0x77, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x65, - 0x73, 0x70, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, + 0x09, 0x52, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x22, 0x7b, 0x0a, 0x0d, 0x53, + 0x68, 0x6f, 0x77, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x12, 0x12, 0x0a, 0x04, + 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, + 0x12, 0x44, 0x0a, 0x0f, 0x53, 0x68, 0x6f, 0x77, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x44, 0x65, 0x74, + 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x6d, 0x6f, 0x64, 0x65, + 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x53, 0x68, 0x6f, 0x77, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x44, + 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x0f, 0x53, 0x68, 0x6f, 0x77, 0x4d, 0x6f, 0x64, 0x65, 0x6c, + 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x03, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x22, 0xfb, 0x0b, 0x0a, 0x0f, 0x53, 0x68, 0x6f, + 0x77, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x12, 0x23, 0x0a, 0x0d, + 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, + 0x6e, 0x12, 0x2c, 0x0a, 0x12, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6a, 0x6f, 0x62, 0x5f, + 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4a, 0x6f, 0x62, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, + 0x27, 0x0a, 0x0f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x5f, 0x6a, 0x6f, 0x62, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x0b, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4a, 0x6f, 0x62, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x70, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x0a, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x20, 0x0a, + 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, + 0x18, 0x0a, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x77, 0x6f, 0x72, + 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x0b, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x49, 0x64, 0x12, 0x27, 0x0a, 0x0f, + 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x61, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x18, + 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x41, 0x6c, 0x67, 0x6f, + 0x72, 0x69, 0x74, 0x68, 0x6d, 0x12, 0x1d, 0x0a, 0x0a, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x6e, + 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6d, 0x6f, 0x64, 0x65, 0x6c, + 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x18, 0x0c, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x12, 0x32, 0x0a, 0x0a, + 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x64, 0x6f, 0x63, 0x73, 0x18, 0x0d, 0x20, 0x03, 0x28, 0x0b, + 0x32, 0x13, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x47, 0x75, 0x69, + 0x64, 0x65, 0x44, 0x6f, 0x63, 0x52, 0x09, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x44, 0x6f, 0x63, 0x73, + 0x12, 0x14, 0x0a, 0x05, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x05, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x12, 0x25, 0x0a, 0x0e, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, + 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, + 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1d, 0x0a, + 0x0a, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x5f, 0x64, 0x6f, 0x63, 0x18, 0x10, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x09, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x44, 0x6f, 0x63, 0x12, 0x23, 0x0a, 0x0d, + 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x11, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x0c, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, + 0x73, 0x12, 0x3f, 0x0a, 0x0d, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x5f, 0x70, 0x61, 0x72, 0x61, + 0x6d, 0x73, 0x18, 0x12, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, + 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, + 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0c, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x50, 0x61, 0x72, 0x61, + 0x6d, 0x73, 0x12, 0x30, 0x0a, 0x07, 0x68, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x79, 0x18, 0x13, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, + 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x52, 0x07, 0x68, 0x65, 0x61, + 0x6c, 0x74, 0x68, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x75, 0x6e, 0x74, 0x69, 0x6d, 0x65, 0x18, + 0x14, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x72, 0x75, 0x6e, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x23, + 0x0a, 0x0d, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x18, + 0x15, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x4d, 0x65, 0x74, 0x72, + 0x69, 0x63, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x79, + 0x70, 0x65, 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x54, 0x79, 0x70, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x74, 0x79, + 0x70, 0x65, 0x18, 0x17, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x54, + 0x79, 0x70, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x69, 0x64, 0x18, + 0x18, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x49, 0x64, 0x12, 0x40, + 0x0a, 0x0c, 0x64, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x65, 0x6e, 0x63, 0x69, 0x65, 0x73, 0x18, 0x19, + 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, + 0x2e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x44, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x65, 0x6e, 0x63, 0x69, + 0x65, 0x73, 0x52, 0x0c, 0x64, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x65, 0x6e, 0x63, 0x69, 0x65, 0x73, + 0x12, 0x1d, 0x0a, 0x0a, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x1a, + 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x53, 0x69, 0x7a, 0x65, 0x12, + 0x21, 0x0a, 0x0c, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, + 0x1b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x53, 0x74, 0x61, 0x74, + 0x75, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x70, 0x69, 0x73, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x04, 0x61, 0x70, 0x69, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6d, 0x6f, + 0x64, 0x65, 0x6c, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x75, 0x6e, + 0x61, 0x62, 0x6c, 0x65, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x74, 0x75, 0x6e, 0x61, + 0x62, 0x6c, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x5f, 0x66, 0x6c, + 0x61, 0x67, 0x18, 0x1f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, + 0x46, 0x6c, 0x61, 0x67, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x61, + 0x62, 0x6c, 0x65, 0x5f, 0x66, 0x6c, 0x61, 0x67, 0x18, 0x20, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, + 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x61, 0x62, 0x6c, 0x65, 0x46, 0x6c, 0x61, 0x67, 0x12, + 0x21, 0x0a, 0x0c, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x18, + 0x21, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0b, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x4c, 0x61, 0x62, 0x65, + 0x6c, 0x73, 0x12, 0x48, 0x0a, 0x0a, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x5f, 0x6d, 0x61, 0x70, + 0x18, 0x22, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, + 0x74, 0x73, 0x2e, 0x53, 0x68, 0x6f, 0x77, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x44, 0x65, 0x74, 0x61, + 0x69, 0x6c, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x09, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x4d, 0x61, 0x70, 0x12, 0x21, 0x0a, 0x0c, - 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x22, 0x20, 0x03, + 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x23, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0b, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, - 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x23, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x24, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x43, 0x0a, 0x0d, 0x73, 0x70, 0x65, 0x63, 0x69, - 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x24, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, + 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x25, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x53, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0d, 0x73, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x3d, 0x0a, 0x0c, - 0x69, 0x6e, 0x70, 0x75, 0x74, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x18, 0x25, 0x20, 0x03, + 0x69, 0x6e, 0x70, 0x75, 0x74, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x18, 0x26, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0b, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x12, 0x1b, 0x0a, 0x09, 0x63, - 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x74, 0x18, 0x26, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, + 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x74, 0x18, 0x27, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x74, 0x1a, 0x3c, 0x0a, 0x0e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x4d, 0x61, 0x70, 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, @@ -31075,7 +31147,7 @@ func file_pcm_modelarts_proto_rawDescGZIP() []byte { return file_pcm_modelarts_proto_rawDescData } -var file_pcm_modelarts_proto_msgTypes = make([]protoimpl.MessageInfo, 347) +var file_pcm_modelarts_proto_msgTypes = make([]protoimpl.MessageInfo, 348) var file_pcm_modelarts_proto_goTypes = []interface{}{ (*InterfaceType)(nil), // 0: modelarts.InterfaceType (*Auth)(nil), // 1: modelarts.auth @@ -31256,174 +31328,175 @@ var file_pcm_modelarts_proto_goTypes = []interface{}{ (*ModelSpecification)(nil), // 176: modelarts.ModelSpecification (*ShowModelReq)(nil), // 177: modelarts.ShowModelReq (*ShowModelResp)(nil), // 178: modelarts.ShowModelResp - (*ModelHealth)(nil), // 179: modelarts.ModelHealth - (*ModelParamsInfo)(nil), // 180: modelarts.ModelParamsInfo - (*CreateServiceReq)(nil), // 181: modelarts.CreateServiceReq - (*CreateServiceResp)(nil), // 182: modelarts.CreateServiceResp - (*Scheduler)(nil), // 183: modelarts.Scheduler - (*ServiceConfig)(nil), // 184: modelarts.ServiceConfig - (*CustomSpec)(nil), // 185: modelarts.CustomSpec - (*DeleteServiceReq)(nil), // 186: modelarts.DeleteServiceReq - (*DeleteServiceResp)(nil), // 187: modelarts.DeleteServiceResp - (*ShowServiceReq)(nil), // 188: modelarts.ShowServiceReq - (*ShowServiceResp)(nil), // 189: modelarts.ShowServiceResp - (*QueryServiceConfig)(nil), // 190: modelarts.QueryServiceConfig - (*ListServicesReq)(nil), // 191: modelarts.ListServicesReq - (*ListServicesResp)(nil), // 192: modelarts.ListServicesResp - (*ListServices)(nil), // 193: modelarts.ListServices - (*ListSpecificationsReq)(nil), // 194: modelarts.ListSpecificationsReq - (*ListSpecificationsResp)(nil), // 195: modelarts.ListSpecificationsResp - (*UpdateServiceReq)(nil), // 196: modelarts.UpdateServiceReq - (*UpdateServiceResp)(nil), // 197: modelarts.UpdateServiceResp - (*GetPoolsRuntimeMetricsReq)(nil), // 198: modelarts.GetPoolsRuntimeMetricsReq - (*GetPoolsRuntimeMetricsResp)(nil), // 199: modelarts.GetPoolsRuntimeMetricsResp - (*GetResourceFlavorsReq)(nil), // 200: modelarts.GetResourceFlavorsReq - (*GetResourceFlavorsResp)(nil), // 201: modelarts.GetResourceFlavorsResp - (*ListClustersReq)(nil), // 202: modelarts.ListClustersReq - (*ListClustersResp)(nil), // 203: modelarts.ListClustersResp - (*ListClustersResp200)(nil), // 204: modelarts.ListClustersResp200 - (*ListClustersResp400)(nil), // 205: modelarts.ListClustersResp400 - (*Cluster)(nil), // 206: modelarts.Cluster - (*ClusterNode)(nil), // 207: modelarts.ClusterNode - (*CreateDataSetReq)(nil), // 208: modelarts.CreateDataSetReq - (*CreateDataSetResq)(nil), // 209: modelarts.CreateDataSetResq - (*DeleteDataSetReq)(nil), // 210: modelarts.DeleteDataSetReq - (*DeleteDataSetResq)(nil), // 211: modelarts.DeleteDataSetResq - (*ListNotebookReq)(nil), // 212: modelarts.ListNotebookReq - (*ListNotebookResp)(nil), // 213: modelarts.ListNotebookResp - (*ListNotebookParam)(nil), // 214: modelarts.ListNotebookParam - (*CreateNotebookReq)(nil), // 215: modelarts.CreateNotebookReq - (*CreateNotebookResp)(nil), // 216: modelarts.CreateNotebookResp - (*CreateNotebookParam)(nil), // 217: modelarts.CreateNotebookParam - (*StartNotebookReq)(nil), // 218: modelarts.StartNotebookReq - (*StartNotebookResp)(nil), // 219: modelarts.StartNotebookResp - (*StartNotebookParam)(nil), // 220: modelarts.StartNotebookParam - (*StopNotebookReq)(nil), // 221: modelarts.StopNotebookReq - (*StopNotebookResp)(nil), // 222: modelarts.StopNotebookResp - (*GetNotebookStorageReq)(nil), // 223: modelarts.GetNotebookStorageReq - (*GetNotebookStorageResp)(nil), // 224: modelarts.GetNotebookStorageResp - (*MountNotebookStorageReq)(nil), // 225: modelarts.MountNotebookStorageReq - (*MountNotebookStorageResp)(nil), // 226: modelarts.MountNotebookStorageResp - (*GetNotebookFlavorsReq)(nil), // 227: modelarts.GetNotebookFlavorsReq - (*GetNotebookFlavorsResp)(nil), // 228: modelarts.GetNotebookFlavorsResp - (*ListImagesReq)(nil), // 229: modelarts.ListImagesReq - (*ListImagesResp)(nil), // 230: modelarts.ListImagesResp - (*DeleteImagesReq)(nil), // 231: modelarts.DeleteImagesReq - (*DeleteImagesResp)(nil), // 232: modelarts.DeleteImagesResp - (*MountNotebookStorageParam)(nil), // 233: modelarts.MountNotebookStorageParam - (*DataVolumesRes)(nil), // 234: modelarts.DataVolumesRes - (*NotebookResp)(nil), // 235: modelarts.NotebookResp - (*UserNotebookResp)(nil), // 236: modelarts.UserNotebookResp - (*UserNotebookDomain)(nil), // 237: modelarts.UserNotebookDomain - (*Hooks)(nil), // 238: modelarts.Hooks - (*ContainerHooksResp)(nil), // 239: modelarts.ContainerHooksResp - (*PostStart)(nil), // 240: modelarts.PostStart - (*PreStart)(nil), // 241: modelarts.PreStart - (*ActionProgress)(nil), // 242: modelarts.ActionProgress - (*JobProgress)(nil), // 243: modelarts.JobProgress - (*EndpointsRes)(nil), // 244: modelarts.EndpointsRes - (*Image)(nil), // 245: modelarts.Image - (*Lease)(nil), // 246: modelarts.Lease - (*Pool)(nil), // 247: modelarts.Pool - (*VolumeRes)(nil), // 248: modelarts.VolumeRes - (*EndpointsReq)(nil), // 249: modelarts.EndpointsReq - (*VolumeReq)(nil), // 250: modelarts.VolumeReq - (*CustomHooks)(nil), // 251: modelarts.CustomHooks - (*ContainerHooks)(nil), // 252: modelarts.ContainerHooks - (*Config)(nil), // 253: modelarts.Config - (*LeaseReq)(nil), // 254: modelarts.LeaseReq - (*GetVisualizationJobReq)(nil), // 255: modelarts.GetVisualizationJobReq - (*GetVisualizationJobResp)(nil), // 256: modelarts.GetVisualizationJobResp - (*Jobs)(nil), // 257: modelarts.Jobs - (*GetVisualizationJobParam)(nil), // 258: modelarts.GetVisualizationJobParam - (*CreateVisualizationJobReq)(nil), // 259: modelarts.CreateVisualizationJobReq - (*CreateVisualizationJobResp)(nil), // 260: modelarts.CreateVisualizationJobResp - (*CreateVisualizationJobParam)(nil), // 261: modelarts.CreateVisualizationJobParam - (*Flavor)(nil), // 262: modelarts.Flavor - (*Schedule)(nil), // 263: modelarts.Schedule - (*ImageReasoningReq)(nil), // 264: modelarts.ImageReasoningReq - (*ImageReasoningResp)(nil), // 265: modelarts.ImageReasoningResp - (*ChatglmReasoningReq)(nil), // 266: modelarts.ChatglmReasoningReq - (*ChatglmReasoningResp)(nil), // 267: modelarts.ChatglmReasoningResp - (*ImageReasoningUrlReq)(nil), // 268: modelarts.ImageReasoningUrlReq - (*ImageReasoningUrlResp)(nil), // 269: modelarts.ImageReasoningUrlResp - (*GetTrainingJobLogsPreviewReq)(nil), // 270: modelarts.GetTrainingJobLogsPreviewReq - (*GetTrainingJobLogsPreviewResp)(nil), // 271: modelarts.GetTrainingJobLogsPreviewResp - (*Errors)(nil), // 272: modelarts.Errors - (*NamespaceReq)(nil), // 273: modelarts.NamespaceReq - (*NamespaceInfo)(nil), // 274: modelarts.NamespaceInfo - (*ListNamespacesReq)(nil), // 275: modelarts.ListNamespacesReq - (*ListNamespacesResp)(nil), // 276: modelarts.ListNamespacesResp - (*Resp)(nil), // 277: modelarts.resp - (*CreateRepoReq)(nil), // 278: modelarts.CreateRepoReq - (*DeleteRepoReq)(nil), // 279: modelarts.DeleteRepoReq - (*ListRepoReq)(nil), // 280: modelarts.ListRepoReq - (*ReposDetails)(nil), // 281: modelarts.ReposDetails - (*ListReposDetailsResp)(nil), // 282: modelarts.ListReposDetailsResp - (*ShowRepositoryReq)(nil), // 283: modelarts.ShowRepositoryReq - (*ShowRepositoryResp)(nil), // 284: modelarts.ShowRepositoryResp - (*UpdateRepoReq)(nil), // 285: modelarts.UpdateRepoReq - (*ListRepositoryTagsReq)(nil), // 286: modelarts.ListRepositoryTagsReq - (*ListRepositoryTagsResp)(nil), // 287: modelarts.ListRepositoryTagsResp - (*RepositoryTags)(nil), // 288: modelarts.RepositoryTags - (*DeleteRepoTagReq)(nil), // 289: modelarts.DeleteRepoTagReq - (*FileRequest)(nil), // 290: modelarts.FileRequest - (*FileResponse)(nil), // 291: modelarts.FileResponse - (*FileData)(nil), // 292: modelarts.FileData - (*MetricsPoolsRequest)(nil), // 293: modelarts.MetricsPoolsRequest - (*MetricsPoolsResponse)(nil), // 294: modelarts.MetricsPoolsResponse - nil, // 295: modelarts.JobMetadata.AnnotationsEntry - nil, // 296: modelarts.JobMetadata.LabelsEntry - nil, // 297: modelarts.JobAlgorithmResponse.EnvironmentsEntry - nil, // 298: modelarts.FlavorResponse.AttributesEntry - nil, // 299: modelarts.MetadataS.LabelsEntry - nil, // 300: modelarts.MetadataS.AnnotationsEntry - nil, // 301: modelarts.Algorithms.EnvironmentsEntry - nil, // 302: modelarts.attributesAlRq.AttributesEntry - nil, // 303: modelarts.TagsAlRp.TagsEntry - nil, // 304: modelarts.SearchProp.PropsEntry - nil, // 305: modelarts.ShowModelResp.LabelsMapEntry - nil, // 306: modelarts.ServiceConfig.EnvsEntry - nil, // 307: modelarts.ShowServiceResp.AdditionalPropertiesEntry - nil, // 308: modelarts.QueryServiceConfig.EnvsEntry - nil, // 309: modelarts.QueryServiceConfig.AdditionalPropertiesEntry - nil, // 310: modelarts.ListServices.AdditionalPropertiesEntry - (*ListSpecificationsResp_CpuInfo)(nil), // 311: modelarts.ListSpecificationsResp.Cpu_info - (*ListSpecificationsResp_MemoryInfo)(nil), // 312: modelarts.ListSpecificationsResp.Memory_info - (*ListSpecificationsResp_GpuInfo)(nil), // 313: modelarts.ListSpecificationsResp.Gpu_info - (*ListSpecificationsResp_NpuInfo)(nil), // 314: modelarts.ListSpecificationsResp.Npu_info - (*ListSpecificationsResp_Specifications)(nil), // 315: modelarts.ListSpecificationsResp.Specifications - (*GetPoolsRuntimeMetricsResp_Labels)(nil), // 316: modelarts.GetPoolsRuntimeMetricsResp.Labels - (*GetPoolsRuntimeMetricsResp_Metadata)(nil), // 317: modelarts.GetPoolsRuntimeMetricsResp.Metadata - (*GetPoolsRuntimeMetricsResp_Value)(nil), // 318: modelarts.GetPoolsRuntimeMetricsResp.Value - (*GetPoolsRuntimeMetricsResp_Allocated)(nil), // 319: modelarts.GetPoolsRuntimeMetricsResp.Allocated - (*GetPoolsRuntimeMetricsResp_Value1)(nil), // 320: modelarts.GetPoolsRuntimeMetricsResp.Value1 - (*GetPoolsRuntimeMetricsResp_MaxValue)(nil), // 321: modelarts.GetPoolsRuntimeMetricsResp.Max_value - (*GetPoolsRuntimeMetricsResp_Capacity)(nil), // 322: modelarts.GetPoolsRuntimeMetricsResp.Capacity - (*GetPoolsRuntimeMetricsResp_Table)(nil), // 323: modelarts.GetPoolsRuntimeMetricsResp.Table - (*GetPoolsRuntimeMetricsResp_Items)(nil), // 324: modelarts.GetPoolsRuntimeMetricsResp.Items - (*GetResourceFlavorsResp_Metadata)(nil), // 325: modelarts.GetResourceFlavorsResp.Metadata - (*GetResourceFlavorsResp_Labels)(nil), // 326: modelarts.GetResourceFlavorsResp.Labels - (*GetResourceFlavorsResp_Metadata1)(nil), // 327: modelarts.GetResourceFlavorsResp.Metadata1 - (*GetResourceFlavorsResp_DataVolumes)(nil), // 328: modelarts.GetResourceFlavorsResp.Data_volumes - (*GetResourceFlavorsResp_Spec)(nil), // 329: modelarts.GetResourceFlavorsResp.Spec - (*GetResourceFlavorsResp_Npu)(nil), // 330: modelarts.GetResourceFlavorsResp.Npu - (*GetResourceFlavorsResp_Phase)(nil), // 331: modelarts.GetResourceFlavorsResp.Phase - (*GetResourceFlavorsResp_Status)(nil), // 332: modelarts.GetResourceFlavorsResp.Status - (*GetResourceFlavorsResp_Items)(nil), // 333: modelarts.GetResourceFlavorsResp.Items - (*GetNotebookFlavorsResp_Billing)(nil), // 334: modelarts.GetNotebookFlavorsResp.Billing - (*GetNotebookFlavorsResp_Gpu)(nil), // 335: modelarts.GetNotebookFlavorsResp.Gpu - (*GetNotebookFlavorsResp_Data)(nil), // 336: modelarts.GetNotebookFlavorsResp.Data - (*ListImagesResp_Data)(nil), // 337: modelarts.ListImagesResp.Data - (*MetricsPoolsResponse_SomeMessage)(nil), // 338: modelarts.MetricsPoolsResponse.SomeMessage - (*MetricsPoolsResponse_SomeMessage_Value)(nil), // 339: modelarts.MetricsPoolsResponse.SomeMessage.Value - (*MetricsPoolsResponse_SomeMessage_Allocated)(nil), // 340: modelarts.MetricsPoolsResponse.SomeMessage.Allocated - (*MetricsPoolsResponse_SomeMessage_Value1)(nil), // 341: modelarts.MetricsPoolsResponse.SomeMessage.Value1 - (*MetricsPoolsResponse_SomeMessage_Maxvalue)(nil), // 342: modelarts.MetricsPoolsResponse.SomeMessage.Maxvalue - (*MetricsPoolsResponse_SomeMessage_Capacity)(nil), // 343: modelarts.MetricsPoolsResponse.SomeMessage.Capacity - (*MetricsPoolsResponse_SomeMessage_Table)(nil), // 344: modelarts.MetricsPoolsResponse.SomeMessage.Table - (*MetricsPoolsResponse_SomeMessage_Metadata)(nil), // 345: modelarts.MetricsPoolsResponse.SomeMessage.Metadata - (*MetricsPoolsResponse_SomeMessage_Items)(nil), // 346: modelarts.MetricsPoolsResponse.SomeMessage.Items + (*ShowModelDetail)(nil), // 179: modelarts.ShowModelDetail + (*ModelHealth)(nil), // 180: modelarts.ModelHealth + (*ModelParamsInfo)(nil), // 181: modelarts.ModelParamsInfo + (*CreateServiceReq)(nil), // 182: modelarts.CreateServiceReq + (*CreateServiceResp)(nil), // 183: modelarts.CreateServiceResp + (*Scheduler)(nil), // 184: modelarts.Scheduler + (*ServiceConfig)(nil), // 185: modelarts.ServiceConfig + (*CustomSpec)(nil), // 186: modelarts.CustomSpec + (*DeleteServiceReq)(nil), // 187: modelarts.DeleteServiceReq + (*DeleteServiceResp)(nil), // 188: modelarts.DeleteServiceResp + (*ShowServiceReq)(nil), // 189: modelarts.ShowServiceReq + (*ShowServiceResp)(nil), // 190: modelarts.ShowServiceResp + (*QueryServiceConfig)(nil), // 191: modelarts.QueryServiceConfig + (*ListServicesReq)(nil), // 192: modelarts.ListServicesReq + (*ListServicesResp)(nil), // 193: modelarts.ListServicesResp + (*ListServices)(nil), // 194: modelarts.ListServices + (*ListSpecificationsReq)(nil), // 195: modelarts.ListSpecificationsReq + (*ListSpecificationsResp)(nil), // 196: modelarts.ListSpecificationsResp + (*UpdateServiceReq)(nil), // 197: modelarts.UpdateServiceReq + (*UpdateServiceResp)(nil), // 198: modelarts.UpdateServiceResp + (*GetPoolsRuntimeMetricsReq)(nil), // 199: modelarts.GetPoolsRuntimeMetricsReq + (*GetPoolsRuntimeMetricsResp)(nil), // 200: modelarts.GetPoolsRuntimeMetricsResp + (*GetResourceFlavorsReq)(nil), // 201: modelarts.GetResourceFlavorsReq + (*GetResourceFlavorsResp)(nil), // 202: modelarts.GetResourceFlavorsResp + (*ListClustersReq)(nil), // 203: modelarts.ListClustersReq + (*ListClustersResp)(nil), // 204: modelarts.ListClustersResp + (*ListClustersResp200)(nil), // 205: modelarts.ListClustersResp200 + (*ListClustersResp400)(nil), // 206: modelarts.ListClustersResp400 + (*Cluster)(nil), // 207: modelarts.Cluster + (*ClusterNode)(nil), // 208: modelarts.ClusterNode + (*CreateDataSetReq)(nil), // 209: modelarts.CreateDataSetReq + (*CreateDataSetResq)(nil), // 210: modelarts.CreateDataSetResq + (*DeleteDataSetReq)(nil), // 211: modelarts.DeleteDataSetReq + (*DeleteDataSetResq)(nil), // 212: modelarts.DeleteDataSetResq + (*ListNotebookReq)(nil), // 213: modelarts.ListNotebookReq + (*ListNotebookResp)(nil), // 214: modelarts.ListNotebookResp + (*ListNotebookParam)(nil), // 215: modelarts.ListNotebookParam + (*CreateNotebookReq)(nil), // 216: modelarts.CreateNotebookReq + (*CreateNotebookResp)(nil), // 217: modelarts.CreateNotebookResp + (*CreateNotebookParam)(nil), // 218: modelarts.CreateNotebookParam + (*StartNotebookReq)(nil), // 219: modelarts.StartNotebookReq + (*StartNotebookResp)(nil), // 220: modelarts.StartNotebookResp + (*StartNotebookParam)(nil), // 221: modelarts.StartNotebookParam + (*StopNotebookReq)(nil), // 222: modelarts.StopNotebookReq + (*StopNotebookResp)(nil), // 223: modelarts.StopNotebookResp + (*GetNotebookStorageReq)(nil), // 224: modelarts.GetNotebookStorageReq + (*GetNotebookStorageResp)(nil), // 225: modelarts.GetNotebookStorageResp + (*MountNotebookStorageReq)(nil), // 226: modelarts.MountNotebookStorageReq + (*MountNotebookStorageResp)(nil), // 227: modelarts.MountNotebookStorageResp + (*GetNotebookFlavorsReq)(nil), // 228: modelarts.GetNotebookFlavorsReq + (*GetNotebookFlavorsResp)(nil), // 229: modelarts.GetNotebookFlavorsResp + (*ListImagesReq)(nil), // 230: modelarts.ListImagesReq + (*ListImagesResp)(nil), // 231: modelarts.ListImagesResp + (*DeleteImagesReq)(nil), // 232: modelarts.DeleteImagesReq + (*DeleteImagesResp)(nil), // 233: modelarts.DeleteImagesResp + (*MountNotebookStorageParam)(nil), // 234: modelarts.MountNotebookStorageParam + (*DataVolumesRes)(nil), // 235: modelarts.DataVolumesRes + (*NotebookResp)(nil), // 236: modelarts.NotebookResp + (*UserNotebookResp)(nil), // 237: modelarts.UserNotebookResp + (*UserNotebookDomain)(nil), // 238: modelarts.UserNotebookDomain + (*Hooks)(nil), // 239: modelarts.Hooks + (*ContainerHooksResp)(nil), // 240: modelarts.ContainerHooksResp + (*PostStart)(nil), // 241: modelarts.PostStart + (*PreStart)(nil), // 242: modelarts.PreStart + (*ActionProgress)(nil), // 243: modelarts.ActionProgress + (*JobProgress)(nil), // 244: modelarts.JobProgress + (*EndpointsRes)(nil), // 245: modelarts.EndpointsRes + (*Image)(nil), // 246: modelarts.Image + (*Lease)(nil), // 247: modelarts.Lease + (*Pool)(nil), // 248: modelarts.Pool + (*VolumeRes)(nil), // 249: modelarts.VolumeRes + (*EndpointsReq)(nil), // 250: modelarts.EndpointsReq + (*VolumeReq)(nil), // 251: modelarts.VolumeReq + (*CustomHooks)(nil), // 252: modelarts.CustomHooks + (*ContainerHooks)(nil), // 253: modelarts.ContainerHooks + (*Config)(nil), // 254: modelarts.Config + (*LeaseReq)(nil), // 255: modelarts.LeaseReq + (*GetVisualizationJobReq)(nil), // 256: modelarts.GetVisualizationJobReq + (*GetVisualizationJobResp)(nil), // 257: modelarts.GetVisualizationJobResp + (*Jobs)(nil), // 258: modelarts.Jobs + (*GetVisualizationJobParam)(nil), // 259: modelarts.GetVisualizationJobParam + (*CreateVisualizationJobReq)(nil), // 260: modelarts.CreateVisualizationJobReq + (*CreateVisualizationJobResp)(nil), // 261: modelarts.CreateVisualizationJobResp + (*CreateVisualizationJobParam)(nil), // 262: modelarts.CreateVisualizationJobParam + (*Flavor)(nil), // 263: modelarts.Flavor + (*Schedule)(nil), // 264: modelarts.Schedule + (*ImageReasoningReq)(nil), // 265: modelarts.ImageReasoningReq + (*ImageReasoningResp)(nil), // 266: modelarts.ImageReasoningResp + (*ChatglmReasoningReq)(nil), // 267: modelarts.ChatglmReasoningReq + (*ChatglmReasoningResp)(nil), // 268: modelarts.ChatglmReasoningResp + (*ImageReasoningUrlReq)(nil), // 269: modelarts.ImageReasoningUrlReq + (*ImageReasoningUrlResp)(nil), // 270: modelarts.ImageReasoningUrlResp + (*GetTrainingJobLogsPreviewReq)(nil), // 271: modelarts.GetTrainingJobLogsPreviewReq + (*GetTrainingJobLogsPreviewResp)(nil), // 272: modelarts.GetTrainingJobLogsPreviewResp + (*Errors)(nil), // 273: modelarts.Errors + (*NamespaceReq)(nil), // 274: modelarts.NamespaceReq + (*NamespaceInfo)(nil), // 275: modelarts.NamespaceInfo + (*ListNamespacesReq)(nil), // 276: modelarts.ListNamespacesReq + (*ListNamespacesResp)(nil), // 277: modelarts.ListNamespacesResp + (*Resp)(nil), // 278: modelarts.resp + (*CreateRepoReq)(nil), // 279: modelarts.CreateRepoReq + (*DeleteRepoReq)(nil), // 280: modelarts.DeleteRepoReq + (*ListRepoReq)(nil), // 281: modelarts.ListRepoReq + (*ReposDetails)(nil), // 282: modelarts.ReposDetails + (*ListReposDetailsResp)(nil), // 283: modelarts.ListReposDetailsResp + (*ShowRepositoryReq)(nil), // 284: modelarts.ShowRepositoryReq + (*ShowRepositoryResp)(nil), // 285: modelarts.ShowRepositoryResp + (*UpdateRepoReq)(nil), // 286: modelarts.UpdateRepoReq + (*ListRepositoryTagsReq)(nil), // 287: modelarts.ListRepositoryTagsReq + (*ListRepositoryTagsResp)(nil), // 288: modelarts.ListRepositoryTagsResp + (*RepositoryTags)(nil), // 289: modelarts.RepositoryTags + (*DeleteRepoTagReq)(nil), // 290: modelarts.DeleteRepoTagReq + (*FileRequest)(nil), // 291: modelarts.FileRequest + (*FileResponse)(nil), // 292: modelarts.FileResponse + (*FileData)(nil), // 293: modelarts.FileData + (*MetricsPoolsRequest)(nil), // 294: modelarts.MetricsPoolsRequest + (*MetricsPoolsResponse)(nil), // 295: modelarts.MetricsPoolsResponse + nil, // 296: modelarts.JobMetadata.AnnotationsEntry + nil, // 297: modelarts.JobMetadata.LabelsEntry + nil, // 298: modelarts.JobAlgorithmResponse.EnvironmentsEntry + nil, // 299: modelarts.FlavorResponse.AttributesEntry + nil, // 300: modelarts.MetadataS.LabelsEntry + nil, // 301: modelarts.MetadataS.AnnotationsEntry + nil, // 302: modelarts.Algorithms.EnvironmentsEntry + nil, // 303: modelarts.attributesAlRq.AttributesEntry + nil, // 304: modelarts.TagsAlRp.TagsEntry + nil, // 305: modelarts.SearchProp.PropsEntry + nil, // 306: modelarts.ShowModelDetail.LabelsMapEntry + nil, // 307: modelarts.ServiceConfig.EnvsEntry + nil, // 308: modelarts.ShowServiceResp.AdditionalPropertiesEntry + nil, // 309: modelarts.QueryServiceConfig.EnvsEntry + nil, // 310: modelarts.QueryServiceConfig.AdditionalPropertiesEntry + nil, // 311: modelarts.ListServices.AdditionalPropertiesEntry + (*ListSpecificationsResp_CpuInfo)(nil), // 312: modelarts.ListSpecificationsResp.Cpu_info + (*ListSpecificationsResp_MemoryInfo)(nil), // 313: modelarts.ListSpecificationsResp.Memory_info + (*ListSpecificationsResp_GpuInfo)(nil), // 314: modelarts.ListSpecificationsResp.Gpu_info + (*ListSpecificationsResp_NpuInfo)(nil), // 315: modelarts.ListSpecificationsResp.Npu_info + (*ListSpecificationsResp_Specifications)(nil), // 316: modelarts.ListSpecificationsResp.Specifications + (*GetPoolsRuntimeMetricsResp_Labels)(nil), // 317: modelarts.GetPoolsRuntimeMetricsResp.Labels + (*GetPoolsRuntimeMetricsResp_Metadata)(nil), // 318: modelarts.GetPoolsRuntimeMetricsResp.Metadata + (*GetPoolsRuntimeMetricsResp_Value)(nil), // 319: modelarts.GetPoolsRuntimeMetricsResp.Value + (*GetPoolsRuntimeMetricsResp_Allocated)(nil), // 320: modelarts.GetPoolsRuntimeMetricsResp.Allocated + (*GetPoolsRuntimeMetricsResp_Value1)(nil), // 321: modelarts.GetPoolsRuntimeMetricsResp.Value1 + (*GetPoolsRuntimeMetricsResp_MaxValue)(nil), // 322: modelarts.GetPoolsRuntimeMetricsResp.Max_value + (*GetPoolsRuntimeMetricsResp_Capacity)(nil), // 323: modelarts.GetPoolsRuntimeMetricsResp.Capacity + (*GetPoolsRuntimeMetricsResp_Table)(nil), // 324: modelarts.GetPoolsRuntimeMetricsResp.Table + (*GetPoolsRuntimeMetricsResp_Items)(nil), // 325: modelarts.GetPoolsRuntimeMetricsResp.Items + (*GetResourceFlavorsResp_Metadata)(nil), // 326: modelarts.GetResourceFlavorsResp.Metadata + (*GetResourceFlavorsResp_Labels)(nil), // 327: modelarts.GetResourceFlavorsResp.Labels + (*GetResourceFlavorsResp_Metadata1)(nil), // 328: modelarts.GetResourceFlavorsResp.Metadata1 + (*GetResourceFlavorsResp_DataVolumes)(nil), // 329: modelarts.GetResourceFlavorsResp.Data_volumes + (*GetResourceFlavorsResp_Spec)(nil), // 330: modelarts.GetResourceFlavorsResp.Spec + (*GetResourceFlavorsResp_Npu)(nil), // 331: modelarts.GetResourceFlavorsResp.Npu + (*GetResourceFlavorsResp_Phase)(nil), // 332: modelarts.GetResourceFlavorsResp.Phase + (*GetResourceFlavorsResp_Status)(nil), // 333: modelarts.GetResourceFlavorsResp.Status + (*GetResourceFlavorsResp_Items)(nil), // 334: modelarts.GetResourceFlavorsResp.Items + (*GetNotebookFlavorsResp_Billing)(nil), // 335: modelarts.GetNotebookFlavorsResp.Billing + (*GetNotebookFlavorsResp_Gpu)(nil), // 336: modelarts.GetNotebookFlavorsResp.Gpu + (*GetNotebookFlavorsResp_Data)(nil), // 337: modelarts.GetNotebookFlavorsResp.Data + (*ListImagesResp_Data)(nil), // 338: modelarts.ListImagesResp.Data + (*MetricsPoolsResponse_SomeMessage)(nil), // 339: modelarts.MetricsPoolsResponse.SomeMessage + (*MetricsPoolsResponse_SomeMessage_Value)(nil), // 340: modelarts.MetricsPoolsResponse.SomeMessage.Value + (*MetricsPoolsResponse_SomeMessage_Allocated)(nil), // 341: modelarts.MetricsPoolsResponse.SomeMessage.Allocated + (*MetricsPoolsResponse_SomeMessage_Value1)(nil), // 342: modelarts.MetricsPoolsResponse.SomeMessage.Value1 + (*MetricsPoolsResponse_SomeMessage_Maxvalue)(nil), // 343: modelarts.MetricsPoolsResponse.SomeMessage.Maxvalue + (*MetricsPoolsResponse_SomeMessage_Capacity)(nil), // 344: modelarts.MetricsPoolsResponse.SomeMessage.Capacity + (*MetricsPoolsResponse_SomeMessage_Table)(nil), // 345: modelarts.MetricsPoolsResponse.SomeMessage.Table + (*MetricsPoolsResponse_SomeMessage_Metadata)(nil), // 346: modelarts.MetricsPoolsResponse.SomeMessage.Metadata + (*MetricsPoolsResponse_SomeMessage_Items)(nil), // 347: modelarts.MetricsPoolsResponse.SomeMessage.Items } var file_pcm_modelarts_proto_depIdxs = []int32{ 2, // 0: modelarts.auth.identity:type_name -> modelarts.identity @@ -31448,20 +31521,20 @@ var file_pcm_modelarts_proto_depIdxs = []int32{ 32, // 19: modelarts.JobResponse.algorithm:type_name -> modelarts.JobAlgorithmResponse 33, // 20: modelarts.JobResponse.tasks:type_name -> modelarts.TaskResponse 63, // 21: modelarts.JobResponse.spec:type_name -> modelarts.Spec - 295, // 22: modelarts.JobMetadata.annotations:type_name -> modelarts.JobMetadata.AnnotationsEntry - 296, // 23: modelarts.JobMetadata.labels:type_name -> modelarts.JobMetadata.LabelsEntry + 296, // 22: modelarts.JobMetadata.annotations:type_name -> modelarts.JobMetadata.AnnotationsEntry + 297, // 23: modelarts.JobMetadata.labels:type_name -> modelarts.JobMetadata.LabelsEntry 69, // 24: modelarts.Status.task_statuses:type_name -> modelarts.Task_statuses 60, // 25: modelarts.JobAlgorithmResponse.parameters:type_name -> modelarts.Parameter 54, // 26: modelarts.JobAlgorithmResponse.policies:type_name -> modelarts.policies 45, // 27: modelarts.JobAlgorithmResponse.inputs:type_name -> modelarts.Input 50, // 28: modelarts.JobAlgorithmResponse.outputs:type_name -> modelarts.Output 53, // 29: modelarts.JobAlgorithmResponse.engine:type_name -> modelarts.engine - 297, // 30: modelarts.JobAlgorithmResponse.environments:type_name -> modelarts.JobAlgorithmResponse.EnvironmentsEntry + 298, // 30: modelarts.JobAlgorithmResponse.environments:type_name -> modelarts.JobAlgorithmResponse.EnvironmentsEntry 42, // 31: modelarts.TaskResponse.algorithm:type_name -> modelarts.algorithm 34, // 32: modelarts.TaskResponse.task_resource:type_name -> modelarts.FlavorResponse 35, // 33: modelarts.FlavorResponse.billing:type_name -> modelarts.billing 36, // 34: modelarts.FlavorResponse.flavor_info:type_name -> modelarts.flavor_info - 298, // 35: modelarts.FlavorResponse.attributes:type_name -> modelarts.FlavorResponse.AttributesEntry + 299, // 35: modelarts.FlavorResponse.attributes:type_name -> modelarts.FlavorResponse.AttributesEntry 37, // 36: modelarts.flavor_info.cpu:type_name -> modelarts.cpu 39, // 37: modelarts.flavor_info.gpu:type_name -> modelarts.gpu 38, // 38: modelarts.flavor_info.npu:type_name -> modelarts.npu @@ -31498,14 +31571,14 @@ var file_pcm_modelarts_proto_depIdxs = []int32{ 31, // 69: modelarts.CreateTrainingJobResp.status:type_name -> modelarts.Status 78, // 70: modelarts.CreateTrainingJobResp.algorithm:type_name -> modelarts.Algorithms 63, // 71: modelarts.CreateTrainingJobResp.spec:type_name -> modelarts.Spec - 299, // 72: modelarts.MetadataS.labels:type_name -> modelarts.MetadataS.LabelsEntry - 300, // 73: modelarts.MetadataS.annotations:type_name -> modelarts.MetadataS.AnnotationsEntry + 300, // 72: modelarts.MetadataS.labels:type_name -> modelarts.MetadataS.LabelsEntry + 301, // 73: modelarts.MetadataS.annotations:type_name -> modelarts.MetadataS.AnnotationsEntry 74, // 74: modelarts.Algorithms.engine:type_name -> modelarts.EngineCreateTraining 76, // 75: modelarts.Algorithms.parameters:type_name -> modelarts.ParametersTrainJob 77, // 76: modelarts.Algorithms.policies:type_name -> modelarts.PoliciesCreateTraining 79, // 77: modelarts.Algorithms.inputs:type_name -> modelarts.InputTraining 80, // 78: modelarts.Algorithms.outputs:type_name -> modelarts.OutputTraining - 301, // 79: modelarts.Algorithms.environments:type_name -> modelarts.Algorithms.EnvironmentsEntry + 302, // 79: modelarts.Algorithms.environments:type_name -> modelarts.Algorithms.EnvironmentsEntry 81, // 80: modelarts.InputTraining.remote:type_name -> modelarts.RemoteTra 82, // 81: modelarts.OutputTraining.remote:type_name -> modelarts.RemoteOut 84, // 82: modelarts.RemoteTra.dataset:type_name -> modelarts.DatasetTra @@ -31526,7 +31599,7 @@ var file_pcm_modelarts_proto_depIdxs = []int32{ 103, // 97: modelarts.ParametersAlRq.constraint:type_name -> modelarts.ConstraintAlRq 106, // 98: modelarts.InputsAlRq.remote_constraints:type_name -> modelarts.remote_constraints 107, // 99: modelarts.remote_constraints.attributes:type_name -> modelarts.attributesAlRq - 302, // 100: modelarts.attributesAlRq.attributes:type_name -> modelarts.attributesAlRq.AttributesEntry + 303, // 100: modelarts.attributesAlRq.attributes:type_name -> modelarts.attributesAlRq.AttributesEntry 110, // 101: modelarts.CodeTree.children:type_name -> modelarts.Children 104, // 102: modelarts.JobConfigAl.parameters:type_name -> modelarts.ParametersAlRq 105, // 103: modelarts.JobConfigAl.inputs:type_name -> modelarts.InputsAlRq @@ -31539,7 +31612,7 @@ var file_pcm_modelarts_proto_depIdxs = []int32{ 101, // 110: modelarts.CreateAlgorithmResp.advanced_config:type_name -> modelarts.AdvancedConfigAl 117, // 111: modelarts.MetadataCrAl.tags:type_name -> modelarts.TagsAlRp 117, // 112: modelarts.MetadataAlRp.tags:type_name -> modelarts.TagsAlRp - 303, // 113: modelarts.TagsAlRp.tags:type_name -> modelarts.TagsAlRp.TagsEntry + 304, // 113: modelarts.TagsAlRp.tags:type_name -> modelarts.TagsAlRp.TagsEntry 61, // 114: modelarts.ParametersAlRp.i18n_description:type_name -> modelarts.i18n_description 119, // 115: modelarts.ParametersAlRp.constraint:type_name -> modelarts.ConstraintAlRp 123, // 116: modelarts.EngineAlRp.image_info:type_name -> modelarts.ImageInfo @@ -31566,7 +31639,7 @@ var file_pcm_modelarts_proto_depIdxs = []int32{ 143, // 137: modelarts.SearchCondition.label_list:type_name -> modelarts.SearchLabels 146, // 138: modelarts.SearchCondition.metadata:type_name -> modelarts.SearchProp 145, // 139: modelarts.SearchLabels.labels:type_name -> modelarts.SearchLabel - 304, // 140: modelarts.SearchProp.props:type_name -> modelarts.SearchProp.PropsEntry + 305, // 140: modelarts.SearchProp.props:type_name -> modelarts.SearchProp.PropsEntry 141, // 141: modelarts.GetExportTasksOfDatasetResp.export_params:type_name -> modelarts.ExportParams 149, // 142: modelarts.GetExportTasksOfDatasetResp.export_tasks:type_name -> modelarts.ExportTaskStatus 141, // 143: modelarts.ExportTaskStatus.export_params:type_name -> modelarts.ExportParams @@ -31594,245 +31667,246 @@ var file_pcm_modelarts_proto_depIdxs = []int32{ 172, // 165: modelarts.DeleteModelResp.delete_failed_list:type_name -> modelarts.DeleteModelResponseFailedList 175, // 166: modelarts.ListModelResp.models:type_name -> modelarts.ModelListItem 176, // 167: modelarts.ModelListItem.specification:type_name -> modelarts.ModelSpecification - 167, // 168: modelarts.ShowModelResp.model_docs:type_name -> modelarts.GuideDoc - 180, // 169: modelarts.ShowModelResp.output_params:type_name -> modelarts.ModelParamsInfo - 179, // 170: modelarts.ShowModelResp.healthy:type_name -> modelarts.ModelHealth - 168, // 171: modelarts.ShowModelResp.dependencies:type_name -> modelarts.ModelDependencies - 305, // 172: modelarts.ShowModelResp.labels_map:type_name -> modelarts.ShowModelResp.LabelsMapEntry - 176, // 173: modelarts.ShowModelResp.specification:type_name -> modelarts.ModelSpecification - 180, // 174: modelarts.ShowModelResp.input_params:type_name -> modelarts.ModelParamsInfo - 183, // 175: modelarts.CreateServiceReq.schedule:type_name -> modelarts.Scheduler - 184, // 176: modelarts.CreateServiceReq.config:type_name -> modelarts.ServiceConfig - 185, // 177: modelarts.ServiceConfig.custom_spec:type_name -> modelarts.CustomSpec - 306, // 178: modelarts.ServiceConfig.envs:type_name -> modelarts.ServiceConfig.EnvsEntry - 183, // 179: modelarts.ShowServiceResp.scheduler:type_name -> modelarts.Scheduler - 307, // 180: modelarts.ShowServiceResp.additional_properties:type_name -> modelarts.ShowServiceResp.AdditionalPropertiesEntry - 190, // 181: modelarts.ShowServiceResp.config:type_name -> modelarts.QueryServiceConfig - 185, // 182: modelarts.QueryServiceConfig.CustomSpec:type_name -> modelarts.CustomSpec - 308, // 183: modelarts.QueryServiceConfig.envs:type_name -> modelarts.QueryServiceConfig.EnvsEntry - 309, // 184: modelarts.QueryServiceConfig.additional_properties:type_name -> modelarts.QueryServiceConfig.AdditionalPropertiesEntry - 193, // 185: modelarts.ListServicesResp.services:type_name -> modelarts.ListServices - 183, // 186: modelarts.ListServices.scheduler:type_name -> modelarts.Scheduler - 310, // 187: modelarts.ListServices.additional_properties:type_name -> modelarts.ListServices.AdditionalPropertiesEntry - 315, // 188: modelarts.ListSpecificationsResp.specifications:type_name -> modelarts.ListSpecificationsResp.Specifications - 324, // 189: modelarts.GetPoolsRuntimeMetricsResp.items:type_name -> modelarts.GetPoolsRuntimeMetricsResp.Items - 325, // 190: modelarts.GetResourceFlavorsResp.metadata:type_name -> modelarts.GetResourceFlavorsResp.Metadata - 333, // 191: modelarts.GetResourceFlavorsResp.items:type_name -> modelarts.GetResourceFlavorsResp.Items - 204, // 192: modelarts.ListClustersResp.resp200:type_name -> modelarts.ListClustersResp200 - 205, // 193: modelarts.ListClustersResp.resp400:type_name -> modelarts.ListClustersResp400 - 206, // 194: modelarts.ListClustersResp200.clusters:type_name -> modelarts.Cluster - 207, // 195: modelarts.Cluster.nodes:type_name -> modelarts.ClusterNode - 14, // 196: modelarts.CreateDataSetReq.data_sources:type_name -> modelarts.DataSources - 15, // 197: modelarts.CreateDataSetReq.import_config:type_name -> modelarts.ImportConfig - 214, // 198: modelarts.ListNotebookReq.param:type_name -> modelarts.ListNotebookParam - 235, // 199: modelarts.ListNotebookResp.data:type_name -> modelarts.NotebookResp - 217, // 200: modelarts.CreateNotebookReq.param:type_name -> modelarts.CreateNotebookParam - 235, // 201: modelarts.CreateNotebookResp.notebookResp:type_name -> modelarts.NotebookResp - 249, // 202: modelarts.CreateNotebookParam.endpoints:type_name -> modelarts.EndpointsReq - 250, // 203: modelarts.CreateNotebookParam.volume:type_name -> modelarts.VolumeReq - 251, // 204: modelarts.CreateNotebookParam.hooks:type_name -> modelarts.CustomHooks - 254, // 205: modelarts.CreateNotebookParam.lease:type_name -> modelarts.LeaseReq - 220, // 206: modelarts.StartNotebookReq.param:type_name -> modelarts.StartNotebookParam - 235, // 207: modelarts.StartNotebookResp.notebookResp:type_name -> modelarts.NotebookResp - 235, // 208: modelarts.StopNotebookResp.notebookResp:type_name -> modelarts.NotebookResp - 234, // 209: modelarts.GetNotebookStorageResp.data:type_name -> modelarts.DataVolumesRes - 233, // 210: modelarts.MountNotebookStorageReq.param:type_name -> modelarts.MountNotebookStorageParam - 336, // 211: modelarts.GetNotebookFlavorsResp.data:type_name -> modelarts.GetNotebookFlavorsResp.Data - 337, // 212: modelarts.ListImagesResp.data:type_name -> modelarts.ListImagesResp.Data - 242, // 213: modelarts.NotebookResp.action_progress:type_name -> modelarts.ActionProgress - 244, // 214: modelarts.NotebookResp.endpoints:type_name -> modelarts.EndpointsRes - 245, // 215: modelarts.NotebookResp.image:type_name -> modelarts.Image - 246, // 216: modelarts.NotebookResp.lease:type_name -> modelarts.Lease - 247, // 217: modelarts.NotebookResp.pool:type_name -> modelarts.Pool - 248, // 218: modelarts.NotebookResp.volume:type_name -> modelarts.VolumeRes - 238, // 219: modelarts.NotebookResp.hooks:type_name -> modelarts.Hooks - 236, // 220: modelarts.NotebookResp.user:type_name -> modelarts.UserNotebookResp - 237, // 221: modelarts.UserNotebookResp.domain:type_name -> modelarts.UserNotebookDomain - 239, // 222: modelarts.Hooks.containerHooks:type_name -> modelarts.ContainerHooksResp - 240, // 223: modelarts.ContainerHooksResp.postStart:type_name -> modelarts.PostStart - 241, // 224: modelarts.ContainerHooksResp.preStart:type_name -> modelarts.PreStart - 252, // 225: modelarts.CustomHooks.container_hooks:type_name -> modelarts.ContainerHooks - 253, // 226: modelarts.ContainerHooks.post_start:type_name -> modelarts.Config - 253, // 227: modelarts.ContainerHooks.pre_start:type_name -> modelarts.Config - 258, // 228: modelarts.GetVisualizationJobReq.param:type_name -> modelarts.GetVisualizationJobParam - 257, // 229: modelarts.GetVisualizationJobResp.jobs:type_name -> modelarts.Jobs - 261, // 230: modelarts.CreateVisualizationJobReq.param:type_name -> modelarts.CreateVisualizationJobParam - 262, // 231: modelarts.CreateVisualizationJobParam.flavor:type_name -> modelarts.Flavor - 263, // 232: modelarts.CreateVisualizationJobParam.schedule:type_name -> modelarts.Schedule - 272, // 233: modelarts.NamespaceInfo.errors:type_name -> modelarts.Errors - 274, // 234: modelarts.ListNamespacesResp.namespaces:type_name -> modelarts.NamespaceInfo - 272, // 235: modelarts.ListNamespacesResp.errors:type_name -> modelarts.Errors - 272, // 236: modelarts.resp.errors:type_name -> modelarts.Errors - 281, // 237: modelarts.ListReposDetailsResp.items:type_name -> modelarts.ReposDetails - 272, // 238: modelarts.ListReposDetailsResp.errors:type_name -> modelarts.Errors - 288, // 239: modelarts.ListRepositoryTagsResp.items:type_name -> modelarts.RepositoryTags - 144, // 240: modelarts.SearchProp.PropsEntry.value:type_name -> modelarts.weigou - 311, // 241: modelarts.ListSpecificationsResp.Specifications.cpu_info:type_name -> modelarts.ListSpecificationsResp.Cpu_info - 312, // 242: modelarts.ListSpecificationsResp.Specifications.memory_info:type_name -> modelarts.ListSpecificationsResp.Memory_info - 313, // 243: modelarts.ListSpecificationsResp.Specifications.gpu_info:type_name -> modelarts.ListSpecificationsResp.Gpu_info - 314, // 244: modelarts.ListSpecificationsResp.Specifications.npu_info:type_name -> modelarts.ListSpecificationsResp.Npu_info - 316, // 245: modelarts.GetPoolsRuntimeMetricsResp.Metadata.labels:type_name -> modelarts.GetPoolsRuntimeMetricsResp.Labels - 318, // 246: modelarts.GetPoolsRuntimeMetricsResp.Allocated.value:type_name -> modelarts.GetPoolsRuntimeMetricsResp.Value - 320, // 247: modelarts.GetPoolsRuntimeMetricsResp.Capacity.value:type_name -> modelarts.GetPoolsRuntimeMetricsResp.Value1 - 321, // 248: modelarts.GetPoolsRuntimeMetricsResp.Capacity.max_value:type_name -> modelarts.GetPoolsRuntimeMetricsResp.Max_value - 319, // 249: modelarts.GetPoolsRuntimeMetricsResp.Table.allocated:type_name -> modelarts.GetPoolsRuntimeMetricsResp.Allocated - 322, // 250: modelarts.GetPoolsRuntimeMetricsResp.Table.capacity:type_name -> modelarts.GetPoolsRuntimeMetricsResp.Capacity - 317, // 251: modelarts.GetPoolsRuntimeMetricsResp.Items.metadata:type_name -> modelarts.GetPoolsRuntimeMetricsResp.Metadata - 323, // 252: modelarts.GetPoolsRuntimeMetricsResp.Items.table:type_name -> modelarts.GetPoolsRuntimeMetricsResp.Table - 326, // 253: modelarts.GetResourceFlavorsResp.Metadata1.labels:type_name -> modelarts.GetResourceFlavorsResp.Labels - 328, // 254: modelarts.GetResourceFlavorsResp.Spec.data_volumes:type_name -> modelarts.GetResourceFlavorsResp.Data_volumes - 330, // 255: modelarts.GetResourceFlavorsResp.Spec.npu:type_name -> modelarts.GetResourceFlavorsResp.Npu - 331, // 256: modelarts.GetResourceFlavorsResp.Status.phase:type_name -> modelarts.GetResourceFlavorsResp.Phase - 327, // 257: modelarts.GetResourceFlavorsResp.Items.metadata:type_name -> modelarts.GetResourceFlavorsResp.Metadata1 - 329, // 258: modelarts.GetResourceFlavorsResp.Items.spec:type_name -> modelarts.GetResourceFlavorsResp.Spec - 332, // 259: modelarts.GetResourceFlavorsResp.Items.status:type_name -> modelarts.GetResourceFlavorsResp.Status - 334, // 260: modelarts.GetNotebookFlavorsResp.Data.billing:type_name -> modelarts.GetNotebookFlavorsResp.Billing - 335, // 261: modelarts.GetNotebookFlavorsResp.Data.gpu:type_name -> modelarts.GetNotebookFlavorsResp.Gpu - 346, // 262: modelarts.MetricsPoolsResponse.SomeMessage.items:type_name -> modelarts.MetricsPoolsResponse.SomeMessage.Items - 339, // 263: modelarts.MetricsPoolsResponse.SomeMessage.Allocated.value:type_name -> modelarts.MetricsPoolsResponse.SomeMessage.Value - 341, // 264: modelarts.MetricsPoolsResponse.SomeMessage.Capacity.value:type_name -> modelarts.MetricsPoolsResponse.SomeMessage.Value1 - 342, // 265: modelarts.MetricsPoolsResponse.SomeMessage.Capacity.maxValue:type_name -> modelarts.MetricsPoolsResponse.SomeMessage.Maxvalue - 340, // 266: modelarts.MetricsPoolsResponse.SomeMessage.Table.allocated:type_name -> modelarts.MetricsPoolsResponse.SomeMessage.Allocated - 343, // 267: modelarts.MetricsPoolsResponse.SomeMessage.Table.capacity:type_name -> modelarts.MetricsPoolsResponse.SomeMessage.Capacity - 344, // 268: modelarts.MetricsPoolsResponse.SomeMessage.Items.table:type_name -> modelarts.MetricsPoolsResponse.SomeMessage.Table - 345, // 269: modelarts.MetricsPoolsResponse.SomeMessage.Items.metadata:type_name -> modelarts.MetricsPoolsResponse.SomeMessage.Metadata - 9, // 270: modelarts.ModelArtsService.GetToken:input_type -> modelarts.TokenReq - 11, // 271: modelarts.ModelArtsService.GetDatasetList:input_type -> modelarts.DataSetReq - 208, // 272: modelarts.ModelArtsService.CreateDataSet:input_type -> modelarts.CreateDataSetReq - 210, // 273: modelarts.ModelArtsService.DeleteDataSet:input_type -> modelarts.DeleteDataSetReq - 16, // 274: modelarts.ModelArtsService.createTask:input_type -> modelarts.ImportTaskDataReq - 18, // 275: modelarts.ModelArtsService.GetImportTaskList:input_type -> modelarts.ListImportTasksReq - 26, // 276: modelarts.ModelArtsService.GetListTrainingJobs:input_type -> modelarts.ListTrainingJobsreq - 27, // 277: modelarts.ModelArtsService.GetTrainingJobs:input_type -> modelarts.DetailTrainingJobsReq - 70, // 278: modelarts.ModelArtsService.CreateTrainingJob:input_type -> modelarts.CreateTrainingJobReq - 92, // 279: modelarts.ModelArtsService.DeleteTrainingJob:input_type -> modelarts.DeleteTrainingJobReq - 89, // 280: modelarts.ModelArtsService.CreateTrainingJobConfig:input_type -> modelarts.CreateTrainingJobConfigReq - 94, // 281: modelarts.ModelArtsService.DeleteTrainingJobConfig:input_type -> modelarts.DeleteTrainingJobConfigReq - 96, // 282: modelarts.ModelArtsService.ListTrainingJobConfig:input_type -> modelarts.ListTrainingJobConfigReq - 99, // 283: modelarts.ModelArtsService.CreateAlgorithm:input_type -> modelarts.CreateAlgorithmReq - 125, // 284: modelarts.ModelArtsService.ListAlgorithms:input_type -> modelarts.ListAlgorithmsReq - 129, // 285: modelarts.ModelArtsService.DeleteAlgorithms:input_type -> modelarts.DeleteAlgorithmsReq - 131, // 286: modelarts.ModelArtsService.ShowAlgorithmByUuid:input_type -> modelarts.ShowAlgorithmByUuidReq - 133, // 287: modelarts.ModelArtsService.GetTrainingJobFlavors:input_type -> modelarts.TrainingJobFlavorsReq - 135, // 288: modelarts.ModelArtsService.GetAiEnginesList:input_type -> modelarts.ListAiEnginesReq - 270, // 289: modelarts.ModelArtsService.GetTrainingJobLogsPreview:input_type -> modelarts.GetTrainingJobLogsPreviewReq - 139, // 290: modelarts.ModelArtsService.ExportTask:input_type -> modelarts.ExportTaskReq - 147, // 291: modelarts.ModelArtsService.GetExportTasksOfDataset:input_type -> modelarts.GetExportTasksOfDatasetReq - 150, // 292: modelarts.ModelArtsService.GetExportTaskStatusOfDataset:input_type -> modelarts.GetExportTaskStatusOfDatasetReq - 152, // 293: modelarts.ModelArtsService.CreateProcessorTask:input_type -> modelarts.CreateProcessorTaskReq - 158, // 294: modelarts.ModelArtsService.DescribeProcessorTask:input_type -> modelarts.DescribeProcessorTaskReq - 160, // 295: modelarts.ModelArtsService.CreateModel:input_type -> modelarts.CreateModelReq - 170, // 296: modelarts.ModelArtsService.DeleteModel:input_type -> modelarts.DeleteModelReq - 173, // 297: modelarts.ModelArtsService.ListModels:input_type -> modelarts.ListModelReq - 177, // 298: modelarts.ModelArtsService.ShowModels:input_type -> modelarts.ShowModelReq - 181, // 299: modelarts.ModelArtsService.CreateService:input_type -> modelarts.CreateServiceReq - 191, // 300: modelarts.ModelArtsService.ListServices:input_type -> modelarts.ListServicesReq - 188, // 301: modelarts.ModelArtsService.ShowService:input_type -> modelarts.ShowServiceReq - 186, // 302: modelarts.ModelArtsService.DeleteService:input_type -> modelarts.DeleteServiceReq - 202, // 303: modelarts.ModelArtsService.ListClusters:input_type -> modelarts.ListClustersReq - 194, // 304: modelarts.ModelArtsService.ListSpecifications:input_type -> modelarts.ListSpecificationsReq - 196, // 305: modelarts.ModelArtsService.UpdateService:input_type -> modelarts.UpdateServiceReq - 198, // 306: modelarts.ModelArtsService.GetPoolsRuntimeMetrics:input_type -> modelarts.GetPoolsRuntimeMetricsReq - 200, // 307: modelarts.ModelArtsService.GetResourceFlavors:input_type -> modelarts.GetResourceFlavorsReq - 212, // 308: modelarts.ModelArtsService.ListNotebook:input_type -> modelarts.ListNotebookReq - 215, // 309: modelarts.ModelArtsService.CreateNotebook:input_type -> modelarts.CreateNotebookReq - 218, // 310: modelarts.ModelArtsService.StartNotebook:input_type -> modelarts.StartNotebookReq - 221, // 311: modelarts.ModelArtsService.StopNotebook:input_type -> modelarts.StopNotebookReq - 223, // 312: modelarts.ModelArtsService.GetNotebookStorage:input_type -> modelarts.GetNotebookStorageReq - 225, // 313: modelarts.ModelArtsService.MountNotebookStorage:input_type -> modelarts.MountNotebookStorageReq - 227, // 314: modelarts.ModelArtsService.GetNotebookFlavors:input_type -> modelarts.GetNotebookFlavorsReq - 229, // 315: modelarts.ModelArtsService.ListImages:input_type -> modelarts.ListImagesReq - 231, // 316: modelarts.ModelArtsService.DeleteNotebook:input_type -> modelarts.DeleteImagesReq - 255, // 317: modelarts.ModelArtsService.GetVisualizationJob:input_type -> modelarts.GetVisualizationJobReq - 259, // 318: modelarts.ModelArtsService.CreateVisualizationJob:input_type -> modelarts.CreateVisualizationJobReq - 264, // 319: modelarts.ModelArtsService.ImageReasoning:input_type -> modelarts.ImageReasoningReq - 268, // 320: modelarts.ModelArtsService.ImageReasoningUrl:input_type -> modelarts.ImageReasoningUrlReq - 266, // 321: modelarts.ModelArtsService.ChatglmReasoning:input_type -> modelarts.ChatglmReasoningReq - 273, // 322: modelarts.imagesService.CreateNamespace:input_type -> modelarts.NamespaceReq - 275, // 323: modelarts.imagesService.ListNamespaces:input_type -> modelarts.ListNamespacesReq - 273, // 324: modelarts.imagesService.DeleteNamespaces:input_type -> modelarts.NamespaceReq - 273, // 325: modelarts.imagesService.ShowNamespace:input_type -> modelarts.NamespaceReq - 278, // 326: modelarts.imagesService.CreateRepo:input_type -> modelarts.CreateRepoReq - 279, // 327: modelarts.imagesService.DeleteRepo:input_type -> modelarts.DeleteRepoReq - 280, // 328: modelarts.imagesService.ListReposDetails:input_type -> modelarts.ListRepoReq - 283, // 329: modelarts.imagesService.ShowRepository:input_type -> modelarts.ShowRepositoryReq - 285, // 330: modelarts.imagesService.UpdateRepo:input_type -> modelarts.UpdateRepoReq - 289, // 331: modelarts.imagesService.DeleteRepoTag:input_type -> modelarts.DeleteRepoTagReq - 286, // 332: modelarts.imagesService.ListRepositoryTags:input_type -> modelarts.ListRepositoryTagsReq - 290, // 333: modelarts.imagesService.UploadFile:input_type -> modelarts.FileRequest - 290, // 334: modelarts.imagesService.DownloadFile:input_type -> modelarts.FileRequest - 293, // 335: modelarts.imagesService.getMetricsPools:input_type -> modelarts.MetricsPoolsRequest - 10, // 336: modelarts.ModelArtsService.GetToken:output_type -> modelarts.TokenResp - 12, // 337: modelarts.ModelArtsService.GetDatasetList:output_type -> modelarts.DataSetResp - 209, // 338: modelarts.ModelArtsService.CreateDataSet:output_type -> modelarts.CreateDataSetResq - 211, // 339: modelarts.ModelArtsService.DeleteDataSet:output_type -> modelarts.DeleteDataSetResq - 17, // 340: modelarts.ModelArtsService.createTask:output_type -> modelarts.ImportTaskDataResp - 19, // 341: modelarts.ModelArtsService.GetImportTaskList:output_type -> modelarts.ListImportTasksResp - 28, // 342: modelarts.ModelArtsService.GetListTrainingJobs:output_type -> modelarts.ListTrainingJobsresp - 29, // 343: modelarts.ModelArtsService.GetTrainingJobs:output_type -> modelarts.JobResponse - 71, // 344: modelarts.ModelArtsService.CreateTrainingJob:output_type -> modelarts.CreateTrainingJobResp - 93, // 345: modelarts.ModelArtsService.DeleteTrainingJob:output_type -> modelarts.DeleteTrainingJobResp - 91, // 346: modelarts.ModelArtsService.CreateTrainingJobConfig:output_type -> modelarts.CreateTrainingJobConfigResp - 95, // 347: modelarts.ModelArtsService.DeleteTrainingJobConfig:output_type -> modelarts.DeleteTrainingJobConfigResp - 97, // 348: modelarts.ModelArtsService.ListTrainingJobConfig:output_type -> modelarts.ListTrainingJobConfigResp - 113, // 349: modelarts.ModelArtsService.CreateAlgorithm:output_type -> modelarts.CreateAlgorithmResp - 126, // 350: modelarts.ModelArtsService.ListAlgorithms:output_type -> modelarts.ListAlgorithmsResp - 130, // 351: modelarts.ModelArtsService.DeleteAlgorithms:output_type -> modelarts.DeleteAlgorithmsResp - 132, // 352: modelarts.ModelArtsService.ShowAlgorithmByUuid:output_type -> modelarts.ShowAlgorithmByUuidResp - 134, // 353: modelarts.ModelArtsService.GetTrainingJobFlavors:output_type -> modelarts.TrainingJobFlavorsResp - 136, // 354: modelarts.ModelArtsService.GetAiEnginesList:output_type -> modelarts.ListAiEnginesResp - 271, // 355: modelarts.ModelArtsService.GetTrainingJobLogsPreview:output_type -> modelarts.GetTrainingJobLogsPreviewResp - 140, // 356: modelarts.ModelArtsService.ExportTask:output_type -> modelarts.ExportTaskDataResp - 148, // 357: modelarts.ModelArtsService.GetExportTasksOfDataset:output_type -> modelarts.GetExportTasksOfDatasetResp - 151, // 358: modelarts.ModelArtsService.GetExportTaskStatusOfDataset:output_type -> modelarts.GetExportTaskStatusOfDatasetResp - 153, // 359: modelarts.ModelArtsService.CreateProcessorTask:output_type -> modelarts.CreateProcessorTaskResp - 159, // 360: modelarts.ModelArtsService.DescribeProcessorTask:output_type -> modelarts.DescribeProcessorTaskResp - 161, // 361: modelarts.ModelArtsService.CreateModel:output_type -> modelarts.CreateModelResp - 171, // 362: modelarts.ModelArtsService.DeleteModel:output_type -> modelarts.DeleteModelResp - 174, // 363: modelarts.ModelArtsService.ListModels:output_type -> modelarts.ListModelResp - 178, // 364: modelarts.ModelArtsService.ShowModels:output_type -> modelarts.ShowModelResp - 182, // 365: modelarts.ModelArtsService.CreateService:output_type -> modelarts.CreateServiceResp - 192, // 366: modelarts.ModelArtsService.ListServices:output_type -> modelarts.ListServicesResp - 189, // 367: modelarts.ModelArtsService.ShowService:output_type -> modelarts.ShowServiceResp - 187, // 368: modelarts.ModelArtsService.DeleteService:output_type -> modelarts.DeleteServiceResp - 203, // 369: modelarts.ModelArtsService.ListClusters:output_type -> modelarts.ListClustersResp - 195, // 370: modelarts.ModelArtsService.ListSpecifications:output_type -> modelarts.ListSpecificationsResp - 197, // 371: modelarts.ModelArtsService.UpdateService:output_type -> modelarts.UpdateServiceResp - 199, // 372: modelarts.ModelArtsService.GetPoolsRuntimeMetrics:output_type -> modelarts.GetPoolsRuntimeMetricsResp - 201, // 373: modelarts.ModelArtsService.GetResourceFlavors:output_type -> modelarts.GetResourceFlavorsResp - 213, // 374: modelarts.ModelArtsService.ListNotebook:output_type -> modelarts.ListNotebookResp - 216, // 375: modelarts.ModelArtsService.CreateNotebook:output_type -> modelarts.CreateNotebookResp - 219, // 376: modelarts.ModelArtsService.StartNotebook:output_type -> modelarts.StartNotebookResp - 222, // 377: modelarts.ModelArtsService.StopNotebook:output_type -> modelarts.StopNotebookResp - 224, // 378: modelarts.ModelArtsService.GetNotebookStorage:output_type -> modelarts.GetNotebookStorageResp - 226, // 379: modelarts.ModelArtsService.MountNotebookStorage:output_type -> modelarts.MountNotebookStorageResp - 228, // 380: modelarts.ModelArtsService.GetNotebookFlavors:output_type -> modelarts.GetNotebookFlavorsResp - 230, // 381: modelarts.ModelArtsService.ListImages:output_type -> modelarts.ListImagesResp - 232, // 382: modelarts.ModelArtsService.DeleteNotebook:output_type -> modelarts.DeleteImagesResp - 256, // 383: modelarts.ModelArtsService.GetVisualizationJob:output_type -> modelarts.GetVisualizationJobResp - 260, // 384: modelarts.ModelArtsService.CreateVisualizationJob:output_type -> modelarts.CreateVisualizationJobResp - 265, // 385: modelarts.ModelArtsService.ImageReasoning:output_type -> modelarts.ImageReasoningResp - 269, // 386: modelarts.ModelArtsService.ImageReasoningUrl:output_type -> modelarts.ImageReasoningUrlResp - 267, // 387: modelarts.ModelArtsService.ChatglmReasoning:output_type -> modelarts.ChatglmReasoningResp - 277, // 388: modelarts.imagesService.CreateNamespace:output_type -> modelarts.resp - 276, // 389: modelarts.imagesService.ListNamespaces:output_type -> modelarts.ListNamespacesResp - 277, // 390: modelarts.imagesService.DeleteNamespaces:output_type -> modelarts.resp - 274, // 391: modelarts.imagesService.ShowNamespace:output_type -> modelarts.NamespaceInfo - 277, // 392: modelarts.imagesService.CreateRepo:output_type -> modelarts.resp - 277, // 393: modelarts.imagesService.DeleteRepo:output_type -> modelarts.resp - 282, // 394: modelarts.imagesService.ListReposDetails:output_type -> modelarts.ListReposDetailsResp - 284, // 395: modelarts.imagesService.ShowRepository:output_type -> modelarts.ShowRepositoryResp - 277, // 396: modelarts.imagesService.UpdateRepo:output_type -> modelarts.resp - 277, // 397: modelarts.imagesService.DeleteRepoTag:output_type -> modelarts.resp - 287, // 398: modelarts.imagesService.ListRepositoryTags:output_type -> modelarts.ListRepositoryTagsResp - 291, // 399: modelarts.imagesService.UploadFile:output_type -> modelarts.FileResponse - 292, // 400: modelarts.imagesService.DownloadFile:output_type -> modelarts.FileData - 294, // 401: modelarts.imagesService.getMetricsPools:output_type -> modelarts.MetricsPoolsResponse - 336, // [336:402] is the sub-list for method output_type - 270, // [270:336] is the sub-list for method input_type - 270, // [270:270] is the sub-list for extension type_name - 270, // [270:270] is the sub-list for extension extendee - 0, // [0:270] is the sub-list for field type_name + 179, // 168: modelarts.ShowModelResp.ShowModelDetail:type_name -> modelarts.ShowModelDetail + 167, // 169: modelarts.ShowModelDetail.model_docs:type_name -> modelarts.GuideDoc + 181, // 170: modelarts.ShowModelDetail.output_params:type_name -> modelarts.ModelParamsInfo + 180, // 171: modelarts.ShowModelDetail.healthy:type_name -> modelarts.ModelHealth + 168, // 172: modelarts.ShowModelDetail.dependencies:type_name -> modelarts.ModelDependencies + 306, // 173: modelarts.ShowModelDetail.labels_map:type_name -> modelarts.ShowModelDetail.LabelsMapEntry + 176, // 174: modelarts.ShowModelDetail.specification:type_name -> modelarts.ModelSpecification + 181, // 175: modelarts.ShowModelDetail.input_params:type_name -> modelarts.ModelParamsInfo + 184, // 176: modelarts.CreateServiceReq.schedule:type_name -> modelarts.Scheduler + 185, // 177: modelarts.CreateServiceReq.config:type_name -> modelarts.ServiceConfig + 186, // 178: modelarts.ServiceConfig.custom_spec:type_name -> modelarts.CustomSpec + 307, // 179: modelarts.ServiceConfig.envs:type_name -> modelarts.ServiceConfig.EnvsEntry + 184, // 180: modelarts.ShowServiceResp.scheduler:type_name -> modelarts.Scheduler + 308, // 181: modelarts.ShowServiceResp.additional_properties:type_name -> modelarts.ShowServiceResp.AdditionalPropertiesEntry + 191, // 182: modelarts.ShowServiceResp.config:type_name -> modelarts.QueryServiceConfig + 186, // 183: modelarts.QueryServiceConfig.CustomSpec:type_name -> modelarts.CustomSpec + 309, // 184: modelarts.QueryServiceConfig.envs:type_name -> modelarts.QueryServiceConfig.EnvsEntry + 310, // 185: modelarts.QueryServiceConfig.additional_properties:type_name -> modelarts.QueryServiceConfig.AdditionalPropertiesEntry + 194, // 186: modelarts.ListServicesResp.services:type_name -> modelarts.ListServices + 184, // 187: modelarts.ListServices.scheduler:type_name -> modelarts.Scheduler + 311, // 188: modelarts.ListServices.additional_properties:type_name -> modelarts.ListServices.AdditionalPropertiesEntry + 316, // 189: modelarts.ListSpecificationsResp.specifications:type_name -> modelarts.ListSpecificationsResp.Specifications + 325, // 190: modelarts.GetPoolsRuntimeMetricsResp.items:type_name -> modelarts.GetPoolsRuntimeMetricsResp.Items + 326, // 191: modelarts.GetResourceFlavorsResp.metadata:type_name -> modelarts.GetResourceFlavorsResp.Metadata + 334, // 192: modelarts.GetResourceFlavorsResp.items:type_name -> modelarts.GetResourceFlavorsResp.Items + 205, // 193: modelarts.ListClustersResp.resp200:type_name -> modelarts.ListClustersResp200 + 206, // 194: modelarts.ListClustersResp.resp400:type_name -> modelarts.ListClustersResp400 + 207, // 195: modelarts.ListClustersResp200.clusters:type_name -> modelarts.Cluster + 208, // 196: modelarts.Cluster.nodes:type_name -> modelarts.ClusterNode + 14, // 197: modelarts.CreateDataSetReq.data_sources:type_name -> modelarts.DataSources + 15, // 198: modelarts.CreateDataSetReq.import_config:type_name -> modelarts.ImportConfig + 215, // 199: modelarts.ListNotebookReq.param:type_name -> modelarts.ListNotebookParam + 236, // 200: modelarts.ListNotebookResp.data:type_name -> modelarts.NotebookResp + 218, // 201: modelarts.CreateNotebookReq.param:type_name -> modelarts.CreateNotebookParam + 236, // 202: modelarts.CreateNotebookResp.notebookResp:type_name -> modelarts.NotebookResp + 250, // 203: modelarts.CreateNotebookParam.endpoints:type_name -> modelarts.EndpointsReq + 251, // 204: modelarts.CreateNotebookParam.volume:type_name -> modelarts.VolumeReq + 252, // 205: modelarts.CreateNotebookParam.hooks:type_name -> modelarts.CustomHooks + 255, // 206: modelarts.CreateNotebookParam.lease:type_name -> modelarts.LeaseReq + 221, // 207: modelarts.StartNotebookReq.param:type_name -> modelarts.StartNotebookParam + 236, // 208: modelarts.StartNotebookResp.notebookResp:type_name -> modelarts.NotebookResp + 236, // 209: modelarts.StopNotebookResp.notebookResp:type_name -> modelarts.NotebookResp + 235, // 210: modelarts.GetNotebookStorageResp.data:type_name -> modelarts.DataVolumesRes + 234, // 211: modelarts.MountNotebookStorageReq.param:type_name -> modelarts.MountNotebookStorageParam + 337, // 212: modelarts.GetNotebookFlavorsResp.data:type_name -> modelarts.GetNotebookFlavorsResp.Data + 338, // 213: modelarts.ListImagesResp.data:type_name -> modelarts.ListImagesResp.Data + 243, // 214: modelarts.NotebookResp.action_progress:type_name -> modelarts.ActionProgress + 245, // 215: modelarts.NotebookResp.endpoints:type_name -> modelarts.EndpointsRes + 246, // 216: modelarts.NotebookResp.image:type_name -> modelarts.Image + 247, // 217: modelarts.NotebookResp.lease:type_name -> modelarts.Lease + 248, // 218: modelarts.NotebookResp.pool:type_name -> modelarts.Pool + 249, // 219: modelarts.NotebookResp.volume:type_name -> modelarts.VolumeRes + 239, // 220: modelarts.NotebookResp.hooks:type_name -> modelarts.Hooks + 237, // 221: modelarts.NotebookResp.user:type_name -> modelarts.UserNotebookResp + 238, // 222: modelarts.UserNotebookResp.domain:type_name -> modelarts.UserNotebookDomain + 240, // 223: modelarts.Hooks.containerHooks:type_name -> modelarts.ContainerHooksResp + 241, // 224: modelarts.ContainerHooksResp.postStart:type_name -> modelarts.PostStart + 242, // 225: modelarts.ContainerHooksResp.preStart:type_name -> modelarts.PreStart + 253, // 226: modelarts.CustomHooks.container_hooks:type_name -> modelarts.ContainerHooks + 254, // 227: modelarts.ContainerHooks.post_start:type_name -> modelarts.Config + 254, // 228: modelarts.ContainerHooks.pre_start:type_name -> modelarts.Config + 259, // 229: modelarts.GetVisualizationJobReq.param:type_name -> modelarts.GetVisualizationJobParam + 258, // 230: modelarts.GetVisualizationJobResp.jobs:type_name -> modelarts.Jobs + 262, // 231: modelarts.CreateVisualizationJobReq.param:type_name -> modelarts.CreateVisualizationJobParam + 263, // 232: modelarts.CreateVisualizationJobParam.flavor:type_name -> modelarts.Flavor + 264, // 233: modelarts.CreateVisualizationJobParam.schedule:type_name -> modelarts.Schedule + 273, // 234: modelarts.NamespaceInfo.errors:type_name -> modelarts.Errors + 275, // 235: modelarts.ListNamespacesResp.namespaces:type_name -> modelarts.NamespaceInfo + 273, // 236: modelarts.ListNamespacesResp.errors:type_name -> modelarts.Errors + 273, // 237: modelarts.resp.errors:type_name -> modelarts.Errors + 282, // 238: modelarts.ListReposDetailsResp.items:type_name -> modelarts.ReposDetails + 273, // 239: modelarts.ListReposDetailsResp.errors:type_name -> modelarts.Errors + 289, // 240: modelarts.ListRepositoryTagsResp.items:type_name -> modelarts.RepositoryTags + 144, // 241: modelarts.SearchProp.PropsEntry.value:type_name -> modelarts.weigou + 312, // 242: modelarts.ListSpecificationsResp.Specifications.cpu_info:type_name -> modelarts.ListSpecificationsResp.Cpu_info + 313, // 243: modelarts.ListSpecificationsResp.Specifications.memory_info:type_name -> modelarts.ListSpecificationsResp.Memory_info + 314, // 244: modelarts.ListSpecificationsResp.Specifications.gpu_info:type_name -> modelarts.ListSpecificationsResp.Gpu_info + 315, // 245: modelarts.ListSpecificationsResp.Specifications.npu_info:type_name -> modelarts.ListSpecificationsResp.Npu_info + 317, // 246: modelarts.GetPoolsRuntimeMetricsResp.Metadata.labels:type_name -> modelarts.GetPoolsRuntimeMetricsResp.Labels + 319, // 247: modelarts.GetPoolsRuntimeMetricsResp.Allocated.value:type_name -> modelarts.GetPoolsRuntimeMetricsResp.Value + 321, // 248: modelarts.GetPoolsRuntimeMetricsResp.Capacity.value:type_name -> modelarts.GetPoolsRuntimeMetricsResp.Value1 + 322, // 249: modelarts.GetPoolsRuntimeMetricsResp.Capacity.max_value:type_name -> modelarts.GetPoolsRuntimeMetricsResp.Max_value + 320, // 250: modelarts.GetPoolsRuntimeMetricsResp.Table.allocated:type_name -> modelarts.GetPoolsRuntimeMetricsResp.Allocated + 323, // 251: modelarts.GetPoolsRuntimeMetricsResp.Table.capacity:type_name -> modelarts.GetPoolsRuntimeMetricsResp.Capacity + 318, // 252: modelarts.GetPoolsRuntimeMetricsResp.Items.metadata:type_name -> modelarts.GetPoolsRuntimeMetricsResp.Metadata + 324, // 253: modelarts.GetPoolsRuntimeMetricsResp.Items.table:type_name -> modelarts.GetPoolsRuntimeMetricsResp.Table + 327, // 254: modelarts.GetResourceFlavorsResp.Metadata1.labels:type_name -> modelarts.GetResourceFlavorsResp.Labels + 329, // 255: modelarts.GetResourceFlavorsResp.Spec.data_volumes:type_name -> modelarts.GetResourceFlavorsResp.Data_volumes + 331, // 256: modelarts.GetResourceFlavorsResp.Spec.npu:type_name -> modelarts.GetResourceFlavorsResp.Npu + 332, // 257: modelarts.GetResourceFlavorsResp.Status.phase:type_name -> modelarts.GetResourceFlavorsResp.Phase + 328, // 258: modelarts.GetResourceFlavorsResp.Items.metadata:type_name -> modelarts.GetResourceFlavorsResp.Metadata1 + 330, // 259: modelarts.GetResourceFlavorsResp.Items.spec:type_name -> modelarts.GetResourceFlavorsResp.Spec + 333, // 260: modelarts.GetResourceFlavorsResp.Items.status:type_name -> modelarts.GetResourceFlavorsResp.Status + 335, // 261: modelarts.GetNotebookFlavorsResp.Data.billing:type_name -> modelarts.GetNotebookFlavorsResp.Billing + 336, // 262: modelarts.GetNotebookFlavorsResp.Data.gpu:type_name -> modelarts.GetNotebookFlavorsResp.Gpu + 347, // 263: modelarts.MetricsPoolsResponse.SomeMessage.items:type_name -> modelarts.MetricsPoolsResponse.SomeMessage.Items + 340, // 264: modelarts.MetricsPoolsResponse.SomeMessage.Allocated.value:type_name -> modelarts.MetricsPoolsResponse.SomeMessage.Value + 342, // 265: modelarts.MetricsPoolsResponse.SomeMessage.Capacity.value:type_name -> modelarts.MetricsPoolsResponse.SomeMessage.Value1 + 343, // 266: modelarts.MetricsPoolsResponse.SomeMessage.Capacity.maxValue:type_name -> modelarts.MetricsPoolsResponse.SomeMessage.Maxvalue + 341, // 267: modelarts.MetricsPoolsResponse.SomeMessage.Table.allocated:type_name -> modelarts.MetricsPoolsResponse.SomeMessage.Allocated + 344, // 268: modelarts.MetricsPoolsResponse.SomeMessage.Table.capacity:type_name -> modelarts.MetricsPoolsResponse.SomeMessage.Capacity + 345, // 269: modelarts.MetricsPoolsResponse.SomeMessage.Items.table:type_name -> modelarts.MetricsPoolsResponse.SomeMessage.Table + 346, // 270: modelarts.MetricsPoolsResponse.SomeMessage.Items.metadata:type_name -> modelarts.MetricsPoolsResponse.SomeMessage.Metadata + 9, // 271: modelarts.ModelArtsService.GetToken:input_type -> modelarts.TokenReq + 11, // 272: modelarts.ModelArtsService.GetDatasetList:input_type -> modelarts.DataSetReq + 209, // 273: modelarts.ModelArtsService.CreateDataSet:input_type -> modelarts.CreateDataSetReq + 211, // 274: modelarts.ModelArtsService.DeleteDataSet:input_type -> modelarts.DeleteDataSetReq + 16, // 275: modelarts.ModelArtsService.createTask:input_type -> modelarts.ImportTaskDataReq + 18, // 276: modelarts.ModelArtsService.GetImportTaskList:input_type -> modelarts.ListImportTasksReq + 26, // 277: modelarts.ModelArtsService.GetListTrainingJobs:input_type -> modelarts.ListTrainingJobsreq + 27, // 278: modelarts.ModelArtsService.GetTrainingJobs:input_type -> modelarts.DetailTrainingJobsReq + 70, // 279: modelarts.ModelArtsService.CreateTrainingJob:input_type -> modelarts.CreateTrainingJobReq + 92, // 280: modelarts.ModelArtsService.DeleteTrainingJob:input_type -> modelarts.DeleteTrainingJobReq + 89, // 281: modelarts.ModelArtsService.CreateTrainingJobConfig:input_type -> modelarts.CreateTrainingJobConfigReq + 94, // 282: modelarts.ModelArtsService.DeleteTrainingJobConfig:input_type -> modelarts.DeleteTrainingJobConfigReq + 96, // 283: modelarts.ModelArtsService.ListTrainingJobConfig:input_type -> modelarts.ListTrainingJobConfigReq + 99, // 284: modelarts.ModelArtsService.CreateAlgorithm:input_type -> modelarts.CreateAlgorithmReq + 125, // 285: modelarts.ModelArtsService.ListAlgorithms:input_type -> modelarts.ListAlgorithmsReq + 129, // 286: modelarts.ModelArtsService.DeleteAlgorithms:input_type -> modelarts.DeleteAlgorithmsReq + 131, // 287: modelarts.ModelArtsService.ShowAlgorithmByUuid:input_type -> modelarts.ShowAlgorithmByUuidReq + 133, // 288: modelarts.ModelArtsService.GetTrainingJobFlavors:input_type -> modelarts.TrainingJobFlavorsReq + 135, // 289: modelarts.ModelArtsService.GetAiEnginesList:input_type -> modelarts.ListAiEnginesReq + 271, // 290: modelarts.ModelArtsService.GetTrainingJobLogsPreview:input_type -> modelarts.GetTrainingJobLogsPreviewReq + 139, // 291: modelarts.ModelArtsService.ExportTask:input_type -> modelarts.ExportTaskReq + 147, // 292: modelarts.ModelArtsService.GetExportTasksOfDataset:input_type -> modelarts.GetExportTasksOfDatasetReq + 150, // 293: modelarts.ModelArtsService.GetExportTaskStatusOfDataset:input_type -> modelarts.GetExportTaskStatusOfDatasetReq + 152, // 294: modelarts.ModelArtsService.CreateProcessorTask:input_type -> modelarts.CreateProcessorTaskReq + 158, // 295: modelarts.ModelArtsService.DescribeProcessorTask:input_type -> modelarts.DescribeProcessorTaskReq + 160, // 296: modelarts.ModelArtsService.CreateModel:input_type -> modelarts.CreateModelReq + 170, // 297: modelarts.ModelArtsService.DeleteModel:input_type -> modelarts.DeleteModelReq + 173, // 298: modelarts.ModelArtsService.ListModels:input_type -> modelarts.ListModelReq + 177, // 299: modelarts.ModelArtsService.ShowModels:input_type -> modelarts.ShowModelReq + 182, // 300: modelarts.ModelArtsService.CreateService:input_type -> modelarts.CreateServiceReq + 192, // 301: modelarts.ModelArtsService.ListServices:input_type -> modelarts.ListServicesReq + 189, // 302: modelarts.ModelArtsService.ShowService:input_type -> modelarts.ShowServiceReq + 187, // 303: modelarts.ModelArtsService.DeleteService:input_type -> modelarts.DeleteServiceReq + 203, // 304: modelarts.ModelArtsService.ListClusters:input_type -> modelarts.ListClustersReq + 195, // 305: modelarts.ModelArtsService.ListSpecifications:input_type -> modelarts.ListSpecificationsReq + 197, // 306: modelarts.ModelArtsService.UpdateService:input_type -> modelarts.UpdateServiceReq + 199, // 307: modelarts.ModelArtsService.GetPoolsRuntimeMetrics:input_type -> modelarts.GetPoolsRuntimeMetricsReq + 201, // 308: modelarts.ModelArtsService.GetResourceFlavors:input_type -> modelarts.GetResourceFlavorsReq + 213, // 309: modelarts.ModelArtsService.ListNotebook:input_type -> modelarts.ListNotebookReq + 216, // 310: modelarts.ModelArtsService.CreateNotebook:input_type -> modelarts.CreateNotebookReq + 219, // 311: modelarts.ModelArtsService.StartNotebook:input_type -> modelarts.StartNotebookReq + 222, // 312: modelarts.ModelArtsService.StopNotebook:input_type -> modelarts.StopNotebookReq + 224, // 313: modelarts.ModelArtsService.GetNotebookStorage:input_type -> modelarts.GetNotebookStorageReq + 226, // 314: modelarts.ModelArtsService.MountNotebookStorage:input_type -> modelarts.MountNotebookStorageReq + 228, // 315: modelarts.ModelArtsService.GetNotebookFlavors:input_type -> modelarts.GetNotebookFlavorsReq + 230, // 316: modelarts.ModelArtsService.ListImages:input_type -> modelarts.ListImagesReq + 232, // 317: modelarts.ModelArtsService.DeleteNotebook:input_type -> modelarts.DeleteImagesReq + 256, // 318: modelarts.ModelArtsService.GetVisualizationJob:input_type -> modelarts.GetVisualizationJobReq + 260, // 319: modelarts.ModelArtsService.CreateVisualizationJob:input_type -> modelarts.CreateVisualizationJobReq + 265, // 320: modelarts.ModelArtsService.ImageReasoning:input_type -> modelarts.ImageReasoningReq + 269, // 321: modelarts.ModelArtsService.ImageReasoningUrl:input_type -> modelarts.ImageReasoningUrlReq + 267, // 322: modelarts.ModelArtsService.ChatglmReasoning:input_type -> modelarts.ChatglmReasoningReq + 274, // 323: modelarts.imagesService.CreateNamespace:input_type -> modelarts.NamespaceReq + 276, // 324: modelarts.imagesService.ListNamespaces:input_type -> modelarts.ListNamespacesReq + 274, // 325: modelarts.imagesService.DeleteNamespaces:input_type -> modelarts.NamespaceReq + 274, // 326: modelarts.imagesService.ShowNamespace:input_type -> modelarts.NamespaceReq + 279, // 327: modelarts.imagesService.CreateRepo:input_type -> modelarts.CreateRepoReq + 280, // 328: modelarts.imagesService.DeleteRepo:input_type -> modelarts.DeleteRepoReq + 281, // 329: modelarts.imagesService.ListReposDetails:input_type -> modelarts.ListRepoReq + 284, // 330: modelarts.imagesService.ShowRepository:input_type -> modelarts.ShowRepositoryReq + 286, // 331: modelarts.imagesService.UpdateRepo:input_type -> modelarts.UpdateRepoReq + 290, // 332: modelarts.imagesService.DeleteRepoTag:input_type -> modelarts.DeleteRepoTagReq + 287, // 333: modelarts.imagesService.ListRepositoryTags:input_type -> modelarts.ListRepositoryTagsReq + 291, // 334: modelarts.imagesService.UploadFile:input_type -> modelarts.FileRequest + 291, // 335: modelarts.imagesService.DownloadFile:input_type -> modelarts.FileRequest + 294, // 336: modelarts.imagesService.getMetricsPools:input_type -> modelarts.MetricsPoolsRequest + 10, // 337: modelarts.ModelArtsService.GetToken:output_type -> modelarts.TokenResp + 12, // 338: modelarts.ModelArtsService.GetDatasetList:output_type -> modelarts.DataSetResp + 210, // 339: modelarts.ModelArtsService.CreateDataSet:output_type -> modelarts.CreateDataSetResq + 212, // 340: modelarts.ModelArtsService.DeleteDataSet:output_type -> modelarts.DeleteDataSetResq + 17, // 341: modelarts.ModelArtsService.createTask:output_type -> modelarts.ImportTaskDataResp + 19, // 342: modelarts.ModelArtsService.GetImportTaskList:output_type -> modelarts.ListImportTasksResp + 28, // 343: modelarts.ModelArtsService.GetListTrainingJobs:output_type -> modelarts.ListTrainingJobsresp + 29, // 344: modelarts.ModelArtsService.GetTrainingJobs:output_type -> modelarts.JobResponse + 71, // 345: modelarts.ModelArtsService.CreateTrainingJob:output_type -> modelarts.CreateTrainingJobResp + 93, // 346: modelarts.ModelArtsService.DeleteTrainingJob:output_type -> modelarts.DeleteTrainingJobResp + 91, // 347: modelarts.ModelArtsService.CreateTrainingJobConfig:output_type -> modelarts.CreateTrainingJobConfigResp + 95, // 348: modelarts.ModelArtsService.DeleteTrainingJobConfig:output_type -> modelarts.DeleteTrainingJobConfigResp + 97, // 349: modelarts.ModelArtsService.ListTrainingJobConfig:output_type -> modelarts.ListTrainingJobConfigResp + 113, // 350: modelarts.ModelArtsService.CreateAlgorithm:output_type -> modelarts.CreateAlgorithmResp + 126, // 351: modelarts.ModelArtsService.ListAlgorithms:output_type -> modelarts.ListAlgorithmsResp + 130, // 352: modelarts.ModelArtsService.DeleteAlgorithms:output_type -> modelarts.DeleteAlgorithmsResp + 132, // 353: modelarts.ModelArtsService.ShowAlgorithmByUuid:output_type -> modelarts.ShowAlgorithmByUuidResp + 134, // 354: modelarts.ModelArtsService.GetTrainingJobFlavors:output_type -> modelarts.TrainingJobFlavorsResp + 136, // 355: modelarts.ModelArtsService.GetAiEnginesList:output_type -> modelarts.ListAiEnginesResp + 272, // 356: modelarts.ModelArtsService.GetTrainingJobLogsPreview:output_type -> modelarts.GetTrainingJobLogsPreviewResp + 140, // 357: modelarts.ModelArtsService.ExportTask:output_type -> modelarts.ExportTaskDataResp + 148, // 358: modelarts.ModelArtsService.GetExportTasksOfDataset:output_type -> modelarts.GetExportTasksOfDatasetResp + 151, // 359: modelarts.ModelArtsService.GetExportTaskStatusOfDataset:output_type -> modelarts.GetExportTaskStatusOfDatasetResp + 153, // 360: modelarts.ModelArtsService.CreateProcessorTask:output_type -> modelarts.CreateProcessorTaskResp + 159, // 361: modelarts.ModelArtsService.DescribeProcessorTask:output_type -> modelarts.DescribeProcessorTaskResp + 161, // 362: modelarts.ModelArtsService.CreateModel:output_type -> modelarts.CreateModelResp + 171, // 363: modelarts.ModelArtsService.DeleteModel:output_type -> modelarts.DeleteModelResp + 174, // 364: modelarts.ModelArtsService.ListModels:output_type -> modelarts.ListModelResp + 178, // 365: modelarts.ModelArtsService.ShowModels:output_type -> modelarts.ShowModelResp + 183, // 366: modelarts.ModelArtsService.CreateService:output_type -> modelarts.CreateServiceResp + 193, // 367: modelarts.ModelArtsService.ListServices:output_type -> modelarts.ListServicesResp + 190, // 368: modelarts.ModelArtsService.ShowService:output_type -> modelarts.ShowServiceResp + 188, // 369: modelarts.ModelArtsService.DeleteService:output_type -> modelarts.DeleteServiceResp + 204, // 370: modelarts.ModelArtsService.ListClusters:output_type -> modelarts.ListClustersResp + 196, // 371: modelarts.ModelArtsService.ListSpecifications:output_type -> modelarts.ListSpecificationsResp + 198, // 372: modelarts.ModelArtsService.UpdateService:output_type -> modelarts.UpdateServiceResp + 200, // 373: modelarts.ModelArtsService.GetPoolsRuntimeMetrics:output_type -> modelarts.GetPoolsRuntimeMetricsResp + 202, // 374: modelarts.ModelArtsService.GetResourceFlavors:output_type -> modelarts.GetResourceFlavorsResp + 214, // 375: modelarts.ModelArtsService.ListNotebook:output_type -> modelarts.ListNotebookResp + 217, // 376: modelarts.ModelArtsService.CreateNotebook:output_type -> modelarts.CreateNotebookResp + 220, // 377: modelarts.ModelArtsService.StartNotebook:output_type -> modelarts.StartNotebookResp + 223, // 378: modelarts.ModelArtsService.StopNotebook:output_type -> modelarts.StopNotebookResp + 225, // 379: modelarts.ModelArtsService.GetNotebookStorage:output_type -> modelarts.GetNotebookStorageResp + 227, // 380: modelarts.ModelArtsService.MountNotebookStorage:output_type -> modelarts.MountNotebookStorageResp + 229, // 381: modelarts.ModelArtsService.GetNotebookFlavors:output_type -> modelarts.GetNotebookFlavorsResp + 231, // 382: modelarts.ModelArtsService.ListImages:output_type -> modelarts.ListImagesResp + 233, // 383: modelarts.ModelArtsService.DeleteNotebook:output_type -> modelarts.DeleteImagesResp + 257, // 384: modelarts.ModelArtsService.GetVisualizationJob:output_type -> modelarts.GetVisualizationJobResp + 261, // 385: modelarts.ModelArtsService.CreateVisualizationJob:output_type -> modelarts.CreateVisualizationJobResp + 266, // 386: modelarts.ModelArtsService.ImageReasoning:output_type -> modelarts.ImageReasoningResp + 270, // 387: modelarts.ModelArtsService.ImageReasoningUrl:output_type -> modelarts.ImageReasoningUrlResp + 268, // 388: modelarts.ModelArtsService.ChatglmReasoning:output_type -> modelarts.ChatglmReasoningResp + 278, // 389: modelarts.imagesService.CreateNamespace:output_type -> modelarts.resp + 277, // 390: modelarts.imagesService.ListNamespaces:output_type -> modelarts.ListNamespacesResp + 278, // 391: modelarts.imagesService.DeleteNamespaces:output_type -> modelarts.resp + 275, // 392: modelarts.imagesService.ShowNamespace:output_type -> modelarts.NamespaceInfo + 278, // 393: modelarts.imagesService.CreateRepo:output_type -> modelarts.resp + 278, // 394: modelarts.imagesService.DeleteRepo:output_type -> modelarts.resp + 283, // 395: modelarts.imagesService.ListReposDetails:output_type -> modelarts.ListReposDetailsResp + 285, // 396: modelarts.imagesService.ShowRepository:output_type -> modelarts.ShowRepositoryResp + 278, // 397: modelarts.imagesService.UpdateRepo:output_type -> modelarts.resp + 278, // 398: modelarts.imagesService.DeleteRepoTag:output_type -> modelarts.resp + 288, // 399: modelarts.imagesService.ListRepositoryTags:output_type -> modelarts.ListRepositoryTagsResp + 292, // 400: modelarts.imagesService.UploadFile:output_type -> modelarts.FileResponse + 293, // 401: modelarts.imagesService.DownloadFile:output_type -> modelarts.FileData + 295, // 402: modelarts.imagesService.getMetricsPools:output_type -> modelarts.MetricsPoolsResponse + 337, // [337:403] is the sub-list for method output_type + 271, // [271:337] is the sub-list for method input_type + 271, // [271:271] is the sub-list for extension type_name + 271, // [271:271] is the sub-list for extension extendee + 0, // [0:271] is the sub-list for field type_name } func init() { file_pcm_modelarts_proto_init() } @@ -33990,7 +34064,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[179].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ModelHealth); i { + switch v := v.(*ShowModelDetail); i { case 0: return &v.state case 1: @@ -34002,7 +34076,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[180].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ModelParamsInfo); i { + switch v := v.(*ModelHealth); i { case 0: return &v.state case 1: @@ -34014,7 +34088,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[181].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateServiceReq); i { + switch v := v.(*ModelParamsInfo); i { case 0: return &v.state case 1: @@ -34026,7 +34100,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[182].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateServiceResp); i { + switch v := v.(*CreateServiceReq); i { case 0: return &v.state case 1: @@ -34038,7 +34112,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[183].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Scheduler); i { + switch v := v.(*CreateServiceResp); i { case 0: return &v.state case 1: @@ -34050,7 +34124,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[184].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ServiceConfig); i { + switch v := v.(*Scheduler); i { case 0: return &v.state case 1: @@ -34062,7 +34136,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[185].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CustomSpec); i { + switch v := v.(*ServiceConfig); i { case 0: return &v.state case 1: @@ -34074,7 +34148,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[186].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DeleteServiceReq); i { + switch v := v.(*CustomSpec); i { case 0: return &v.state case 1: @@ -34086,7 +34160,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[187].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DeleteServiceResp); i { + switch v := v.(*DeleteServiceReq); i { case 0: return &v.state case 1: @@ -34098,7 +34172,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[188].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ShowServiceReq); i { + switch v := v.(*DeleteServiceResp); i { case 0: return &v.state case 1: @@ -34110,7 +34184,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[189].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ShowServiceResp); i { + switch v := v.(*ShowServiceReq); i { case 0: return &v.state case 1: @@ -34122,7 +34196,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[190].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*QueryServiceConfig); i { + switch v := v.(*ShowServiceResp); i { case 0: return &v.state case 1: @@ -34134,7 +34208,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[191].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListServicesReq); i { + switch v := v.(*QueryServiceConfig); i { case 0: return &v.state case 1: @@ -34146,7 +34220,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[192].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListServicesResp); i { + switch v := v.(*ListServicesReq); i { case 0: return &v.state case 1: @@ -34158,7 +34232,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[193].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListServices); i { + switch v := v.(*ListServicesResp); i { case 0: return &v.state case 1: @@ -34170,7 +34244,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[194].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListSpecificationsReq); i { + switch v := v.(*ListServices); i { case 0: return &v.state case 1: @@ -34182,7 +34256,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[195].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListSpecificationsResp); i { + switch v := v.(*ListSpecificationsReq); i { case 0: return &v.state case 1: @@ -34194,7 +34268,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[196].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UpdateServiceReq); i { + switch v := v.(*ListSpecificationsResp); i { case 0: return &v.state case 1: @@ -34206,7 +34280,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[197].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UpdateServiceResp); i { + switch v := v.(*UpdateServiceReq); i { case 0: return &v.state case 1: @@ -34218,7 +34292,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[198].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetPoolsRuntimeMetricsReq); i { + switch v := v.(*UpdateServiceResp); i { case 0: return &v.state case 1: @@ -34230,7 +34304,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[199].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetPoolsRuntimeMetricsResp); i { + switch v := v.(*GetPoolsRuntimeMetricsReq); i { case 0: return &v.state case 1: @@ -34242,7 +34316,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[200].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetResourceFlavorsReq); i { + switch v := v.(*GetPoolsRuntimeMetricsResp); i { case 0: return &v.state case 1: @@ -34254,7 +34328,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[201].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetResourceFlavorsResp); i { + switch v := v.(*GetResourceFlavorsReq); i { case 0: return &v.state case 1: @@ -34266,7 +34340,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[202].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListClustersReq); i { + switch v := v.(*GetResourceFlavorsResp); i { case 0: return &v.state case 1: @@ -34278,7 +34352,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[203].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListClustersResp); i { + switch v := v.(*ListClustersReq); i { case 0: return &v.state case 1: @@ -34290,7 +34364,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[204].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListClustersResp200); i { + switch v := v.(*ListClustersResp); i { case 0: return &v.state case 1: @@ -34302,7 +34376,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[205].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListClustersResp400); i { + switch v := v.(*ListClustersResp200); i { case 0: return &v.state case 1: @@ -34314,7 +34388,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[206].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Cluster); i { + switch v := v.(*ListClustersResp400); i { case 0: return &v.state case 1: @@ -34326,7 +34400,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[207].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ClusterNode); i { + switch v := v.(*Cluster); i { case 0: return &v.state case 1: @@ -34338,7 +34412,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[208].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateDataSetReq); i { + switch v := v.(*ClusterNode); i { case 0: return &v.state case 1: @@ -34350,7 +34424,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[209].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateDataSetResq); i { + switch v := v.(*CreateDataSetReq); i { case 0: return &v.state case 1: @@ -34362,7 +34436,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[210].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DeleteDataSetReq); i { + switch v := v.(*CreateDataSetResq); i { case 0: return &v.state case 1: @@ -34374,7 +34448,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[211].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DeleteDataSetResq); i { + switch v := v.(*DeleteDataSetReq); i { case 0: return &v.state case 1: @@ -34386,7 +34460,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[212].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListNotebookReq); i { + switch v := v.(*DeleteDataSetResq); i { case 0: return &v.state case 1: @@ -34398,7 +34472,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[213].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListNotebookResp); i { + switch v := v.(*ListNotebookReq); i { case 0: return &v.state case 1: @@ -34410,7 +34484,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[214].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListNotebookParam); i { + switch v := v.(*ListNotebookResp); i { case 0: return &v.state case 1: @@ -34422,7 +34496,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[215].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateNotebookReq); i { + switch v := v.(*ListNotebookParam); i { case 0: return &v.state case 1: @@ -34434,7 +34508,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[216].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateNotebookResp); i { + switch v := v.(*CreateNotebookReq); i { case 0: return &v.state case 1: @@ -34446,7 +34520,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[217].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateNotebookParam); i { + switch v := v.(*CreateNotebookResp); i { case 0: return &v.state case 1: @@ -34458,7 +34532,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[218].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*StartNotebookReq); i { + switch v := v.(*CreateNotebookParam); i { case 0: return &v.state case 1: @@ -34470,7 +34544,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[219].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*StartNotebookResp); i { + switch v := v.(*StartNotebookReq); i { case 0: return &v.state case 1: @@ -34482,7 +34556,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[220].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*StartNotebookParam); i { + switch v := v.(*StartNotebookResp); i { case 0: return &v.state case 1: @@ -34494,7 +34568,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[221].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*StopNotebookReq); i { + switch v := v.(*StartNotebookParam); i { case 0: return &v.state case 1: @@ -34506,7 +34580,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[222].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*StopNotebookResp); i { + switch v := v.(*StopNotebookReq); i { case 0: return &v.state case 1: @@ -34518,7 +34592,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[223].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetNotebookStorageReq); i { + switch v := v.(*StopNotebookResp); i { case 0: return &v.state case 1: @@ -34530,7 +34604,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[224].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetNotebookStorageResp); i { + switch v := v.(*GetNotebookStorageReq); i { case 0: return &v.state case 1: @@ -34542,7 +34616,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[225].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MountNotebookStorageReq); i { + switch v := v.(*GetNotebookStorageResp); i { case 0: return &v.state case 1: @@ -34554,7 +34628,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[226].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MountNotebookStorageResp); i { + switch v := v.(*MountNotebookStorageReq); i { case 0: return &v.state case 1: @@ -34566,7 +34640,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[227].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetNotebookFlavorsReq); i { + switch v := v.(*MountNotebookStorageResp); i { case 0: return &v.state case 1: @@ -34578,7 +34652,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[228].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetNotebookFlavorsResp); i { + switch v := v.(*GetNotebookFlavorsReq); i { case 0: return &v.state case 1: @@ -34590,7 +34664,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[229].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListImagesReq); i { + switch v := v.(*GetNotebookFlavorsResp); i { case 0: return &v.state case 1: @@ -34602,7 +34676,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[230].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListImagesResp); i { + switch v := v.(*ListImagesReq); i { case 0: return &v.state case 1: @@ -34614,7 +34688,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[231].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DeleteImagesReq); i { + switch v := v.(*ListImagesResp); i { case 0: return &v.state case 1: @@ -34626,7 +34700,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[232].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DeleteImagesResp); i { + switch v := v.(*DeleteImagesReq); i { case 0: return &v.state case 1: @@ -34638,7 +34712,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[233].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MountNotebookStorageParam); i { + switch v := v.(*DeleteImagesResp); i { case 0: return &v.state case 1: @@ -34650,7 +34724,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[234].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DataVolumesRes); i { + switch v := v.(*MountNotebookStorageParam); i { case 0: return &v.state case 1: @@ -34662,7 +34736,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[235].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*NotebookResp); i { + switch v := v.(*DataVolumesRes); i { case 0: return &v.state case 1: @@ -34674,7 +34748,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[236].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UserNotebookResp); i { + switch v := v.(*NotebookResp); i { case 0: return &v.state case 1: @@ -34686,7 +34760,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[237].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UserNotebookDomain); i { + switch v := v.(*UserNotebookResp); i { case 0: return &v.state case 1: @@ -34698,7 +34772,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[238].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Hooks); i { + switch v := v.(*UserNotebookDomain); i { case 0: return &v.state case 1: @@ -34710,7 +34784,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[239].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ContainerHooksResp); i { + switch v := v.(*Hooks); i { case 0: return &v.state case 1: @@ -34722,7 +34796,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[240].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PostStart); i { + switch v := v.(*ContainerHooksResp); i { case 0: return &v.state case 1: @@ -34734,7 +34808,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[241].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PreStart); i { + switch v := v.(*PostStart); i { case 0: return &v.state case 1: @@ -34746,7 +34820,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[242].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ActionProgress); i { + switch v := v.(*PreStart); i { case 0: return &v.state case 1: @@ -34758,7 +34832,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[243].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*JobProgress); i { + switch v := v.(*ActionProgress); i { case 0: return &v.state case 1: @@ -34770,7 +34844,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[244].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*EndpointsRes); i { + switch v := v.(*JobProgress); i { case 0: return &v.state case 1: @@ -34782,7 +34856,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[245].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Image); i { + switch v := v.(*EndpointsRes); i { case 0: return &v.state case 1: @@ -34794,7 +34868,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[246].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Lease); i { + switch v := v.(*Image); i { case 0: return &v.state case 1: @@ -34806,7 +34880,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[247].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Pool); i { + switch v := v.(*Lease); i { case 0: return &v.state case 1: @@ -34818,7 +34892,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[248].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*VolumeRes); i { + switch v := v.(*Pool); i { case 0: return &v.state case 1: @@ -34830,7 +34904,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[249].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*EndpointsReq); i { + switch v := v.(*VolumeRes); i { case 0: return &v.state case 1: @@ -34842,7 +34916,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[250].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*VolumeReq); i { + switch v := v.(*EndpointsReq); i { case 0: return &v.state case 1: @@ -34854,7 +34928,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[251].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CustomHooks); i { + switch v := v.(*VolumeReq); i { case 0: return &v.state case 1: @@ -34866,7 +34940,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[252].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ContainerHooks); i { + switch v := v.(*CustomHooks); i { case 0: return &v.state case 1: @@ -34878,7 +34952,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[253].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Config); i { + switch v := v.(*ContainerHooks); i { case 0: return &v.state case 1: @@ -34890,7 +34964,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[254].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*LeaseReq); i { + switch v := v.(*Config); i { case 0: return &v.state case 1: @@ -34902,7 +34976,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[255].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetVisualizationJobReq); i { + switch v := v.(*LeaseReq); i { case 0: return &v.state case 1: @@ -34914,7 +34988,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[256].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetVisualizationJobResp); i { + switch v := v.(*GetVisualizationJobReq); i { case 0: return &v.state case 1: @@ -34926,7 +35000,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[257].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Jobs); i { + switch v := v.(*GetVisualizationJobResp); i { case 0: return &v.state case 1: @@ -34938,7 +35012,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[258].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetVisualizationJobParam); i { + switch v := v.(*Jobs); i { case 0: return &v.state case 1: @@ -34950,7 +35024,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[259].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateVisualizationJobReq); i { + switch v := v.(*GetVisualizationJobParam); i { case 0: return &v.state case 1: @@ -34962,7 +35036,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[260].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateVisualizationJobResp); i { + switch v := v.(*CreateVisualizationJobReq); i { case 0: return &v.state case 1: @@ -34974,7 +35048,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[261].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateVisualizationJobParam); i { + switch v := v.(*CreateVisualizationJobResp); i { case 0: return &v.state case 1: @@ -34986,7 +35060,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[262].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Flavor); i { + switch v := v.(*CreateVisualizationJobParam); i { case 0: return &v.state case 1: @@ -34998,7 +35072,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[263].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Schedule); i { + switch v := v.(*Flavor); i { case 0: return &v.state case 1: @@ -35010,7 +35084,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[264].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ImageReasoningReq); i { + switch v := v.(*Schedule); i { case 0: return &v.state case 1: @@ -35022,7 +35096,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[265].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ImageReasoningResp); i { + switch v := v.(*ImageReasoningReq); i { case 0: return &v.state case 1: @@ -35034,7 +35108,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[266].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ChatglmReasoningReq); i { + switch v := v.(*ImageReasoningResp); i { case 0: return &v.state case 1: @@ -35046,7 +35120,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[267].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ChatglmReasoningResp); i { + switch v := v.(*ChatglmReasoningReq); i { case 0: return &v.state case 1: @@ -35058,7 +35132,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[268].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ImageReasoningUrlReq); i { + switch v := v.(*ChatglmReasoningResp); i { case 0: return &v.state case 1: @@ -35070,7 +35144,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[269].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ImageReasoningUrlResp); i { + switch v := v.(*ImageReasoningUrlReq); i { case 0: return &v.state case 1: @@ -35082,7 +35156,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[270].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetTrainingJobLogsPreviewReq); i { + switch v := v.(*ImageReasoningUrlResp); i { case 0: return &v.state case 1: @@ -35094,7 +35168,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[271].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetTrainingJobLogsPreviewResp); i { + switch v := v.(*GetTrainingJobLogsPreviewReq); i { case 0: return &v.state case 1: @@ -35106,7 +35180,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[272].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Errors); i { + switch v := v.(*GetTrainingJobLogsPreviewResp); i { case 0: return &v.state case 1: @@ -35118,7 +35192,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[273].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*NamespaceReq); i { + switch v := v.(*Errors); i { case 0: return &v.state case 1: @@ -35130,7 +35204,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[274].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*NamespaceInfo); i { + switch v := v.(*NamespaceReq); i { case 0: return &v.state case 1: @@ -35142,7 +35216,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[275].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListNamespacesReq); i { + switch v := v.(*NamespaceInfo); i { case 0: return &v.state case 1: @@ -35154,7 +35228,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[276].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListNamespacesResp); i { + switch v := v.(*ListNamespacesReq); i { case 0: return &v.state case 1: @@ -35166,7 +35240,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[277].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Resp); i { + switch v := v.(*ListNamespacesResp); i { case 0: return &v.state case 1: @@ -35178,7 +35252,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[278].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateRepoReq); i { + switch v := v.(*Resp); i { case 0: return &v.state case 1: @@ -35190,7 +35264,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[279].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DeleteRepoReq); i { + switch v := v.(*CreateRepoReq); i { case 0: return &v.state case 1: @@ -35202,7 +35276,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[280].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListRepoReq); i { + switch v := v.(*DeleteRepoReq); i { case 0: return &v.state case 1: @@ -35214,7 +35288,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[281].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ReposDetails); i { + switch v := v.(*ListRepoReq); i { case 0: return &v.state case 1: @@ -35226,7 +35300,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[282].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListReposDetailsResp); i { + switch v := v.(*ReposDetails); i { case 0: return &v.state case 1: @@ -35238,7 +35312,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[283].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ShowRepositoryReq); i { + switch v := v.(*ListReposDetailsResp); i { case 0: return &v.state case 1: @@ -35250,7 +35324,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[284].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ShowRepositoryResp); i { + switch v := v.(*ShowRepositoryReq); i { case 0: return &v.state case 1: @@ -35262,7 +35336,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[285].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UpdateRepoReq); i { + switch v := v.(*ShowRepositoryResp); i { case 0: return &v.state case 1: @@ -35274,7 +35348,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[286].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListRepositoryTagsReq); i { + switch v := v.(*UpdateRepoReq); i { case 0: return &v.state case 1: @@ -35286,7 +35360,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[287].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListRepositoryTagsResp); i { + switch v := v.(*ListRepositoryTagsReq); i { case 0: return &v.state case 1: @@ -35298,7 +35372,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[288].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RepositoryTags); i { + switch v := v.(*ListRepositoryTagsResp); i { case 0: return &v.state case 1: @@ -35310,7 +35384,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[289].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DeleteRepoTagReq); i { + switch v := v.(*RepositoryTags); i { case 0: return &v.state case 1: @@ -35322,7 +35396,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[290].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*FileRequest); i { + switch v := v.(*DeleteRepoTagReq); i { case 0: return &v.state case 1: @@ -35334,7 +35408,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[291].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*FileResponse); i { + switch v := v.(*FileRequest); i { case 0: return &v.state case 1: @@ -35346,7 +35420,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[292].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*FileData); i { + switch v := v.(*FileResponse); i { case 0: return &v.state case 1: @@ -35358,7 +35432,7 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[293].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsPoolsRequest); i { + switch v := v.(*FileData); i { case 0: return &v.state case 1: @@ -35370,6 +35444,18 @@ func file_pcm_modelarts_proto_init() { } } file_pcm_modelarts_proto_msgTypes[294].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*MetricsPoolsRequest); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_pcm_modelarts_proto_msgTypes[295].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MetricsPoolsResponse); i { case 0: return &v.state @@ -35381,7 +35467,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[311].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[312].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListSpecificationsResp_CpuInfo); i { case 0: return &v.state @@ -35393,7 +35479,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[312].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[313].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListSpecificationsResp_MemoryInfo); i { case 0: return &v.state @@ -35405,7 +35491,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[313].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[314].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListSpecificationsResp_GpuInfo); i { case 0: return &v.state @@ -35417,7 +35503,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[314].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[315].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListSpecificationsResp_NpuInfo); i { case 0: return &v.state @@ -35429,7 +35515,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[315].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[316].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListSpecificationsResp_Specifications); i { case 0: return &v.state @@ -35441,7 +35527,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[316].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[317].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetPoolsRuntimeMetricsResp_Labels); i { case 0: return &v.state @@ -35453,7 +35539,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[317].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[318].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetPoolsRuntimeMetricsResp_Metadata); i { case 0: return &v.state @@ -35465,7 +35551,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[318].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[319].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetPoolsRuntimeMetricsResp_Value); i { case 0: return &v.state @@ -35477,7 +35563,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[319].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[320].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetPoolsRuntimeMetricsResp_Allocated); i { case 0: return &v.state @@ -35489,7 +35575,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[320].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[321].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetPoolsRuntimeMetricsResp_Value1); i { case 0: return &v.state @@ -35501,7 +35587,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[321].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[322].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetPoolsRuntimeMetricsResp_MaxValue); i { case 0: return &v.state @@ -35513,7 +35599,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[322].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[323].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetPoolsRuntimeMetricsResp_Capacity); i { case 0: return &v.state @@ -35525,7 +35611,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[323].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[324].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetPoolsRuntimeMetricsResp_Table); i { case 0: return &v.state @@ -35537,7 +35623,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[324].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[325].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetPoolsRuntimeMetricsResp_Items); i { case 0: return &v.state @@ -35549,7 +35635,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[325].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[326].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetResourceFlavorsResp_Metadata); i { case 0: return &v.state @@ -35561,7 +35647,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[326].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[327].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetResourceFlavorsResp_Labels); i { case 0: return &v.state @@ -35573,7 +35659,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[327].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[328].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetResourceFlavorsResp_Metadata1); i { case 0: return &v.state @@ -35585,7 +35671,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[328].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[329].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetResourceFlavorsResp_DataVolumes); i { case 0: return &v.state @@ -35597,7 +35683,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[329].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[330].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetResourceFlavorsResp_Spec); i { case 0: return &v.state @@ -35609,7 +35695,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[330].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[331].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetResourceFlavorsResp_Npu); i { case 0: return &v.state @@ -35621,7 +35707,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[331].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[332].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetResourceFlavorsResp_Phase); i { case 0: return &v.state @@ -35633,7 +35719,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[332].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[333].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetResourceFlavorsResp_Status); i { case 0: return &v.state @@ -35645,7 +35731,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[333].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[334].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetResourceFlavorsResp_Items); i { case 0: return &v.state @@ -35657,7 +35743,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[334].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[335].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetNotebookFlavorsResp_Billing); i { case 0: return &v.state @@ -35669,7 +35755,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[335].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[336].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetNotebookFlavorsResp_Gpu); i { case 0: return &v.state @@ -35681,7 +35767,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[336].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[337].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetNotebookFlavorsResp_Data); i { case 0: return &v.state @@ -35693,7 +35779,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[337].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[338].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListImagesResp_Data); i { case 0: return &v.state @@ -35705,7 +35791,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[338].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[339].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MetricsPoolsResponse_SomeMessage); i { case 0: return &v.state @@ -35717,7 +35803,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[339].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[340].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MetricsPoolsResponse_SomeMessage_Value); i { case 0: return &v.state @@ -35729,7 +35815,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[340].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[341].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MetricsPoolsResponse_SomeMessage_Allocated); i { case 0: return &v.state @@ -35741,7 +35827,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[341].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[342].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MetricsPoolsResponse_SomeMessage_Value1); i { case 0: return &v.state @@ -35753,7 +35839,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[342].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[343].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MetricsPoolsResponse_SomeMessage_Maxvalue); i { case 0: return &v.state @@ -35765,7 +35851,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[343].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[344].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MetricsPoolsResponse_SomeMessage_Capacity); i { case 0: return &v.state @@ -35777,7 +35863,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[344].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[345].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MetricsPoolsResponse_SomeMessage_Table); i { case 0: return &v.state @@ -35789,7 +35875,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[345].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[346].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MetricsPoolsResponse_SomeMessage_Metadata); i { case 0: return &v.state @@ -35801,7 +35887,7 @@ func file_pcm_modelarts_proto_init() { return nil } } - file_pcm_modelarts_proto_msgTypes[346].Exporter = func(v interface{}, i int) interface{} { + file_pcm_modelarts_proto_msgTypes[347].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MetricsPoolsResponse_SomeMessage_Items); i { case 0: return &v.state @@ -35820,7 +35906,7 @@ func file_pcm_modelarts_proto_init() { GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_pcm_modelarts_proto_rawDesc, NumEnums: 0, - NumMessages: 347, + NumMessages: 348, NumExtensions: 0, NumServices: 2, }, diff --git a/pb/pcm-modelarts.proto b/pb/pcm-modelarts.proto index ea925899..ebbae306 100644 --- a/pb/pcm-modelarts.proto +++ b/pb/pcm-modelarts.proto @@ -1492,6 +1492,11 @@ message ShowModelReq{ message ShowModelResp{ int32 code = 1; // @gotags: copier:"Code" + ShowModelDetail ShowModelDetail =2; + string msg = 3; // @gotags: copier:"Msg" +} + +message ShowModelDetail{ string model_version = 2; string source_job_version = 3; string source_location = 4; @@ -1517,18 +1522,19 @@ message ShowModelResp{ string model_id = 24; repeated ModelDependencies dependencies = 25; uint32 model_size = 26; - string apis = 27; - string model_source = 28; - bool tunable = 29; - bool market_flag = 30; - bool publishable_flag = 31; - repeated string model_labels = 32; - map labels_map = 33; - repeated string install_type = 34; - string config = 35; - ModelSpecification specification = 36; - repeated ModelParamsInfo input_params = 37; - uint32 create_at = 38; + string model_status =27; + string apis = 28; + string model_source = 29; + bool tunable = 30; + bool market_flag = 31; + bool publishable_flag = 32; + repeated string model_labels = 33; + map labels_map = 34; + repeated string install_type = 35; + string config = 36; + ModelSpecification specification = 37; + repeated ModelParamsInfo input_params = 38; + uint32 create_at = 39; } message ModelHealth{