Documentation
¶
Index ¶
- Constants
- type AuthToken
- type AuthTokenBase
- type AuthTokenLimit
- type CFSConfig
- type Client
- func (c *Client) DescribeModelServiceGroups(request *DescribeModelServiceGroupsRequest) (response *DescribeModelServiceGroupsResponse, err error)
- func (c *Client) DescribeModelServiceGroupsWithContext(ctx context.Context, request *DescribeModelServiceGroupsRequest) (response *DescribeModelServiceGroupsResponse, err error)
- type Container
- type ContainerStatus
- type CosPathInfo
- type CronScaleJob
- type CrossTenantENIInfo
- type DescribeModelServiceGroupsRequest
- type DescribeModelServiceGroupsRequestParams
- type DescribeModelServiceGroupsResponse
- type DescribeModelServiceGroupsResponseParams
- type EnvVar
- type ExecAction
- type Filter
- type GooseFSx
- type GpuDetail
- type HTTPGetAction
- type HealthProbe
- type HorizontalPodAutoscaler
- type ImageInfo
- type InferCodeInfo
- type LogConfig
- type ModelInfo
- type NumOrPercent
- type Option
- type Pod
- type Probe
- type ProbeAction
- type PublicDataSourceFS
- type ResourceGroupInfo
- type ResourceInfo
- type RollingUpdate
- type ScheduledAction
- type SchedulingPolicy
- type Service
- type ServiceEIP
- type ServiceGroup
- type ServiceInfo
- type ServiceLimit
- type StatefulSetCondition
- type TCPSocketAction
- type Tag
- type TagFilter
- type VolumeMount
- type WorkloadStatus
Constants ¶
View Source
const ( // CAM signature/authentication error. AUTHFAILURE = "AuthFailure" // Cloud Access Management (CAM) system exception. AUTHFAILURE_CAMEXCEPTION = "AuthFailure.CamException" // Unauthorized operation. AUTHFAILURE_UNAUTHORIZEDOPERATION = "AuthFailure.UnauthorizedOperation" // Operation failed. FAILEDOPERATION = "FailedOperation" // Failed to access the API Gateway. Please try again. FAILEDOPERATION_APIGATEWAYQUERYFAILED = "FailedOperation.ApiGatewayQueryFailed" // Failed to access the billing module. FAILEDOPERATION_BILLINGQUERYFAILED = "FailedOperation.BillingQueryFailed" // Cluster access failed. FAILEDOPERATION_CLUSTERQUERYFAILED = "FailedOperation.ClusterQueryFailed" // Duplicated name. FAILEDOPERATION_DUPLICATENAME = "FailedOperation.DuplicateName" // Database execution error. FAILEDOPERATION_EXECDATABASEFAIL = "FailedOperation.ExecDatabaseFail" // Tag operation failed. FAILEDOPERATION_EXECTAGFAIL = "FailedOperation.ExecTagFail" // No permissions. FAILEDOPERATION_NOPERMISSION = "FailedOperation.NoPermission" // The operation is not allowed. FAILEDOPERATION_NOTALLOW = "FailedOperation.NotAllow" // Database query error. FAILEDOPERATION_QUERYDATABASEFAIL = "FailedOperation.QueryDatabaseFail" // Failed to query the tag service. FAILEDOPERATION_QUERYTAGFAIL = "FailedOperation.QueryTagFail" // Failed to access the key service. Please try again. FAILEDOPERATION_STSQUERYFAILED = "FailedOperation.StsQueryFailed" // Unknown instance specifications. FAILEDOPERATION_UNKNOWNINSTANCETYPE = "FailedOperation.UnknownInstanceType" // Data parsing failed. FAILEDOPERATION_UNMARSHALDATA = "FailedOperation.UnmarshalData" // Internal error. INTERNALERROR = "InternalError" // Parameter error. INVALIDPARAMETER = "InvalidParameter" // Parameter value error. INVALIDPARAMETERVALUE = "InvalidParameterValue" // Invalid name. INVALIDPARAMETERVALUE_BADNAME = "InvalidParameterValue.BadName" // Error of missing parameters. MISSINGPARAMETER = "MissingParameter" // Operation denied. OPERATIONDENIED = "OperationDenied" // Insufficient balance. Failed to create or update. OPERATIONDENIED_BALANCEINSUFFICIENT = "OperationDenied.BalanceInsufficient" // The resource does not exist. RESOURCENOTFOUND = "ResourceNotFound" )
View Source
const APIVersion = "2021-11-11"
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AuthToken ¶
type AuthToken struct {
// AuthToken basic information.
Base *AuthTokenBase `json:"Base,omitnil,omitempty" name:"Base"`
// AuthToken throttling array.
Limits []*AuthTokenLimit `json:"Limits,omitnil,omitempty" name:"Limits"`
}
type AuthTokenBase ¶
type AuthTokenBase struct {
// Token value.
Value *string `json:"Value,omitnil,omitempty" name:"Value"`
// Token alias.
Name *string `json:"Name,omitnil,omitempty" name:"Name"`
// Token description.
Description *string `json:"Description,omitnil,omitempty" name:"Description"`
// Token creation time.
CreateTime *string `json:"CreateTime,omitnil,omitempty" name:"CreateTime"`
// Token status.
Status *string `json:"Status,omitnil,omitempty" name:"Status"`
}
type AuthTokenLimit ¶
type CFSConfig ¶
type CFSConfig struct {
// CFS instance ID.
Id *string `json:"Id,omitnil,omitempty" name:"Id"`
// Storage path.
Path *string `json:"Path,omitnil,omitempty" name:"Path"`
// Mounting type of CFS. Valid values: STORAGE and SOURCE, which respectively indicate the storage expansion mode and the data source mode. The default value is STORAGE.Note: This field may return null, indicating that no valid values can be obtained.
MountType *string `json:"MountType,omitnil,omitempty" name:"MountType"`
// Protocol. Valid values: NFS and TURBO.Note: This field may return null, indicating that no valid values can be obtained.
Protocol *string `json:"Protocol,omitnil,omitempty" name:"Protocol"`
}
type Client ¶
func NewClient ¶
func NewClient(credential common.CredentialIface, region string, clientProfile *profile.ClientProfile) (client *Client, err error)
func NewClientWithSecretId ¶
Deprecated
func (*Client) DescribeModelServiceGroups ¶
func (c *Client) DescribeModelServiceGroups(request *DescribeModelServiceGroupsRequest) (response *DescribeModelServiceGroupsResponse, err error)
DescribeModelServiceGroups This API is used to list online inference service groups.
error code that may be returned:
AUTHFAILURE = "AuthFailure" AUTHFAILURE_CAMEXCEPTION = "AuthFailure.CamException" AUTHFAILURE_UNAUTHORIZEDOPERATION = "AuthFailure.UnauthorizedOperation" FAILEDOPERATION = "FailedOperation" FAILEDOPERATION_APIGATEWAYQUERYFAILED = "FailedOperation.ApiGatewayQueryFailed" FAILEDOPERATION_BILLINGQUERYFAILED = "FailedOperation.BillingQueryFailed" FAILEDOPERATION_CLUSTERQUERYFAILED = "FailedOperation.ClusterQueryFailed" FAILEDOPERATION_DUPLICATENAME = "FailedOperation.DuplicateName" FAILEDOPERATION_EXECDATABASEFAIL = "FailedOperation.ExecDatabaseFail" FAILEDOPERATION_EXECTAGFAIL = "FailedOperation.ExecTagFail" FAILEDOPERATION_NOPERMISSION = "FailedOperation.NoPermission" FAILEDOPERATION_NOTALLOW = "FailedOperation.NotAllow" FAILEDOPERATION_QUERYDATABASEFAIL = "FailedOperation.QueryDatabaseFail" FAILEDOPERATION_QUERYTAGFAIL = "FailedOperation.QueryTagFail" FAILEDOPERATION_STSQUERYFAILED = "FailedOperation.StsQueryFailed" FAILEDOPERATION_UNKNOWNINSTANCETYPE = "FailedOperation.UnknownInstanceType" FAILEDOPERATION_UNMARSHALDATA = "FailedOperation.UnmarshalData" INTERNALERROR = "InternalError" INVALIDPARAMETER = "InvalidParameter" INVALIDPARAMETERVALUE = "InvalidParameterValue" INVALIDPARAMETERVALUE_BADNAME = "InvalidParameterValue.BadName" MISSINGPARAMETER = "MissingParameter" OPERATIONDENIED = "OperationDenied" OPERATIONDENIED_BALANCEINSUFFICIENT = "OperationDenied.BalanceInsufficient" RESOURCENOTFOUND = "ResourceNotFound"
func (*Client) DescribeModelServiceGroupsWithContext ¶
func (c *Client) DescribeModelServiceGroupsWithContext(ctx context.Context, request *DescribeModelServiceGroupsRequest) (response *DescribeModelServiceGroupsResponse, err error)
DescribeModelServiceGroups This API is used to list online inference service groups.
error code that may be returned:
AUTHFAILURE = "AuthFailure" AUTHFAILURE_CAMEXCEPTION = "AuthFailure.CamException" AUTHFAILURE_UNAUTHORIZEDOPERATION = "AuthFailure.UnauthorizedOperation" FAILEDOPERATION = "FailedOperation" FAILEDOPERATION_APIGATEWAYQUERYFAILED = "FailedOperation.ApiGatewayQueryFailed" FAILEDOPERATION_BILLINGQUERYFAILED = "FailedOperation.BillingQueryFailed" FAILEDOPERATION_CLUSTERQUERYFAILED = "FailedOperation.ClusterQueryFailed" FAILEDOPERATION_DUPLICATENAME = "FailedOperation.DuplicateName" FAILEDOPERATION_EXECDATABASEFAIL = "FailedOperation.ExecDatabaseFail" FAILEDOPERATION_EXECTAGFAIL = "FailedOperation.ExecTagFail" FAILEDOPERATION_NOPERMISSION = "FailedOperation.NoPermission" FAILEDOPERATION_NOTALLOW = "FailedOperation.NotAllow" FAILEDOPERATION_QUERYDATABASEFAIL = "FailedOperation.QueryDatabaseFail" FAILEDOPERATION_QUERYTAGFAIL = "FailedOperation.QueryTagFail" FAILEDOPERATION_STSQUERYFAILED = "FailedOperation.StsQueryFailed" FAILEDOPERATION_UNKNOWNINSTANCETYPE = "FailedOperation.UnknownInstanceType" FAILEDOPERATION_UNMARSHALDATA = "FailedOperation.UnmarshalData" INTERNALERROR = "InternalError" INVALIDPARAMETER = "InvalidParameter" INVALIDPARAMETERVALUE = "InvalidParameterValue" INVALIDPARAMETERVALUE_BADNAME = "InvalidParameterValue.BadName" MISSINGPARAMETER = "MissingParameter" OPERATIONDENIED = "OperationDenied" OPERATIONDENIED_BALANCEINSUFFICIENT = "OperationDenied.BalanceInsufficient" RESOURCENOTFOUND = "ResourceNotFound"
type Container ¶
type Container struct {
// Name.Note: This field may return null, indicating that no valid values can be obtained.
Name *string `json:"Name,omitnil,omitempty" name:"Name"`
// id
// Note: This field may return null, indicating that no valid values can be obtained.
ContainerId *string `json:"ContainerId,omitnil,omitempty" name:"ContainerId"`
// Image address.Note: This field may return null, indicating that no valid values can be obtained.
Image *string `json:"Image,omitnil,omitempty" name:"Image"`
// Container status.Note: This field may return null, indicating that no valid values can be obtained.
Status *ContainerStatus `json:"Status,omitnil,omitempty" name:"Status"`
}
type ContainerStatus ¶
type ContainerStatus struct {
// Number of restarts.Note: This field may return null, indicating that no valid values can be obtained.
RestartCount *int64 `json:"RestartCount,omitnil,omitempty" name:"RestartCount"`
// Status.Note: This field may return null, indicating that no valid values can be obtained.
State *string `json:"State,omitnil,omitempty" name:"State"`
// Whether it is ready.Note: This field may return null, indicating that no valid values can be obtained.
Ready *bool `json:"Ready,omitnil,omitempty" name:"Ready"`
// Status reason.Note: This field may return null, indicating that no valid values can be obtained.
Reason *string `json:"Reason,omitnil,omitempty" name:"Reason"`
// Container error message.Note: This field may return null, indicating that no valid values can be obtained.
Message *string `json:"Message,omitnil,omitempty" name:"Message"`
}
type CosPathInfo ¶
type CosPathInfo struct {
// Bucket.Note: This field may return null, indicating that no valid values can be obtained.
Bucket *string `json:"Bucket,omitnil,omitempty" name:"Bucket"`
// Region.Note: This field may return null, indicating that no valid values can be obtained.
Region *string `json:"Region,omitnil,omitempty" name:"Region"`
// Path list. Only one path is supported.Note: This field may return null, indicating that no valid values can be obtained.
Paths []*string `json:"Paths,omitnil,omitempty" name:"Paths"`
}
type CronScaleJob ¶
type CronScaleJob struct {
// Cron expression, which identifies the task execution time, and is accurate to minutes.
Schedule *string `json:"Schedule,omitnil,omitempty" name:"Schedule"`
// Scheduled task name.Note: This field may return null, indicating that no valid values can be obtained.
Name *string `json:"Name,omitnil,omitempty" name:"Name"`
// Number of target instances.Note: This field may return null, indicating that no valid values can be obtained.
TargetReplicas *int64 `json:"TargetReplicas,omitnil,omitempty" name:"TargetReplicas"`
// Minimum target.Note: This field may return null, indicating that no valid values can be obtained.
MinReplicas *int64 `json:"MinReplicas,omitnil,omitempty" name:"MinReplicas"`
// Maximum target.Note: This field may return null, indicating that no valid values can be obtained.
MaxReplicas *int64 `json:"MaxReplicas,omitnil,omitempty" name:"MaxReplicas"`
// Exception periods, defined by Cron expressions, during which tasks are not executed. Up to 3 Cron expressions are supported.Note: This field may return null, indicating that no valid values can be obtained.
ExcludeDates []*string `json:"ExcludeDates,omitnil,omitempty" name:"ExcludeDates"`
}
type CrossTenantENIInfo ¶
type CrossTenantENIInfo struct {
// Pod IP address.Note: This field may return null, indicating that no valid values can be obtained.
PrimaryIP *string `json:"PrimaryIP,omitnil,omitempty" name:"PrimaryIP"`
// Pod port.Note: This field may return null, indicating that no valid values can be obtained.
Port *string `json:"Port,omitnil,omitempty" name:"Port"`
}
type DescribeModelServiceGroupsRequest ¶
type DescribeModelServiceGroupsRequest struct {
*tchttp.BaseRequest
// Offset. Default value: 0.
Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`
// Number of returned results. The default value is 20, and the maximum value is 100.
Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`
// The sorting order of the output list. Valid values: ASC (ascending order) and DESC (descending order).
Order *string `json:"Order,omitnil,omitempty" name:"Order"`
// Field to sort by. Valid values: CreateTime and UpdateTime.
OrderField *string `json:"OrderField,omitnil,omitempty" name:"OrderField"`
// Pagination parameters. Supported filterable field names include:["ClusterId", "ServiceId", "ServiceGroupName", "ServiceGroupId","Status","CreatedBy","ModelVersionId"]
Filters []*Filter `json:"Filters,omitnil,omitempty" name:"Filters"`
// Tag filtering parameters.
TagFilters []*TagFilter `json:"TagFilters,omitnil,omitempty" name:"TagFilters"`
// Service classification.
ServiceCategory *string `json:"ServiceCategory,omitnil,omitempty" name:"ServiceCategory"`
}
func NewDescribeModelServiceGroupsRequest ¶
func NewDescribeModelServiceGroupsRequest() (request *DescribeModelServiceGroupsRequest)
func (*DescribeModelServiceGroupsRequest) FromJsonString ¶
func (r *DescribeModelServiceGroupsRequest) FromJsonString(s string) error
FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check
func (*DescribeModelServiceGroupsRequest) ToJsonString ¶
func (r *DescribeModelServiceGroupsRequest) ToJsonString() string
type DescribeModelServiceGroupsRequestParams ¶
type DescribeModelServiceGroupsRequestParams struct {
// Offset. Default value: 0.
Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`
// Number of returned results. The default value is 20, and the maximum value is 100.
Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`
// The sorting order of the output list. Valid values: ASC (ascending order) and DESC (descending order).
Order *string `json:"Order,omitnil,omitempty" name:"Order"`
// Field to sort by. Valid values: CreateTime and UpdateTime.
OrderField *string `json:"OrderField,omitnil,omitempty" name:"OrderField"`
// Pagination parameters. Supported filterable field names include:["ClusterId", "ServiceId", "ServiceGroupName", "ServiceGroupId","Status","CreatedBy","ModelVersionId"]
Filters []*Filter `json:"Filters,omitnil,omitempty" name:"Filters"`
// Tag filtering parameters.
TagFilters []*TagFilter `json:"TagFilters,omitnil,omitempty" name:"TagFilters"`
// Service classification.
ServiceCategory *string `json:"ServiceCategory,omitnil,omitempty" name:"ServiceCategory"`
}
Predefined struct for user
type DescribeModelServiceGroupsResponse ¶
type DescribeModelServiceGroupsResponse struct {
*tchttp.BaseResponse
Response *DescribeModelServiceGroupsResponseParams `json:"Response"`
}
func NewDescribeModelServiceGroupsResponse ¶
func NewDescribeModelServiceGroupsResponse() (response *DescribeModelServiceGroupsResponse)
func (*DescribeModelServiceGroupsResponse) FromJsonString ¶
func (r *DescribeModelServiceGroupsResponse) FromJsonString(s string) error
FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check
func (*DescribeModelServiceGroupsResponse) ToJsonString ¶
func (r *DescribeModelServiceGroupsResponse) ToJsonString() string
type DescribeModelServiceGroupsResponseParams ¶
type DescribeModelServiceGroupsResponseParams struct {
// Number of inference service groups.Note: This field may return null, indicating that no valid values can be obtained.
TotalCount *int64 `json:"TotalCount,omitnil,omitempty" name:"TotalCount"`
// Service group information.Note: This field may return null, indicating that no valid values can be obtained.
ServiceGroups []*ServiceGroup `json:"ServiceGroups,omitnil,omitempty" name:"ServiceGroups"`
// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}
Predefined struct for user
type EnvVar ¶
type EnvVar struct {
// Environment variable key.Note: This field may return null, indicating that no valid values can be obtained.
Name *string `json:"Name,omitnil,omitempty" name:"Name"`
// Environment variable value.Note: This field may return null, indicating that no valid values can be obtained.
Value *string `json:"Value,omitnil,omitempty" name:"Value"`
}
type ExecAction ¶
type ExecAction struct {
// Execution command list.
Command []*string `json:"Command,omitnil,omitempty" name:"Command"`
}
type Filter ¶
type Filter struct {
// Filter field name.
Name *string `json:"Name,omitnil,omitempty" name:"Name"`
// Filter field values.
Values []*string `json:"Values,omitnil,omitempty" name:"Values"`
// Whether to enable reverse query.
Negative *bool `json:"Negative,omitnil,omitempty" name:"Negative"`
// Whether to enable fuzzy matching.
Fuzzy *bool `json:"Fuzzy,omitnil,omitempty" name:"Fuzzy"`
}
type GpuDetail ¶
type GpuDetail struct {
// GPU card type. Enumeration values: V100, A100, T4.Note: This field may return null, indicating that no valid values can be obtained.
Name *string `json:"Name,omitnil,omitempty" name:"Name"`
// GPU card quantity, in 1/100 cards. For example, 100 represents 1 card.Note: This field may return null, indicating that no valid values can be obtained.
Value *uint64 `json:"Value,omitnil,omitempty" name:"Value"`
}
type HTTPGetAction ¶
type HealthProbe ¶
type HealthProbe struct {
// Liveness probe.
LivenessProbe *Probe `json:"LivenessProbe,omitnil,omitempty" name:"LivenessProbe"`
// Readiness probe.
ReadinessProbe *Probe `json:"ReadinessProbe,omitnil,omitempty" name:"ReadinessProbe"`
// Startup probe.
StartupProbe *Probe `json:"StartupProbe,omitnil,omitempty" name:"StartupProbe"`
}
type HorizontalPodAutoscaler ¶
type HorizontalPodAutoscaler struct {
// Minimum number of instances.Note: This field may return null, indicating that no valid values can be obtained.
MinReplicas *int64 `json:"MinReplicas,omitnil,omitempty" name:"MinReplicas"`
// Maximum number of instances.Note: This field may return null, indicating that no valid values can be obtained.
MaxReplicas *int64 `json:"MaxReplicas,omitnil,omitempty" name:"MaxReplicas"`
// Supported."gpu-util": GPU utilization; value range: 10-100. "cpu-util": CPU utilization; value range: 10-100. "memory-util": memory utilization; value range: 10-100. "service-qps": the QPS value of single instances; value range: 1-5000."concurrency-util": the number of concurrent requests of single instances. Value range: 1-100000.Note: This field may return null, indicating that no valid values can be obtained.
HpaMetrics []*Option `json:"HpaMetrics,omitnil,omitempty" name:"HpaMetrics"`
// Scale-out cooldown period, in seconds.
ScaleUpStabilizationWindowSeconds *int64 `json:"ScaleUpStabilizationWindowSeconds,omitnil,omitempty" name:"ScaleUpStabilizationWindowSeconds"`
// Scale-in cooldown period, in seconds.
ScaleDownStabilizationWindowSeconds *int64 `json:"ScaleDownStabilizationWindowSeconds,omitnil,omitempty" name:"ScaleDownStabilizationWindowSeconds"`
}
type ImageInfo ¶
type ImageInfo struct {
// Image type. Valid values: TCR ( which indicates a Tencent Container Registry (TCR) image), CCR (which indicates a TCR Personal Edition image), PreSet (which indicates a platform preset image), and CUSTOM (which indicates a third-party custom image).
ImageType *string `json:"ImageType,omitnil,omitempty" name:"ImageType"`
// Image address.
ImageUrl *string `json:"ImageUrl,omitnil,omitempty" name:"ImageUrl"`
// Region corresponding to the TCR image.Note: This field may return null, indicating that no valid values can be obtained.
RegistryRegion *string `json:"RegistryRegion,omitnil,omitempty" name:"RegistryRegion"`
// Instance ID corresponding to the TCR image.Note: This field may return null, indicating that no valid values can be obtained.
RegistryId *string `json:"RegistryId,omitnil,omitempty" name:"RegistryId"`
// Whether to allow exporting all content.Note: This field may return null, indicating that no valid values can be obtained.
AllowSaveAllContent *bool `json:"AllowSaveAllContent,omitnil,omitempty" name:"AllowSaveAllContent"`
// Image name.Note: This field may return null, indicating that no valid values can be obtained.
ImageName *string `json:"ImageName,omitnil,omitempty" name:"ImageName"`
// Whether to support data generation.Note: This field may return null, indicating that no valid values can be obtained.
SupportDataPipeline *bool `json:"SupportDataPipeline,omitnil,omitempty" name:"SupportDataPipeline"`
}
type InferCodeInfo ¶
type InferCodeInfo struct {
// Details of Cloud Object Storage (COS) where the inference code is located.Note: This field may return null, indicating that no valid values can be obtained.
CosPathInfo *CosPathInfo `json:"CosPathInfo,omitnil,omitempty" name:"CosPathInfo"`
}
type LogConfig ¶
type LogConfig struct {
// Logs should be shipped to a Cloud Log Service (CLS) log set.Note: This field may return null, indicating that no valid values can be obtained.
LogsetId *string `json:"LogsetId,omitnil,omitempty" name:"LogsetId"`
// Logs should be shipped to a CLS topic.Note: This field may return null, indicating that no valid values can be obtained.
TopicId *string `json:"TopicId,omitnil,omitempty" name:"TopicId"`
}
type ModelInfo ¶
type ModelInfo struct {
// The model version ID is returned by the DescribeTrainingModelVersion API when querying the model.Enter the task ID of the Automated Machine Learning (AutoML) model.
ModelVersionId *string `json:"ModelVersionId,omitnil,omitempty" name:"ModelVersionId"`
// Model ID.
ModelId *string `json:"ModelId,omitnil,omitempty" name:"ModelId"`
// Model name.
ModelName *string `json:"ModelName,omitnil,omitempty" name:"ModelName"`
// Model version.
ModelVersion *string `json:"ModelVersion,omitnil,omitempty" name:"ModelVersion"`
// Model source.
ModelSource *string `json:"ModelSource,omitnil,omitempty" name:"ModelSource"`
// COS path information.
CosPathInfo *CosPathInfo `json:"CosPathInfo,omitnil,omitempty" name:"CosPathInfo"`
// GooseFSx configurations, and is valid when ModelSource is GooseFSx.
GooseFSx *GooseFSx `json:"GooseFSx,omitnil,omitempty" name:"GooseFSx"`
// Algorithm framework corresponding to the model (reserved field).Note: This field may return null, indicating that no valid values can be obtained.
AlgorithmFramework *string `json:"AlgorithmFramework,omitnil,omitempty" name:"AlgorithmFramework"`
// Default: NORMAL; accelerated model: ACCELERATE; automatic learning model: AUTO_ML.Note: This field may return null, indicating that no valid values can be obtained.
ModelType *string `json:"ModelType,omitnil,omitempty" name:"ModelType"`
// Model format.Note: This field may return null, indicating that no valid values can be obtained.
ModelFormat *string `json:"ModelFormat,omitnil,omitempty" name:"ModelFormat"`
// Whether it is a private LLM.Note: This field may return null, indicating that no valid values can be obtained.
IsPrivateModel *bool `json:"IsPrivateModel,omitnil,omitempty" name:"IsPrivateModel"`
// Model category. Valid values: MultiModal (multi-modal) and LLM (text LLM).
ModelCategory *string `json:"ModelCategory,omitnil,omitempty" name:"ModelCategory"`
// Data source configurations.
PublicDataSource *PublicDataSourceFS `json:"PublicDataSource,omitnil,omitempty" name:"PublicDataSource"`
}
type NumOrPercent ¶
type Pod ¶
type Pod struct {
// Pod name.Note: This field may return null, indicating that no valid values can be obtained.
Name *string `json:"Name,omitnil,omitempty" name:"Name"`
// Unique ID of the Pod.Note: This field may return null, indicating that no valid values can be obtained.
Uid *string `json:"Uid,omitnil,omitempty" name:"Uid"`
// Service payment mode.Note: This field may return null, indicating that no valid values can be obtained.
ChargeType *string `json:"ChargeType,omitnil,omitempty" name:"ChargeType"`
// Pod status.Note: This field may return null, indicating that no valid values can be obtained.
Phase *string `json:"Phase,omitnil,omitempty" name:"Phase"`
// Pod IP address.Note: This field may return null, indicating that no valid values can be obtained.
IP *string `json:"IP,omitnil,omitempty" name:"IP"`
// Pod creation time.Note: This field may return null, indicating that no valid values can be obtained.
CreateTime *string `json:"CreateTime,omitnil,omitempty" name:"CreateTime"`
// Container list.Note: This field may return null, indicating that no valid values can be obtained.
//
// Deprecated: Containers is deprecated.
Containers *Container `json:"Containers,omitnil,omitempty" name:"Containers"`
// Container list.Note: This field may return null, indicating that no valid values can be obtained.
ContainerInfos []*Container `json:"ContainerInfos,omitnil,omitempty" name:"ContainerInfos"`
// Container calling information.Note: This field may return null, indicating that no valid values can be obtained.
CrossTenantENIInfo *CrossTenantENIInfo `json:"CrossTenantENIInfo,omitnil,omitempty" name:"CrossTenantENIInfo"`
// Instance status information.
Status *string `json:"Status,omitnil,omitempty" name:"Status"`
// Instance scheduling start time.
StartScheduleTime *string `json:"StartScheduleTime,omitnil,omitempty" name:"StartScheduleTime"`
// Supplemental instance status information.
Message *string `json:"Message,omitnil,omitempty" name:"Message"`
// Node IP address of the current instance.
NodeIP *string `json:"NodeIP,omitnil,omitempty" name:"NodeIP"`
// Node ID of the current instance.
NodeId *string `json:"NodeId,omitnil,omitempty" name:"NodeId"`
// Resource group ID to which the instance belonged.
ResourceGroupId *string `json:"ResourceGroupId,omitnil,omitempty" name:"ResourceGroupId"`
// Resource group name.
ResourceGroupName *string `json:"ResourceGroupName,omitnil,omitempty" name:"ResourceGroupName"`
// Resource usage information of the instance.
ResourceInfo *ResourceInfo `json:"ResourceInfo,omitnil,omitempty" name:"ResourceInfo"`
}
type Probe ¶
type Probe struct {
// Probe action.
ProbeAction *ProbeAction `json:"ProbeAction,omitnil,omitempty" name:"ProbeAction"`
// Delay in waiting for a service startup.
InitialDelaySeconds *int64 `json:"InitialDelaySeconds,omitnil,omitempty" name:"InitialDelaySeconds"`
// Polling check interval.
PeriodSeconds *int64 `json:"PeriodSeconds,omitnil,omitempty" name:"PeriodSeconds"`
// Check timeout duration.
TimeoutSeconds *int64 `json:"TimeoutSeconds,omitnil,omitempty" name:"TimeoutSeconds"`
// Number of acknowledged failed detections.
FailureThreshold *int64 `json:"FailureThreshold,omitnil,omitempty" name:"FailureThreshold"`
// Number of acknowledged successful detections. The default values for readiness, liveness, and startup statuses are 3, 1, and 1.
SuccessThreshold *int64 `json:"SuccessThreshold,omitnil,omitempty" name:"SuccessThreshold"`
}
type ProbeAction ¶
type ProbeAction struct {
// HTTP GET action.
HTTPGet *HTTPGetAction `json:"HTTPGet,omitnil,omitempty" name:"HTTPGet"`
// Executes check command action.
Exec *ExecAction `json:"Exec,omitnil,omitempty" name:"Exec"`
// TCP Socket check action.
TCPSocket *TCPSocketAction `json:"TCPSocket,omitnil,omitempty" name:"TCPSocket"`
// Probe type. The default value is HTTPGet. Valid values: HTTPGet, Exec, and TCPSocket.
ActionType *string `json:"ActionType,omitnil,omitempty" name:"ActionType"`
}
type PublicDataSourceFS ¶
type ResourceGroupInfo ¶
type ResourceInfo ¶
type ResourceInfo struct {
// Processor resource, in 1/1000 cores.Note: This field may return null, indicating that no valid values can be obtained.
Cpu *uint64 `json:"Cpu,omitnil,omitempty" name:"Cpu"`
// Memory resource, in MB.Note: This field may return null, indicating that no valid values can be obtained.
Memory *uint64 `json:"Memory,omitnil,omitempty" name:"Memory"`
// Number of GPU card resources, in 0.01 units of GpuType.Gpu=100 indicates the use of "1" GPU card. However, this "1" card could refer to a virtualized 1/4 card or a full physical card, depending on the instance type.Example 1: If the instance type includes 1 virtual GPU card, and each virtual GPU card corresponds to 1/4 of a physical T4 card, then GpuType=T4, Gpu=100, and RealGpu=25.Example 2: If the instance type includes 4 full GPU cards, and each card corresponds to 1 physical T4 card, then GpuType=T4, Gpu=400, and RealGpu=400.Note: This field may return null, indicating that no valid values can be obtained.
Gpu *uint64 `json:"Gpu,omitnil,omitempty" name:"Gpu"`
// GPU card model. Valid values: T4 and V100. It only displays the current GPU card model. If multiple types of cards are used simultaneously, see the value of RealGpuDetailSet.Note: This field may return null, indicating that no valid values can be obtained.
GpuType *string `json:"GpuType,omitnil,omitempty" name:"GpuType"`
// It is not required for creation or update operations. This field is used for display only.The actual GPU card resources for postpaid instances using fractional GPU cards. This value represents the total number of actual physical GPU cards consumed.RealGpu=100 indicates the consumption of 1 GPU card. Depending on the actual instance type, this may represent: 4 instances each using a 1/4 card, 2 instances each using a 1/2 card, or 1 instance using a full card.
RealGpu *uint64 `json:"RealGpu,omitnil,omitempty" name:"RealGpu"`
// It is not required for creation or update operations. This field is used for display only. It involves detailed GPU usage information.
RealGpuDetailSet []*GpuDetail `json:"RealGpuDetailSet,omitnil,omitempty" name:"RealGpuDetailSet"`
}
type RollingUpdate ¶
type RollingUpdate struct {
MaxUnavailable *NumOrPercent `json:"MaxUnavailable,omitnil,omitempty" name:"MaxUnavailable"`
// Maximum number of new instances during rolling updates.
MaxSurge *NumOrPercent `json:"MaxSurge,omitnil,omitempty" name:"MaxSurge"`
}
type ScheduledAction ¶
type ScheduledAction struct {
// Whether to stop the service on schedule. Valid values: true and false. If the value is true, ScheduleStopTime is required. If the value is false, ScheduleStopTime does not take effect.
ScheduleStop *bool `json:"ScheduleStop,omitnil,omitempty" name:"ScheduleStop"`
// Time to execute the scheduled stop. Format: "2022-01-26T19:46:22+08:00".
ScheduleStopTime *string `json:"ScheduleStopTime,omitnil,omitempty" name:"ScheduleStopTime"`
}
type SchedulingPolicy ¶
type SchedulingPolicy struct {
// Whether to enable cross-resource-group scheduling.
CrossResourceGroupScheduling *bool `json:"CrossResourceGroupScheduling,omitnil,omitempty" name:"CrossResourceGroupScheduling"`
}
type Service ¶
type Service struct {
// Service group ID.
ServiceGroupId *string `json:"ServiceGroupId,omitnil,omitempty" name:"ServiceGroupId"`
// Service ID.
ServiceId *string `json:"ServiceId,omitnil,omitempty" name:"ServiceId"`
// Service group name.
ServiceGroupName *string `json:"ServiceGroupName,omitnil,omitempty" name:"ServiceGroupName"`
// Service description.Note: This field may return null, indicating that no valid values can be obtained.
ServiceDescription *string `json:"ServiceDescription,omitnil,omitempty" name:"ServiceDescription"`
// Service details.Note: This field may return null, indicating that no valid values can be obtained.
ServiceInfo *ServiceInfo `json:"ServiceInfo,omitnil,omitempty" name:"ServiceInfo"`
// Cluster ID.Note: This field may return null, indicating that no valid values can be obtained.
ClusterId *string `json:"ClusterId,omitnil,omitempty" name:"ClusterId"`
// Region.Note: This field may return null, indicating that no valid values can be obtained.
Region *string `json:"Region,omitnil,omitempty" name:"Region"`
// Namespace.Note: This field may return null, indicating that no valid values can be obtained.
Namespace *string `json:"Namespace,omitnil,omitempty" name:"Namespace"`
// Billing type.Note: This field may return null, indicating that no valid values can be obtained.
ChargeType *string `json:"ChargeType,omitnil,omitempty" name:"ChargeType"`
// Resource group ID for yearly/monthly subscription services. The value is null for pay-as-you-go services.Note: This field may return null, indicating that no valid values can be obtained.
ResourceGroupId *string `json:"ResourceGroupId,omitnil,omitempty" name:"ResourceGroupId"`
// Resource group name corresponding to the yearly/monthly subscription service.Note: This field may return null, indicating that no valid values can be obtained.
ResourceGroupName *string `json:"ResourceGroupName,omitnil,omitempty" name:"ResourceGroupName"`
// Tag of the service.Note: This field may return null, indicating that no valid values can be obtained.
Tags []*Tag `json:"Tags,omitnil,omitempty" name:"Tags"`
// Name of the ingress where the service is located.Note: This field may return null, indicating that no valid values can be obtained.
IngressName *string `json:"IngressName,omitnil,omitempty" name:"IngressName"`
// Creator.Note: This field may return null, indicating that no valid values can be obtained.
CreatedBy *string `json:"CreatedBy,omitnil,omitempty" name:"CreatedBy"`
// Creation time.Note: This field may return null, indicating that no valid values can be obtained.
CreateTime *string `json:"CreateTime,omitnil,omitempty" name:"CreateTime"`
// Update time.Note: This field may return null, indicating that no valid values can be obtained.
UpdateTime *string `json:"UpdateTime,omitnil,omitempty" name:"UpdateTime"`
// Root account.Note: This field may return null, indicating that no valid values can be obtained.
Uin *string `json:"Uin,omitnil,omitempty" name:"Uin"`
// Sub-account.Note: This field may return null, indicating that no valid values can be obtained.
SubUin *string `json:"SubUin,omitnil,omitempty" name:"SubUin"`
// app_id
// Note: This field may return null, indicating that no valid values can be obtained.
AppId *int64 `json:"AppId,omitnil,omitempty" name:"AppId"`
// Operational status of the service.Note: This field may return null, indicating that no valid values can be obtained.
BusinessStatus *string `json:"BusinessStatus,omitnil,omitempty" name:"BusinessStatus"`
// Deprecated. See the corresponding field in ServiceInfo.Note: This field may return null, indicating that no valid values can be obtained.
//
// Deprecated: ServiceLimit is deprecated.
ServiceLimit *ServiceLimit `json:"ServiceLimit,omitnil,omitempty" name:"ServiceLimit"`
// Deprecated. See the corresponding field in ServiceInfo.Note: This field may return null, indicating that no valid values can be obtained.
//
// Deprecated: ScheduledAction is deprecated.
ScheduledAction *ScheduledAction `json:"ScheduledAction,omitnil,omitempty" name:"ScheduledAction"`
// Cause for service creation failure. The default value of this field is CREATE_SUCCEED upon successful creation.Note: This field may return null, indicating that no valid values can be obtained.
CreateFailedReason *string `json:"CreateFailedReason,omitnil,omitempty" name:"CreateFailedReason"`
// Service status.CREATING: creating.CREATE_FAILED: creation failed.Normal: running.Stopped: stopped.Stopping: stopping.Abnormal: error.Pending: starting.Waiting: getting ready.Note: This field may return null, indicating that no valid values can be obtained.
Status *string `json:"Status,omitnil,omitempty" name:"Status"`
// Billing information.Note: This field may return null, indicating that no valid values can be obtained.
BillingInfo *string `json:"BillingInfo,omitnil,omitempty" name:"BillingInfo"`
// Model weight.Note: This field may return null, indicating that no valid values can be obtained.
Weight *int64 `json:"Weight,omitnil,omitempty" name:"Weight"`
// Creation source of the service.AUTO_ML: comes from one-click release of automatic learning.DEFAULT: other sources.Note: This field may return null, indicating that no valid values can be obtained.
CreateSource *string `json:"CreateSource,omitnil,omitempty" name:"CreateSource"`
// Version number.Note: This field may return null, indicating that no valid values can be obtained.
Version *string `json:"Version,omitnil,omitempty" name:"Version"`
// The latest version number of services under a service group.Note: This field may return null, indicating that no valid values can be obtained.
LatestVersion *string `json:"LatestVersion,omitnil,omitempty" name:"LatestVersion"`
// Resource group category. Valid values: NORMAL (hosting) and SW (half-hosting).Note: This field may return null, indicating that no valid values can be obtained.
ResourceGroupSWType *string `json:"ResourceGroupSWType,omitnil,omitempty" name:"ResourceGroupSWType"`
// Archiving status of the service. Valid values: Waiting (pending archiving) and Archived (archived).Note: This field may return null, indicating that no valid values can be obtained.
ArchiveStatus *string `json:"ArchiveStatus,omitnil,omitempty" name:"ArchiveStatus"`
// Deployment type of the service. Valid values: STANDARD (standard deployment) and DIST (multi-machine distributed deployment). The default value is STANDARD.Note: This field may return null, indicating that no valid values can be obtained.
DeployType *string `json:"DeployType,omitnil,omitempty" name:"DeployType"`
// Number of instances per replica. This parameter is valid only when the deployment type is DIST. Default value: 1.Note: This field may return null, indicating that no valid values can be obtained.
InstancePerReplicas *string `json:"InstancePerReplicas,omitnil,omitempty" name:"InstancePerReplicas"`
// Source for monitoring queries.Enumeration value. May differ from CreateSource in certain scenarios. This field is designed to be compatible.
MonitorSource *string `json:"MonitorSource,omitnil,omitempty" name:"MonitorSource"`
// Sub-account name of the service creator.
SubUinName *string `json:"SubUinName,omitnil,omitempty" name:"SubUinName"`
// Scheduling policy of the service.
SchedulingPolicy *SchedulingPolicy `json:"SchedulingPolicy,omitnil,omitempty" name:"SchedulingPolicy"`
// External resource group information, indicating which resources are borrowed from resource groups.
ExternalResourceGroups []*ResourceGroupInfo `json:"ExternalResourceGroups,omitnil,omitempty" name:"ExternalResourceGroups"`
}
type ServiceEIP ¶
type ServiceEIP struct {
// Whether to enable access from the TI-ONE private network to external resources.Note: This field may return null, indicating that no valid values can be obtained.
EnableEIP *bool `json:"EnableEIP,omitnil,omitempty" name:"EnableEIP"`
// User VPC ID.Note: This field may return null, indicating that no valid values can be obtained.
VpcId *string `json:"VpcId,omitnil,omitempty" name:"VpcId"`
// User subnet ID.Note: This field may return null, indicating that no valid values can be obtained.
SubnetId *string `json:"SubnetId,omitnil,omitempty" name:"SubnetId"`
}
type ServiceGroup ¶
type ServiceGroup struct {
// Service group ID.
ServiceGroupId *string `json:"ServiceGroupId,omitnil,omitempty" name:"ServiceGroupId"`
// Service group name.
ServiceGroupName *string `json:"ServiceGroupName,omitnil,omitempty" name:"ServiceGroupName"`
// Creator.
CreatedBy *string `json:"CreatedBy,omitnil,omitempty" name:"CreatedBy"`
// Creation time.
CreateTime *string `json:"CreateTime,omitnil,omitempty" name:"CreateTime"`
// Update time.
UpdateTime *string `json:"UpdateTime,omitnil,omitempty" name:"UpdateTime"`
// Root account.
Uin *string `json:"Uin,omitnil,omitempty" name:"Uin"`
// Total number of services in the service group.Note: This field may return null, indicating that no valid values can be obtained.
ServiceCount *uint64 `json:"ServiceCount,omitnil,omitempty" name:"ServiceCount"`
// Number of running services in the service group.Note: This field may return null, indicating that no valid values can be obtained.
RunningServiceCount *uint64 `json:"RunningServiceCount,omitnil,omitempty" name:"RunningServiceCount"`
// Service description.Note: This field may return null, indicating that no valid values can be obtained.
Services []*Service `json:"Services,omitnil,omitempty" name:"Services"`
// Service group status, which aligns with service status.CREATING: creating.CREATE_FAILED: creation failed.Normal: running.Stopped: stopped.Stopping: stopping.Abnormal: error.Pending: starting.Waiting: getting ready.Note: This field may return null, indicating that no valid values can be obtained.
Status *string `json:"Status,omitnil,omitempty" name:"Status"`
// Service group tags.Note: This field may return null, indicating that no valid values can be obtained.
Tags []*Tag `json:"Tags,omitnil,omitempty" name:"Tags"`
// The latest version in the service group.Note: This field may return null, indicating that no valid values can be obtained.
LatestVersion *string `json:"LatestVersion,omitnil,omitempty" name:"LatestVersion"`
// Operational status of the service.CREATING: creating.CREATE_FAILED: creation failed.ARREARS_STOP: service suspended due to overdue payments.BILLING: billing.WHITELIST_USING: allowlist feature is in trial.WHITELIST_STOP: insufficient allowlist quota.Note: This field may return null, indicating that no valid values can be obtained.
BusinessStatus *string `json:"BusinessStatus,omitnil,omitempty" name:"BusinessStatus"`
// Billing information of the service.Note: This field may return null, indicating that no valid values can be obtained.
BillingInfo *string `json:"BillingInfo,omitnil,omitempty" name:"BillingInfo"`
// Creation source of the service.Note: This field may return null, indicating that no valid values can be obtained.
CreateSource *string `json:"CreateSource,omitnil,omitempty" name:"CreateSource"`
// Weight update status of the service group.UPDATING: updating.UPDATED: updated successfully.UPDATE FAILED: failed to update.Note: This field may return null, indicating that no valid values can be obtained.
WeightUpdateStatus *string `json:"WeightUpdateStatus,omitnil,omitempty" name:"WeightUpdateStatus"`
// Number of running Pods in the service group.Note: This field may return null, indicating that no valid values can be obtained.
ReplicasCount *uint64 `json:"ReplicasCount,omitnil,omitempty" name:"ReplicasCount"`
// Expected number of Pods under the service group.Note: This field may return null, indicating that no valid values can be obtained.
AvailableReplicasCount *uint64 `json:"AvailableReplicasCount,omitnil,omitempty" name:"AvailableReplicasCount"`
// Service group's subuin.
SubUin *string `json:"SubUin,omitnil,omitempty" name:"SubUin"`
// Service group's app_id.
AppId *int64 `json:"AppId,omitnil,omitempty" name:"AppId"`
// Whether to enable authentication.
AuthorizationEnable *bool `json:"AuthorizationEnable,omitnil,omitempty" name:"AuthorizationEnable"`
// List of throttling authentication tokens.
AuthTokens []*AuthToken `json:"AuthTokens,omitnil,omitempty" name:"AuthTokens"`
// Field for monitoring creation source.
MonitorSource *string `json:"MonitorSource,omitnil,omitempty" name:"MonitorSource"`
// Nickname of the sub-user.
SubUinName *string `json:"SubUinName,omitnil,omitempty" name:"SubUinName"`
}
type ServiceInfo ¶
type ServiceInfo struct {
// Expected number of running Pods. The instance is 0 when the stop status is reached.Corresponding relationships under different billing and scaling modes are as follows.PREPAID and POSTPAID_BY_HOUR:Corresponding number of instances in the manual scaling mode.Corresponding number of instances based on the default time-based policy in the auto-scaling mode.HYBRID_PAID:
// Corresponding number of instances for postpaid instances in the manual scaling mode.Corresponding number of instances under the default time-based policy for postpaid instances in the auto-scaling mode.Note: This field may return null, indicating that no valid values can be obtained.
Replicas *int64 `json:"Replicas,omitnil,omitempty" name:"Replicas"`
// Image information.Note: This field may return null, indicating that no valid values can be obtained.
ImageInfo *ImageInfo `json:"ImageInfo,omitnil,omitempty" name:"ImageInfo"`
// Environment variables.Note: This field may return null, indicating that no valid values can be obtained.
Env []*EnvVar `json:"Env,omitnil,omitempty" name:"Env"`
// Resource information.Note: This field may return null, indicating that no valid values can be obtained.
Resources *ResourceInfo `json:"Resources,omitnil,omitempty" name:"Resources"`
// Type specifications corresponding to the postpaid instance.Note: This field may return null, indicating that no valid values can be obtained.
InstanceType *string `json:"InstanceType,omitnil,omitempty" name:"InstanceType"`
// Model information.Note: This field may return null, indicating that no valid values can be obtained.
ModelInfo *ModelInfo `json:"ModelInfo,omitnil,omitempty" name:"ModelInfo"`
// Whether to enable logs.Note: This field may return null, indicating that no valid values can be obtained.
LogEnable *bool `json:"LogEnable,omitnil,omitempty" name:"LogEnable"`
// Log configurations.Note: This field may return null, indicating that no valid values can be obtained.
LogConfig *LogConfig `json:"LogConfig,omitnil,omitempty" name:"LogConfig"`
// Whether to enable authentication.Note: This field may return null, indicating that no valid values can be obtained.
AuthorizationEnable *bool `json:"AuthorizationEnable,omitnil,omitempty" name:"AuthorizationEnable"`
// HPA configurations.Note: This field may return null, indicating that no valid values can be obtained.
HorizontalPodAutoscaler *HorizontalPodAutoscaler `json:"HorizontalPodAutoscaler,omitnil,omitempty" name:"HorizontalPodAutoscaler"`
// Description of the service status.Note: This field may return null, indicating that no valid values can be obtained.
Status *WorkloadStatus `json:"Status,omitnil,omitempty" name:"Status"`
// Weight.Note: This field may return null, indicating that no valid values can be obtained.
Weight *uint64 `json:"Weight,omitnil,omitempty" name:"Weight"`
// Total resources.Note: This field may return null, indicating that no valid values can be obtained.
ResourceTotal *ResourceInfo `json:"ResourceTotal,omitnil,omitempty" name:"ResourceTotal"`
// Number of historical instances.Note: This field may return null, indicating that no valid values can be obtained.
OldReplicas *int64 `json:"OldReplicas,omitnil,omitempty" name:"OldReplicas"`
// This parameter is valid when the billing mode is HYBRID_PAID, and is used to identify the number of prepaid instances in the hybrid billing mode. The default value is 1 if this parameter is left unspecified.Note: This field may return null, indicating that no valid values can be obtained.
HybridBillingPrepaidReplicas *int64 `json:"HybridBillingPrepaidReplicas,omitnil,omitempty" name:"HybridBillingPrepaidReplicas"`
// Number of instances during the historical HYBRID_PAID period. The user restores services.Note: This field may return null, indicating that no valid values can be obtained.
OldHybridBillingPrepaidReplicas *int64 `json:"OldHybridBillingPrepaidReplicas,omitnil,omitempty" name:"OldHybridBillingPrepaidReplicas"`
// Whether to enable hot update for the model. By default, hot update is disabled.Note: This field may return null, indicating that no valid values can be obtained.
ModelHotUpdateEnable *bool `json:"ModelHotUpdateEnable,omitnil,omitempty" name:"ModelHotUpdateEnable"`
// Service specification alias.
InstanceAlias *string `json:"InstanceAlias,omitnil,omitempty" name:"InstanceAlias"`
// Instance quantity adjusting mode. Defaults to manual.Supported valid values: AUTO (automatic), MANUAL (manual).Note: This field may return null, indicating that no valid values can be obtained.
ScaleMode *string `json:"ScaleMode,omitnil,omitempty" name:"ScaleMode"`
// Scheduled scaling task.Note: This field may return null, indicating that no valid values can be obtained.
CronScaleJobs []*CronScaleJob `json:"CronScaleJobs,omitnil,omitempty" name:"CronScaleJobs"`
// Scheduled scaling policy.Note: This field may return null, indicating that no valid values can be obtained.
ScaleStrategy *string `json:"ScaleStrategy,omitnil,omitempty" name:"ScaleStrategy"`
// Configurations of the scheduled stop.Note: This field may return null, indicating that no valid values can be obtained.
ScheduledAction *ScheduledAction `json:"ScheduledAction,omitnil,omitempty" name:"ScheduledAction"`
// Instance list.Note: This field may return null, indicating that no valid values can be obtained.
//
// Deprecated: PodList is deprecated.
PodList []*string `json:"PodList,omitnil,omitempty" name:"PodList"`
// Pod list information.Note: This field may return null, indicating that no valid values can be obtained.
//
// Deprecated: Pods is deprecated.
Pods *Pod `json:"Pods,omitnil,omitempty" name:"Pods"`
// Pod list information.Note: This field may return null, indicating that no valid values can be obtained.
PodInfos []*Pod `json:"PodInfos,omitnil,omitempty" name:"PodInfos"`
// Configurations related to speed limit and throttling of services.Note: This field may return null, indicating that no valid values can be obtained.
ServiceLimit *ServiceLimit `json:"ServiceLimit,omitnil,omitempty" name:"ServiceLimit"`
// Whether to enable model acceleration, which is only valid for models in the StableDiffusion (dynamic acceleration) format.Note: This field may return null, indicating that no valid values can be obtained.
ModelTurboEnable *bool `json:"ModelTurboEnable,omitnil,omitempty" name:"ModelTurboEnable"`
// Mounting.Note: This field may return null, indicating that no valid values can be obtained.
VolumeMount *VolumeMount `json:"VolumeMount,omitnil,omitempty" name:"VolumeMount"`
// Inference code information.Note: This field may return null, indicating that no valid values can be obtained.
InferCodeInfo *InferCodeInfo `json:"InferCodeInfo,omitnil,omitempty" name:"InferCodeInfo"`
// Service startup command.Note: This field may return null, indicating that no valid values can be obtained.
Command *string `json:"Command,omitnil,omitempty" name:"Command"`
// Settings of enabling the TI-ONE private network to access external resources.Note: This field may return null, indicating that no valid values can be obtained.
ServiceEIP *ServiceEIP `json:"ServiceEIP,omitnil,omitempty" name:"ServiceEIP"`
// Service port, with the default value of 8501.Note: This field may return null, indicating that no valid values can be obtained.
ServicePort *int64 `json:"ServicePort,omitnil,omitempty" name:"ServicePort"`
// Graceful exit time limit of the service, in seconds. Default value: 30. Minimum value: 1.
TerminationGracePeriodSeconds *int64 `json:"TerminationGracePeriodSeconds,omitnil,omitempty" name:"TerminationGracePeriodSeconds"`
// Command executed before the service instance stops. The instance ends after the command execution is completed or after the execution time exceeds the graceful exit time limit.
PreStopCommand []*string `json:"PreStopCommand,omitnil,omitempty" name:"PreStopCommand"`
// Whether to enable the gRPC port.
GrpcEnable *bool `json:"GrpcEnable,omitnil,omitempty" name:"GrpcEnable"`
// Health probe.
HealthProbe *HealthProbe `json:"HealthProbe,omitnil,omitempty" name:"HealthProbe"`
// Rolling update configurations.
RollingUpdate *RollingUpdate `json:"RollingUpdate,omitnil,omitempty" name:"RollingUpdate"`
// Number of instances per replica. This parameter is valid only when the deployment type is DIST or ROLE. Default value: 1.
InstancePerReplicas *int64 `json:"InstancePerReplicas,omitnil,omitempty" name:"InstancePerReplicas"`
// Batch data disk mounting configurations.
VolumeMounts []*VolumeMount `json:"VolumeMounts,omitnil,omitempty" name:"VolumeMounts"`
}
type ServiceLimit ¶
type ServiceLimit struct {
// Whether to enable throttling and speed limit at the instance level. Valid values: true and false. If the value is true, InstanceRpsLimit is required. If the value is false, InstanceRpsLimit does not take effect.
EnableInstanceRpsLimit *bool `json:"EnableInstanceRpsLimit,omitnil,omitempty" name:"EnableInstanceRpsLimit"`
// Speed limit for the requests per second (RPS) of each service instance. 0 indicates no throttling.
InstanceRpsLimit *int64 `json:"InstanceRpsLimit,omitnil,omitempty" name:"InstanceRpsLimit"`
// Whether to enable the maximum concurrency quantity limit for a single instance. Valid values: true and false. If the value is true, InstanceReqLimit is required. If the value is false, InstanceReqLimit does not take effect.
EnableInstanceReqLimit *bool `json:"EnableInstanceReqLimit,omitnil,omitempty" name:"EnableInstanceReqLimit"`
// Maximum concurrency for each service instance.
InstanceReqLimit *int64 `json:"InstanceReqLimit,omitnil,omitempty" name:"InstanceReqLimit"`
}
type StatefulSetCondition ¶
type StatefulSetCondition struct {
// Information.Note: This field may return null, indicating that no valid values can be obtained.
Message *string `json:"Message,omitnil,omitempty" name:"Message"`
// Reason.Note: This field may return null, indicating that no valid values can be obtained.
Reason *string `json:"Reason,omitnil,omitempty" name:"Reason"`
// Status of the condition, True, False or Unknown.Note: This field may return null, indicating that no valid values can be obtained.
Status *string `json:"Status,omitnil,omitempty" name:"Status"`
// Type.Note: This field may return null, indicating that no valid values can be obtained.
Type *string `json:"Type,omitnil,omitempty" name:"Type"`
// Last update time.Note: This field may return null, indicating that no valid values can be obtained.
LastTransitionTime *string `json:"LastTransitionTime,omitnil,omitempty" name:"LastTransitionTime"`
// Last update time.Note: This field may return null, indicating that no valid values can be obtained.
LastUpdateTime *string `json:"LastUpdateTime,omitnil,omitempty" name:"LastUpdateTime"`
}
type TCPSocketAction ¶
type TCPSocketAction struct {
// Called port.
Port *int64 `json:"Port,omitnil,omitempty" name:"Port"`
}
type Tag ¶
type Tag struct {
// Tag key.Note: This field may return null, indicating that no valid values can be obtained.
TagKey *string `json:"TagKey,omitnil,omitempty" name:"TagKey"`
// Tag value.Note: This field may return null, indicating that no valid values can be obtained.
TagValue *string `json:"TagValue,omitnil,omitempty" name:"TagValue"`
}
type VolumeMount ¶
type VolumeMount struct {
// Cloud File Storage (CFS) configuration information.
CFSConfig *CFSConfig `json:"CFSConfig,omitnil,omitempty" name:"CFSConfig"`
// Mounting source type. Valid values: CFS and COS. The default value is CFS.
VolumeSourceType *string `json:"VolumeSourceType,omitnil,omitempty" name:"VolumeSourceType"`
// Mounting path in the custom container.Note: This field may return null, indicating that no valid values can be obtained.
MountPath *string `json:"MountPath,omitnil,omitempty" name:"MountPath"`
}
type WorkloadStatus ¶
type WorkloadStatus struct {
// Number of current instances.
Replicas *int64 `json:"Replicas,omitnil,omitempty" name:"Replicas"`
// Number of updated instances.
UpdatedReplicas *int64 `json:"UpdatedReplicas,omitnil,omitempty" name:"UpdatedReplicas"`
// Number of ready instances.
ReadyReplicas *int64 `json:"ReadyReplicas,omitnil,omitempty" name:"ReadyReplicas"`
// Number of available instances.
AvailableReplicas *int64 `json:"AvailableReplicas,omitnil,omitempty" name:"AvailableReplicas"`
UnavailableReplicas *int64 `json:"UnavailableReplicas,omitnil,omitempty" name:"UnavailableReplicas"`
// Normal: running.Abnormal: service abnormalities, such as container startup failure.Waiting: service waiting, such as container image pulling.Stopped: stopped.Pending: starting.Stopping: stopping.
Status *string `json:"Status,omitnil,omitempty" name:"Status"`
// Workload status information.
//
// Deprecated: StatefulSetCondition is deprecated.
StatefulSetCondition []*StatefulSetCondition `json:"StatefulSetCondition,omitnil,omitempty" name:"StatefulSetCondition"`
// Status information of workload history.
Conditions []*StatefulSetCondition `json:"Conditions,omitnil,omitempty" name:"Conditions"`
// Display the reason when the status is abnormal.Note: This field may return null, indicating that no valid values can be obtained.
Reason *string `json:"Reason,omitnil,omitempty" name:"Reason"`
}
Click to show internal directories.
Click to hide internal directories.