Skip to content

Commit bfd88bd

Browse files
author
fengyikai
committed
优化
1 parent 1a1232d commit bfd88bd

458 files changed

Lines changed: 2493 additions & 2509 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/main/java/ksyun/client/actiontrail/listoperatelogs.v20190401/ListOperateLogsResponse.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ public static class EventsDto {
4747

4848
/**API请求的输入参数。*/
4949
@JsonProperty("RequestParameters")
50-
private RequestParametersDto RequestParameters;
50+
private EventsDtoRequestParametersDto RequestParameters;
5151

5252
@Data
5353
@ToString
54-
public static class RequestParametersDto {
54+
public static class EventsDtoRequestParametersDto {
5555
}
5656

5757
/**事件发起的源IP地址。*/
@@ -87,11 +87,11 @@ public static class RequestParametersDto {
8787

8888
/**请求者的身份信息。*/
8989
@JsonProperty("UserIdentity")
90-
private UserIdentityDto UserIdentity;
90+
private EventsDtoUserIdentityDto UserIdentity;
9191

9292
@Data
9393
@ToString
94-
public static class UserIdentityDto {
94+
public static class EventsDtoUserIdentityDto {
9595
/**如果是角色访问,则记录为角色名称*/
9696
@JsonProperty("RoleName")
9797
private String RoleName;
@@ -114,11 +114,11 @@ public static class UserIdentityDto {
114114

115115
/**事件影响的资源列表。*/
116116
@JsonProperty("ReferencedResources")
117-
private List<ReferencedResourcesDto> ReferencedResources;
117+
private List<EventsDtoReferencedResourcesDto> ReferencedResources;
118118

119119
@Data
120120
@ToString
121-
public static class ReferencedResourcesDto {
121+
public static class EventsDtoReferencedResourcesDto {
122122
}
123123

124124
/**错误码*/

src/main/java/ksyun/client/aicp/describenotebookevents.v20240612/DescribeNotebookEventsResponse.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ public static class DataSetDto {
3939

4040
/**对象*/
4141
@JsonProperty("Object")
42-
private ObjectDto Object;
42+
private DataSetDtoObjectDto Object;
4343

4444
@Data
4545
@ToString
46-
public static class ObjectDto {
46+
public static class DataSetDtoObjectDto {
4747
/**对象类型*/
4848
@JsonProperty("Kind")
4949
private String Kind;
@@ -64,11 +64,11 @@ public static class ObjectDto {
6464

6565
/**事件源*/
6666
@JsonProperty("Source")
67-
private SourceDto Source;
67+
private DataSetDtoSourceDto Source;
6868

6969
@Data
7070
@ToString
71-
public static class SourceDto {
71+
public static class DataSetDtoSourceDto {
7272
/**组件*/
7373
@JsonProperty("Component")
7474
private String Component;

src/main/java/ksyun/client/aicp/describenotebooks.v20240612/DescribeNotebooksResponse.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ public static class NotebooksDto {
3939

4040
/***/
4141
@JsonProperty("Status")
42-
private StatusDto Status;
42+
private NotebooksDtoStatusDto Status;
4343

4444
@Data
4545
@ToString
46-
public static class StatusDto {
46+
public static class NotebooksDtoStatusDto {
4747
/**状态*/
4848
@JsonProperty("State")
4949
private String State;
@@ -193,11 +193,11 @@ public static class StatusDto {
193193

194194
/**存储配置信息*/
195195
@JsonProperty("StorageConfigs")
196-
private List<StorageConfigsDto> StorageConfigs;
196+
private List<NotebooksDtoStorageConfigsDto> StorageConfigs;
197197

198198
@Data
199199
@ToString
200-
public static class StorageConfigsDto {
200+
public static class NotebooksDtoStorageConfigsDto {
201201
/**存储配置ID*/
202202
@JsonProperty("StorageConfigId")
203203
private String StorageConfigId;
@@ -214,11 +214,11 @@ public static class StorageConfigsDto {
214214

215215
/***/
216216
@JsonProperty("ServiceConfigs")
217-
private List<ServiceConfigsDto> ServiceConfigs;
217+
private List<NotebooksDtoServiceConfigsDto> ServiceConfigs;
218218

219219
@Data
220220
@ToString
221-
public static class ServiceConfigsDto {
221+
public static class NotebooksDtoServiceConfigsDto {
222222
/***/
223223
@JsonProperty("Service")
224224
private String Service;
@@ -235,11 +235,11 @@ public static class ServiceConfigsDto {
235235

236236
/***/
237237
@JsonProperty("Label")
238-
private LabelDto Label;
238+
private NotebooksDtoLabelDto Label;
239239

240240
@Data
241241
@ToString
242-
public static class LabelDto {
242+
public static class NotebooksDtoLabelDto {
243243
/***/
244244
@JsonProperty("TerminatePolicyId")
245245
private String TerminatePolicyId;

src/main/java/ksyun/client/aicp/describeresourcepoolinstances.v20240612/DescribeResourcePoolInstancesResponse.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -137,11 +137,11 @@ public static class ResourcePoolInstanceSetDto {
137137
/**
138138
网卡列表*/
139139
@JsonProperty("NetworkInterfaceSet")
140-
private List<NetworkInterfaceSetDto> NetworkInterfaceSet;
140+
private List<ResourcePoolInstanceSetDtoNetworkInterfaceSetDto> NetworkInterfaceSet;
141141

142142
@Data
143143
@ToString
144-
public static class NetworkInterfaceSetDto {
144+
public static class ResourcePoolInstanceSetDtoNetworkInterfaceSetDto {
145145
/**VPC ID*/
146146
@JsonProperty("VpcId")
147147
private String VpcId;
@@ -169,11 +169,11 @@ public static class NetworkInterfaceSetDto {
169169
/**
170170
节点CPU使用情况*/
171171
@JsonProperty("Cpu")
172-
private CpuDto Cpu;
172+
private ResourcePoolInstanceSetDtoCpuDto Cpu;
173173

174174
@Data
175175
@ToString
176-
public static class CpuDto {
176+
public static class ResourcePoolInstanceSetDtoCpuDto {
177177
/**已分配值*/
178178
@JsonProperty("Allocated")
179179
private Integer Allocated;
@@ -187,11 +187,11 @@ public static class CpuDto {
187187
/**
188188
节点GPU使用情况*/
189189
@JsonProperty("Gpu")
190-
private GpuDto Gpu;
190+
private ResourcePoolInstanceSetDtoGpuDto Gpu;
191191

192192
@Data
193193
@ToString
194-
public static class GpuDto {
194+
public static class ResourcePoolInstanceSetDtoGpuDto {
195195
/**已分配值*/
196196
@JsonProperty("Allocated")
197197
private Integer Allocated;
@@ -205,11 +205,11 @@ public static class GpuDto {
205205
/**
206206
节点内存使用情况*/
207207
@JsonProperty("Memory")
208-
private MemoryDto Memory;
208+
private ResourcePoolInstanceSetDtoMemoryDto Memory;
209209

210210
@Data
211211
@ToString
212-
public static class MemoryDto {
212+
public static class ResourcePoolInstanceSetDtoMemoryDto {
213213
/**已分配值*/
214214
@JsonProperty("Allocated")
215215
private Integer Allocated;

src/main/java/ksyun/client/aicp/describetrainjob.v20240612/DescribeTrainJobResponse.java

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,11 @@ public static class TrainJobSetDto {
107107

108108
/***/
109109
@JsonProperty("FrameworkReplicas")
110-
private FrameworkReplicasDto FrameworkReplicas;
110+
private TrainJobSetDtoFrameworkReplicasDto FrameworkReplicas;
111111

112112
@Data
113113
@ToString
114-
public static class FrameworkReplicasDto {
114+
public static class TrainJobSetDtoFrameworkReplicasDto {
115115
/**1*/
116116
@JsonProperty("Master")
117117
private Integer Master;
@@ -156,11 +156,11 @@ public static class FrameworkReplicasDto {
156156

157157
/***/
158158
@JsonProperty("Status")
159-
private StatusDto Status;
159+
private TrainJobSetDtoStatusDto Status;
160160

161161
@Data
162162
@ToString
163-
public static class StatusDto {
163+
public static class TrainJobSetDtoStatusDto {
164164
/**pending*/
165165
@JsonProperty("State")
166166
private String State;
@@ -205,15 +205,16 @@ public static class StatusDto {
205205

206206
/**环境变量*/
207207
@JsonProperty("Envs")
208-
private List<EnvsDto> Envs;
208+
private List<TrainJobSetDtoEnvsDto> Envs;
209209

210210
@Data
211211
@ToString
212-
public static class EnvsDto {
212+
public static class TrainJobSetDtoEnvsDto {
213213
/**ENV_TENSORBOARD_DIR*/
214214
@JsonProperty("Name")
215215
private String Name;
216216

217+
/**mnthjl*/
217218
@JsonProperty("Value")
218219
private String Value;
219220

@@ -241,11 +242,11 @@ public static class EnvsDto {
241242

242243
/***/
243244
@JsonProperty("StorageConfigs")
244-
private List<StorageConfigsDto> StorageConfigs;
245+
private List<TrainJobSetDtoStorageConfigsDto> StorageConfigs;
245246

246247
@Data
247248
@ToString
248-
public static class StorageConfigsDto {
249+
public static class TrainJobSetDtoStorageConfigsDto {
249250
/***/
250251
@JsonProperty("StorageConfigId")
251252
private String StorageConfigId;

src/main/java/ksyun/client/aicp/describetrainjobevents.v20240612/DescribeTrainJobEventsResponse.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ public static class DataSetDto {
3939

4040
/**trainjob/pytorch-job-example-worker-0*/
4141
@JsonProperty("Object")
42-
private ObjectDto Object;
42+
private DataSetDtoObjectDto Object;
4343

4444
@Data
4545
@ToString
46-
public static class ObjectDto {
46+
public static class DataSetDtoObjectDto {
4747
/***/
4848
@JsonProperty("Kind")
4949
private String Kind;
@@ -84,11 +84,11 @@ public static class ObjectDto {
8484

8585
/***/
8686
@JsonProperty("Source")
87-
private SourceDto Source;
87+
private DataSetDtoSourceDto Source;
8888

8989
@Data
9090
@ToString
91-
public static class SourceDto {
91+
public static class DataSetDtoSourceDto {
9292
/**kubelet*/
9393
@JsonProperty("component")
9494
private String Component;

src/main/java/ksyun/client/aicp/describetrainjobpods.v20240612/DescribeTrainJobPodsResponse.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ public static class TrainJobPodSetDto {
4343

4444
/***/
4545
@JsonProperty("Status")
46-
private StatusDto Status;
46+
private TrainJobPodSetDtoStatusDto Status;
4747

4848
@Data
4949
@ToString
50-
public static class StatusDto {
50+
public static class TrainJobPodSetDtoStatusDto {
5151
/**状态*/
5252
@JsonProperty("State")
5353
private String State;

src/main/java/ksyun/client/bill_union/describeinstancesummarybills.v20200101/DescribeInstanceSummaryBillsResponse.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -127,11 +127,11 @@ public static class SummaryOverviewDto {
127127

128128
/**配置用量信息*/
129129
@JsonProperty("ConfigSet")
130-
private List<ConfigSetDto> ConfigSet;
130+
private List<SummaryOverviewDtoConfigSetDto> ConfigSet;
131131

132132
@Data
133133
@ToString
134-
public static class ConfigSetDto {
134+
public static class SummaryOverviewDtoConfigSetDto {
135135
/**表示数据的key*/
136136
@JsonProperty("Key")
137137
private String Key;
@@ -148,11 +148,11 @@ public static class ConfigSetDto {
148148

149149
/**价格影响因子。无值不返回*/
150150
@JsonProperty("ProviderSet")
151-
private List<ProviderSetDto> ProviderSet;
151+
private List<SummaryOverviewDtoProviderSetDto> ProviderSet;
152152

153153
@Data
154154
@ToString
155-
public static class ProviderSetDto {
155+
public static class SummaryOverviewDtoProviderSetDto {
156156
/**表示数据的key*/
157157
@JsonProperty("Key")
158158
private String Key;
@@ -173,11 +173,11 @@ public static class ProviderSetDto {
173173

174174
/**附属信息。 无值不返回*/
175175
@JsonProperty("ExtraSet")
176-
private List<ExtraSetDto> ExtraSet;
176+
private List<SummaryOverviewDtoExtraSetDto> ExtraSet;
177177

178178
@Data
179179
@ToString
180-
public static class ExtraSetDto {
180+
public static class SummaryOverviewDtoExtraSetDto {
181181
/**表示数据的key*/
182182
@JsonProperty("Key")
183183
private String Key;
@@ -194,11 +194,11 @@ public static class ExtraSetDto {
194194

195195
/**tag信息。 无值不返回*/
196196
@JsonProperty("TagSet")
197-
private List<TagSetDto> TagSet;
197+
private List<SummaryOverviewDtoTagSetDto> TagSet;
198198

199199
@Data
200200
@ToString
201-
public static class TagSetDto {
201+
public static class SummaryOverviewDtoTagSetDto {
202202
/**表示数据的key*/
203203
@JsonProperty("Key")
204204
private String Key;

src/main/java/ksyun/client/bill_union/describesplititembilldetails.v20200101/DescribeSplitItemBillDetailsResponse.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ public static class DataDto {
4343

4444
/***/
4545
@JsonProperty("bills")
46-
private List<BillsDto> Bills;
46+
private List<DataDtoBillsDto> Bills;
4747

4848
@Data
4949
@ToString
50-
public static class BillsDto {
50+
public static class DataDtoBillsDto {
5151
/***/
5252
@JsonProperty("InstanceId")
5353
private String InstanceId;

src/main/java/ksyun/client/bill_union/queryfinanceunitconsume.v20221222/QueryFinanceUnitConsumeResponse.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ public static class DataDto {
4545

4646
/***/
4747
@JsonProperty("bills")
48-
private List<BillsDto> Bills;
48+
private List<DataDtoBillsDto> Bills;
4949

5050
@Data
5151
@ToString
52-
public static class BillsDto {
52+
public static class DataDtoBillsDto {
5353
/**备注名
5454
5555
*/

0 commit comments

Comments
 (0)