
com.tencentcloudapi.tdmq.v20200217.models.Cluster 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.tdmq.v20200217.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class Cluster extends AbstractModel{
/**
* 集群Id。
*/
@SerializedName("ClusterId")
@Expose
private String ClusterId;
/**
* 集群名称。
*/
@SerializedName("ClusterName")
@Expose
private String ClusterName;
/**
* 说明信息。
*/
@SerializedName("Remark")
@Expose
private String Remark;
/**
* 接入点数量
*/
@SerializedName("EndPointNum")
@Expose
private Long EndPointNum;
/**
* 创建时间
*/
@SerializedName("CreateTime")
@Expose
private String CreateTime;
/**
* 集群是否健康,1表示健康,0表示异常
*/
@SerializedName("Healthy")
@Expose
private Long Healthy;
/**
* 集群健康信息
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("HealthyInfo")
@Expose
private String HealthyInfo;
/**
* 集群状态,0:创建中,1:正常,2:销毁中,3:已删除,4: 隔离中,5:创建失败,6: 删除失败
*/
@SerializedName("Status")
@Expose
private Long Status;
/**
* 最大命名空间数量
*/
@SerializedName("MaxNamespaceNum")
@Expose
private Long MaxNamespaceNum;
/**
* 最大Topic数量
*/
@SerializedName("MaxTopicNum")
@Expose
private Long MaxTopicNum;
/**
* 最大QPS
*/
@SerializedName("MaxQps")
@Expose
private Long MaxQps;
/**
* 最大消息保留时间,秒为单位
*/
@SerializedName("MessageRetentionTime")
@Expose
private Long MessageRetentionTime;
/**
* 最大存储容量
*/
@SerializedName("MaxStorageCapacity")
@Expose
private Long MaxStorageCapacity;
/**
* 集群版本
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("Version")
@Expose
private String Version;
/**
* 公网访问接入点
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("PublicEndPoint")
@Expose
private String PublicEndPoint;
/**
* VPC访问接入点
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("VpcEndPoint")
@Expose
private String VpcEndPoint;
/**
* 命名空间数量
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("NamespaceNum")
@Expose
private Long NamespaceNum;
/**
* 已使用存储限制,MB为单位
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("UsedStorageBudget")
@Expose
private Long UsedStorageBudget;
/**
* 最大生产消息速率,以条数为单位
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("MaxPublishRateInMessages")
@Expose
private Long MaxPublishRateInMessages;
/**
* 最大推送消息速率,以条数为单位
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("MaxDispatchRateInMessages")
@Expose
private Long MaxDispatchRateInMessages;
/**
* 最大生产消息速率,以字节为单位
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("MaxPublishRateInBytes")
@Expose
private Long MaxPublishRateInBytes;
/**
* 最大推送消息速率,以字节为单位
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("MaxDispatchRateInBytes")
@Expose
private Long MaxDispatchRateInBytes;
/**
* 已创建主题数
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("TopicNum")
@Expose
private Long TopicNum;
/**
* 最长消息延时,以秒为单位
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("MaxMessageDelayInSeconds")
@Expose
private Long MaxMessageDelayInSeconds;
/**
* 是否开启公网访问,不填时默认开启
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("PublicAccessEnabled")
@Expose
private Boolean PublicAccessEnabled;
/**
* 标签
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("Tags")
@Expose
private Tag [] Tags;
/**
* 计费模式:
0: 按量计费
1: 包年包月
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("PayMode")
@Expose
private Long PayMode;
/**
* Get 集群Id。
* @return ClusterId 集群Id。
*/
public String getClusterId() {
return this.ClusterId;
}
/**
* Set 集群Id。
* @param ClusterId 集群Id。
*/
public void setClusterId(String ClusterId) {
this.ClusterId = ClusterId;
}
/**
* Get 集群名称。
* @return ClusterName 集群名称。
*/
public String getClusterName() {
return this.ClusterName;
}
/**
* Set 集群名称。
* @param ClusterName 集群名称。
*/
public void setClusterName(String ClusterName) {
this.ClusterName = ClusterName;
}
/**
* Get 说明信息。
* @return Remark 说明信息。
*/
public String getRemark() {
return this.Remark;
}
/**
* Set 说明信息。
* @param Remark 说明信息。
*/
public void setRemark(String Remark) {
this.Remark = Remark;
}
/**
* Get 接入点数量
* @return EndPointNum 接入点数量
*/
public Long getEndPointNum() {
return this.EndPointNum;
}
/**
* Set 接入点数量
* @param EndPointNum 接入点数量
*/
public void setEndPointNum(Long EndPointNum) {
this.EndPointNum = EndPointNum;
}
/**
* Get 创建时间
* @return CreateTime 创建时间
*/
public String getCreateTime() {
return this.CreateTime;
}
/**
* Set 创建时间
* @param CreateTime 创建时间
*/
public void setCreateTime(String CreateTime) {
this.CreateTime = CreateTime;
}
/**
* Get 集群是否健康,1表示健康,0表示异常
* @return Healthy 集群是否健康,1表示健康,0表示异常
*/
public Long getHealthy() {
return this.Healthy;
}
/**
* Set 集群是否健康,1表示健康,0表示异常
* @param Healthy 集群是否健康,1表示健康,0表示异常
*/
public void setHealthy(Long Healthy) {
this.Healthy = Healthy;
}
/**
* Get 集群健康信息
注意:此字段可能返回 null,表示取不到有效值。
* @return HealthyInfo 集群健康信息
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getHealthyInfo() {
return this.HealthyInfo;
}
/**
* Set 集群健康信息
注意:此字段可能返回 null,表示取不到有效值。
* @param HealthyInfo 集群健康信息
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setHealthyInfo(String HealthyInfo) {
this.HealthyInfo = HealthyInfo;
}
/**
* Get 集群状态,0:创建中,1:正常,2:销毁中,3:已删除,4: 隔离中,5:创建失败,6: 删除失败
* @return Status 集群状态,0:创建中,1:正常,2:销毁中,3:已删除,4: 隔离中,5:创建失败,6: 删除失败
*/
public Long getStatus() {
return this.Status;
}
/**
* Set 集群状态,0:创建中,1:正常,2:销毁中,3:已删除,4: 隔离中,5:创建失败,6: 删除失败
* @param Status 集群状态,0:创建中,1:正常,2:销毁中,3:已删除,4: 隔离中,5:创建失败,6: 删除失败
*/
public void setStatus(Long Status) {
this.Status = Status;
}
/**
* Get 最大命名空间数量
* @return MaxNamespaceNum 最大命名空间数量
*/
public Long getMaxNamespaceNum() {
return this.MaxNamespaceNum;
}
/**
* Set 最大命名空间数量
* @param MaxNamespaceNum 最大命名空间数量
*/
public void setMaxNamespaceNum(Long MaxNamespaceNum) {
this.MaxNamespaceNum = MaxNamespaceNum;
}
/**
* Get 最大Topic数量
* @return MaxTopicNum 最大Topic数量
*/
public Long getMaxTopicNum() {
return this.MaxTopicNum;
}
/**
* Set 最大Topic数量
* @param MaxTopicNum 最大Topic数量
*/
public void setMaxTopicNum(Long MaxTopicNum) {
this.MaxTopicNum = MaxTopicNum;
}
/**
* Get 最大QPS
* @return MaxQps 最大QPS
*/
public Long getMaxQps() {
return this.MaxQps;
}
/**
* Set 最大QPS
* @param MaxQps 最大QPS
*/
public void setMaxQps(Long MaxQps) {
this.MaxQps = MaxQps;
}
/**
* Get 最大消息保留时间,秒为单位
* @return MessageRetentionTime 最大消息保留时间,秒为单位
*/
public Long getMessageRetentionTime() {
return this.MessageRetentionTime;
}
/**
* Set 最大消息保留时间,秒为单位
* @param MessageRetentionTime 最大消息保留时间,秒为单位
*/
public void setMessageRetentionTime(Long MessageRetentionTime) {
this.MessageRetentionTime = MessageRetentionTime;
}
/**
* Get 最大存储容量
* @return MaxStorageCapacity 最大存储容量
*/
public Long getMaxStorageCapacity() {
return this.MaxStorageCapacity;
}
/**
* Set 最大存储容量
* @param MaxStorageCapacity 最大存储容量
*/
public void setMaxStorageCapacity(Long MaxStorageCapacity) {
this.MaxStorageCapacity = MaxStorageCapacity;
}
/**
* Get 集群版本
注意:此字段可能返回 null,表示取不到有效值。
* @return Version 集群版本
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getVersion() {
return this.Version;
}
/**
* Set 集群版本
注意:此字段可能返回 null,表示取不到有效值。
* @param Version 集群版本
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setVersion(String Version) {
this.Version = Version;
}
/**
* Get 公网访问接入点
注意:此字段可能返回 null,表示取不到有效值。
* @return PublicEndPoint 公网访问接入点
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getPublicEndPoint() {
return this.PublicEndPoint;
}
/**
* Set 公网访问接入点
注意:此字段可能返回 null,表示取不到有效值。
* @param PublicEndPoint 公网访问接入点
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setPublicEndPoint(String PublicEndPoint) {
this.PublicEndPoint = PublicEndPoint;
}
/**
* Get VPC访问接入点
注意:此字段可能返回 null,表示取不到有效值。
* @return VpcEndPoint VPC访问接入点
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getVpcEndPoint() {
return this.VpcEndPoint;
}
/**
* Set VPC访问接入点
注意:此字段可能返回 null,表示取不到有效值。
* @param VpcEndPoint VPC访问接入点
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setVpcEndPoint(String VpcEndPoint) {
this.VpcEndPoint = VpcEndPoint;
}
/**
* Get 命名空间数量
注意:此字段可能返回 null,表示取不到有效值。
* @return NamespaceNum 命名空间数量
注意:此字段可能返回 null,表示取不到有效值。
*/
public Long getNamespaceNum() {
return this.NamespaceNum;
}
/**
* Set 命名空间数量
注意:此字段可能返回 null,表示取不到有效值。
* @param NamespaceNum 命名空间数量
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setNamespaceNum(Long NamespaceNum) {
this.NamespaceNum = NamespaceNum;
}
/**
* Get 已使用存储限制,MB为单位
注意:此字段可能返回 null,表示取不到有效值。
* @return UsedStorageBudget 已使用存储限制,MB为单位
注意:此字段可能返回 null,表示取不到有效值。
*/
public Long getUsedStorageBudget() {
return this.UsedStorageBudget;
}
/**
* Set 已使用存储限制,MB为单位
注意:此字段可能返回 null,表示取不到有效值。
* @param UsedStorageBudget 已使用存储限制,MB为单位
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setUsedStorageBudget(Long UsedStorageBudget) {
this.UsedStorageBudget = UsedStorageBudget;
}
/**
* Get 最大生产消息速率,以条数为单位
注意:此字段可能返回 null,表示取不到有效值。
* @return MaxPublishRateInMessages 最大生产消息速率,以条数为单位
注意:此字段可能返回 null,表示取不到有效值。
*/
public Long getMaxPublishRateInMessages() {
return this.MaxPublishRateInMessages;
}
/**
* Set 最大生产消息速率,以条数为单位
注意:此字段可能返回 null,表示取不到有效值。
* @param MaxPublishRateInMessages 最大生产消息速率,以条数为单位
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setMaxPublishRateInMessages(Long MaxPublishRateInMessages) {
this.MaxPublishRateInMessages = MaxPublishRateInMessages;
}
/**
* Get 最大推送消息速率,以条数为单位
注意:此字段可能返回 null,表示取不到有效值。
* @return MaxDispatchRateInMessages 最大推送消息速率,以条数为单位
注意:此字段可能返回 null,表示取不到有效值。
*/
public Long getMaxDispatchRateInMessages() {
return this.MaxDispatchRateInMessages;
}
/**
* Set 最大推送消息速率,以条数为单位
注意:此字段可能返回 null,表示取不到有效值。
* @param MaxDispatchRateInMessages 最大推送消息速率,以条数为单位
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setMaxDispatchRateInMessages(Long MaxDispatchRateInMessages) {
this.MaxDispatchRateInMessages = MaxDispatchRateInMessages;
}
/**
* Get 最大生产消息速率,以字节为单位
注意:此字段可能返回 null,表示取不到有效值。
* @return MaxPublishRateInBytes 最大生产消息速率,以字节为单位
注意:此字段可能返回 null,表示取不到有效值。
*/
public Long getMaxPublishRateInBytes() {
return this.MaxPublishRateInBytes;
}
/**
* Set 最大生产消息速率,以字节为单位
注意:此字段可能返回 null,表示取不到有效值。
* @param MaxPublishRateInBytes 最大生产消息速率,以字节为单位
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setMaxPublishRateInBytes(Long MaxPublishRateInBytes) {
this.MaxPublishRateInBytes = MaxPublishRateInBytes;
}
/**
* Get 最大推送消息速率,以字节为单位
注意:此字段可能返回 null,表示取不到有效值。
* @return MaxDispatchRateInBytes 最大推送消息速率,以字节为单位
注意:此字段可能返回 null,表示取不到有效值。
*/
public Long getMaxDispatchRateInBytes() {
return this.MaxDispatchRateInBytes;
}
/**
* Set 最大推送消息速率,以字节为单位
注意:此字段可能返回 null,表示取不到有效值。
* @param MaxDispatchRateInBytes 最大推送消息速率,以字节为单位
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setMaxDispatchRateInBytes(Long MaxDispatchRateInBytes) {
this.MaxDispatchRateInBytes = MaxDispatchRateInBytes;
}
/**
* Get 已创建主题数
注意:此字段可能返回 null,表示取不到有效值。
* @return TopicNum 已创建主题数
注意:此字段可能返回 null,表示取不到有效值。
*/
public Long getTopicNum() {
return this.TopicNum;
}
/**
* Set 已创建主题数
注意:此字段可能返回 null,表示取不到有效值。
* @param TopicNum 已创建主题数
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setTopicNum(Long TopicNum) {
this.TopicNum = TopicNum;
}
/**
* Get 最长消息延时,以秒为单位
注意:此字段可能返回 null,表示取不到有效值。
* @return MaxMessageDelayInSeconds 最长消息延时,以秒为单位
注意:此字段可能返回 null,表示取不到有效值。
*/
public Long getMaxMessageDelayInSeconds() {
return this.MaxMessageDelayInSeconds;
}
/**
* Set 最长消息延时,以秒为单位
注意:此字段可能返回 null,表示取不到有效值。
* @param MaxMessageDelayInSeconds 最长消息延时,以秒为单位
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setMaxMessageDelayInSeconds(Long MaxMessageDelayInSeconds) {
this.MaxMessageDelayInSeconds = MaxMessageDelayInSeconds;
}
/**
* Get 是否开启公网访问,不填时默认开启
注意:此字段可能返回 null,表示取不到有效值。
* @return PublicAccessEnabled 是否开启公网访问,不填时默认开启
注意:此字段可能返回 null,表示取不到有效值。
*/
public Boolean getPublicAccessEnabled() {
return this.PublicAccessEnabled;
}
/**
* Set 是否开启公网访问,不填时默认开启
注意:此字段可能返回 null,表示取不到有效值。
* @param PublicAccessEnabled 是否开启公网访问,不填时默认开启
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setPublicAccessEnabled(Boolean PublicAccessEnabled) {
this.PublicAccessEnabled = PublicAccessEnabled;
}
/**
* Get 标签
注意:此字段可能返回 null,表示取不到有效值。
* @return Tags 标签
注意:此字段可能返回 null,表示取不到有效值。
*/
public Tag [] getTags() {
return this.Tags;
}
/**
* Set 标签
注意:此字段可能返回 null,表示取不到有效值。
* @param Tags 标签
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setTags(Tag [] Tags) {
this.Tags = Tags;
}
/**
* Get 计费模式:
0: 按量计费
1: 包年包月
注意:此字段可能返回 null,表示取不到有效值。
* @return PayMode 计费模式:
0: 按量计费
1: 包年包月
注意:此字段可能返回 null,表示取不到有效值。
*/
public Long getPayMode() {
return this.PayMode;
}
/**
* Set 计费模式:
0: 按量计费
1: 包年包月
注意:此字段可能返回 null,表示取不到有效值。
* @param PayMode 计费模式:
0: 按量计费
1: 包年包月
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setPayMode(Long PayMode) {
this.PayMode = PayMode;
}
public Cluster() {
}
/**
* 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 Cluster(Cluster source) {
if (source.ClusterId != null) {
this.ClusterId = new String(source.ClusterId);
}
if (source.ClusterName != null) {
this.ClusterName = new String(source.ClusterName);
}
if (source.Remark != null) {
this.Remark = new String(source.Remark);
}
if (source.EndPointNum != null) {
this.EndPointNum = new Long(source.EndPointNum);
}
if (source.CreateTime != null) {
this.CreateTime = new String(source.CreateTime);
}
if (source.Healthy != null) {
this.Healthy = new Long(source.Healthy);
}
if (source.HealthyInfo != null) {
this.HealthyInfo = new String(source.HealthyInfo);
}
if (source.Status != null) {
this.Status = new Long(source.Status);
}
if (source.MaxNamespaceNum != null) {
this.MaxNamespaceNum = new Long(source.MaxNamespaceNum);
}
if (source.MaxTopicNum != null) {
this.MaxTopicNum = new Long(source.MaxTopicNum);
}
if (source.MaxQps != null) {
this.MaxQps = new Long(source.MaxQps);
}
if (source.MessageRetentionTime != null) {
this.MessageRetentionTime = new Long(source.MessageRetentionTime);
}
if (source.MaxStorageCapacity != null) {
this.MaxStorageCapacity = new Long(source.MaxStorageCapacity);
}
if (source.Version != null) {
this.Version = new String(source.Version);
}
if (source.PublicEndPoint != null) {
this.PublicEndPoint = new String(source.PublicEndPoint);
}
if (source.VpcEndPoint != null) {
this.VpcEndPoint = new String(source.VpcEndPoint);
}
if (source.NamespaceNum != null) {
this.NamespaceNum = new Long(source.NamespaceNum);
}
if (source.UsedStorageBudget != null) {
this.UsedStorageBudget = new Long(source.UsedStorageBudget);
}
if (source.MaxPublishRateInMessages != null) {
this.MaxPublishRateInMessages = new Long(source.MaxPublishRateInMessages);
}
if (source.MaxDispatchRateInMessages != null) {
this.MaxDispatchRateInMessages = new Long(source.MaxDispatchRateInMessages);
}
if (source.MaxPublishRateInBytes != null) {
this.MaxPublishRateInBytes = new Long(source.MaxPublishRateInBytes);
}
if (source.MaxDispatchRateInBytes != null) {
this.MaxDispatchRateInBytes = new Long(source.MaxDispatchRateInBytes);
}
if (source.TopicNum != null) {
this.TopicNum = new Long(source.TopicNum);
}
if (source.MaxMessageDelayInSeconds != null) {
this.MaxMessageDelayInSeconds = new Long(source.MaxMessageDelayInSeconds);
}
if (source.PublicAccessEnabled != null) {
this.PublicAccessEnabled = new Boolean(source.PublicAccessEnabled);
}
if (source.Tags != null) {
this.Tags = new Tag[source.Tags.length];
for (int i = 0; i < source.Tags.length; i++) {
this.Tags[i] = new Tag(source.Tags[i]);
}
}
if (source.PayMode != null) {
this.PayMode = new Long(source.PayMode);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "ClusterId", this.ClusterId);
this.setParamSimple(map, prefix + "ClusterName", this.ClusterName);
this.setParamSimple(map, prefix + "Remark", this.Remark);
this.setParamSimple(map, prefix + "EndPointNum", this.EndPointNum);
this.setParamSimple(map, prefix + "CreateTime", this.CreateTime);
this.setParamSimple(map, prefix + "Healthy", this.Healthy);
this.setParamSimple(map, prefix + "HealthyInfo", this.HealthyInfo);
this.setParamSimple(map, prefix + "Status", this.Status);
this.setParamSimple(map, prefix + "MaxNamespaceNum", this.MaxNamespaceNum);
this.setParamSimple(map, prefix + "MaxTopicNum", this.MaxTopicNum);
this.setParamSimple(map, prefix + "MaxQps", this.MaxQps);
this.setParamSimple(map, prefix + "MessageRetentionTime", this.MessageRetentionTime);
this.setParamSimple(map, prefix + "MaxStorageCapacity", this.MaxStorageCapacity);
this.setParamSimple(map, prefix + "Version", this.Version);
this.setParamSimple(map, prefix + "PublicEndPoint", this.PublicEndPoint);
this.setParamSimple(map, prefix + "VpcEndPoint", this.VpcEndPoint);
this.setParamSimple(map, prefix + "NamespaceNum", this.NamespaceNum);
this.setParamSimple(map, prefix + "UsedStorageBudget", this.UsedStorageBudget);
this.setParamSimple(map, prefix + "MaxPublishRateInMessages", this.MaxPublishRateInMessages);
this.setParamSimple(map, prefix + "MaxDispatchRateInMessages", this.MaxDispatchRateInMessages);
this.setParamSimple(map, prefix + "MaxPublishRateInBytes", this.MaxPublishRateInBytes);
this.setParamSimple(map, prefix + "MaxDispatchRateInBytes", this.MaxDispatchRateInBytes);
this.setParamSimple(map, prefix + "TopicNum", this.TopicNum);
this.setParamSimple(map, prefix + "MaxMessageDelayInSeconds", this.MaxMessageDelayInSeconds);
this.setParamSimple(map, prefix + "PublicAccessEnabled", this.PublicAccessEnabled);
this.setParamArrayObj(map, prefix + "Tags.", this.Tags);
this.setParamSimple(map, prefix + "PayMode", this.PayMode);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy