Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 9749dcf

Browse files
committed
Update API GetJob: add response parameters Body.job.logFile.
1 parent 404554f commit 9749dcf

File tree

277 files changed

+696
-639
lines changed

Some content is hidden

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

277 files changed

+696
-639
lines changed

‎iacservice-20210806/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_ia_cservice_20210806 VERSION "1.0.0")
4+
project(alibabacloud_ia_c_service20210806 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_ia_cservice_20210806 ${CMAKE_CURRENT_SOURCE_DIR}/deps/lib)
75+
find_library(UTIL_LIB alibabacloud_ia_c_service20210806 ${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_ia_cservice_20210806Targets
142+
alibabacloud_ia_c_service20210806Targets
143143
ARCHIVE
144144
DESTINATION ${INSTALL_LIBDIR}
145145
COMPONENT lib
@@ -157,9 +157,9 @@ install(
157157
# Install cmake config
158158
install(
159159
EXPORT
160-
alibabacloud_ia_cservice_20210806Targets
160+
alibabacloud_ia_c_service20210806Targets
161161
NAMESPACE
162-
"alibabacloud_ia_cservice_20210806::"
162+
"alibabacloud_ia_c_service20210806::"
163163
DESTINATION
164164
${INSTALL_CMAKEDIR}
165165
COMPONENT

‎iacservice-20210806/ChangeLog.txt‎

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2025年10月29日 Version: 2.0.1
2+
- Update API GetJob: add response parameters Body.job.logFile.
3+
- Update API GetJob: add response parameters Body.job.outputJsonPlan.
4+
- Update API ListModules: add request parameters moduleName.
5+
6+
17
2025年08月22日 Version: 2.0.0
28
- Support API AddSharedAccounts.
39
- Support API CreateRegistryModule.
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_ia_c_service20210806Targets.cmake")
4+
check_required_components("alibabacloud_ia_c_service20210806")

‎iacservice-20210806/cmake/alibabacloud_ia_cservice_20210806Config.cmake.in‎

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

‎iacservice-20210806/include/alibabacloud/models/AddSharedAccountsRequest.hpp‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ namespace Models
3434
};
3535
virtual void fromMap(const Darabonba::Json &obj) override { from_json(obj, *this); validate(); };
3636
virtual Darabonba::Json toMap() const override { Darabonba::Json obj; to_json(obj, *this); return obj; };
37-
virtual bool empty() const override { this->accountIds_ != nullptr
38-
&& this->resourceId_ != nullptr && this->resourceType_ != nullptr; };
37+
virtual bool empty() const override { returnthis->accountIds_ == nullptr
38+
&& returnthis->resourceId_ == nullptr && returnthis->resourceType_ == nullptr; };
3939
// accountIds Field Functions
4040
bool hasAccountIds() const { return this->accountIds_ != nullptr;};
4141
void deleteAccountIds() { this->accountIds_ = nullptr;};

‎iacservice-20210806/include/alibabacloud/models/AddSharedAccountsResponse.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 { returnthis->headers_ == nullptr
39+
&& returnthis->statusCode_ == nullptr && returnthis->body_ == nullptr; };
4040
// headers Field Functions
4141
bool hasHeaders() const { return this->headers_ != nullptr;};
4242
void deleteHeaders() { this->headers_ = nullptr;};

‎iacservice-20210806/include/alibabacloud/models/AddSharedAccountsResponseBody.hpp‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ namespace Models
2929
};
3030
virtual void fromMap(const Darabonba::Json &obj) override { from_json(obj, *this); validate(); };
3131
virtual Darabonba::Json toMap() const override { Darabonba::Json obj; to_json(obj, *this); return obj; };
32-
virtual bool empty() const override { this->requestId_ != nullptr; };
32+
virtual bool empty() const override { returnthis->requestId_ == nullptr; };
3333
// requestId Field Functions
3434
bool hasRequestId() const { return this->requestId_ != nullptr;};
3535
void deleteRequestId() { this->requestId_ = nullptr;};

‎iacservice-20210806/include/alibabacloud/models/AssociateGroupRequest.hpp‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ namespace Models
3636
};
3737
virtual void fromMap(const Darabonba::Json &obj) override { from_json(obj, *this); validate(); };
3838
virtual Darabonba::Json toMap() const override { Darabonba::Json obj; to_json(obj, *this); return obj; };
39-
virtual bool empty() const override { this->clientToken_ != nullptr
40-
&& this->projectId_ != nullptr && this->resourceIds_ != nullptr && this->resourceType_ != nullptr; };
39+
virtual bool empty() const override { returnthis->clientToken_ == nullptr
40+
&& returnthis->projectId_ == nullptr && returnthis->resourceIds_ == nullptr && returnthis->resourceType_ == nullptr; };
4141
// clientToken Field Functions
4242
bool hasClientToken() const { return this->clientToken_ != nullptr;};
4343
void deleteClientToken() { this->clientToken_ = nullptr;};

‎iacservice-20210806/include/alibabacloud/models/AssociateGroupResponse.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 { returnthis->headers_ == nullptr
39+
&& returnthis->statusCode_ == nullptr && returnthis->body_ == nullptr; };
4040
// headers Field Functions
4141
bool hasHeaders() const { return this->headers_ != nullptr;};
4242
void deleteHeaders() { this->headers_ = nullptr;};

‎iacservice-20210806/include/alibabacloud/models/AssociateGroupResponseBody.hpp‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ namespace Models
2929
};
3030
virtual void fromMap(const Darabonba::Json &obj) override { from_json(obj, *this); validate(); };
3131
virtual Darabonba::Json toMap() const override { Darabonba::Json obj; to_json(obj, *this); return obj; };
32-
virtual bool empty() const override { this->requestId_ != nullptr; };
32+
virtual bool empty() const override { returnthis->requestId_ == nullptr; };
3333
// requestId Field Functions
3434
bool hasRequestId() const { return this->requestId_ != nullptr;};
3535
void deleteRequestId() { this->requestId_ = nullptr;};

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /