Class: TencentCloud::Tcr::V20190924::CreateGCJobRequest

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

Overview

CreateGCJob请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(registryid = nil, gcparameters = nil) ⇒ CreateGCJobRequest

Returns a new instance of CreateGCJobRequest.



352
353
354
355
# File 'lib/v20190924/models.rb', line 352

def initialize(registryid=nil, gcparameters=nil)
  @RegistryId = registryid
  @GCParameters = gcparameters
end

Instance Attribute Details

#GCParameters ⇒ Object

Parameters:

  • RegistryId: —

    实例 Id

  • GCParameters: —

    GC 参数



350
351
352
# File 'lib/v20190924/models.rb', line 350

def GCParameters
  @GCParameters
end

#RegistryId ⇒ Object

Parameters:

  • RegistryId: —

    实例 Id

  • GCParameters: —

    GC 参数



350
351
352
# File 'lib/v20190924/models.rb', line 350

def RegistryId
  @RegistryId
end

Instance Method Details

#deserialize(params) ⇒ Object



357
358
359
360
361
362
363
# File 'lib/v20190924/models.rb', line 357

def deserialize(params)
  @RegistryId = params['RegistryId']
  unless params['GCParameters'].nil?
    @GCParameters = GCParameters.new
    @GCParameters.deserialize(params['GCParameters'])
  end
end