tencentcloud-sdk-dcdb 1.0.284 → 1.0.285
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180411/models.rb +7 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 947cef91ace051e44f31887e09767d6085d66be6
|
|
4
|
+
data.tar.gz: c101989c8db6b9740a43f0d91a61d6fb53bff93d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 691cdb0bf076b7c48ca508367fe78de05d055c01f5a37a018baa1e505e909b52108fdd21c2be9e491b95141bdcaf94117cd3f4e4eda103726364cef1420c2187
|
|
7
|
+
data.tar.gz: 3163aced80f9cadfb4ca103671a492ba6b1bd68e916ab73b3611d87f05ec94b2b874365ab62edcce2e1be3c12cc8d17fd19af6270b7c06242926df270508509c
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.285
|
data/lib/v20180411/models.rb
CHANGED
|
@@ -3801,16 +3801,20 @@ module TencentCloud
|
|
|
3801
3801
|
# @type Constraint: :class:`Tencentcloud::Dcdb.v20180411.models.ParamConstraint`
|
|
3802
3802
|
# @param HaveSetValue: 是否有设置过值,false:没有设置过值,true:有设置过值。
|
|
3803
3803
|
# @type HaveSetValue: Boolean
|
|
3804
|
+
# @param NeedRestart: 是否需要重启生效,false:不需要重启,
|
|
3805
|
+
# true:需要重启
|
|
3806
|
+
# @type NeedRestart: Boolean
|
|
3804
3807
|
|
|
3805
|
-
attr_accessor :Param, :Value, :SetValue, :Default, :Constraint, :HaveSetValue
|
|
3808
|
+
attr_accessor :Param, :Value, :SetValue, :Default, :Constraint, :HaveSetValue, :NeedRestart
|
|
3806
3809
|
|
|
3807
|
-
def initialize(param=nil, value=nil, setvalue=nil, default=nil, constraint=nil, havesetvalue=nil)
|
|
3810
|
+
def initialize(param=nil, value=nil, setvalue=nil, default=nil, constraint=nil, havesetvalue=nil, needrestart=nil)
|
|
3808
3811
|
@Param = param
|
|
3809
3812
|
@Value = value
|
|
3810
3813
|
@SetValue = setvalue
|
|
3811
3814
|
@Default = default
|
|
3812
3815
|
@Constraint = constraint
|
|
3813
3816
|
@HaveSetValue = havesetvalue
|
|
3817
|
+
@NeedRestart = needrestart
|
|
3814
3818
|
end
|
|
3815
3819
|
|
|
3816
3820
|
def deserialize(params)
|
|
@@ -3823,6 +3827,7 @@ module TencentCloud
|
|
|
3823
3827
|
@Constraint.deserialize(params['Constraint'])
|
|
3824
3828
|
end
|
|
3825
3829
|
@HaveSetValue = params['HaveSetValue']
|
|
3830
|
+
@NeedRestart = params['NeedRestart']
|
|
3826
3831
|
end
|
|
3827
3832
|
end
|
|
3828
3833
|
|