Skip to content

Commit

Permalink
IMM SDK Auto Released By zhengrui.lj,Version:1.2.2
Browse files Browse the repository at this point in the history
发布日志:
1, Add image async job.
2, Fix group bug.
  • Loading branch information
jxyowen committed Dec 5, 2018
1 parent 3f5e215 commit 3c5c5c5
Show file tree
Hide file tree
Showing 28 changed files with 2,297 additions and 124 deletions.
4 changes: 4 additions & 0 deletions aliyun-net-sdk-imm/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2018-12-05 Version: 1.2.2
1, Add image async job.
2, Fix group bug.

2018-11-27 Version: 1.2.1
1, ConvertOfficeFormat support TgtFilePrefix, TgtFileSuffix, TgtFilePages, FitToPagesTall, FitToPagesWide

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ public ConvertOfficeFormatRequest()

private string tgtFileSuffix;

private bool? pdfVector;

private string accessKeyId;

private bool? sheetOnePage;
Expand Down Expand Up @@ -164,6 +166,19 @@ public string TgtFileSuffix
}
}

public bool? PdfVector
{
get
{
return pdfVector;
}
set
{
pdfVector = value;
DictionaryUtil.Add(QueryParameters, "PdfVector", value.ToString());
}
}

public string AccessKeyId
{
get
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,146 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
using Aliyun.Acs.Core;
using Aliyun.Acs.Core.Http;
using Aliyun.Acs.Core.Transform;
using Aliyun.Acs.Core.Utils;
using Aliyun.Acs.imm.Transform;
using Aliyun.Acs.imm.Transform.V20170906;
using System.Collections.Generic;

namespace Aliyun.Acs.imm.Model.V20170906
{
public class CreateDeleteFaceSetJobRequest : RpcAcsRequest<CreateDeleteFaceSetJobResponse>
{
public CreateDeleteFaceSetJobRequest()
: base("imm", "2017-09-06", "CreateDeleteFaceSetJob", "imm", "openAPI")
{
}

private string notifyTopicName;

private string notifyEndpoint;

private string action;

private string project;

private string setId;

private string checkEmpty;

private string accessKeyId;

public string NotifyTopicName
{
get
{
return notifyTopicName;
}
set
{
notifyTopicName = value;
DictionaryUtil.Add(QueryParameters, "NotifyTopicName", value);
}
}

public string NotifyEndpoint
{
get
{
return notifyEndpoint;
}
set
{
notifyEndpoint = value;
DictionaryUtil.Add(QueryParameters, "NotifyEndpoint", value);
}
}

public string Action
{
get
{
return action;
}
set
{
action = value;
DictionaryUtil.Add(QueryParameters, "Action", value);
}
}

public string Project
{
get
{
return project;
}
set
{
project = value;
DictionaryUtil.Add(QueryParameters, "Project", value);
}
}

public string SetId
{
get
{
return setId;
}
set
{
setId = value;
DictionaryUtil.Add(QueryParameters, "SetId", value);
}
}

public string CheckEmpty
{
get
{
return checkEmpty;
}
set
{
checkEmpty = value;
DictionaryUtil.Add(QueryParameters, "CheckEmpty", value);
}
}

public string AccessKeyId
{
get
{
return accessKeyId;
}
set
{
accessKeyId = value;
DictionaryUtil.Add(QueryParameters, "AccessKeyId", value);
}
}

public override CreateDeleteFaceSetJobResponse GetResponse(Core.Transform.UnmarshallerContext unmarshallerContext)
{
return CreateDeleteFaceSetJobResponseUnmarshaller.Unmarshall(unmarshallerContext);
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
using Aliyun.Acs.Core;
using System.Collections.Generic;

namespace Aliyun.Acs.imm.Model.V20170906
{
public class CreateDeleteFaceSetJobResponse : AcsResponse
{

private string requestId;

private string jobId;

private string jobType;

public string RequestId
{
get
{
return requestId;
}
set
{
requestId = value;
}
}

public string JobId
{
get
{
return jobId;
}
set
{
jobId = value;
}
}

public string JobType
{
get
{
return jobType;
}
set
{
jobType = value;
}
}
}
}
Loading

0 comments on commit 3c5c5c5

Please sign in to comment.