浏览代码

Improve compatibility

Signed-off-by: gaort <rutong.grt@alibaba-inc.com>
gaort 7 年之前
父节点
当前提交
7c4577674d
共有 58 个文件被更改,包括 83 次插入823 次删除
  1. 5 5
      services/aegis/get_entity_list.go
  2. 5 5
      services/aegis/query_crack_event.go
  3. 1 1
      services/aegis/struct_data.go
  4. 0 21
      services/aegis/struct_data_in_get_entity_list.go
  5. 0 21
      services/aegis/struct_data_in_query_crack_event.go
  6. 6 6
      services/ccc/list_users_of_skill_group.go
  7. 1 1
      services/ccc/struct_list_in_list_users_of_skill_group.go
  8. 0 22
      services/ccc/struct_skill_level_in_list_skill_groups_of_user.go
  9. 1 1
      services/ccc/struct_skill_levels_in_list_skill_groups_of_user.go
  10. 7 7
      services/ccc/struct_user.go
  11. 0 25
      services/ccc/struct_user_in_list_users_of_skill_group.go
  12. 4 4
      services/ccc/struct_users.go
  13. 0 23
      services/ccc/struct_users_in_list_users_of_skill_group.go
  14. 5 5
      services/cloudphoto/create_album.go
  15. 5 5
      services/cloudphoto/get_photo_store.go
  16. 1 0
      services/cloudphoto/struct_album.go
  17. 0 27
      services/cloudphoto/struct_album_in_create_album.go
  18. 10 9
      services/cloudphoto/struct_photo_store.go
  19. 0 29
      services/cloudphoto/struct_photo_store_in_get_photo_store.go
  20. 2 2
      services/mts/add_pipeline.go
  21. 1 1
      services/mts/struct_job.go
  22. 0 30
      services/mts/struct_job_in_query_job_list.go
  23. 0 30
      services/mts/struct_job_in_submit_jobs.go
  24. 1 1
      services/mts/struct_job_list_in_query_job_list.go
  25. 0 23
      services/mts/struct_job_result_in_submit_jobs.go
  26. 1 1
      services/mts/struct_job_result_list_in_submit_jobs.go
  27. 2 2
      services/mts/struct_media_info.go
  28. 10 10
      services/mts/struct_media_info_job.go
  29. 0 21
      services/mts/struct_mux_config_in_query_analysis_job_list.go
  30. 0 21
      services/mts/struct_mux_config_in_submit_analysis_job.go
  31. 1 1
      services/mts/struct_output.go
  32. 0 45
      services/mts/struct_output_in_query_job_list.go
  33. 2 0
      services/mts/struct_pipeline.go
  34. 0 26
      services/mts/struct_pipeline_in_add_pipeline.go
  35. 0 26
      services/mts/struct_pipeline_in_query_pipeline_list.go
  36. 0 26
      services/mts/struct_pipeline_in_search_pipeline.go
  37. 0 24
      services/mts/struct_pipeline_in_update_asr_pipeline.go
  38. 0 25
      services/mts/struct_pipeline_in_update_pipeline.go
  39. 1 1
      services/mts/struct_pipeline_list_in_query_pipeline_list.go
  40. 1 1
      services/mts/struct_pipeline_list_in_search_pipeline.go
  41. 0 28
      services/mts/struct_properties_in_query_media_info_job_list.go
  42. 0 28
      services/mts/struct_properties_in_submit_media_info_job.go
  43. 0 22
      services/mts/struct_streams_in_query_media_info_job_list.go
  44. 0 22
      services/mts/struct_streams_in_query_media_list.go
  45. 0 22
      services/mts/struct_streams_in_query_media_list_by_url.go
  46. 0 22
      services/mts/struct_streams_in_submit_media_info_job.go
  47. 0 27
      services/mts/struct_template_in_query_analysis_job_list.go
  48. 0 27
      services/mts/struct_template_in_query_template_list.go
  49. 0 27
      services/mts/struct_template_in_search_template.go
  50. 0 27
      services/mts/struct_template_in_submit_analysis_job.go
  51. 0 27
      services/mts/struct_template_in_update_template.go
  52. 1 1
      services/mts/struct_template_list_in_query_analysis_job_list.go
  53. 1 1
      services/mts/struct_template_list_in_query_template_list.go
  54. 1 1
      services/mts/struct_template_list_in_search_template.go
  55. 1 1
      services/mts/struct_template_list_in_submit_analysis_job.go
  56. 2 2
      services/mts/update_asr_pipeline.go
  57. 2 2
      services/mts/update_pipeline.go
  58. 2 2
      services/mts/update_template.go

+ 5 - 5
services/aegis/get_entity_list.go

