Class: TencentCloud::Ssm::V20190923::UpdateRotationStatusRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ssm::V20190923::UpdateRotationStatusRequest
- Defined in:
- lib/v20190923/models.rb
Overview
UpdateRotationStatus请求参数结构体
Instance Attribute Summary collapse
-
#EnableRotation ⇒ Object
true – 开启轮转; false – 禁止轮转。 当EnableRotation为true时,如果不填RotationBeginTime,则默认填充为当前时间。.
-
#Frequency ⇒ Object
true – 开启轮转; false – 禁止轮转。 当EnableRotation为true时,如果不填RotationBeginTime,则默认填充为当前时间。.
-
#RotationBeginTime ⇒ Object
true – 开启轮转; false – 禁止轮转。 当EnableRotation为true时,如果不填RotationBeginTime,则默认填充为当前时间。.
-
#SecretName ⇒ Object
true – 开启轮转; false – 禁止轮转。 当EnableRotation为true时,如果不填RotationBeginTime,则默认填充为当前时间。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(secretname = nil, enablerotation = nil, frequency = nil, rotationbegintime = nil) ⇒ UpdateRotationStatusRequest
constructor
A new instance of UpdateRotationStatusRequest.
Constructor Details
#initialize(secretname = nil, enablerotation = nil, frequency = nil, rotationbegintime = nil) ⇒ UpdateRotationStatusRequest
Returns a new instance of UpdateRotationStatusRequest.
1483 1484 1485 1486 1487 1488 |
# File 'lib/v20190923/models.rb', line 1483 def initialize(secretname=nil, enablerotation=nil, frequency=nil, rotationbegintime=nil) @SecretName = secretname @EnableRotation = enablerotation @Frequency = frequency @RotationBeginTime = rotationbegintime end |
Instance Attribute Details
#EnableRotation ⇒ Object
true – 开启轮转;false – 禁止轮转。当EnableRotation为true时,如果不填RotationBeginTime,则默认填充为当前时间。
1481 1482 1483 |
# File 'lib/v20190923/models.rb', line 1481 def EnableRotation @EnableRotation end |
#Frequency ⇒ Object
true – 开启轮转;false – 禁止轮转。当EnableRotation为true时,如果不填RotationBeginTime,则默认填充为当前时间。
1481 1482 1483 |
# File 'lib/v20190923/models.rb', line 1481 def Frequency @Frequency end |
#RotationBeginTime ⇒ Object
true – 开启轮转;false – 禁止轮转。当EnableRotation为true时,如果不填RotationBeginTime,则默认填充为当前时间。
1481 1482 1483 |
# File 'lib/v20190923/models.rb', line 1481 def RotationBeginTime @RotationBeginTime end |
#SecretName ⇒ Object
true – 开启轮转;false – 禁止轮转。当EnableRotation为true时,如果不填RotationBeginTime,则默认填充为当前时间。
1481 1482 1483 |
# File 'lib/v20190923/models.rb', line 1481 def SecretName @SecretName end |
Instance Method Details
#deserialize(params) ⇒ Object
1490 1491 1492 1493 1494 1495 |
# File 'lib/v20190923/models.rb', line 1490 def deserialize(params) @SecretName = params['SecretName'] @EnableRotation = params['EnableRotation'] @Frequency = params['Frequency'] @RotationBeginTime = params['RotationBeginTime'] end |