Skip to content

Commit 70471ea

Browse files
committed
Add API Ram meta.
1 parent 1657b38 commit 70471ea

File tree

149 files changed

+3347
-3315
lines changed

Some content is hidden

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

149 files changed

+3347
-3315
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-09-18 Version: 2.1.9
2+
- Add API Ram meta.
3+
14
2024-08-30 Version: 2.15.5
25
- Generated 2016-01-20 for `Kms`.
36

aliyun-net-sdk-quickbi-public/Quickbi_public/Model/V20220101/AddDataLevelPermissionWhiteListRequest.cs

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ public AddDataLevelPermissionWhiteListRequest()
3737

3838
private string targetType;
3939

40+
private string cubeId;
41+
4042
private string targetIds;
4143

4244
private string ruleType;
4345

4446
private string operateType;
4547

46-
private string cubeId;
47-
4848
public string TargetType
4949
{
5050
get
@@ -58,6 +58,19 @@ public string TargetType
5858
}
5959
}
6060

61+
public string CubeId
62+
{
63+
get
64+
{
65+
return cubeId;
66+
}
67+
set
68+
{
69+
cubeId = value;
70+
DictionaryUtil.Add(QueryParameters, "CubeId", value);
71+
}
72+
}
73+
6174
public string TargetIds
6275
{
6376
get
@@ -97,19 +110,6 @@ public string OperateType
97110
}
98111
}
99112

100-
public string CubeId
101-
{
102-
get
103-
{
104-
return cubeId;
105-
}
106-
set
107-
{
108-
cubeId = value;
109-
DictionaryUtil.Add(QueryParameters, "CubeId", value);
110-
}
111-
}
112-
113113
public override bool CheckShowJsonItemName()
114114
{
115115
return false;

aliyun-net-sdk-quickbi-public/Quickbi_public/Model/V20220101/AddShareReportRequest.cs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -35,39 +35,39 @@ public AddShareReportRequest()
3535
Method = MethodType.POST;
3636
}
3737

38-
private int? authPoint;
39-
4038
private long? expireDate;
4139

40+
private int? authPoint;
41+
4242
private int? shareToType;
4343

4444
private string worksId;
4545

4646
private string shareToId;
4747

48-
public int? AuthPoint
48+
public long? ExpireDate
4949
{
5050
get
5151
{
52-
return authPoint;
52+
return expireDate;
5353
}
5454
set
5555
{
56-
authPoint = value;
57-
DictionaryUtil.Add(QueryParameters, "AuthPoint", value.ToString());
56+
expireDate = value;
57+
DictionaryUtil.Add(QueryParameters, "ExpireDate", value.ToString());
5858
}
5959
}
6060

61-
public long? ExpireDate
61+
public int? AuthPoint
6262
{
6363
get
6464
{
65-
return expireDate;
65+
return authPoint;
6666
}
6767
set
6868
{
69-
expireDate = value;
70-
DictionaryUtil.Add(QueryParameters, "ExpireDate", value.ToString());
69+
authPoint = value;
70+
DictionaryUtil.Add(QueryParameters, "AuthPoint", value.ToString());
7171
}
7272
}
7373

aliyun-net-sdk-quickbi-public/Quickbi_public/Model/V20220101/AddUserRequest.cs

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ public AddUserRequest()
3737

3838
private bool? adminUser;
3939

40-
private int? userType;
41-
4240
private string roleIds;
4341

4442
private string accountName;
@@ -47,6 +45,8 @@ public AddUserRequest()
4745

4846
private bool? authAdminUser;
4947

48+
private int? userType;
49+
5050
public bool? AdminUser
5151
{
5252
get
@@ -60,19 +60,6 @@ public bool? AdminUser
6060
}
6161
}
6262

63-
public int? UserType
64-
{
65-
get
66-
{
67-
return userType;
68-
}
69-
set
70-
{
71-
userType = value;
72-
DictionaryUtil.Add(QueryParameters, "UserType", value.ToString());
73-
}
74-
}
75-
7663
public string RoleIds
7764
{
7865
get
@@ -125,6 +112,19 @@ public bool? AuthAdminUser
125112
}
126113
}
127114

