Class: TencentCloud::Ess::V20201111::CreateOrganizationAuthUrlResponse

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

Overview

CreateOrganizationAuthUrl返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(authurl = nil, expiredtime = nil, requestid = nil) ⇒ CreateOrganizationAuthUrlResponse

Returns a new instance of CreateOrganizationAuthUrlResponse.



6442
6443
6444
6445
6446
# File 'lib/v20201111/models.rb', line 6442

def initialize(authurl=nil, expiredtime=nil, requestid=nil)
  @AuthUrl = authurl
  @ExpiredTime = expiredtime
  @RequestId = requestid
end

Instance Attribute Details

#AuthUrlObject

注: 链接有效期统一30天

Parameters:

  • ExpiredTime:

    链接过期时间,格式为Unix标准时间戳(秒)

  • RequestId:

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



6440
6441
6442
# File 'lib/v20201111/models.rb', line 6440

def AuthUrl
  @AuthUrl
end

#ExpiredTimeObject

注: 链接有效期统一30天

Parameters:

  • ExpiredTime:

    链接过期时间,格式为Unix标准时间戳(秒)

  • RequestId:

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



6440
6441
6442
# File 'lib/v20201111/models.rb', line 6440

def ExpiredTime
  @ExpiredTime
end

#RequestIdObject

注: 链接有效期统一30天

Parameters:

  • ExpiredTime:

    链接过期时间,格式为Unix标准时间戳(秒)

  • RequestId:

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



6440
6441
6442
# File 'lib/v20201111/models.rb', line 6440

def RequestId
  @RequestId
end

Instance Method Details

#deserialize(params) ⇒ Object



6448
6449
6450
6451
6452
# File 'lib/v20201111/models.rb', line 6448

def deserialize(params)
  @AuthUrl = params['AuthUrl']
  @ExpiredTime = params['ExpiredTime']
  @RequestId = params['RequestId']
end