Class: TencentCloud::Kms::V20190118::ScheduleKeyDeletionRequest

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20190118/models.rb

Overview

ScheduleKeyDeletion请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(keyid = nil, pendingwindowindays = nil) ⇒ ScheduleKeyDeletionRequest

Returns a new instance of ScheduleKeyDeletionRequest.



3137
3138
3139
3140
# File 'lib/v20190118/models.rb', line 3137

def initialize(keyid=nil, pendingwindowindays=nil)
  @KeyId = keyid
  @PendingWindowInDays = pendingwindowindays
end

Instance Attribute Details

#KeyIdObject

Parameters:

  • KeyId:

    CMK的唯一标志

  • PendingWindowInDays:

    计划删除时间区间[7,30]



3135
3136
3137
# File 'lib/v20190118/models.rb', line 3135

def KeyId
  @KeyId
end

#PendingWindowInDaysObject

Parameters:

  • KeyId:

    CMK的唯一标志

  • PendingWindowInDays:

    计划删除时间区间[7,30]



3135
3136
3137
# File 'lib/v20190118/models.rb', line 3135

def PendingWindowInDays
  @PendingWindowInDays
end

Instance Method Details

#deserialize(params) ⇒ Object



3142
3143
3144
3145
# File 'lib/v20190118/models.rb', line 3142

def deserialize(params)
  @KeyId = params['KeyId']
  @PendingWindowInDays = params['PendingWindowInDays']
end