Skip to content

Commit c906ebd

Browse files
committed
Add Tag Open API.
1 parent 415ee13 commit c906ebd

File tree

171 files changed

+2168
-2190
lines changed

Some content is hidden

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

171 files changed

+2168
-2190
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2023-05-30 Version: 2.15.1
2+
- Add Tag Open API.
3+
14
2023-05-29 Version: 2.0.26
25
- Add DistributionProducts API.
36

aliyun-net-sdk-kms/Kms/Model/V20160120/AsymmetricDecryptResponse.cs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,31 +17,31 @@
1717
* under the License.
1818
*/
1919
using System.Collections.Generic;
20-
20+
using Newtonsoft.Json;
2121
using Aliyun.Acs.Core;
2222

2323
namespace Aliyun.Acs.Kms.Model.V20160120
2424
{
2525
public class AsymmetricDecryptResponse : AcsResponse
2626
{
2727

28-
private string plaintext;
28+
private string keyVersionId;
2929

3030
private string keyId;
3131

3232
private string requestId;
3333

34-
private string keyVersionId;
34+
private string plaintext;
3535

36-
public string Plaintext
36+
public string KeyVersionId
3737
{
3838
get
3939
{
40-
return plaintext;
40+
return keyVersionId;
4141
}
4242
set
4343
{
44-
plaintext = value;
44+
keyVersionId = value;
4545
}
4646
}
4747

@@ -69,15 +69,15 @@ public string RequestId
6969
}
7070
}
7171

72-
public string KeyVersionId
72+
public string Plaintext
7373
{
7474
get
7575
{
76-
return keyVersionId;
76+
return plaintext;
7777
}
7878
set
7979
{
80-
keyVersionId = value;
80+
plaintext = value;
8181
}
8282
}
8383
}

aliyun-net-sdk-kms/Kms/Model/V20160120/AsymmetricEncryptResponse.cs

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,31 +17,31 @@
1717
* under the License.
1818
*/
1919
using System.Collections.Generic;
20-
20+
using Newtonsoft.Json;
2121
using Aliyun.Acs.Core;
2222

2323
namespace Aliyun.Acs.Kms.Model.V20160120
2424
{
2525
public class AsymmetricEncryptResponse : AcsResponse
2626
{
2727

28-
private string ciphertextBlob;
28+
private string keyVersionId;
2929

3030
private string keyId;
3131

32-
private string requestId;
32+
private string ciphertextBlob;
3333

34-
private string keyVersionId;
34+
private string requestId;
3535

36-
public string CiphertextBlob
36+
public string KeyVersionId
3737
{
3838
get
3939
{
40-
return ciphertextBlob;
40+
return keyVersionId;
4141
}
4242
set
4343
{
44-
ciphertextBlob = value;
44+
keyVersionId = value;
4545
}
4646
}
4747

@@ -57,27 +57,27 @@ public string KeyId
5757
}
5858
}
5959

60-
public string RequestId
60+
public string CiphertextBlob
6161
{
6262
get
6363
{
64-
return requestId;
64+
return ciphertextBlob;
6565
}
6666
set
6767
{
68-
requestId = value;
68+
ciphertextBlob = value;
6969
}
7070
}
7171

72-
public string KeyVersionId
72+
public string RequestId
7373
{
7474
get
7575
{
76-
return keyVersionId;
76+
return requestId;
7777
}
7878
set
7979
{
80-
keyVersionId = value;
80+
requestId = value;
8181
}
8282
}
8383
}

aliyun-net-sdk-kms/Kms/Model/V20160120/AsymmetricSignRequest.cs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ public AsymmetricSignRequest()
4343

4444
private string keyVersionId;
4545

46-
private string digest;
47-
4846
private string keyId;
4947

48+
private string digest;
49+
5050
private string algorithm;
5151

5252
public string KeyVersionId
@@ -62,29 +62,29 @@ public string KeyVersionId
6262
}
6363
}
6464

65-
public string Digest
65+
public string KeyId
6666
{
6767
get
6868
{
69-
return digest;
69+
return keyId;
7070
}
7171
set
7272
{
73-
digest = value;
74-
DictionaryUtil.Add(QueryParameters, "Digest", value);
73+
keyId = value;
74+
DictionaryUtil.Add(QueryParameters, "KeyId", value);
7575
}
7676
}
7777

78-
public string KeyId
78+
public string Digest
7979
{
8080
get
8181
{
82-
return keyId;
82+
return digest;
8383
}
8484
set
8585
{
86-
keyId = value;
87-
DictionaryUtil.Add(QueryParameters, "KeyId", value);
86+
digest = value;
87+
DictionaryUtil.Add(QueryParameters, "Digest", value);
8888
}
8989
}
9090

