Class: TencentCloud::Iss::V20230517::DescribeStreamAuthData
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iss::V20230517::DescribeStreamAuthData
- Defined in:
- lib/v20230517/models.rb
Overview
查询推拉流鉴权返回数据结构
Instance Attribute Summary collapse
- #AppId ⇒ Object
- #Id ⇒ Object
- #PullExpired ⇒ Object
- #PullSecret ⇒ Object
- #PullState ⇒ Object
- #PushExpired ⇒ Object
- #PushSecret ⇒ Object
- #PushState ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(id = nil, pullstate = nil, pullsecret = nil, pullexpired = nil, pushstate = nil, pushsecret = nil, pushexpired = nil, appid = nil) ⇒ DescribeStreamAuthData
constructor
A new instance of DescribeStreamAuthData.
Constructor Details
#initialize(id = nil, pullstate = nil, pullsecret = nil, pullexpired = nil, pushstate = nil, pushsecret = nil, pushexpired = nil, appid = nil) ⇒ DescribeStreamAuthData
Returns a new instance of DescribeStreamAuthData.
4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 |
# File 'lib/v20230517/models.rb', line 4049 def initialize(id=nil, pullstate=nil, pullsecret=nil, pullexpired=nil, pushstate=nil, pushsecret=nil, pushexpired=nil, appid=nil) @Id = id @PullState = pullstate @PullSecret = pullsecret @PullExpired = pullexpired @PushState = pushstate @PushSecret = pushsecret @PushExpired = pushexpired @AppId = appid end |
Instance Attribute Details
#AppId ⇒ Object
4047 4048 4049 |
# File 'lib/v20230517/models.rb', line 4047 def AppId @AppId end |
#Id ⇒ Object
4047 4048 4049 |
# File 'lib/v20230517/models.rb', line 4047 def Id @Id end |
#PullExpired ⇒ Object
4047 4048 4049 |
# File 'lib/v20230517/models.rb', line 4047 def PullExpired @PullExpired end |
#PullSecret ⇒ Object
4047 4048 4049 |
# File 'lib/v20230517/models.rb', line 4047 def PullSecret @PullSecret end |
#PullState ⇒ Object
4047 4048 4049 |
# File 'lib/v20230517/models.rb', line 4047 def PullState @PullState end |
#PushExpired ⇒ Object
4047 4048 4049 |
# File 'lib/v20230517/models.rb', line 4047 def PushExpired @PushExpired end |
#PushSecret ⇒ Object
4047 4048 4049 |
# File 'lib/v20230517/models.rb', line 4047 def PushSecret @PushSecret end |
#PushState ⇒ Object
4047 4048 4049 |
# File 'lib/v20230517/models.rb', line 4047 def PushState @PushState end |
Instance Method Details
#deserialize(params) ⇒ Object
4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 |
# File 'lib/v20230517/models.rb', line 4060 def deserialize(params) @Id = params['Id'] @PullState = params['PullState'] @PullSecret = params['PullSecret'] @PullExpired = params['PullExpired'] @PushState = params['PushState'] @PushSecret = params['PushSecret'] @PushExpired = params['PushExpired'] @AppId = params['AppId'] end |