Skip to content

Commit 1631547

Browse files
committed
Update API AddImage: update request parameters body.Size' format has changed.
1 parent 2f86c3e commit 1631547

File tree

6 files changed

+13
-7
lines changed

6 files changed

+13
-7
lines changed

aiworkspace-20210204/ChangeLog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2025-11-18 Version: 6.0.0
2+
- Update API AddImage: update request parameters body.Size' format has changed.
3+
- Update API GetImage: update response parameters Body.Size' format has changed.
4+
- Update API ListImages: update response parameters Body.Images.$.Size' format has changed.
5+
6+
17
2025-11-06 Version: 5.1.0
28
- Support API CreateImageBuild.
39

aiworkspace-20210204/core/Models/AddImageRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public class AddImageRequestLabels : TeaModel {
124124
/// </summary>
125125
[NameInMap("Size")]
126126
[Validation(Required=false)]
127-
public int? Size { get; set; }
127+
public long? Size { get; set; }
128128

129129
[NameInMap("SourceId")]
130130
[Validation(Required=false)]

aiworkspace-20210204/core/Models/GetImageResponseBody.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public class GetImageResponseBodyLabels : TeaModel {
127127
/// </summary>
128128
[NameInMap("Size")]
129129
[Validation(Required=false)]
130-
public int? Size { get; set; }
130+
public long? Size { get; set; }
131131

132132
/// <summary>
133133
/// <para>镜像来源 ID</para>

aiworkspace-20210204/core/Models/ListImagesResponseBody.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ public class ListImagesResponseBodyImagesLabels : TeaModel {
134134
/// </summary>
135135
[NameInMap("Size")]
136136
[Validation(Required=false)]
137-
public int? Size { get; set; }
137+
public long? Size { get; set; }
138138

139139
/// <summary>
140140
/// <para>镜像来源 ID</para>

aiworkspace-20210204/core/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
[assembly: ComVisible(false)]
2121

2222
// The following GUID is for the ID of the typelib if this project is exposed to COM
23-
[assembly: Guid("7acd0180-bae8-11f0-ac87-9f5858da3021")]
23+
[assembly: Guid("bb7f49f0-c429-11f0-81b2-276d2f7e11da")]
2424

2525
// Version information for an assembly consists of the following four values:
2626
//
@@ -29,5 +29,5 @@
2929
// Build Number
3030
// Revision
3131
//
32-
[assembly: AssemblyVersion("5.0.2.0")]
33-
[assembly: AssemblyFileVersion("5.1.0.0")]
32+
[assembly: AssemblyVersion("6.0")]
33+
[assembly: AssemblyFileVersion("6.0.0.0")]

aiworkspace-20210204/core/aiworkspace.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
88
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
99
<AssemblyName>AlibabaCloud.SDK.AIWorkSpace20210204</AssemblyName>
10-
<Version>5.1.0</Version>
10+
<Version>6.0.0</Version>
1111
<LangVersion>5</LangVersion>
1212
<Authors>Alibaba Cloud</Authors>
1313
<Description>Alibaba Cloud AIWorkSpace (20210204) SDK Library for .NET</Description>

0 commit comments

Comments
 (0)