Class: TencentCloud::Iecp::V20210914::DockerConfig
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iecp::V20210914::DockerConfig
- Defined in:
- lib/v20210914/models.rb
Overview
docker配置
Instance Attribute Summary collapse
-
#Password ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RegistryDomain ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#UserName ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(registrydomain = nil, username = nil, password = nil) ⇒ DockerConfig
constructor
A new instance of DockerConfig.
Constructor Details
#initialize(registrydomain = nil, username = nil, password = nil) ⇒ DockerConfig
Returns a new instance of DockerConfig.
3986 3987 3988 3989 3990 |
# File 'lib/v20210914/models.rb', line 3986 def initialize(registrydomain=nil, username=nil, password=nil) @RegistryDomain = registrydomain @UserName = username @Password = password end |
Instance Attribute Details
#Password ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
3984 3985 3986 |
# File 'lib/v20210914/models.rb', line 3984 def Password @Password end |
#RegistryDomain ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
3984 3985 3986 |
# File 'lib/v20210914/models.rb', line 3984 def RegistryDomain @RegistryDomain end |
#UserName ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
3984 3985 3986 |
# File 'lib/v20210914/models.rb', line 3984 def UserName @UserName end |
Instance Method Details
#deserialize(params) ⇒ Object
3992 3993 3994 3995 3996 |
# File 'lib/v20210914/models.rb', line 3992 def deserialize(params) @RegistryDomain = params['RegistryDomain'] @UserName = params['UserName'] @Password = params['Password'] end |