115+
public int? UserType
116+
{
117+
get
118+
{
119+
return userType;
120+
}
121+
set
122+
{
123+
userType = value;
124+
DictionaryUtil.Add(QueryParameters, "UserType", value.ToString());
125+
}
126+
}
127+
128128
public override bool CheckShowJsonItemName()
129129
{
130130
return false;

aliyun-net-sdk-quickbi-public/Quickbi_public/Model/V20220101/AddUserResponse.cs

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -25,33 +25,33 @@ namespace Aliyun.Acs.quickbi_public.Model.V20220101
2525
public class AddUserResponse : AcsResponse
2626
{
2727

28-
private bool? success;
29-
3028
private string requestId;
3129

30+
private bool? success;
31+
3232
private AddUser_Result result;
3333

34-
public bool? Success
34+
public string RequestId
3535
{
3636
get
3737
{
38-
return success;
38+
return requestId;
3939
}
4040
set
4141
{
42-
success = value;
42+
requestId = value;
4343
}
4444
}
4545

46-
public string RequestId
46+
public bool? Success
4747
{
4848
get
4949
{
50-
return requestId;
50+
return success;
5151
}
5252
set
5353
{
54-
requestId = value;
54+
success = value;
5555
}
5656
}
5757

@@ -70,69 +70,69 @@ public AddUser_Result Result
7070
public class AddUser_Result
7171
{
7272

73-
private int? userType;
74-
75-
private string email;
73+
private string accountName;
7674

77-
private string userId;
75+
private bool? adminUser;
7876

7977
private bool? authAdminUser;
8078

81-
private string nickName;
79+
private string email;
8280

83-
private bool? adminUser;
81+
private string nickName;
8482

8583
private string phone;
8684

87-
private string accountName;
85+
private string userId;
86+
87+
private int? userType;
8888

8989
private List<string> roleIdList;
9090

91-
public int? UserType
91+
public string AccountName
9292
{
9393
get
9494
{
95-
return userType;
95+
return accountName;
9696
}
9797
set
9898
{
99-
userType = value;
99+
accountName = value;
100100
}
101101
}
102102

103-
public string Email
103+
public bool? AdminUser
104104
{
105105
get
106106
{
107-
return email;
107+
return adminUser;
108108
}
109109
set
110110
{
111-
email = value;
111+
adminUser = value;
112112
}
113113
}
114114

115-
public string UserId
115+
public bool? AuthAdminUser
116116
{
117117
get
118118
{
119-
return userId;
119+
return authAdminUser;
120120
}
121121
set
122122
{
123-
userId = value;
123+
authAdminUser = value;
124124
}
125125
}
126126

127-
public bool? AuthAdminUser
127+
public string Email
128128
{
129129
get
130130
{
131-
return authAdminUser;
131+
return email;
132132
}
133133
set
134134
{
135-
authAdminUser = value;
135+
email = value;
136136
}
137137
}
138138

@@ -148,39 +148,39 @@ public string NickName
148148
}
149149
}
150150

151-
public bool? AdminUser
151+
public string Phone
152152
{
153153
get
154154
{
155-
return adminUser;
155+
return phone;
156156
}
157157
set
158158
{
159-
adminUser = value;
159+
phone = value;
160160
}
161161
}
162162

163-
public string Phone
163+
public string UserId
164164
{
165165
get
166166
{
167-
return phone;
167+
return userId;
168168
}
169169
set
170170
{
171-
phone = value;
171+
userId = value;
172172
}
173173
}
174174

175-
public string AccountName
175+
public int? UserType
176176
{
177177
get
178178
{
179-
return accountName;
179+
return userType;
180180
}
181181
set
182182
{
183-
accountName = value;
183+
userType = value;
184184
}
185185
}
186186

aliyun-net-sdk-quickbi-public/Quickbi_public/Model/V20220101/AddUserTagMetaRequest.cs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -35,33 +35,33 @@ public AddUserTagMetaRequest()
3535
Method = MethodType.POST;
3636
}
3737

38-
private string tagDescription;
39-
4038
private string tagName;
4139

42-
public string TagDescription
40+
private string tagDescription;
41+
42+
public string TagName
4343
{
4444
get
4545
{
46-
return tagDescription;
46+
return tagName;
4747
}
4848
set
4949
{
50-
tagDescription = value;
51-
DictionaryUtil.Add(QueryParameters, "TagDescription", value);
50+
tagName = value;
51+
DictionaryUtil.Add(QueryParameters, "TagName", value);
5252
}
5353
}
5454

55-
public string TagName
55+
public string TagDescription
5656
{
5757
get
5858
{
59-
return tagName;
59+
return tagDescription;
6060
}
6161
set
6262
{
63-
tagName = value;
64-
DictionaryUtil.Add(QueryParameters, "TagName", value);
63+
tagDescription = value;
64+
DictionaryUtil.Add(QueryParameters, "TagDescription", value);
6565
}
6666
}
6767

0 commit comments

Comments
 (0)