Skip to content

Commit

Permalink
add openapi for Personalized Text to Image ablity init version.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Aug 1, 2024
1 parent 792cca8 commit 01d5729
Show file tree
Hide file tree
Showing 14 changed files with 580 additions and 252 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-08-01 Version: 1.0.1
- add openapi for Personalized Text to Image ablity init version.

2024-08-01 Version: 3.7.18
- Generated 2015-12-01 for `Dds`.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ public class AliyunConsoleOpenApiQueryAliyunConsoleServcieListResponse : AcsResp

private string errMessage;

private int? httpStatusCode;

private List<AliyunConsoleOpenApiQueryAliyunConsoleServcieList_DataItem> data;

public string RequestId
Expand Down Expand Up @@ -83,260 +85,86 @@ public string ErrMessage
}
}

public List<AliyunConsoleOpenApiQueryAliyunConsoleServcieList_DataItem> Data
public int? HttpStatusCode
{
get
{
return data;
return httpStatusCode;
}
set
{
data = value;
httpStatusCode = value;
}
}

public class AliyunConsoleOpenApiQueryAliyunConsoleServcieList_DataItem
public List<AliyunConsoleOpenApiQueryAliyunConsoleServcieList_DataItem> Data
{

private string id;

private string modelId;

private string name;

private string objectType;

private string jobStatus;

private double? jobTrainProgress;

private int? inferenceImageCount;

private string createTime;

private List<AliyunConsoleOpenApiQueryAliyunConsoleServcieList_InferenceJobListItem> inferenceJobList;

private List<string> imageUrl;

public string Id
get
{
get
{
return id;
}
set
{
id = value;
}
return data;
}

public string ModelId
set
{
get
{
return modelId;
}
set
{
modelId = value;
}
data = value;
}
}

public string Name
{
get
{
return name;
}
set
{
name = value;
}
}
public class AliyunConsoleOpenApiQueryAliyunConsoleServcieList_DataItem
{

public string ObjectType
{
get
{
return objectType;
}
set
{
objectType = value;
}
}
private string serviceCode;

public string JobStatus
{
get
{
return jobStatus;
}
set
{
jobStatus = value;
}
}
private string serviceName;

public double? JobTrainProgress
{
get
{
return jobTrainProgress;
}
set
{
jobTrainProgress = value;
}
}
private int? freeCount;

private int? freeConcurrencyCount;

public int? InferenceImageCount
public string ServiceCode
{
get
{
return inferenceImageCount;
return serviceCode;
}
set
{
inferenceImageCount = value;
serviceCode = value;
}
}

public string CreateTime
public string ServiceName
{
get
{
return createTime;
return serviceName;
}
set
{
createTime = value;
serviceName = value;
}
}

public List<AliyunConsoleOpenApiQueryAliyunConsoleServcieList_InferenceJobListItem> InferenceJobList
public int? FreeCount
{
get
{
return inferenceJobList;
return freeCount;
}
set
{
inferenceJobList = value;
freeCount = value;
}
}

public List<string> ImageUrl
public int? FreeConcurrencyCount
{
get
{
return imageUrl;
return freeConcurrencyCount;
}
set
{
imageUrl = value;
}
}

public class AliyunConsoleOpenApiQueryAliyunConsoleServcieList_InferenceJobListItem
{

private string id;

private string promptId;

private string modelId;

private string jobStatus;

private double? jobTrainProgress;

private string createTime;

private List<string> resultImageUrl;

public string Id
{
get
{
return id;
}
set
{
id = value;
}
}

public string PromptId
{
get
{
return promptId;
}
set
{
promptId = value;
}
}

public string ModelId
{
get
{
return modelId;
}
set
{
modelId = value;
}
}

public string JobStatus
{
get
{
return jobStatus;
}
set
{
jobStatus = value;
}
}

public double? JobTrainProgress
{
get
{
return jobTrainProgress;
}
set
{
jobTrainProgress = value;
}
}

public string CreateTime
{
get
{
return createTime;
}
set
{
createTime = value;
}
}

public List<string> ResultImageUrl
{
get
{
return resultImageUrl;
}
set
{
resultImageUrl = value;
}
freeConcurrencyCount = value;
}
}
}
Expand Down
Loading

0 comments on commit 01d5729

Please sign in to comment.