Skip to content

Commit

Permalink
由尛宏发起的GREEN SDK自动发布, 版本号:3.1.0
Browse files Browse the repository at this point in the history
发布日志:
1, Add voice asynchronous scan interface.
  • Loading branch information
Qingtang-SDK committed Apr 8, 2018
1 parent 920dbf8 commit d84b5ff
Show file tree
Hide file tree
Showing 78 changed files with 3,389 additions and 0 deletions.
3 changes: 3 additions & 0 deletions aliyun-net-sdk-green/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
2018-04-08 Version: 3.1.0
1, Add voice asynchronous scan interface.

73 changes: 73 additions & 0 deletions aliyun-net-sdk-green/Green/Model/V20170825/AddFacesRequest.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
/*
* 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.Green.Transform;
using Aliyun.Acs.Green.Transform.V20170825;
using System.Collections.Generic;

namespace Aliyun.Acs.Green.Model.V20170825
{
public class AddFacesRequest : RoaAcsRequest<AddFacesResponse>
{
public AddFacesRequest()
: base("Green", "2017-08-25", "AddFaces", "green", "openAPI")
{
UriPattern = "/green/sface/addFaces";
Method = MethodType.POST;
}

private string regionId;

private string clientInfo;

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

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

public override AddFacesResponse GetResponse(Core.Transform.UnmarshallerContext unmarshallerContext)
{
return AddFacesResponseUnmarshaller.Unmarshall(unmarshallerContext);
}
}
}
27 changes: 27 additions & 0 deletions aliyun-net-sdk-green/Green/Model/V20170825/AddFacesResponse.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/*
* 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.Green.Model.V20170825
{
public class AddFacesResponse : AcsResponse
{
}
}
73 changes: 73 additions & 0 deletions aliyun-net-sdk-green/Green/Model/V20170825/AddGroupsRequest.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
/*
* 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.Green.Transform;
using Aliyun.Acs.Green.Transform.V20170825;
using System.Collections.Generic;

namespace Aliyun.Acs.Green.Model.V20170825
{
public class AddGroupsRequest : RoaAcsRequest<AddGroupsResponse>
{
public AddGroupsRequest()
: base("Green", "2017-08-25", "AddGroups", "green", "openAPI")
{
UriPattern = "/green/sface/addGroupsOfPerson";
Method = MethodType.POST;
}

private string regionId;

private string clientInfo;

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

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

public override AddGroupsResponse GetResponse(Core.Transform.UnmarshallerContext unmarshallerContext)
{
return AddGroupsResponseUnmarshaller.Unmarshall(unmarshallerContext);
}
}
}
27 changes: 27 additions & 0 deletions aliyun-net-sdk-green/Green/Model/V20170825/AddGroupsResponse.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/*
* 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.Green.Model.V20170825
{
public class AddGroupsResponse : AcsResponse
{
}
}
73 changes: 73 additions & 0 deletions aliyun-net-sdk-green/Green/Model/V20170825/AddPersonRequest.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
/*
* 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.Green.Transform;
using Aliyun.Acs.Green.Transform.V20170825;
using System.Collections.Generic;

namespace Aliyun.Acs.Green.Model.V20170825
{
public class AddPersonRequest : RoaAcsRequest<AddPersonResponse>
{
public AddPersonRequest()
: base("Green", "2017-08-25", "AddPerson", "green", "openAPI")
{
UriPattern = "/green/sface/addPerson";
Method = MethodType.POST;
}

private string regionId;

private string clientInfo;

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

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

public override AddPersonResponse GetResponse(Core.Transform.UnmarshallerContext unmarshallerContext)
{
return AddPersonResponseUnmarshaller.Unmarshall(unmarshallerContext);
}
}
}
27 changes: 27 additions & 0 deletions aliyun-net-sdk-green/Green/Model/V20170825/AddPersonResponse.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/*
* 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.Green.Model.V20170825
{
public class AddPersonResponse : AcsResponse
{
}
}
73 changes: 73 additions & 0 deletions aliyun-net-sdk-green/Green/Model/V20170825/DeleteFacesRequest.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
/*
* 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.Green.Transform;
using Aliyun.Acs.Green.Transform.V20170825;
using System.Collections.Generic;

namespace Aliyun.Acs.Green.Model.V20170825
{
public class DeleteFacesRequest : RoaAcsRequest<DeleteFacesResponse>
{
public DeleteFacesRequest()
: base("Green", "2017-08-25", "DeleteFaces", "green", "openAPI")
{
UriPattern = "/green/sface/deleteFaces";
Method = MethodType.POST;
}

private string regionId;

private string clientInfo;

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

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

public override DeleteFacesResponse GetResponse(Core.Transform.UnmarshallerContext unmarshallerContext)
{
return DeleteFacesResponseUnmarshaller.Unmarshall(unmarshallerContext);
}
}
}
Loading

0 comments on commit d84b5ff

Please sign in to comment.