
com.aliyuncs.csas.model.v20230120.GetPrivateAccessPolicyResponse Maven / Gradle / Ivy
/*
* 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.aliyuncs.csas.model.v20230120;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.csas.transform.v20230120.GetPrivateAccessPolicyResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetPrivateAccessPolicyResponse extends AcsResponse {
private String requestId;
private Policy policy;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Policy getPolicy() {
return this.policy;
}
public void setPolicy(Policy policy) {
this.policy = policy;
}
public static class Policy {
private String policyId;
private String name;
private String description;
private String policyAction;
private Integer priority;
private String status;
private String createTime;
private String userGroupMode;
private String applicationType;
private List customUserAttributes;
private List userGroupIds;
private List applicationIds;
private List tagIds;
public String getPolicyId() {
return this.policyId;
}
public void setPolicyId(String policyId) {
this.policyId = policyId;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getPolicyAction() {
return this.policyAction;
}
public void setPolicyAction(String policyAction) {
this.policyAction = policyAction;
}
public Integer getPriority() {
return this.priority;
}
public void setPriority(Integer priority) {
this.priority = priority;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getCreateTime() {
return this.createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getUserGroupMode() {
return this.userGroupMode;
}
public void setUserGroupMode(String userGroupMode) {
this.userGroupMode = userGroupMode;
}
public String getApplicationType() {
return this.applicationType;
}
public void setApplicationType(String applicationType) {
this.applicationType = applicationType;
}
public List getCustomUserAttributes() {
return this.customUserAttributes;
}
public void setCustomUserAttributes(List customUserAttributes) {
this.customUserAttributes = customUserAttributes;
}
public List getUserGroupIds() {
return this.userGroupIds;
}
public void setUserGroupIds(List userGroupIds) {
this.userGroupIds = userGroupIds;
}
public List getApplicationIds() {
return this.applicationIds;
}
public void setApplicationIds(List applicationIds) {
this.applicationIds = applicationIds;
}
public List getTagIds() {
return this.tagIds;
}
public void setTagIds(List tagIds) {
this.tagIds = tagIds;
}
public static class CustomUserAttribute {
private String userGroupType;
private String relation;
private String value;
private Integer idpId;
public String getUserGroupType() {
return this.userGroupType;
}
public void setUserGroupType(String userGroupType) {
this.userGroupType = userGroupType;
}
public String getRelation() {
return this.relation;
}
public void setRelation(String relation) {
this.relation = relation;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
public Integer getIdpId() {
return this.idpId;
}
public void setIdpId(Integer idpId) {
this.idpId = idpId;
}
}
}
@Override
public GetPrivateAccessPolicyResponse getInstance(UnmarshallerContext context) {
return GetPrivateAccessPolicyResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy