-
Notifications
You must be signed in to change notification settings - Fork 624
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
IMM SDK Auto Released By zhengrui.lj,Version:1.2.2
发布日志: 1, Add image async job. 2, Fix group bug.
- Loading branch information
Showing
28 changed files
with
2,297 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
146 changes: 146 additions & 0 deletions
146
aliyun-net-sdk-imm/Imm/Model/V20170906/CreateDeleteFaceSetJobRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
} | ||
} | ||
} |
69 changes: 69 additions & 0 deletions
69
aliyun-net-sdk-imm/Imm/Model/V20170906/CreateDeleteFaceSetJobResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.