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.



5641
5642
5643
5644
5645
# File 'lib/v20180608/models.rb', line 5641

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,则不检查资源是否有数据,直接删除。



5639
5640
5641
# File 'lib/v20180608/models.rb', line 5639

def BypassCheck
  @BypassCheck
end

#EnvIdObject

Parameters:

  • EnvId:

    环境Id

  • IsForce:

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

  • BypassCheck:

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



5639
5640
5641
# File 'lib/v20180608/models.rb', line 5639

def EnvId
  @EnvId
end

#IsForceObject

Parameters:

  • EnvId:

    环境Id

  • IsForce:

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

  • BypassCheck:

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



5639
5640
5641
# File 'lib/v20180608/models.rb', line 5639

def IsForce
  @IsForce
end

Instance Method Details

#deserialize(params) ⇒ Object



5647
5648
5649
5650
5651
# File 'lib/v20180608/models.rb', line 5647

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