Class: TencentCloud::Tcr::V20190924::CreateGCJobRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcr::V20190924::CreateGCJobRequest
- Defined in:
- lib/v20190924/models.rb
Overview
CreateGCJob请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(registryid = nil, gcparameters = nil) ⇒ CreateGCJobRequest
constructor
A new instance of CreateGCJobRequest.
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
350 351 352 |
# File 'lib/v20190924/models.rb', line 350 def GCParameters @GCParameters end |
#RegistryId ⇒ Object
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 |