Class: TencentCloud::Teo::V20220901::FunctionEnvironmentVariable
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Teo::V20220901::FunctionEnvironmentVariable
- Defined in:
- lib/v20220901/models.rb
Overview
边缘函数环境变量
Instance Attribute Summary collapse
-
#Key ⇒ Object
<li>string:字符串类型;</li> <li>json:json 对象类型。</li>默认值为:string。.
-
#Type ⇒ Object
<li>string:字符串类型;</li> <li>json:json 对象类型。</li>默认值为:string。.
-
#Value ⇒ Object
<li>string:字符串类型;</li> <li>json:json 对象类型。</li>默认值为:string。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(key = nil, value = nil, type = nil) ⇒ FunctionEnvironmentVariable
constructor
A new instance of FunctionEnvironmentVariable.
Constructor Details
#initialize(key = nil, value = nil, type = nil) ⇒ FunctionEnvironmentVariable
Returns a new instance of FunctionEnvironmentVariable.
13179 13180 13181 13182 13183 |
# File 'lib/v20220901/models.rb', line 13179 def initialize(key=nil, value=nil, type=nil) @Key = key @Value = value @Type = type end |
Instance Attribute Details
#Key ⇒ Object
<li>string:字符串类型;</li> <li>json:json 对象类型。</li>默认值为:string。
13177 13178 13179 |
# File 'lib/v20220901/models.rb', line 13177 def Key @Key end |
#Type ⇒ Object
<li>string:字符串类型;</li> <li>json:json 对象类型。</li>默认值为:string。
13177 13178 13179 |
# File 'lib/v20220901/models.rb', line 13177 def Type @Type end |
#Value ⇒ Object
<li>string:字符串类型;</li> <li>json:json 对象类型。</li>默认值为:string。
13177 13178 13179 |
# File 'lib/v20220901/models.rb', line 13177 def Value @Value end |
Instance Method Details
#deserialize(params) ⇒ Object
13185 13186 13187 13188 13189 |
# File 'lib/v20220901/models.rb', line 13185 def deserialize(params) @Key = params['Key'] @Value = params['Value'] @Type = params['Type'] end |