Skip to content

Commit d7be609

Browse files
committed
Update API BatchGetMediaInfos: add response parameters Body.MediaInfos.$.MezzanineInfo.FileMD5.
1 parent 73b9da6 commit d7be609

File tree

832 files changed

+1893
-1868
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

832 files changed

+1893
-1868
lines changed

vod-20170321/CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
33

4-
project(alibabacloud_vod_20170321 VERSION "1.0.0")
4+
project(alibabacloud_vod20170321 VERSION "1.0.0")
55

66
# <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< General set up >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> #
77
set(CMAKE_CXX_STANDARD 11)
@@ -72,7 +72,7 @@ if(CMAKE_HOST_WIN32)
7272
_CRT_SECURE_NO_WARNINGS)
7373
elseif(APPLE)
7474
find_library(CFLIB CoreFoundation)
75-
find_library(UTIL_LIB alibabacloud_vod_20170321 ${CMAKE_CURRENT_SOURCE_DIR}/deps/lib)
75+
find_library(UTIL_LIB alibabacloud_vod20170321 ${CMAKE_CURRENT_SOURCE_DIR}/deps/lib)
7676
target_link_libraries(${PROJECT_NAME}
7777
OpenSSL::SSL OpenSSL::Crypto
7878
${CFLIB}
@@ -139,7 +139,7 @@ install(
139139
TARGETS
140140
${PROJECT_NAME}
141141
EXPORT
142-
alibabacloud_vod_20170321Targets
142+
alibabacloud_vod20170321Targets
143143
ARCHIVE
144144
DESTINATION ${INSTALL_LIBDIR}
145145
COMPONENT lib
@@ -157,9 +157,9 @@ install(
157157
# Install cmake config
158158
install(
159159
EXPORT
160-
alibabacloud_vod_20170321Targets
160+
alibabacloud_vod20170321Targets
161161
NAMESPACE
162-
"alibabacloud_vod_20170321::"
162+
"alibabacloud_vod20170321::"
163163
DESTINATION
164164
${INSTALL_CMAKEDIR}
165165
COMPONENT

vod-20170321/ChangeLog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2025-11-19 Version: 3.9.1
2+
- Update API BatchGetMediaInfos: add response parameters Body.MediaInfos.$.MezzanineInfo.FileMD5.
3+
- Update API GetMezzanineInfo: add response parameters Body.Mezzanine.FileMD5.
4+
5+
16
2025-09-22 Version: 3.9.0
27
- Support API DescribeVodUserVipsByDomain.
38

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
@PACKAGE_INIT@
2+
3+
include("${CMAKE_CURRENT_LIST_DIR}/alibabacloud_vod20170321Targets.cmake")
4+
check_required_components("alibabacloud_vod20170321")

vod-20170321/cmake/alibabacloud_vod_20170321Config.cmake.in

Lines changed: 0 additions & 4 deletions
This file was deleted.

vod-20170321/include/alibabacloud/Vod20170321Model.hpp

Lines changed: 141 additions & 141 deletions
Large diffs are not rendered by default.

vod-20170321/include/alibabacloud/models/AddAitemplateRequest.hpp renamed to vod-20170321/include/alibabacloud/models/AddAiTemplateRequest.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ namespace Models
3333
};
3434
virtual void fromMap(const Darabonba::Json &obj) override { from_json(obj, *this); validate(); };
3535
virtual Darabonba::Json toMap() const override { Darabonba::Json obj; to_json(obj, *this); return obj; };
36-
virtual bool empty() const override { this->templateConfig_ != nullptr
37-
&& this->templateName_ != nullptr && this->templateType_ != nullptr; };
36+
virtual bool empty() const override { return this->templateConfig_ == nullptr
37+
&& return this->templateName_ == nullptr && return this->templateType_ == nullptr; };
3838
// templateConfig Field Functions
3939
bool hasTemplateConfig() const { return this->templateConfig_ != nullptr;};
4040
void deleteTemplateConfig() { this->templateConfig_ = nullptr;};

vod-20170321/include/alibabacloud/models/AddAitemplateResponse.hpp renamed to vod-20170321/include/alibabacloud/models/AddAiTemplateResponse.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ namespace Models
3535
};
3636
virtual void fromMap(const Darabonba::Json &obj) override { from_json(obj, *this); validate(); };
3737
virtual Darabonba::Json toMap() const override { Darabonba::Json obj; to_json(obj, *this); return obj; };
38-
virtual bool empty() const override { this->headers_ != nullptr
39-
&& this->statusCode_ != nullptr && this->body_ != nullptr; };
38+
virtual bool empty() const override { return this->headers_ == nullptr
39+
&& return this->statusCode_ == nullptr && return this->body_ == nullptr; };
4040
// headers Field Functions
4141
bool hasHeaders() const { return this->headers_ != nullptr;};
4242
void deleteHeaders() { this->headers_ = nullptr;};

vod-20170321/include/alibabacloud/models/AddAitemplateResponseBody.hpp renamed to vod-20170321/include/alibabacloud/models/AddAiTemplateResponseBody.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ namespace Models
3131
};
3232
virtual void fromMap(const Darabonba::Json &obj) override { from_json(obj, *this); validate(); };
3333
virtual Darabonba::Json toMap() const override { Darabonba::Json obj; to_json(obj, *this); return obj; };
34-
virtual bool empty() const override { this->requestId_ != nullptr
35-
&& this->templateId_ != nullptr; };
34+
virtual bool empty() const override { return this->requestId_ == nullptr
35+
&& return this->templateId_ == nullptr; };
3636
// requestId Field Functions
3737
bool hasRequestId() const { return this->requestId_ != nullptr;};
3838
void deleteRequestId() { this->requestId_ = nullptr;};

vod-20170321/include/alibabacloud/models/AddCategoryRequest.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ namespace Models
3333
};
3434
virtual void fromMap(const Darabonba::Json &obj) override { from_json(obj, *this); validate(); };
3535
virtual Darabonba::Json toMap() const override { Darabonba::Json obj; to_json(obj, *this); return obj; };
36-
virtual bool empty() const override { this->cateName_ != nullptr
37-
&& this->parentId_ != nullptr && this->type_ != nullptr; };
36+
virtual bool empty() const override { return this->cateName_ == nullptr
37+
&& return this->parentId_ == nullptr && return this->type_ == nullptr; };
3838
// cateName Field Functions
3939
bool hasCateName() const { return this->cateName_ != nullptr;};
4040
void deleteCateName() { this->cateName_ = nullptr;};

vod-20170321/include/alibabacloud/models/AddCategoryResponse.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ namespace Models
3535
};
3636
virtual void fromMap(const Darabonba::Json &obj) override { from_json(obj, *this); validate(); };
3737
virtual Darabonba::Json toMap() const override { Darabonba::Json obj; to_json(obj, *this); return obj; };
38-
virtual bool empty() const override { this->headers_ != nullptr
39-
&& this->statusCode_ != nullptr && this->body_ != nullptr; };
38+
virtual bool empty() const override { return this->headers_ == nullptr
39+
&& return this->statusCode_ == nullptr && return this->body_ == nullptr; };
4040
// headers Field Functions
4141
bool hasHeaders() const { return this->headers_ != nullptr;};
4242
void deleteHeaders() { this->headers_ = nullptr;};

0 commit comments

Comments
 (0)