lib/v20180525/models.rb in tencentcloud-sdk-tke-3.0.533 vs lib/v20180525/models.rb in tencentcloud-sdk-tke-3.0.534

- old
+ new

@@ -248,22 +248,26 @@ # @type ClusterId: String # @param SubnetIds: 为集群容器网络增加的子网列表 # @type SubnetIds: Array # @param VpcId: 集群所属的VPC的ID # @type VpcId: String + # @param SkipAddingNonMasqueradeCIDRs: 是否同步添加 vpc 网段到 ip-masq-agent-config 的 NonMasqueradeCIDRs 字段,默认 false 会同步添加 + # @type SkipAddingNonMasqueradeCIDRs: Boolean - attr_accessor :ClusterId, :SubnetIds, :VpcId + attr_accessor :ClusterId, :SubnetIds, :VpcId, :SkipAddingNonMasqueradeCIDRs - def initialize(clusterid=nil, subnetids=nil, vpcid=nil) + def initialize(clusterid=nil, subnetids=nil, vpcid=nil, skipaddingnonmasqueradecidrs=nil) @ClusterId = clusterid @SubnetIds = subnetids @VpcId = vpcid + @SkipAddingNonMasqueradeCIDRs = skipaddingnonmasqueradecidrs end def deserialize(params) @ClusterId = params['ClusterId'] @SubnetIds = params['SubnetIds'] @VpcId = params['VpcId'] + @SkipAddingNonMasqueradeCIDRs = params['SkipAddingNonMasqueradeCIDRs'] end end # AddVpcCniSubnets返回参数结构体 class AddVpcCniSubnetsResponse < TencentCloud::Common::AbstractModel