Class: TencentCloud::Tcb::V20180608::DestroyEnvRequest

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

Overview

DestroyEnv请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(envid = nil, isforce = nil, bypasscheck = nil) ⇒ DestroyEnvRequest

Returns a new instance of DestroyEnvRequest.



6357
6358
6359
6360
6361
# File 'lib/v20180608/models.rb', line 6357

def initialize(envid=nil, isforce=nil, bypasscheck=nil)
  @EnvId = envid
  @IsForce = isforce
  @BypassCheck = bypasscheck
end

Instance Attribute Details

#BypassCheckObject

Parameters:

  • EnvId:

    环境Id

  • IsForce:

    针对预付费 删除隔离中的环境时要传true 正常环境直接跳过隔离期删除

  • BypassCheck:

    是否绕过资源检查,资源包等额外资源,默认为false,如果为true,则不检查资源是否有数据,直接删除。



6355
6356
6357
# File 'lib/v20180608/models.rb', line 6355

def BypassCheck
  @BypassCheck
end

#EnvIdObject

Parameters:

  • EnvId:

    环境Id

  • IsForce:

    针对预付费 删除隔离中的环境时要传true 正常环境直接跳过隔离期删除

  • BypassCheck:

    是否绕过资源检查,资源包等额外资源,默认为false,如果为true,则不检查资源是否有数据,直接删除。



6355
6356
6357
# File 'lib/v20180608/models.rb', line 6355

def EnvId
  @EnvId
end

#IsForceObject

Parameters:

  • EnvId:

    环境Id

  • IsForce:

    针对预付费 删除隔离中的环境时要传true 正常环境直接跳过隔离期删除

  • BypassCheck:

    是否绕过资源检查,资源包等额外资源,默认为false,如果为true,则不检查资源是否有数据,直接删除。



6355
6356
6357
# File 'lib/v20180608/models.rb', line 6355

def IsForce
  @IsForce
end

Instance Method Details

#deserialize(params) ⇒ Object



6363
6364
6365
6366
6367
# File 'lib/v20180608/models.rb', line 6363

def deserialize(params)
  @EnvId = params['EnvId']
  @IsForce = params['IsForce']
  @BypassCheck = params['BypassCheck']
end