aliyun-net-sdk-kms/Kms/Model/V20160120/AsymmetricSignResponse.cs

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,31 +17,31 @@
1717
* under the License.
1818
*/
1919
using System.Collections.Generic;
20-
20+
using Newtonsoft.Json;
2121
using Aliyun.Acs.Core;
2222

2323
namespace Aliyun.Acs.Kms.Model.V20160120
2424
{
2525
public class AsymmetricSignResponse : AcsResponse
2626
{
2727

28-
private string _value;
28+
private string keyVersionId;
2929

3030
private string keyId;
3131

32-
private string requestId;
32+
private string _value;
3333

34-
private string keyVersionId;
34+
private string requestId;
3535

36-
public string _Value
36+
public string KeyVersionId
3737
{
3838
get
3939
{
40-
return _value;
40+
return keyVersionId;
4141
}
4242
set
4343
{
44-
_value = value;
44+
keyVersionId = value;
4545
}
4646
}
4747

@@ -57,27 +57,27 @@ public string KeyId
5757
}
5858
}
5959

60-
public string RequestId
60+
public string _Value
6161
{
6262
get
6363
{
64-
return requestId;
64+
return _value;
6565
}
6666
set
6767
{
68-
requestId = value;
68+
_value = value;
6969
}
7070
}
7171

72-
public string KeyVersionId
72+
public string RequestId
7373
{
7474
get
7575
{
76-
return keyVersionId;
76+
return requestId;
7777
}
7878
set
7979
{
80-
keyVersionId = value;
80+
requestId = value;
8181
}
8282
}
8383
}

aliyun-net-sdk-kms/Kms/Model/V20160120/AsymmetricVerifyRequest.cs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ public AsymmetricVerifyRequest()
4343

4444
private string keyVersionId;
4545

46-
private string digest;
47-
4846
private string keyId;
4947

48+
private string digest;
49+
5050
private string _value;
5151

5252
private string algorithm;
@@ -64,29 +64,29 @@ public string KeyVersionId
6464
}
6565
}
6666

67-
public string Digest
67+
public string KeyId
6868
{
6969
get
7070
{
71-
return digest;
71+
return keyId;
7272
}
7373
set
7474
{
75-
digest = value;
76-
DictionaryUtil.Add(QueryParameters, "Digest", value);
75+
keyId = value;
76+
DictionaryUtil.Add(QueryParameters, "KeyId", value);
7777
}
7878
}
7979

80-
public string KeyId
80+
public string Digest
8181
{
8282
get
8383
{
84-
return keyId;
84+
return digest;
8585
}
8686
set
8787
{
88-
keyId = value;
89-
DictionaryUtil.Add(QueryParameters, "KeyId", value);
88+
digest = value;
89+
DictionaryUtil.Add(QueryParameters, "Digest", value);
9090
}
9191
}
9292

aliyun-net-sdk-kms/Kms/Model/V20160120/AsymmetricVerifyResponse.cs

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,31 +17,31 @@
1717
* under the License.
1818
*/
1919
using System.Collections.Generic;
20-
20+
using Newtonsoft.Json;
2121
using Aliyun.Acs.Core;
2222

2323
namespace Aliyun.Acs.Kms.Model.V20160120
2424
{
2525
public class AsymmetricVerifyResponse : AcsResponse
2626
{
2727

28-
private bool? _value;
28+
private string keyVersionId;
2929

3030
private string keyId;
3131

32-
private string requestId;
32+
private bool? _value;
3333

34-
private string keyVersionId;
34+
private string requestId;
3535

36-
public bool? _Value
36+
public string KeyVersionId
3737
{
3838
get
3939
{
40-
return _value;
40+
return keyVersionId;
4141
}
4242
set
4343
{
44-
_value = value;
44+
keyVersionId = value;
4545
}
4646
}
4747

@@ -57,27 +57,27 @@ public string KeyId
5757
}
5858
}
5959

60-
public string RequestId
60+
public bool? _Value
6161
{
6262
get
6363
{
64-
return requestId;
64+
return _value;
6565
}
6666
set
6767
{
68-
requestId = value;
68+
_value = value;
6969
}
7070
}
7171

72-
public string KeyVersionId
72+
public string RequestId
7373
{
7474
get
7575
{
76-
return keyVersionId;
76+
return requestId;
7777
}
7878
set
7979
{
80-
keyVersionId = value;
80+
requestId = value;
8181
}
8282
}
8383
}

aliyun-net-sdk-kms/Kms/Model/V20160120/CancelKeyDeletionResponse.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* under the License.
1818
*/
1919
using System.Collections.Generic;
20-
20+
using Newtonsoft.Json;
2121
using Aliyun.Acs.Core;
2222

2323
namespace Aliyun.Acs.Kms.Model.V20160120

0 commit comments

Comments
 (0)