Class: TencentCloud::Live::V20180801::ModifyLiveDomainCertBindingsResponse

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20180801/models.rb

Overview

ModifyLiveDomainCertBindings返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(mismatcheddomainnames = nil, errors = nil, requestid = nil) ⇒ ModifyLiveDomainCertBindingsResponse

Returns a new instance of ModifyLiveDomainCertBindingsResponse.



12191
12192
12193
12194
12195
# File 'lib/v20180801/models.rb', line 12191

def initialize(mismatcheddomainnames=nil, errors=nil, requestid=nil)
  @MismatchedDomainNames = mismatcheddomainnames
  @Errors = errors
  @RequestId = requestid
end

Instance Attribute Details

#ErrorsObject

Parameters:

  • MismatchedDomainNames:

    DomainNames 入参中,与证书不匹配的域名列表,将会跳过处理。

  • Errors:

    操作失败的域名及错误码,错误信息,包括MismatchedDomainNames中的域名。

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



12189
12190
12191
# File 'lib/v20180801/models.rb', line 12189

def Errors
  @Errors
end

#MismatchedDomainNamesObject

Parameters:

  • MismatchedDomainNames:

    DomainNames 入参中,与证书不匹配的域名列表,将会跳过处理。

  • Errors:

    操作失败的域名及错误码,错误信息,包括MismatchedDomainNames中的域名。

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



12189
12190
12191
# File 'lib/v20180801/models.rb', line 12189

def MismatchedDomainNames
  @MismatchedDomainNames
end

#RequestIdObject

Parameters:

  • MismatchedDomainNames:

    DomainNames 入参中,与证书不匹配的域名列表,将会跳过处理。

  • Errors:

    操作失败的域名及错误码,错误信息,包括MismatchedDomainNames中的域名。

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



12189
12190
12191
# File 'lib/v20180801/models.rb', line 12189

def RequestId
  @RequestId
end

Instance Method Details

#deserialize(params) ⇒ Object



12197
12198
12199
12200
12201
12202
12203
12204
12205
12206
12207
12208
# File 'lib/v20180801/models.rb', line 12197

def deserialize(params)
  @MismatchedDomainNames = params['MismatchedDomainNames']
  unless params['Errors'].nil?
    @Errors = []
    params['Errors'].each do |i|
      batchdomainoperateerrors_tmp = BatchDomainOperateErrors.new
      batchdomainoperateerrors_tmp.deserialize(i)
      @Errors << batchdomainoperateerrors_tmp
    end
  end
  @RequestId = params['RequestId']
end