Skip to content

Commit

Permalink
Add API Ram meta.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Sep 18, 2024
1 parent 1657b38 commit 70471ea
Show file tree
Hide file tree
Showing 149 changed files with 3,347 additions and 3,315 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-09-18 Version: 2.1.9
- Add API Ram meta.

2024-08-30 Version: 2.15.5
- Generated 2016-01-20 for `Kms`.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ public AddDataLevelPermissionWhiteListRequest()

private string targetType;

private string cubeId;

private string targetIds;

private string ruleType;

private string operateType;

private string cubeId;

public string TargetType
{
get
Expand All @@ -58,6 +58,19 @@ public string TargetType
}
}

public string CubeId
{
get
{
return cubeId;
}
set
{
cubeId = value;
DictionaryUtil.Add(QueryParameters, "CubeId", value);
}
}

public string TargetIds
{
get
Expand Down Expand Up @@ -97,19 +110,6 @@ public string OperateType
}
}

public string CubeId
{
get
{
return cubeId;
}
set
{
cubeId = value;
DictionaryUtil.Add(QueryParameters, "CubeId", value);
}
}

public override bool CheckShowJsonItemName()
{
return false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,39 +35,39 @@ public AddShareReportRequest()
Method = MethodType.POST;
}

private int? authPoint;

private long? expireDate;

private int? authPoint;

private int? shareToType;

private string worksId;

private string shareToId;

public int? AuthPoint
public long? ExpireDate
{
get
{
return authPoint;
return expireDate;
}
set
{
authPoint = value;
DictionaryUtil.Add(QueryParameters, "AuthPoint", value.ToString());
expireDate = value;
DictionaryUtil.Add(QueryParameters, "ExpireDate", value.ToString());
}
}

public long? ExpireDate
public int? AuthPoint
{
get
{
return expireDate;
return authPoint;
}
set
{
expireDate = value;
DictionaryUtil.Add(QueryParameters, "ExpireDate", value.ToString());
authPoint = value;
DictionaryUtil.Add(QueryParameters, "AuthPoint", value.ToString());
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ public AddUserRequest()

private bool? adminUser;

private int? userType;

private string roleIds;

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

private bool? authAdminUser;

private int? userType;

public bool? AdminUser
{
get
Expand All @@ -60,19 +60,6 @@ public bool? AdminUser
}
}

public int? UserType
{
get
{
return userType;
}
set
{
userType = value;
DictionaryUtil.Add(QueryParameters, "UserType", value.ToString());
}
}

public string RoleIds
{
get
Expand Down Expand Up @@ -125,6 +112,19 @@ public bool? AuthAdminUser
}
}

public int? UserType
{
get
{
return userType;
}
set
{
userType = value;
DictionaryUtil.Add(QueryParameters, "UserType", value.ToString());
}
}

public override bool CheckShowJsonItemName()
{
return false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,33 +25,33 @@ namespace Aliyun.Acs.quickbi_public.Model.V20220101
public class AddUserResponse : AcsResponse
{

private bool? success;

private string requestId;

private bool? success;

private AddUser_Result result;

public bool? Success
public string RequestId
{
get
{
return success;
return requestId;
}
set
{
success = value;
requestId = value;
}
}

public string RequestId
public bool? Success
{
get
{
return requestId;
return success;
}
set
{
requestId = value;
success = value;
}
}

Expand All @@ -70,69 +70,69 @@ public AddUser_Result Result
public class AddUser_Result
{

private int? userType;

private string email;
private string accountName;

private string userId;
private bool? adminUser;

private bool? authAdminUser;

private string nickName;
private string email;

private bool? adminUser;
private string nickName;

private string phone;

private string accountName;
private string userId;

private int? userType;

private List<string> roleIdList;

public int? UserType
public string AccountName
{
get
{
return userType;
return accountName;
}
set
{
userType = value;
accountName = value;
}
}

public string Email
public bool? AdminUser
{
get
{
return email;
return adminUser;
}
set
{
email = value;
adminUser = value;
}
}

public string UserId
public bool? AuthAdminUser
{
get
{
return userId;
return authAdminUser;
}
set
{
userId = value;
authAdminUser = value;
}
}

public bool? AuthAdminUser
public string Email
{
get
{
return authAdminUser;
return email;
}
set
{
authAdminUser = value;
email = value;
}
}

Expand All @@ -148,39 +148,39 @@ public string NickName
}
}

public bool? AdminUser
public string Phone
{
get
{
return adminUser;
return phone;
}
set
{
adminUser = value;
phone = value;
}
}

public string Phone
public string UserId
{
get
{
return phone;
return userId;
}
set
{
phone = value;
userId = value;
}
}

public string AccountName
public int? UserType
{
get
{
return accountName;
return userType;
}
set
{
accountName = value;
userType = value;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,33 +35,33 @@ public AddUserTagMetaRequest()
Method = MethodType.POST;
}

private string tagDescription;

private string tagName;

public string TagDescription
private string tagDescription;

public string TagName
{
get
{
return tagDescription;
return tagName;
}
set
{
tagDescription = value;
DictionaryUtil.Add(QueryParameters, "TagDescription", value);
tagName = value;
DictionaryUtil.Add(QueryParameters, "TagName", value);
}
}

public string TagName
public string TagDescription
{
get
{
return tagName;
return tagDescription;
}
set
{
tagName = value;
DictionaryUtil.Add(QueryParameters, "TagName", value);
tagDescription = value;
DictionaryUtil.Add(QueryParameters, "TagDescription", value);
}
}

Expand Down
Loading

0 comments on commit 70471ea

Please sign in to comment.