com.tencentcloudapi.organization.v20210331.models.RoleProvisioningsTask Maven / Gradle / Ivy
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.tencentcloudapi.organization.v20210331.models;
import com.tencentcloudapi.common.AbstractModel;
import com.tencentcloudapi.common.SSEResponseModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class RoleProvisioningsTask extends AbstractModel {
/**
* 任务ID。
*/
@SerializedName("TaskId")
@Expose
private String TaskId;
/**
* 权限配置ID。
*/
@SerializedName("RoleConfigurationId")
@Expose
private String RoleConfigurationId;
/**
* 权限配置名称。
*/
@SerializedName("RoleConfigurationName")
@Expose
private String RoleConfigurationName;
/**
* 授权的集团账号目标账号的UIN
*/
@SerializedName("TargetUin")
@Expose
private Long TargetUin;
/**
* 同步的集团账号目标账号的类型,ManagerUin管理账号;MemberUin成员账号
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("TargetType")
@Expose
private String TargetType;
/**
* 任务类型。
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("TaskType")
@Expose
private String TaskType;
/**
* 任务状态:InProgress: 进行中,Failed: 失败 3:Success: 成功
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("TaskStatus")
@Expose
private String TaskStatus;
/**
* Get 任务ID。
* @return TaskId 任务ID。
*/
public String getTaskId() {
return this.TaskId;
}
/**
* Set 任务ID。
* @param TaskId 任务ID。
*/
public void setTaskId(String TaskId) {
this.TaskId = TaskId;
}
/**
* Get 权限配置ID。
* @return RoleConfigurationId 权限配置ID。
*/
public String getRoleConfigurationId() {
return this.RoleConfigurationId;
}
/**
* Set 权限配置ID。
* @param RoleConfigurationId 权限配置ID。
*/
public void setRoleConfigurationId(String RoleConfigurationId) {
this.RoleConfigurationId = RoleConfigurationId;
}
/**
* Get 权限配置名称。
* @return RoleConfigurationName 权限配置名称。
*/
public String getRoleConfigurationName() {
return this.RoleConfigurationName;
}
/**
* Set 权限配置名称。
* @param RoleConfigurationName 权限配置名称。
*/
public void setRoleConfigurationName(String RoleConfigurationName) {
this.RoleConfigurationName = RoleConfigurationName;
}
/**
* Get 授权的集团账号目标账号的UIN
* @return TargetUin 授权的集团账号目标账号的UIN
*/
public Long getTargetUin() {
return this.TargetUin;
}
/**
* Set 授权的集团账号目标账号的UIN
* @param TargetUin 授权的集团账号目标账号的UIN
*/
public void setTargetUin(Long TargetUin) {
this.TargetUin = TargetUin;
}
/**
* Get 同步的集团账号目标账号的类型,ManagerUin管理账号;MemberUin成员账号
注意:此字段可能返回 null,表示取不到有效值。
* @return TargetType 同步的集团账号目标账号的类型,ManagerUin管理账号;MemberUin成员账号
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getTargetType() {
return this.TargetType;
}
/**
* Set 同步的集团账号目标账号的类型,ManagerUin管理账号;MemberUin成员账号
注意:此字段可能返回 null,表示取不到有效值。
* @param TargetType 同步的集团账号目标账号的类型,ManagerUin管理账号;MemberUin成员账号
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setTargetType(String TargetType) {
this.TargetType = TargetType;
}
/**
* Get 任务类型。
注意:此字段可能返回 null,表示取不到有效值。
* @return TaskType 任务类型。
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getTaskType() {
return this.TaskType;
}
/**
* Set 任务类型。
注意:此字段可能返回 null,表示取不到有效值。
* @param TaskType 任务类型。
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setTaskType(String TaskType) {
this.TaskType = TaskType;
}
/**
* Get 任务状态:InProgress: 进行中,Failed: 失败 3:Success: 成功
注意:此字段可能返回 null,表示取不到有效值。
* @return TaskStatus 任务状态:InProgress: 进行中,Failed: 失败 3:Success: 成功
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getTaskStatus() {
return this.TaskStatus;
}
/**
* Set 任务状态:InProgress: 进行中,Failed: 失败 3:Success: 成功
注意:此字段可能返回 null,表示取不到有效值。
* @param TaskStatus 任务状态:InProgress: 进行中,Failed: 失败 3:Success: 成功
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setTaskStatus(String TaskStatus) {
this.TaskStatus = TaskStatus;
}
public RoleProvisioningsTask() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public RoleProvisioningsTask(RoleProvisioningsTask source) {
if (source.TaskId != null) {
this.TaskId = new String(source.TaskId);
}
if (source.RoleConfigurationId != null) {
this.RoleConfigurationId = new String(source.RoleConfigurationId);
}
if (source.RoleConfigurationName != null) {
this.RoleConfigurationName = new String(source.RoleConfigurationName);
}
if (source.TargetUin != null) {
this.TargetUin = new Long(source.TargetUin);
}
if (source.TargetType != null) {
this.TargetType = new String(source.TargetType);
}
if (source.TaskType != null) {
this.TaskType = new String(source.TaskType);
}
if (source.TaskStatus != null) {
this.TaskStatus = new String(source.TaskStatus);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "TaskId", this.TaskId);
this.setParamSimple(map, prefix + "RoleConfigurationId", this.RoleConfigurationId);
this.setParamSimple(map, prefix + "RoleConfigurationName", this.RoleConfigurationName);
this.setParamSimple(map, prefix + "TargetUin", this.TargetUin);
this.setParamSimple(map, prefix + "TargetType", this.TargetType);
this.setParamSimple(map, prefix + "TaskType", this.TaskType);
this.setParamSimple(map, prefix + "TaskStatus", this.TaskStatus);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy