com.aliyun.r_kvstore20150101.models.DescribeSecurityGroupConfigurationRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of r_kvstore20150101 Show documentation
Show all versions of r_kvstore20150101 Show documentation
Alibaba Cloud R-kvstore (20150101) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.r_kvstore20150101.models;
import com.aliyun.tea.*;
public class DescribeSecurityGroupConfigurationRequest extends TeaModel {
/**
* The ID of the instance.
* This parameter is required.
*
* example:
* r-bp1zxszhcgatnx****
*/
@NameInMap("InstanceId")
public String instanceId;
@NameInMap("OwnerAccount")
public String ownerAccount;
@NameInMap("OwnerId")
public Long ownerId;
@NameInMap("ResourceOwnerAccount")
public String resourceOwnerAccount;
@NameInMap("ResourceOwnerId")
public Long resourceOwnerId;
@NameInMap("SecurityToken")
public String securityToken;
public static DescribeSecurityGroupConfigurationRequest build(java.util.Map map) throws Exception {
DescribeSecurityGroupConfigurationRequest self = new DescribeSecurityGroupConfigurationRequest();
return TeaModel.build(map, self);
}
public DescribeSecurityGroupConfigurationRequest setInstanceId(String instanceId) {
this.instanceId = instanceId;
return this;
}
public String getInstanceId() {
return this.instanceId;
}
public DescribeSecurityGroupConfigurationRequest setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
return this;
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public DescribeSecurityGroupConfigurationRequest setOwnerId(Long ownerId) {
this.ownerId = ownerId;
return this;
}
public Long getOwnerId() {
return this.ownerId;
}
public DescribeSecurityGroupConfigurationRequest setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
return this;
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public DescribeSecurityGroupConfigurationRequest setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
return this;
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public DescribeSecurityGroupConfigurationRequest setSecurityToken(String securityToken) {
this.securityToken = securityToken;
return this;
}
public String getSecurityToken() {
return this.securityToken;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy