Skip to content

Commit

Permalink
VOD SDK Auto Released By xiao.xwp,Version:2.11.8
Browse files Browse the repository at this point in the history
发布日志:
1, Add new apis called AddVodTemplate, UpdateVodTemplate, DeleteVodTemplate, ListVodTemplate, GetVodTemplate and SetDefaultVodTemplate which support vodtemplate feature.
2, Add a new api called CreateUploadAttachedMedia to get upload auth for attached media
3, Add new apis called AddWorkFlow, UpdateWorkFlow, DeleteWorkFlow, ListWorkFlow, GetWorkFlow  which support workflow feature.
  • Loading branch information
jxyowen committed Nov 30, 2018
1 parent 5db3d33 commit ce91517
Show file tree
Hide file tree
Showing 294 changed files with 4,057 additions and 129 deletions.
Binary file removed aliyun-net-sdk-vod/.DS_Store
Binary file not shown.
5 changes: 5 additions & 0 deletions aliyun-net-sdk-vod/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2018-11-30 Version: 2.11.8
1, Add new apis called AddVodTemplate, UpdateVodTemplate, DeleteVodTemplate, ListVodTemplate, GetVodTemplate and SetDefaultVodTemplate which support vodtemplate feature.
2, Add a new api called CreateUploadAttachedMedia to get upload auth for attached media
3, Add new apis called AddWorkFlow, UpdateWorkFlow, DeleteWorkFlow, ListWorkFlow, GetWorkFlow which support workflow feature.

2018-11-21 Version: 2.11.7
1, Add new apis called AddWatermark, UpdateWatermark, DeleteWatermark, ListWatermarks, GetWatermark and SetDefaultWatermark which support watermark feature.
2, Add a new api called RegisterMedia which supports registration of audio and video media files that already exist in the OSS bucket.
Expand Down
Binary file removed aliyun-net-sdk-vod/Vod/.DS_Store
Binary file not shown.
Binary file removed aliyun-net-sdk-vod/Vod/Model/.DS_Store
Binary file not shown.
Binary file removed aliyun-net-sdk-vod/Vod/Model/V20170321/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion aliyun-net-sdk-vod/Vod/Model/V20170321/AddCategoryRequest.cs
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ namespace Aliyun.Acs.vod.Model.V20170321
public class AddCategoryRequest : RpcAcsRequest<AddCategoryResponse>
{
public AddCategoryRequest()
: base("vod", "2017-03-21", "AddCategory", "vod", "openAPI")
: base("vod", "2017-03-21", "AddCategory")
{
}

Expand Down
Empty file modified aliyun-net-sdk-vod/Vod/Model/V20170321/AddCategoryResponse.cs
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion aliyun-net-sdk-vod/Vod/Model/V20170321/AddEditingProjectRequest.cs
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ namespace Aliyun.Acs.vod.Model.V20170321
public class AddEditingProjectRequest : RpcAcsRequest<AddEditingProjectResponse>
{
public AddEditingProjectRequest()
: base("vod", "2017-03-21", "AddEditingProject", "vod", "openAPI")
: base("vod", "2017-03-21", "AddEditingProject")
{
}

Expand Down
Empty file.
161 changes: 161 additions & 0 deletions aliyun-net-sdk-vod/Vod/Model/V20170321/AddVodTemplateRequest.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,161 @@
/*
* 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.vod.Transform;
using Aliyun.Acs.vod.Transform.V20170321;
using System.Collections.Generic;

namespace Aliyun.Acs.vod.Model.V20170321
{
public class AddVodTemplateRequest : RpcAcsRequest<AddVodTemplateResponse>
{
public AddVodTemplateRequest()
: base("vod", "2017-03-21", "AddVodTemplate")
{
}

private long? resourceOwnerId;

private string resourceOwnerAccount;

private string templateConfig;

private string templateType;

private string name;

private string action;

private long? ownerId;

private string subTemplateType;

public long? ResourceOwnerId
{
get
{
return resourceOwnerId;
}
set
{
resourceOwnerId = value;
DictionaryUtil.Add(QueryParameters, "ResourceOwnerId", value.ToString());
}
}

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

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

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

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

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

public long? OwnerId
{
get
{
return ownerId;
}
set
{
ownerId = value;
DictionaryUtil.Add(QueryParameters, "OwnerId", value.ToString());
}
}

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

public override AddVodTemplateResponse GetResponse(Core.Transform.UnmarshallerContext unmarshallerContext)
{
return AddVodTemplateResponseUnmarshaller.Unmarshall(unmarshallerContext);
}
}
}
55 changes: 55 additions & 0 deletions aliyun-net-sdk-vod/Vod/Model/V20170321/AddVodTemplateResponse.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/*
* 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.vod.Model.V20170321
{
public class AddVodTemplateResponse : AcsResponse
{

private string requestId;

private string vodTemplateId;

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

public string VodTemplateId
{
get
{
return vodTemplateId;
}
set
{
vodTemplateId = value;
}
}
}
}
2 changes: 1 addition & 1 deletion aliyun-net-sdk-vod/Vod/Model/V20170321/AddWatermarkRequest.cs
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ namespace Aliyun.Acs.vod.Model.V20170321
public class AddWatermarkRequest : RpcAcsRequest<AddWatermarkResponse>
{
public AddWatermarkRequest()
: base("vod", "2017-03-21", "AddWatermark", "vod", "openAPI")
: base("vod", "2017-03-21", "AddWatermark")
{
}

Expand Down
Empty file modified aliyun-net-sdk-vod/Vod/Model/V20170321/AddWatermarkResponse.cs
100755 → 100644
Empty file.
131 changes: 131 additions & 0 deletions aliyun-net-sdk-vod/Vod/Model/V20170321/AddWorkFlowRequest.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
/*
* 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.vod.Transform;
using Aliyun.Acs.vod.Transform.V20170321;
using System.Collections.Generic;

namespace Aliyun.Acs.vod.Model.V20170321
{
public class AddWorkFlowRequest : RpcAcsRequest<AddWorkFlowResponse>
{
public AddWorkFlowRequest()
: base("vod", "2017-03-21", "AddWorkFlow")
{
}

private long? resourceOwnerId;

private string resourceOwnerAccount;

private string name;

private string actionList;

private string action;

private long? ownerId;

public long? ResourceOwnerId
{
get
{
return resourceOwnerId;
}
set
{
resourceOwnerId = value;
DictionaryUtil.Add(QueryParameters, "ResourceOwnerId", value.ToString());
}
}

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

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

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

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

public long? OwnerId
{
get
{
return ownerId;
}
set
{
ownerId = value;
DictionaryUtil.Add(QueryParameters, "OwnerId", value.ToString());
}
}

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

0 comments on commit ce91517

Please sign in to comment.