-
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.
VOD SDK Auto Released By xiao.xwp,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.
- Loading branch information
Showing
294 changed files
with
4,057 additions
and
129 deletions.
There are no files selected for viewing
Binary file not shown.
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
Empty file.
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
Empty file modified
0
aliyun-net-sdk-vod/Vod/Model/V20170321/AddEditingProjectResponse.cs
100755 → 100644
Empty file.
161 changes: 161 additions & 0 deletions
161
aliyun-net-sdk-vod/Vod/Model/V20170321/AddVodTemplateRequest.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,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
55
aliyun-net-sdk-vod/Vod/Model/V20170321/AddVodTemplateResponse.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,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; | ||
} | ||
} | ||
} | ||
} |
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
Empty file modified
0
aliyun-net-sdk-vod/Vod/Model/V20170321/AddWatermarkResponse.cs
100755 → 100644
Empty file.
131 changes: 131 additions & 0 deletions
131
aliyun-net-sdk-vod/Vod/Model/V20170321/AddWorkFlowRequest.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,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); | ||
} | ||
} | ||
} |
Oops, something went wrong.