tencentcloud-sdk-ess 3.0.466 → 3.0.467
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20201111/client.rb +1 -2
- data/lib/v20201111/models.rb +51 -23
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ec58bfd88b3a1b3bbc22fe5ce14e9d722d9ccafe
|
4
|
+
data.tar.gz: 5d97217c6f7c528acbda719df971fcf08d096f24
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 82825a3342346f1e6fda3c0c687e3476a3a389b05fcc6aa41e919982ccc56613547610693e51ef53369aae5406e59772b1ecf9becad45524a2c83a992d697b99
|
7
|
+
data.tar.gz: 20b8027e7023bd9b7dedf157588aec699b97943f12b35deefb18c5a58d95270453861ef3312b81b67c0345f9da25fdc77cc7884cbfec1fa8b0277b325e9ecdc4
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.467
|
data/lib/v20201111/client.rb
CHANGED
@@ -633,8 +633,7 @@ module TencentCloud
|
|
633
633
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
634
634
|
end
|
635
635
|
|
636
|
-
#
|
637
|
-
# 适用场景:当模板较多或模板中的控件较多时,可以通过查询模板接口更方便的获取自己主体下的模板列表,以及每个模板内的控件信息。该接口常用来配合“创建电子文档”接口作为前置的接口使用。
|
636
|
+
# 当模板较多或模板中的控件较多时,可以通过查询模板接口更方便的获取模板列表,以及每个模板内的控件信息。该接口常用来配合“创建电子文档”接口作为前置的接口使用。
|
638
637
|
|
639
638
|
# @param request: Request instance for DescribeFlowTemplates.
|
640
639
|
# @type request: :class:`Tencentcloud::ess::V20201111::DescribeFlowTemplatesRequest`
|
data/lib/v20201111/models.rb
CHANGED
@@ -1811,29 +1811,42 @@ module TencentCloud
|
|
1811
1811
|
class DescribeFlowTemplatesRequest < TencentCloud::Common::AbstractModel
|
1812
1812
|
# @param Operator: 调用方用户信息,userId 必填
|
1813
1813
|
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
1814
|
-
# @param
|
1815
|
-
# @type
|
1816
|
-
# @param
|
1817
|
-
# @type
|
1814
|
+
# @param Organization: 企业组织相关信息
|
1815
|
+
# @type Organization: :class:`Tencentcloud::Ess.v20201111.models.OrganizationInfo`
|
1816
|
+
# @param Agent: 应用相关信息
|
1817
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
1818
1818
|
# @param Offset: 查询偏移位置,默认0
|
1819
1819
|
# @type Offset: Integer
|
1820
|
-
# @param
|
1821
|
-
# @type
|
1820
|
+
# @param Limit: 查询个数,默认20,最大200
|
1821
|
+
# @type Limit: Integer
|
1822
|
+
# @param Filters: 搜索条件,具体参考Filter结构体。本接口取值:template-id:按照【 **模板唯一标识** 】进行过滤
|
1823
|
+
# @type Filters: Array
|
1824
|
+
# @param ApplicationId: 这个参数跟下面的IsChannel参数配合使用。
|
1825
|
+
# IsChannel=false时,ApplicationId参数不起任何作用。
|
1826
|
+
# IsChannel=true时,ApplicationId为空,查询所有渠道模板列表;ApplicationId不为空,查询指定渠道下的模板列表
|
1827
|
+
# ApplicationId为空,查询渠道模板列表
|
1828
|
+
# @type ApplicationId: String
|
1829
|
+
# @param IsChannel: 默认为false,查询SaaS模板库列表;
|
1830
|
+
# 为true,查询渠道模板库管理列表
|
1831
|
+
# @type IsChannel: Boolean
|
1822
1832
|
# @param GenerateSource: 暂未开放
|
1823
1833
|
# @type GenerateSource: Integer
|
1824
|
-
# @param
|
1825
|
-
# @type
|
1834
|
+
# @param ContentType: 查询内容:0-模板列表及详情(默认),1-仅模板列表
|
1835
|
+
# @type ContentType: Integer
|
1826
1836
|
|
1827
|
-
attr_accessor :Operator, :
|
1837
|
+
attr_accessor :Operator, :Organization, :Agent, :Offset, :Limit, :Filters, :ApplicationId, :IsChannel, :GenerateSource, :ContentType
|
1828
1838
|
|
1829
|
-
def initialize(operator=nil,
|
1839
|
+
def initialize(operator=nil, organization=nil, agent=nil, offset=nil, limit=nil, filters=nil, applicationid=nil, ischannel=nil, generatesource=nil, contenttype=nil)
|
1830
1840
|
@Operator = operator
|
1831
|
-
@
|
1832
|
-
@
|
1841
|
+
@Organization = organization
|
1842
|
+
@Agent = agent
|
1833
1843
|
@Offset = offset
|
1834
|
-
@
|
1844
|
+
@Limit = limit
|
1845
|
+
@Filters = filters
|
1846
|
+
@ApplicationId = applicationid
|
1847
|
+
@IsChannel = ischannel
|
1835
1848
|
@GenerateSource = generatesource
|
1836
|
-
@
|
1849
|
+
@ContentType = contenttype
|
1837
1850
|
end
|
1838
1851
|
|
1839
1852
|
def deserialize(params)
|
@@ -1841,6 +1854,16 @@ module TencentCloud
|
|
1841
1854
|
@Operator = UserInfo.new
|
1842
1855
|
@Operator.deserialize(params['Operator'])
|
1843
1856
|
end
|
1857
|
+
unless params['Organization'].nil?
|
1858
|
+
@Organization = OrganizationInfo.new
|
1859
|
+
@Organization.deserialize(params['Organization'])
|
1860
|
+
end
|
1861
|
+
unless params['Agent'].nil?
|
1862
|
+
@Agent = Agent.new
|
1863
|
+
@Agent.deserialize(params['Agent'])
|
1864
|
+
end
|
1865
|
+
@Offset = params['Offset']
|
1866
|
+
@Limit = params['Limit']
|
1844
1867
|
unless params['Filters'].nil?
|
1845
1868
|
@Filters = []
|
1846
1869
|
params['Filters'].each do |i|
|
@@ -1849,14 +1872,10 @@ module TencentCloud
|
|
1849
1872
|
@Filters << filter_tmp
|
1850
1873
|
end
|
1851
1874
|
end
|
1852
|
-
@
|
1853
|
-
@
|
1854
|
-
@ContentType = params['ContentType']
|
1875
|
+
@ApplicationId = params['ApplicationId']
|
1876
|
+
@IsChannel = params['IsChannel']
|
1855
1877
|
@GenerateSource = params['GenerateSource']
|
1856
|
-
|
1857
|
-
@Agent = Agent.new
|
1858
|
-
@Agent.deserialize(params['Agent'])
|
1859
|
-
end
|
1878
|
+
@ContentType = params['ContentType']
|
1860
1879
|
end
|
1861
1880
|
end
|
1862
1881
|
|
@@ -3131,10 +3150,15 @@ module TencentCloud
|
|
3131
3150
|
# @type CreatedOn: Integer
|
3132
3151
|
# @param Promoter: 发起人角色信息
|
3133
3152
|
# @type Promoter: :class:`Tencentcloud::Ess.v20201111.models.Recipient`
|
3153
|
+
# @param OrganizationId: 模板创建组织id
|
3154
|
+
# @type OrganizationId: String
|
3155
|
+
# @param PreviewUrl: 模板预览链接
|
3156
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3157
|
+
# @type PreviewUrl: String
|
3134
3158
|
|
3135
|
-
attr_accessor :TemplateId, :TemplateName, :Description, :DocumentResourceIds, :FileInfos, :AttachmentResourceIds, :SignOrder, :Recipients, :Components, :SignComponents, :Status, :Creator, :CreatedOn, :Promoter
|
3159
|
+
attr_accessor :TemplateId, :TemplateName, :Description, :DocumentResourceIds, :FileInfos, :AttachmentResourceIds, :SignOrder, :Recipients, :Components, :SignComponents, :Status, :Creator, :CreatedOn, :Promoter, :OrganizationId, :PreviewUrl
|
3136
3160
|
|
3137
|
-
def initialize(templateid=nil, templatename=nil, description=nil, documentresourceids=nil, fileinfos=nil, attachmentresourceids=nil, signorder=nil, recipients=nil, components=nil, signcomponents=nil, status=nil, creator=nil, createdon=nil, promoter=nil)
|
3161
|
+
def initialize(templateid=nil, templatename=nil, description=nil, documentresourceids=nil, fileinfos=nil, attachmentresourceids=nil, signorder=nil, recipients=nil, components=nil, signcomponents=nil, status=nil, creator=nil, createdon=nil, promoter=nil, organizationid=nil, previewurl=nil)
|
3138
3162
|
@TemplateId = templateid
|
3139
3163
|
@TemplateName = templatename
|
3140
3164
|
@Description = description
|
@@ -3149,6 +3173,8 @@ module TencentCloud
|
|
3149
3173
|
@Creator = creator
|
3150
3174
|
@CreatedOn = createdon
|
3151
3175
|
@Promoter = promoter
|
3176
|
+
@OrganizationId = organizationid
|
3177
|
+
@PreviewUrl = previewurl
|
3152
3178
|
end
|
3153
3179
|
|
3154
3180
|
def deserialize(params)
|
@@ -3197,6 +3223,8 @@ module TencentCloud
|
|
3197
3223
|
@Promoter = Recipient.new
|
3198
3224
|
@Promoter.deserialize(params['Promoter'])
|
3199
3225
|
end
|
3226
|
+
@OrganizationId = params['OrganizationId']
|
3227
|
+
@PreviewUrl = params['PreviewUrl']
|
3200
3228
|
end
|
3201
3229
|
end
|
3202
3230
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-ess
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.467
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-12-
|
11
|
+
date: 2022-12-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|