lib/v20180717/models.rb in tencentcloud-sdk-vod-3.0.715 vs lib/v20180717/models.rb in tencentcloud-sdk-vod-3.0.716

- old
+ new

@@ -24364,15 +24364,34 @@ end end # SetVodDomainCertificate请求参数结构体 class SetVodDomainCertificateRequest < TencentCloud::Common::AbstractModel + # @param Domain: 域名。 + # @type Domain: String + # @param Operation: 本次接口调用的操作类型,可选值: + # <li>Set:设置域名的 HTTPS 所需证书;</li> + # <li>Clear: 清空域名 HTTPS 配置,清空后该域名无法支持 HTTPS 访问。</li> + # @type Operation: String + # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b> + # @type SubAppId: Integer + # @param CertID: [腾讯云SSL](/document/product/400/7572) 上传的证书 ID。清空域名 HTTPS 配置时无需填写该字段。 + # @type CertID: String + attr_accessor :Domain, :Operation, :SubAppId, :CertID - def initialize() + def initialize(domain=nil, operation=nil, subappid=nil, certid=nil) + @Domain = domain + @Operation = operation + @SubAppId = subappid + @CertID = certid end def deserialize(params) + @Domain = params['Domain'] + @Operation = params['Operation'] + @SubAppId = params['SubAppId'] + @CertID = params['CertID'] end end # SetVodDomainCertificate返回参数结构体 class SetVodDomainCertificateResponse < TencentCloud::Common::AbstractModel