Class: TencentCloud::Tione::V20191022::OutputDataConfig

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

Overview

输出数据配置

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(cosoutputbucket = nil, cosoutputkeyprefix = nil, filesystemdatasource = nil) ⇒ OutputDataConfig

Returns a new instance of OutputDataConfig.



1708
1709
1710
1711
1712
# File 'lib/v20191022/models.rb', line 1708

def initialize(cosoutputbucket=nil, cosoutputkeyprefix=nil, filesystemdatasource=nil)
  @CosOutputBucket = cosoutputbucket
  @CosOutputKeyPrefix = cosoutputkeyprefix
  @FileSystemDataSource = filesystemdatasource
end

Instance Attribute Details

#CosOutputBucketObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • CosOutputBucket:

    cos输出桶

  • CosOutputKeyPrefix:

    cos输出key前缀

  • FileSystemDataSource:

    文件系统输出,如果指定了文件系统,那么Cos输出会被忽略



1706
1707
1708
# File 'lib/v20191022/models.rb', line 1706

def CosOutputBucket
  @CosOutputBucket
end

#CosOutputKeyPrefixObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • CosOutputBucket:

    cos输出桶

  • CosOutputKeyPrefix:

    cos输出key前缀

  • FileSystemDataSource:

    文件系统输出,如果指定了文件系统,那么Cos输出会被忽略



1706
1707
1708
# File 'lib/v20191022/models.rb', line 1706

def CosOutputKeyPrefix
  @CosOutputKeyPrefix
end

#FileSystemDataSourceObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • CosOutputBucket:

    cos输出桶

  • CosOutputKeyPrefix:

    cos输出key前缀

  • FileSystemDataSource:

    文件系统输出,如果指定了文件系统,那么Cos输出会被忽略



1706
1707
1708
# File 'lib/v20191022/models.rb', line 1706

def FileSystemDataSource
  @FileSystemDataSource
end

Instance Method Details

#deserialize(params) ⇒ Object



1714
1715
1716
1717
1718
1719
1720
1721
# File 'lib/v20191022/models.rb', line 1714

def deserialize(params)
  @CosOutputBucket = params['CosOutputBucket']
  @CosOutputKeyPrefix = params['CosOutputKeyPrefix']
  unless params['FileSystemDataSource'].nil?
    @FileSystemDataSource = FileSystemDataSource.new
    @FileSystemDataSource.deserialize(params['FileSystemDataSource'])
  end
end