lib/v20180525/models.rb in tencentcloud-sdk-tke-3.0.896 vs lib/v20180525/models.rb in tencentcloud-sdk-tke-3.0.897

- old
+ new

@@ -12488,20 +12488,24 @@ class InstallLogAgentRequest < TencentCloud::Common::AbstractModel # @param ClusterId: TKE集群ID # @type ClusterId: String # @param KubeletRootDir: kubelet根目录 # @type KubeletRootDir: String + # @param ClusterType: 集群类型 tke/eks,默认tke + # @type ClusterType: String - attr_accessor :ClusterId, :KubeletRootDir + attr_accessor :ClusterId, :KubeletRootDir, :ClusterType - def initialize(clusterid=nil, kubeletrootdir=nil) + def initialize(clusterid=nil, kubeletrootdir=nil, clustertype=nil) @ClusterId = clusterid @KubeletRootDir = kubeletrootdir + @ClusterType = clustertype end def deserialize(params) @ClusterId = params['ClusterId'] @KubeletRootDir = params['KubeletRootDir'] + @ClusterType = params['ClusterType'] end end # InstallLogAgent返回参数结构体 class InstallLogAgentResponse < TencentCloud::Common::AbstractModel