Class: TencentCloud::Ssl::V20191205::TkeNameSpaceDetail
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ssl::V20191205::TkeNameSpaceDetail
- Defined in:
- lib/v20191205/models.rb
Overview
tke namespace详情
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(name = nil, secretlist = nil) ⇒ TkeNameSpaceDetail
constructor
A new instance of TkeNameSpaceDetail.
Constructor Details
#initialize(name = nil, secretlist = nil) ⇒ TkeNameSpaceDetail
Returns a new instance of TkeNameSpaceDetail.
7972 7973 7974 7975 |
# File 'lib/v20191205/models.rb', line 7972 def initialize(name=nil, secretlist=nil) @Name = name @SecretList = secretlist end |
Instance Attribute Details
#Name ⇒ Object
7970 7971 7972 |
# File 'lib/v20191205/models.rb', line 7970 def Name @Name end |
#SecretList ⇒ Object
7970 7971 7972 |
# File 'lib/v20191205/models.rb', line 7970 def SecretList @SecretList end |
Instance Method Details
#deserialize(params) ⇒ Object
7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 |
# File 'lib/v20191205/models.rb', line 7977 def deserialize(params) @Name = params['Name'] unless params['SecretList'].nil? @SecretList = [] params['SecretList'].each do |i| tkesecretdetail_tmp = TkeSecretDetail.new tkesecretdetail_tmp.deserialize(i) @SecretList << tkesecretdetail_tmp end end end |