@@ -77,11 +77,11 @@ type GetEntityListRequest struct {
 
 type GetEntityListResponse struct {
 	*responses.BaseResponse
-	RequestId string              `json:"requestId" xml:"requestId"`
-	Code      string              `json:"Code" xml:"Code"`
-	Success   bool                `json:"Success" xml:"Success"`
-	Message   string              `json:"Message" xml:"Message"`
-	Data      DataInGetEntityList `json:"Data" xml:"Data"`
+	RequestId string `json:"requestId" xml:"requestId"`
+	Code      string `json:"Code" xml:"Code"`
+	Success   bool   `json:"Success" xml:"Success"`
+	Message   string `json:"Message" xml:"Message"`
+	Data      Data   `json:"Data" xml:"Data"`
 }
 
 func CreateGetEntityListRequest() (request *GetEntityListRequest) {

+ 5 - 5
services/aegis/query_crack_event.go

@@ -76,11 +76,11 @@ type QueryCrackEventRequest struct {
 
 type QueryCrackEventResponse struct {
 	*responses.BaseResponse
-	RequestId string                `json:"requestId" xml:"requestId"`
-	Code      string                `json:"Code" xml:"Code"`
-	Success   bool                  `json:"Success" xml:"Success"`
-	Message   string                `json:"Message" xml:"Message"`
-	Data      DataInQueryCrackEvent `json:"Data" xml:"Data"`
+	RequestId string `json:"requestId" xml:"requestId"`
+	Code      string `json:"Code" xml:"Code"`
+	Success   bool   `json:"Success" xml:"Success"`
+	Message   string `json:"Message" xml:"Message"`
+	Data      Data   `json:"Data" xml:"Data"`
 }
 
 func CreateQueryCrackEventRequest() (request *QueryCrackEventRequest) {

+ 1 - 1
services/aegis/struct_data.go

@@ -31,6 +31,6 @@ type Data struct {
 	Type           int                   `json:"Type" xml:"Type"`
 	Trojan         int                   `json:"Trojan" xml:"Trojan"`
 	PageInfo       PageInfo              `json:"PageInfo" xml:"PageInfo"`
+	List           ListInQueryCrackEvent `json:"List" xml:"List"`
 	ConfigTargets  ConfigTargets         `json:"ConfigTargets" xml:"ConfigTargets"`
-	List           ListInQueryLoginEvent `json:"List" xml:"List"`
 }

+ 0 - 21
services/aegis/struct_data_in_get_entity_list.go

@@ -1,21 +0,0 @@
-package aegis
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type DataInGetEntityList struct {
-	PageInfo PageInfo            `json:"PageInfo" xml:"PageInfo"`
-	List     ListInGetEntityList `json:"List" xml:"List"`
-}

+ 0 - 21
services/aegis/struct_data_in_query_crack_event.go

@@ -1,21 +0,0 @@
-package aegis
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type DataInQueryCrackEvent struct {
-	PageInfo PageInfo              `json:"PageInfo" xml:"PageInfo"`
-	List     ListInQueryCrackEvent `json:"List" xml:"List"`
-}

+ 6 - 6
services/ccc/list_users_of_skill_group.go

@@ -75,12 +75,12 @@ type ListUsersOfSkillGroupRequest struct {
 
 type ListUsersOfSkillGroupResponse struct {
 	*responses.BaseResponse
-	RequestId      string                       `json:"RequestId" xml:"RequestId"`
-	Success        bool                         `json:"Success" xml:"Success"`
-	Code           string                       `json:"Code" xml:"Code"`
-	Message        string                       `json:"Message" xml:"Message"`
-	HttpStatusCode int                          `json:"HttpStatusCode" xml:"HttpStatusCode"`
-	Users          UsersInListUsersOfSkillGroup `json:"Users" xml:"Users"`
+	RequestId      string `json:"RequestId" xml:"RequestId"`
+	Success        bool   `json:"Success" xml:"Success"`
+	Code           string `json:"Code" xml:"Code"`
+	Message        string `json:"Message" xml:"Message"`
+	HttpStatusCode int    `json:"HttpStatusCode" xml:"HttpStatusCode"`
+	Users          Users  `json:"Users" xml:"Users"`
 }
 
 func CreateListUsersOfSkillGroupRequest() (request *ListUsersOfSkillGroupRequest) {

+ 1 - 1
services/ccc/struct_list_in_list_users_of_skill_group.go

@@ -16,5 +16,5 @@ package ccc
 // Changes may cause incorrect behavior and will be lost if the code is regenerated.
 
 type ListInListUsersOfSkillGroup struct {
-	User []UserInListUsersOfSkillGroup `json:"User" xml:"User"`
+	User []User `json:"User" xml:"User"`
 }

+ 0 - 22
services/ccc/struct_skill_level_in_list_skill_groups_of_user.go

@@ -1,22 +0,0 @@
-package ccc
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type SkillLevelInListSkillGroupsOfUser struct {
-	SkillLevelId string `json:"SkillLevelId" xml:"SkillLevelId"`
-	Level        int    `json:"Level" xml:"Level"`
-	Skill        Skill  `json:"Skill" xml:"Skill"`
-}

+ 1 - 1
services/ccc/struct_skill_levels_in_list_skill_groups_of_user.go

@@ -16,5 +16,5 @@ package ccc
 // Changes may cause incorrect behavior and will be lost if the code is regenerated.
 
 type SkillLevelsInListSkillGroupsOfUser struct {
-	SkillLevel []SkillLevelInListSkillGroupsOfUser `json:"SkillLevel" xml:"SkillLevel"`
+	SkillLevel []SkillLevel `json:"SkillLevel" xml:"SkillLevel"`
 }

+ 7 - 7
services/ccc/struct_user.go

@@ -16,11 +16,11 @@ package ccc
 // Changes may cause incorrect behavior and will be lost if the code is regenerated.
 
 type User struct {
-	UserId      string               `json:"UserId" xml:"UserId"`
-	RamId       string               `json:"RamId" xml:"RamId"`
-	Primary     bool                 `json:"Primary" xml:"Primary"`
-	InstanceId  string               `json:"InstanceId" xml:"InstanceId"`
-	Detail      Detail               `json:"Detail" xml:"Detail"`
-	SkillLevels SkillLevelsInGetUser `json:"SkillLevels" xml:"SkillLevels"`
-	Roles       RolesInGetUser       `json:"Roles" xml:"Roles"`
+	UserId      string                       `json:"UserId" xml:"UserId"`
+	RamId       string                       `json:"RamId" xml:"RamId"`
+	Primary     bool                         `json:"Primary" xml:"Primary"`
+	InstanceId  string                       `json:"InstanceId" xml:"InstanceId"`
+	Detail      Detail                       `json:"Detail" xml:"Detail"`
+	SkillLevels SkillLevelsInGetUser         `json:"SkillLevels" xml:"SkillLevels"`
+	Roles       RolesInListUsersOfSkillGroup `json:"Roles" xml:"Roles"`
 }

+ 0 - 25
services/ccc/struct_user_in_list_users_of_skill_group.go

@@ -1,25 +0,0 @@
-package ccc
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type UserInListUsersOfSkillGroup struct {
-	UserId      string                             `json:"UserId" xml:"UserId"`
-	RamId       string                             `json:"RamId" xml:"RamId"`
-	InstanceId  string                             `json:"InstanceId" xml:"InstanceId"`
-	Detail      Detail                             `json:"Detail" xml:"Detail"`
-	Roles       RolesInListUsersOfSkillGroup       `json:"Roles" xml:"Roles"`
-	SkillLevels SkillLevelsInListUsersOfSkillGroup `json:"SkillLevels" xml:"SkillLevels"`
-}

+ 4 - 4
services/ccc/struct_users.go

@@ -16,8 +16,8 @@ package ccc
 // Changes may cause incorrect behavior and will be lost if the code is regenerated.
 
 type Users struct {
-	PageNumber int             `json:"PageNumber" xml:"PageNumber"`
-	PageSize   int             `json:"PageSize" xml:"PageSize"`
-	TotalCount int             `json:"TotalCount" xml:"TotalCount"`
-	List       ListInListUsers `json:"List" xml:"List"`
+	PageNumber int                         `json:"PageNumber" xml:"PageNumber"`
+	PageSize   int                         `json:"PageSize" xml:"PageSize"`
+	TotalCount int                         `json:"TotalCount" xml:"TotalCount"`
+	List       ListInListUsersOfSkillGroup `json:"List" xml:"List"`
 }

+ 0 - 23
services/ccc/struct_users_in_list_users_of_skill_group.go

@@ -1,23 +0,0 @@
-package ccc
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type UsersInListUsersOfSkillGroup struct {
-	TotalCount int                         `json:"TotalCount" xml:"TotalCount"`
-	PageNumber int                         `json:"PageNumber" xml:"PageNumber"`
-	PageSize   int                         `json:"PageSize" xml:"PageSize"`
-	List       ListInListUsersOfSkillGroup `json:"List" xml:"List"`
-}

+ 5 - 5
services/cloudphoto/create_album.go

@@ -75,11 +75,11 @@ type CreateAlbumRequest struct {
 
 type CreateAlbumResponse struct {
 	*responses.BaseResponse
-	Code      string             `json:"Code" xml:"Code"`
-	Message   string             `json:"Message" xml:"Message"`
-	RequestId string             `json:"RequestId" xml:"RequestId"`
-	Action    string             `json:"Action" xml:"Action"`
-	Album     AlbumInCreateAlbum `json:"Album" xml:"Album"`
+	Code      string `json:"Code" xml:"Code"`
+	Message   string `json:"Message" xml:"Message"`
+	RequestId string `json:"RequestId" xml:"RequestId"`
+	Action    string `json:"Action" xml:"Action"`
+	Album     Album  `json:"Album" xml:"Album"`
 }
 
 func CreateCreateAlbumRequest() (request *CreateAlbumRequest) {

+ 5 - 5
services/cloudphoto/get_photo_store.go

@@ -72,11 +72,11 @@ type GetPhotoStoreRequest struct {
 
 type GetPhotoStoreResponse struct {
 	*responses.BaseResponse
-	Code       string                    `json:"Code" xml:"Code"`
-	Message    string                    `json:"Message" xml:"Message"`
-	RequestId  string                    `json:"RequestId" xml:"RequestId"`
-	Action     string                    `json:"Action" xml:"Action"`
-	PhotoStore PhotoStoreInGetPhotoStore `json:"PhotoStore" xml:"PhotoStore"`
+	Code       string     `json:"Code" xml:"Code"`
+	Message    string     `json:"Message" xml:"Message"`
+	RequestId  string     `json:"RequestId" xml:"RequestId"`
+	Action     string     `json:"Action" xml:"Action"`
+	PhotoStore PhotoStore `json:"PhotoStore" xml:"PhotoStore"`
 }
 
 func CreateGetPhotoStoreRequest() (request *GetPhotoStoreRequest) {

+ 1 - 0
services/cloudphoto/struct_album.go

@@ -20,6 +20,7 @@ type Album struct {
 	Ctime       int    `json:"Ctime" xml:"Ctime"`
 	Name        string `json:"Name" xml:"Name"`
 	Id          int    `json:"Id" xml:"Id"`
+	Remark      string `json:"Remark" xml:"Remark"`
 	PhotosCount int    `json:"PhotosCount" xml:"PhotosCount"`
 	State       string `json:"State" xml:"State"`
 	Cover       Cover  `json:"Cover" xml:"Cover"`

+ 0 - 27
services/cloudphoto/struct_album_in_create_album.go

@@ -1,27 +0,0 @@
-package cloudphoto
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type AlbumInCreateAlbum struct {
-	Id          int    `json:"Id" xml:"Id"`
-	Name        string `json:"Name" xml:"Name"`
-	State       string `json:"State" xml:"State"`
-	Remark      string `json:"Remark" xml:"Remark"`
-	PhotosCount int    `json:"PhotosCount" xml:"PhotosCount"`
-	Ctime       int    `json:"Ctime" xml:"Ctime"`
-	Mtime       int    `json:"Mtime" xml:"Mtime"`
-	Cover       Cover  `json:"Cover" xml:"Cover"`
-}

+ 10 - 9
services/cloudphoto/struct_photo_store.go

@@ -16,13 +16,14 @@ package cloudphoto
 // Changes may cause incorrect behavior and will be lost if the code is regenerated.
 
 type PhotoStore struct {
-	Mtime            int      `json:"Mtime" xml:"Mtime"`
-	DefaultQuota     int      `json:"DefaultQuota" xml:"DefaultQuota"`
-	AutoCleanDays    int      `json:"AutoCleanDays" xml:"AutoCleanDays"`
-	Ctime            int      `json:"Ctime" xml:"Ctime"`
-	AutoCleanEnabled bool     `json:"AutoCleanEnabled" xml:"AutoCleanEnabled"`
-	Name             string   `json:"Name" xml:"Name"`
-	Id               int      `json:"Id" xml:"Id"`
-	Remark           string   `json:"Remark" xml:"Remark"`
-	Buckets          []Bucket `json:"Buckets" xml:"Buckets"`
+	Mtime             int      `json:"Mtime" xml:"Mtime"`
+	DefaultQuota      int      `json:"DefaultQuota" xml:"DefaultQuota"`
+	AutoCleanDays     int      `json:"AutoCleanDays" xml:"AutoCleanDays"`
+	Ctime             int      `json:"Ctime" xml:"Ctime"`
+	AutoCleanEnabled  bool     `json:"AutoCleanEnabled" xml:"AutoCleanEnabled"`
+	Name              string   `json:"Name" xml:"Name"`
+	Id                int      `json:"Id" xml:"Id"`
+	Remark            string   `json:"Remark" xml:"Remark"`
+	DefaultTrashQuota int      `json:"DefaultTrashQuota" xml:"DefaultTrashQuota"`
+	Buckets           []Bucket `json:"Buckets" xml:"Buckets"`
 }

+ 0 - 29
services/cloudphoto/struct_photo_store_in_get_photo_store.go

@@ -1,29 +0,0 @@
-package cloudphoto
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type PhotoStoreInGetPhotoStore struct {
-	Id                int      `json:"Id" xml:"Id"`
-	Name              string   `json:"Name" xml:"Name"`
-	Remark            string   `json:"Remark" xml:"Remark"`
-	AutoCleanEnabled  bool     `json:"AutoCleanEnabled" xml:"AutoCleanEnabled"`
-	AutoCleanDays     int      `json:"AutoCleanDays" xml:"AutoCleanDays"`
-	DefaultQuota      int      `json:"DefaultQuota" xml:"DefaultQuota"`
-	DefaultTrashQuota int      `json:"DefaultTrashQuota" xml:"DefaultTrashQuota"`
-	Ctime             int      `json:"Ctime" xml:"Ctime"`
-	Mtime             int      `json:"Mtime" xml:"Mtime"`
-	Buckets           []Bucket `json:"Buckets" xml:"Buckets"`
-}

+ 2 - 2
services/mts/add_pipeline.go

@@ -80,8 +80,8 @@ type AddPipelineRequest struct {
 
 type AddPipelineResponse struct {
 	*responses.BaseResponse
-	RequestId string                `json:"RequestId" xml:"RequestId"`
-	Pipeline  PipelineInAddPipeline `json:"Pipeline" xml:"Pipeline"`
+	RequestId string   `json:"RequestId" xml:"RequestId"`
+	Pipeline  Pipeline `json:"Pipeline" xml:"Pipeline"`
 }
 
 func CreateAddPipelineRequest() (request *AddPipelineRequest) {

+ 1 - 1
services/mts/struct_job.go

@@ -32,9 +32,9 @@ type Job struct {
 	MNSMessageResult   MNSMessageResult                   `json:"MNSMessageResult" xml:"MNSMessageResult"`
 	AsrResult          AsrResult                          `json:"AsrResult" xml:"AsrResult"`
 	Input              Input                              `json:"Input" xml:"Input"`
+	Output             Output                             `json:"Output" xml:"Output"`
 	MediaDetailConfig  MediaDetailConfig                  `json:"MediaDetailConfig" xml:"MediaDetailConfig"`
 	EditingConfig      EditingConfig                      `json:"EditingConfig" xml:"EditingConfig"`
-	Output             Output                             `json:"Output" xml:"Output"`
 	VideoSummaryResult VideoSummaryResult                 `json:"VideoSummaryResult" xml:"VideoSummaryResult"`
 	VideoSplitResult   VideoSplitResult                   `json:"VideoSplitResult" xml:"VideoSplitResult"`
 	EditingInputs      EditingInputsInQueryEditingJobList `json:"EditingInputs" xml:"EditingInputs"`

+ 0 - 30
services/mts/struct_job_in_query_job_list.go

@@ -1,30 +0,0 @@
-package mts
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type JobInQueryJobList struct {
-	JobId            string               `json:"JobId" xml:"JobId"`
-	State            string               `json:"State" xml:"State"`
-	Code             string               `json:"Code" xml:"Code"`
-	Message          string               `json:"Message" xml:"Message"`
-	Percent          int                  `json:"Percent" xml:"Percent"`
-	PipelineId       string               `json:"PipelineId" xml:"PipelineId"`
-	CreationTime     string               `json:"CreationTime" xml:"CreationTime"`
-	FinishTime       string               `json:"FinishTime" xml:"FinishTime"`
-	Input            Input                `json:"Input" xml:"Input"`
-	Output           OutputInQueryJobList `json:"Output" xml:"Output"`
-	MNSMessageResult MNSMessageResult     `json:"MNSMessageResult" xml:"MNSMessageResult"`
-}

+ 0 - 30
services/mts/struct_job_in_submit_jobs.go

@@ -1,30 +0,0 @@
-package mts
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type JobInSubmitJobs struct {
-	JobId            string           `json:"JobId" xml:"JobId"`
-	State            string           `json:"State" xml:"State"`
-	Code             string           `json:"Code" xml:"Code"`
-	Message          string           `json:"Message" xml:"Message"`
-	Percent          int              `json:"Percent" xml:"Percent"`
-	PipelineId       string           `json:"PipelineId" xml:"PipelineId"`
-	CreationTime     string           `json:"CreationTime" xml:"CreationTime"`
-	FinishTime       string           `json:"FinishTime" xml:"FinishTime"`
-	Input            Input            `json:"Input" xml:"Input"`
-	Output           Output           `json:"Output" xml:"Output"`
-	MNSMessageResult MNSMessageResult `json:"MNSMessageResult" xml:"MNSMessageResult"`
-}

+ 1 - 1
services/mts/struct_job_list_in_query_job_list.go

@@ -16,5 +16,5 @@ package mts
 // Changes may cause incorrect behavior and will be lost if the code is regenerated.
 
 type JobListInQueryJobList struct {
-	Job []JobInQueryJobList `json:"Job" xml:"Job"`
+	Job []Job `json:"Job" xml:"Job"`
 }

+ 0 - 23
services/mts/struct_job_result_in_submit_jobs.go

@@ -1,23 +0,0 @@
-package mts
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type JobResultInSubmitJobs struct {
-	Success bool            `json:"Success" xml:"Success"`
-	Code    string          `json:"Code" xml:"Code"`
-	Message string          `json:"Message" xml:"Message"`
-	Job     JobInSubmitJobs `json:"Job" xml:"Job"`
-}

+ 1 - 1
services/mts/struct_job_result_list_in_submit_jobs.go

@@ -16,5 +16,5 @@ package mts
 // Changes may cause incorrect behavior and will be lost if the code is regenerated.
 
 type JobResultListInSubmitJobs struct {
-	JobResult []JobResultInSubmitJobs `json:"JobResult" xml:"JobResult"`
+	JobResult []JobResult `json:"JobResult" xml:"JobResult"`
 }

+ 2 - 2
services/mts/struct_media_info.go

@@ -16,6 +16,6 @@ package mts
 // Changes may cause incorrect behavior and will be lost if the code is regenerated.
 
 type MediaInfo struct {
-	Streams StreamsInQueryMediaListByURL `json:"Streams" xml:"Streams"`
-	Format  Format                       `json:"Format" xml:"Format"`
+	Streams Streams `json:"Streams" xml:"Streams"`
+	Format  Format  `json:"Format" xml:"Format"`
 }

+ 10 - 10
services/mts/struct_media_info_job.go

@@ -16,14 +16,14 @@ package mts
 // Changes may cause incorrect behavior and will be lost if the code is regenerated.
 
 type MediaInfoJob struct {
-	CreationTime     string                            `json:"CreationTime" xml:"CreationTime"`
-	Message          string                            `json:"Message" xml:"Message"`
-	PipelineId       string                            `json:"PipelineId" xml:"PipelineId"`
-	State            string                            `json:"State" xml:"State"`
-	Code             string                            `json:"Code" xml:"Code"`
-	UserData         string                            `json:"UserData" xml:"UserData"`
-	JobId            string                            `json:"JobId" xml:"JobId"`
-	MNSMessageResult MNSMessageResult                  `json:"MNSMessageResult" xml:"MNSMessageResult"`
-	Input            Input                             `json:"Input" xml:"Input"`
-	Properties       PropertiesInQueryMediaInfoJobList `json:"Properties" xml:"Properties"`
+	CreationTime     string           `json:"CreationTime" xml:"CreationTime"`
+	Message          string           `json:"Message" xml:"Message"`
+	PipelineId       string           `json:"PipelineId" xml:"PipelineId"`
+	State            string           `json:"State" xml:"State"`
+	Code             string           `json:"Code" xml:"Code"`
+	UserData         string           `json:"UserData" xml:"UserData"`
+	JobId            string           `json:"JobId" xml:"JobId"`
+	MNSMessageResult MNSMessageResult `json:"MNSMessageResult" xml:"MNSMessageResult"`
+	Input            Input            `json:"Input" xml:"Input"`
+	Properties       Properties       `json:"Properties" xml:"Properties"`
 }

+ 0 - 21
services/mts/struct_mux_config_in_query_analysis_job_list.go

@@ -1,21 +0,0 @@
-package mts
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type MuxConfigInQueryAnalysisJobList struct {
-	Segment Segment `json:"Segment" xml:"Segment"`
-	Gif     Gif     `json:"Gif" xml:"Gif"`
-}

+ 0 - 21
services/mts/struct_mux_config_in_submit_analysis_job.go

@@ -1,21 +0,0 @@
-package mts
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type MuxConfigInSubmitAnalysisJob struct {
-	Segment Segment `json:"Segment" xml:"Segment"`
-	Gif     Gif     `json:"Gif" xml:"Gif"`
-}

+ 1 - 1
services/mts/struct_output.go

@@ -28,10 +28,10 @@ type Output struct {
 	TransConfig            TransConfig              `json:"TransConfig" xml:"TransConfig"`
 	Encryption             Encryption               `json:"Encryption" xml:"Encryption"`
 	MuxConfig              MuxConfig                `json:"MuxConfig" xml:"MuxConfig"`
+	Properties             Properties               `json:"Properties" xml:"Properties"`
 	OutputFile             OutputFile               `json:"OutputFile" xml:"OutputFile"`
 	Video                  Video                    `json:"Video" xml:"Video"`
 	Container              Container                `json:"Container" xml:"Container"`
-	Properties             Properties               `json:"Properties" xml:"Properties"`
 	Clip                   Clip                     `json:"Clip" xml:"Clip"`
 	SuperReso              SuperReso                `json:"SuperReso" xml:"SuperReso"`
 	Audio                  Audio                    `json:"Audio" xml:"Audio"`

+ 0 - 45
services/mts/struct_output_in_query_job_list.go

@@ -1,45 +0,0 @@
-package mts
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type OutputInQueryJobList struct {
-	TemplateId             string                        `json:"TemplateId" xml:"TemplateId"`
-	UserData               string                        `json:"UserData" xml:"UserData"`
-	Rotate                 string                        `json:"Rotate" xml:"Rotate"`
-	VideoStreamMap         string                        `json:"VideoStreamMap" xml:"VideoStreamMap"`
-	AudioStreamMap         string                        `json:"AudioStreamMap" xml:"AudioStreamMap"`
-	DeWatermark            string                        `json:"DeWatermark" xml:"DeWatermark"`
-	Priority               string                        `json:"Priority" xml:"Priority"`
-	WaterMarkConfigUrl     string                        `json:"WaterMarkConfigUrl" xml:"WaterMarkConfigUrl"`
-	MergeConfigUrl         string                        `json:"MergeConfigUrl" xml:"MergeConfigUrl"`
-	OutputFile             OutputFile                    `json:"OutputFile" xml:"OutputFile"`
-	M3U8NonStandardSupport M3U8NonStandardSupport        `json:"M3U8NonStandardSupport" xml:"M3U8NonStandardSupport"`
-	Properties             Properties                    `json:"Properties" xml:"Properties"`
-	Clip                   Clip                          `json:"Clip" xml:"Clip"`
-	SuperReso              SuperReso                     `json:"SuperReso" xml:"SuperReso"`
-	SubtitleConfig         SubtitleConfig                `json:"SubtitleConfig" xml:"SubtitleConfig"`
-	TransConfig            TransConfig                   `json:"TransConfig" xml:"TransConfig"`
-	MuxConfig              MuxConfig                     `json:"MuxConfig" xml:"MuxConfig"`
-	Audio                  Audio                         `json:"Audio" xml:"Audio"`
-	Video                  Video                         `json:"Video" xml:"Video"`
-	Container              Container                     `json:"Container" xml:"Container"`
-	Encryption             Encryption                    `json:"Encryption" xml:"Encryption"`
-	WaterMarkList          WaterMarkListInQueryJobList   `json:"WaterMarkList" xml:"WaterMarkList"`
-	MergeList              MergeListInQueryJobList       `json:"MergeList" xml:"MergeList"`
-	OpeningList            OpeningListInQueryJobList     `json:"OpeningList" xml:"OpeningList"`
-	TailSlateList          TailSlateListInQueryJobList   `json:"TailSlateList" xml:"TailSlateList"`
-	OutSubtitleList        OutSubtitleListInQueryJobList `json:"OutSubtitleList" xml:"OutSubtitleList"`
-}

+ 2 - 0
services/mts/struct_pipeline.go

@@ -16,6 +16,8 @@ package mts
 // Changes may cause incorrect behavior and will be lost if the code is regenerated.
 
 type Pipeline struct {
+	Speed        string       `json:"Speed" xml:"Speed"`
+	SpeedLevel   int          `json:"SpeedLevel" xml:"SpeedLevel"`
 	Id           string       `json:"Id" xml:"Id"`
 	Role         string       `json:"Role" xml:"Role"`
 	Name         string       `json:"Name" xml:"Name"`

+ 0 - 26
services/mts/struct_pipeline_in_add_pipeline.go

@@ -1,26 +0,0 @@
-package mts
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type PipelineInAddPipeline struct {
-	Id           string       `json:"Id" xml:"Id"`
-	Name         string       `json:"Name" xml:"Name"`
-	State        string       `json:"State" xml:"State"`
-	Speed        string       `json:"Speed" xml:"Speed"`
-	SpeedLevel   int          `json:"SpeedLevel" xml:"SpeedLevel"`
-	Role         string       `json:"Role" xml:"Role"`
-	NotifyConfig NotifyConfig `json:"NotifyConfig" xml:"NotifyConfig"`
-}

+ 0 - 26
services/mts/struct_pipeline_in_query_pipeline_list.go

@@ -1,26 +0,0 @@
-package mts
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type PipelineInQueryPipelineList struct {
-	Id           string       `json:"Id" xml:"Id"`
-	Name         string       `json:"Name" xml:"Name"`
-	State        string       `json:"State" xml:"State"`
-	Speed        string       `json:"Speed" xml:"Speed"`
-	SpeedLevel   int          `json:"SpeedLevel" xml:"SpeedLevel"`
-	Role         string       `json:"Role" xml:"Role"`
-	NotifyConfig NotifyConfig `json:"NotifyConfig" xml:"NotifyConfig"`
-}

+ 0 - 26
services/mts/struct_pipeline_in_search_pipeline.go

@@ -1,26 +0,0 @@
-package mts
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type PipelineInSearchPipeline struct {
-	Id           string       `json:"Id" xml:"Id"`
-	Name         string       `json:"Name" xml:"Name"`
-	State        string       `json:"State" xml:"State"`
-	Speed        string       `json:"Speed" xml:"Speed"`
-	SpeedLevel   int          `json:"SpeedLevel" xml:"SpeedLevel"`
-	Role         string       `json:"Role" xml:"Role"`
-	NotifyConfig NotifyConfig `json:"NotifyConfig" xml:"NotifyConfig"`
-}

+ 0 - 24
services/mts/struct_pipeline_in_update_asr_pipeline.go

@@ -1,24 +0,0 @@
-package mts
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type PipelineInUpdateAsrPipeline struct {
-	Id           string       `json:"Id" xml:"Id"`
-	Name         string       `json:"Name" xml:"Name"`
-	State        string       `json:"State" xml:"State"`
-	Priority     int          `json:"Priority" xml:"Priority"`
-	NotifyConfig NotifyConfig `json:"NotifyConfig" xml:"NotifyConfig"`
-}

+ 0 - 25
services/mts/struct_pipeline_in_update_pipeline.go

@@ -1,25 +0,0 @@
-package mts
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type PipelineInUpdatePipeline struct {
-	Id           string       `json:"Id" xml:"Id"`
-	Name         string       `json:"Name" xml:"Name"`
-	State        string       `json:"State" xml:"State"`
-	Speed        string       `json:"Speed" xml:"Speed"`
-	Role         string       `json:"Role" xml:"Role"`
-	NotifyConfig NotifyConfig `json:"NotifyConfig" xml:"NotifyConfig"`
-}

+ 1 - 1
services/mts/struct_pipeline_list_in_query_pipeline_list.go

@@ -16,5 +16,5 @@ package mts
 // Changes may cause incorrect behavior and will be lost if the code is regenerated.
 
 type PipelineListInQueryPipelineList struct {
-	Pipeline []PipelineInQueryPipelineList `json:"Pipeline" xml:"Pipeline"`
+	Pipeline []Pipeline `json:"Pipeline" xml:"Pipeline"`
 }

+ 1 - 1
services/mts/struct_pipeline_list_in_search_pipeline.go

@@ -16,5 +16,5 @@ package mts
 // Changes may cause incorrect behavior and will be lost if the code is regenerated.
 
 type PipelineListInSearchPipeline struct {
-	Pipeline []PipelineInSearchPipeline `json:"Pipeline" xml:"Pipeline"`
+	Pipeline []Pipeline `json:"Pipeline" xml:"Pipeline"`
 }

+ 0 - 28
services/mts/struct_properties_in_query_media_info_job_list.go

@@ -1,28 +0,0 @@
-package mts
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type PropertiesInQueryMediaInfoJobList struct {
-	Width      string                         `json:"Width" xml:"Width"`
-	Height     string                         `json:"Height" xml:"Height"`
-	Bitrate    string                         `json:"Bitrate" xml:"Bitrate"`
-	Duration   string                         `json:"Duration" xml:"Duration"`
-	Fps        string                         `json:"Fps" xml:"Fps"`
-	FileSize   string                         `json:"FileSize" xml:"FileSize"`
-	FileFormat string                         `json:"FileFormat" xml:"FileFormat"`
-	Streams    StreamsInQueryMediaInfoJobList `json:"Streams" xml:"Streams"`
-	Format     Format                         `json:"Format" xml:"Format"`
-}

+ 0 - 28
services/mts/struct_properties_in_submit_media_info_job.go

@@ -1,28 +0,0 @@
-package mts
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type PropertiesInSubmitMediaInfoJob struct {
-	Width      string                      `json:"Width" xml:"Width"`
-	Height     string                      `json:"Height" xml:"Height"`
-	Bitrate    string                      `json:"Bitrate" xml:"Bitrate"`
-	Duration   string                      `json:"Duration" xml:"Duration"`
-	Fps        string                      `json:"Fps" xml:"Fps"`
-	FileSize   string                      `json:"FileSize" xml:"FileSize"`
-	FileFormat string                      `json:"FileFormat" xml:"FileFormat"`
-	Streams    StreamsInSubmitMediaInfoJob `json:"Streams" xml:"Streams"`
-	Format     Format                      `json:"Format" xml:"Format"`
-}

+ 0 - 22
services/mts/struct_streams_in_query_media_info_job_list.go

@@ -1,22 +0,0 @@
-package mts
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type StreamsInQueryMediaInfoJobList struct {
-	VideoStreamList    VideoStreamListInQueryMediaInfoJobList    `json:"VideoStreamList" xml:"VideoStreamList"`
-	AudioStreamList    AudioStreamListInQueryMediaInfoJobList    `json:"AudioStreamList" xml:"AudioStreamList"`
-	SubtitleStreamList SubtitleStreamListInQueryMediaInfoJobList `json:"SubtitleStreamList" xml:"SubtitleStreamList"`
-}

+ 0 - 22
services/mts/struct_streams_in_query_media_list.go

@@ -1,22 +0,0 @@
-package mts
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type StreamsInQueryMediaList struct {
-	VideoStreamList    VideoStreamListInQueryMediaList    `json:"VideoStreamList" xml:"VideoStreamList"`
-	AudioStreamList    AudioStreamListInQueryMediaList    `json:"AudioStreamList" xml:"AudioStreamList"`
-	SubtitleStreamList SubtitleStreamListInQueryMediaList `json:"SubtitleStreamList" xml:"SubtitleStreamList"`
-}

+ 0 - 22
services/mts/struct_streams_in_query_media_list_by_url.go

@@ -1,22 +0,0 @@
-package mts
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type StreamsInQueryMediaListByURL struct {
-	VideoStreamList    VideoStreamListInQueryMediaListByURL    `json:"VideoStreamList" xml:"VideoStreamList"`
-	AudioStreamList    AudioStreamListInQueryMediaListByURL    `json:"AudioStreamList" xml:"AudioStreamList"`
-	SubtitleStreamList SubtitleStreamListInQueryMediaListByURL `json:"SubtitleStreamList" xml:"SubtitleStreamList"`
-}

+ 0 - 22
services/mts/struct_streams_in_submit_media_info_job.go

@@ -1,22 +0,0 @@
-package mts
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type StreamsInSubmitMediaInfoJob struct {
-	VideoStreamList    VideoStreamListInSubmitMediaInfoJob    `json:"VideoStreamList" xml:"VideoStreamList"`
-	AudioStreamList    AudioStreamListInSubmitMediaInfoJob    `json:"AudioStreamList" xml:"AudioStreamList"`
-	SubtitleStreamList SubtitleStreamListInSubmitMediaInfoJob `json:"SubtitleStreamList" xml:"SubtitleStreamList"`
-}

+ 0 - 27
services/mts/struct_template_in_query_analysis_job_list.go

@@ -1,27 +0,0 @@
-package mts
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type TemplateInQueryAnalysisJobList struct {
-	Id          string                          `json:"Id" xml:"Id"`
-	Name        string                          `json:"Name" xml:"Name"`
-	State       string                          `json:"State" xml:"State"`
-	Container   Container                       `json:"Container" xml:"Container"`
-	Video       Video                           `json:"Video" xml:"Video"`
-	Audio       Audio                           `json:"Audio" xml:"Audio"`
-	TransConfig TransConfig                     `json:"TransConfig" xml:"TransConfig"`
-	MuxConfig   MuxConfigInQueryAnalysisJobList `json:"MuxConfig" xml:"MuxConfig"`
-}

+ 0 - 27
services/mts/struct_template_in_query_template_list.go

@@ -1,27 +0,0 @@
-package mts
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type TemplateInQueryTemplateList struct {
-	Id          string      `json:"Id" xml:"Id"`
-	Name        string      `json:"Name" xml:"Name"`
-	State       string      `json:"State" xml:"State"`
-	Container   Container   `json:"Container" xml:"Container"`
-	Video       Video       `json:"Video" xml:"Video"`
-	Audio       Audio       `json:"Audio" xml:"Audio"`
-	TransConfig TransConfig `json:"TransConfig" xml:"TransConfig"`
-	MuxConfig   MuxConfig   `json:"MuxConfig" xml:"MuxConfig"`
-}

+ 0 - 27
services/mts/struct_template_in_search_template.go

@@ -1,27 +0,0 @@
-package mts
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type TemplateInSearchTemplate struct {
-	Id          string      `json:"Id" xml:"Id"`
-	Name        string      `json:"Name" xml:"Name"`
-	State       string      `json:"State" xml:"State"`
-	Container   Container   `json:"Container" xml:"Container"`
-	Video       Video       `json:"Video" xml:"Video"`
-	Audio       Audio       `json:"Audio" xml:"Audio"`
-	TransConfig TransConfig `json:"TransConfig" xml:"TransConfig"`
-	MuxConfig   MuxConfig   `json:"MuxConfig" xml:"MuxConfig"`
-}

+ 0 - 27
services/mts/struct_template_in_submit_analysis_job.go

@@ -1,27 +0,0 @@
-package mts
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type TemplateInSubmitAnalysisJob struct {
-	Id          string                       `json:"Id" xml:"Id"`
-	Name        string                       `json:"Name" xml:"Name"`
-	State       string                       `json:"State" xml:"State"`
-	Container   Container                    `json:"Container" xml:"Container"`
-	Video       Video                        `json:"Video" xml:"Video"`
-	Audio       Audio                        `json:"Audio" xml:"Audio"`
-	TransConfig TransConfig                  `json:"TransConfig" xml:"TransConfig"`
-	MuxConfig   MuxConfigInSubmitAnalysisJob `json:"MuxConfig" xml:"MuxConfig"`
-}

+ 0 - 27
services/mts/struct_template_in_update_template.go

@@ -1,27 +0,0 @@
-package mts
-
-//Licensed 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.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-type TemplateInUpdateTemplate struct {
-	Id          string      `json:"Id" xml:"Id"`
-	Name        string      `json:"Name" xml:"Name"`
-	State       string      `json:"State" xml:"State"`
-	Container   Container   `json:"Container" xml:"Container"`
-	Video       Video       `json:"Video" xml:"Video"`
-	Audio       Audio       `json:"Audio" xml:"Audio"`
-	TransConfig TransConfig `json:"TransConfig" xml:"TransConfig"`
-	MuxConfig   MuxConfig   `json:"MuxConfig" xml:"MuxConfig"`
-}

+ 1 - 1
services/mts/struct_template_list_in_query_analysis_job_list.go

@@ -16,5 +16,5 @@ package mts
 // Changes may cause incorrect behavior and will be lost if the code is regenerated.
 
 type TemplateListInQueryAnalysisJobList struct {
-	Template []TemplateInQueryAnalysisJobList `json:"Template" xml:"Template"`
+	Template []Template `json:"Template" xml:"Template"`
 }

+ 1 - 1
services/mts/struct_template_list_in_query_template_list.go

@@ -16,5 +16,5 @@ package mts
 // Changes may cause incorrect behavior and will be lost if the code is regenerated.
 
 type TemplateListInQueryTemplateList struct {
-	Template []TemplateInQueryTemplateList `json:"Template" xml:"Template"`
+	Template []Template `json:"Template" xml:"Template"`
 }

+ 1 - 1
services/mts/struct_template_list_in_search_template.go

@@ -16,5 +16,5 @@ package mts
 // Changes may cause incorrect behavior and will be lost if the code is regenerated.
 
 type TemplateListInSearchTemplate struct {
-	Template []TemplateInSearchTemplate `json:"Template" xml:"Template"`
+	Template []Template `json:"Template" xml:"Template"`
 }

+ 1 - 1
services/mts/struct_template_list_in_submit_analysis_job.go

@@ -16,5 +16,5 @@ package mts
 // Changes may cause incorrect behavior and will be lost if the code is regenerated.
 
 type TemplateListInSubmitAnalysisJob struct {
-	Template []TemplateInSubmitAnalysisJob `json:"Template" xml:"Template"`
+	Template []Template `json:"Template" xml:"Template"`
 }

+ 2 - 2
services/mts/update_asr_pipeline.go

@@ -80,8 +80,8 @@ type UpdateAsrPipelineRequest struct {
 
 type UpdateAsrPipelineResponse struct {
 	*responses.BaseResponse
-	RequestId string                      `json:"RequestId" xml:"RequestId"`
-	Pipeline  PipelineInUpdateAsrPipeline `json:"Pipeline" xml:"Pipeline"`
+	RequestId string   `json:"RequestId" xml:"RequestId"`
+	Pipeline  Pipeline `json:"Pipeline" xml:"Pipeline"`
 }
 
 func CreateUpdateAsrPipelineRequest() (request *UpdateAsrPipelineRequest) {

+ 2 - 2
services/mts/update_pipeline.go

@@ -80,8 +80,8 @@ type UpdatePipelineRequest struct {
 
 type UpdatePipelineResponse struct {
 	*responses.BaseResponse
-	RequestId string                   `json:"RequestId" xml:"RequestId"`
-	Pipeline  PipelineInUpdatePipeline `json:"Pipeline" xml:"Pipeline"`
+	RequestId string   `json:"RequestId" xml:"RequestId"`
+	Pipeline  Pipeline `json:"Pipeline" xml:"Pipeline"`
 }
 
 func CreateUpdatePipelineRequest() (request *UpdatePipelineRequest) {

+ 2 - 2
services/mts/update_template.go

@@ -82,8 +82,8 @@ type UpdateTemplateRequest struct {
 
 type UpdateTemplateResponse struct {
 	*responses.BaseResponse
-	RequestId string                   `json:"RequestId" xml:"RequestId"`
-	Template  TemplateInUpdateTemplate `json:"Template" xml:"Template"`
+	RequestId string   `json:"RequestId" xml:"RequestId"`
+	Template  Template `json:"Template" xml:"Template"`
 }
 
 func CreateUpdateTemplateRequest() (request *UpdateTemplateRequest) {