Skip to content

Commit

Permalink
release 3.1.118 source code
Browse files Browse the repository at this point in the history
  • Loading branch information
Huaweicloud-SDK committed Jan 2, 2025
1 parent 424010e commit 1fee9c7
Show file tree
Hide file tree
Showing 39 changed files with 2,155 additions and 360 deletions.
52 changes: 52 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,55 @@
# 3.1.118 2025-01-02

### HuaweiCloud SDK CFW

- _API Version_
- V1
- _Features_
- None
- _Bug Fix_
- None
- _Change_
- **ShowIpsUpdateTime**
- changes of response param
- `- trace_id`
- `- error_description`
- `- job_id`
- `- error_code`
- `- fail_reason`
- `- order_id`
- **ListCustomerIps**
- changes of response param
- `* data: object<PageInfo«CustomerIpsListVO»> -> object<HttpListCustomerIpsResponseData>`

### HuaweiCloud SDK RDS

- _API Version_
- V3
- _Features_
- Support the APIs `ListReadOnlyReplayDatabase`, `RestoreLogReplayDatabase`
- _Bug Fix_
- None
- _Change_
- **ListAuditlogs**
- changes of response param
- `* auditlogs.size: int64 -> double`
- **ListDrInfos**
- changes of response param
- `+ instance_dr_infos.build_process`

### HuaweiCloud SDK VPC

- _API Version_
- V3
- _Features_
- None
- _Bug Fix_
- None
- _Change_
- **ListVpcs**
- changes of request param
- `+ enterprise_project_id`

# 3.1.117 2024-12-26

### HuaweiCloud SDK CBR
Expand Down
52 changes: 52 additions & 0 deletions CHANGELOG_CN.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,55 @@
# 3.1.118 2025-01-02

### HuaweiCloud SDK CFW

- _接口版本_
- V1
- _新增特性_
- 无
- _解决问题_
- 无
- _特性变更_
- **ShowIpsUpdateTime**
- 响应参数变更
- `- trace_id`
- `- error_description`
- `- job_id`
- `- error_code`
- `- fail_reason`
- `- order_id`
- **ListCustomerIps**
- 响应参数变更
- `* data: object<PageInfo«CustomerIpsListVO»> -> object<HttpListCustomerIpsResponseData>`

### HuaweiCloud SDK RDS

- _接口版本_
- V3
- _新增特性_
- 支持接口`ListReadOnlyReplayDatabase`、`RestoreLogReplayDatabase`
- _解决问题_
- 无
- _特性变更_
- **ListAuditlogs**
- 响应参数变更
- `* auditlogs.size: int64 -> double`
- **ListDrInfos**
- 响应参数变更
- `+ instance_dr_infos.build_process`

### HuaweiCloud SDK VPC

- _接口版本_
- V3
- _新增特性_
- 无
- _解决问题_
- 无
- _特性变更_
- **ListVpcs**
- 请求参数变更
- `+ enterprise_project_id`

# 3.1.117 2024-12-26

### HuaweiCloud SDK CBR
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.117
3.1.118
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

#ifndef HUAWEICLOUD_SDK_CFW_V1_MODEL_PageInfoCustomerIpsListVO_H_
#define HUAWEICLOUD_SDK_CFW_V1_MODEL_PageInfoCustomerIpsListVO_H_
#ifndef HUAWEICLOUD_SDK_CFW_V1_MODEL_HttpListCustomerIpsResponseData_H_
#define HUAWEICLOUD_SDK_CFW_V1_MODEL_HttpListCustomerIpsResponseData_H_


#include <huaweicloud/cfw/v1/CfwExport.h>
Expand All @@ -23,12 +23,12 @@ using namespace HuaweiCloud::Sdk::Core::Http;
/// <summary>
///
/// </summary>
class HUAWEICLOUD_CFW_V1_EXPORT PageInfoCustomerIpsListVO
class HUAWEICLOUD_CFW_V1_EXPORT HttpListCustomerIpsResponseData
: public ModelBase
{
public:
PageInfoCustomerIpsListVO();
virtual ~PageInfoCustomerIpsListVO();
HttpListCustomerIpsResponseData();
virtual ~HttpListCustomerIpsResponseData();

/////////////////////////////////////////////
/// ModelBase overrides
Expand All @@ -37,10 +37,10 @@ class HUAWEICLOUD_CFW_V1_EXPORT PageInfoCustomerIpsListVO
web::json::value toJson() const override;
bool fromJson(const web::json::value& json) override;
/////////////////////////////////////////////
/// PageInfoCustomerIpsListVO members
/// HttpListCustomerIpsResponseData members

/// <summary>
///
/// 每页显示个数,范围为1-1024
/// </summary>

int32_t getLimit() const;
Expand All @@ -49,7 +49,7 @@ class HUAWEICLOUD_CFW_V1_EXPORT PageInfoCustomerIpsListVO
void setLimit(int32_t value);

/// <summary>
///
/// 偏移量:指定返回记录的开始位置,必须为数字,取值范围为大于或等于0,默认0
/// </summary>

int32_t getOffset() const;
Expand All @@ -58,33 +58,33 @@ class HUAWEICLOUD_CFW_V1_EXPORT PageInfoCustomerIpsListVO
void setOffset(int32_t value);

/// <summary>
///
/// </summary>

std::vector<CustomerIpsListVO>& getRecords();
bool recordsIsSet() const;
void unsetrecords();
void setRecords(const std::vector<CustomerIpsListVO>& value);

/// <summary>
///
/// 查询获得自定义ips规则列表总数
/// </summary>

int32_t getTotal() const;
bool totalIsSet() const;
void unsettotal();
void setTotal(int32_t value);

/// <summary>
/// 自定义ips规则记录
/// </summary>

std::vector<CustomerIpsListVO>& getRecords();
bool recordsIsSet() const;
void unsetrecords();
void setRecords(const std::vector<CustomerIpsListVO>& value);


protected:
int32_t limit_;
bool limitIsSet_;
int32_t offset_;
bool offsetIsSet_;
std::vector<CustomerIpsListVO> records_;
bool recordsIsSet_;
int32_t total_;
bool totalIsSet_;
std::vector<CustomerIpsListVO> records_;
bool recordsIsSet_;

};

Expand All @@ -95,4 +95,4 @@ class HUAWEICLOUD_CFW_V1_EXPORT PageInfoCustomerIpsListVO
}
}

#endif // HUAWEICLOUD_SDK_CFW_V1_MODEL_PageInfoCustomerIpsListVO_H_
#endif // HUAWEICLOUD_SDK_CFW_V1_MODEL_HttpListCustomerIpsResponseData_H_
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <huaweicloud/core/utils/Utils.h>
#include <huaweicloud/core/http/HttpResponse.h>

#include <huaweicloud/cfw/v1/model/PageInfoCustomerIpsListVO.h>
#include <huaweicloud/cfw/v1/model/HttpListCustomerIpsResponseData.h>

namespace HuaweiCloud {
namespace Sdk {
Expand Down Expand Up @@ -42,14 +42,14 @@ class HUAWEICLOUD_CFW_V1_EXPORT ListCustomerIpsResponse
///
/// </summary>

PageInfoCustomerIpsListVO getData() const;
HttpListCustomerIpsResponseData getData() const;
bool dataIsSet() const;
void unsetdata();
void setData(const PageInfoCustomerIpsListVO& value);
void setData(const HttpListCustomerIpsResponseData& value);


protected:
PageInfoCustomerIpsListVO data_;
HttpListCustomerIpsResponseData data_;
bool dataIsSet_;

#ifdef RTTR_FLAG
Expand Down
67 changes: 0 additions & 67 deletions cfw/include/huaweicloud/cfw/v1/model/ShowIpsUpdateTimeResponse.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
#include <huaweicloud/core/http/HttpResponse.h>

#include <huaweicloud/cfw/v1/model/IpsRuleUpdateTimeVO.h>
#include <string>
#include <vector>

namespace HuaweiCloud {
Expand Down Expand Up @@ -49,76 +48,10 @@ class HUAWEICLOUD_CFW_V1_EXPORT ShowIpsUpdateTimeResponse
void unsetdata();
void setData(const std::vector<IpsRuleUpdateTimeVO>& value);

/// <summary>
///
/// </summary>

std::string getErrorCode() const;
bool errorCodeIsSet() const;
void unseterrorCode();
void setErrorCode(const std::string& value);

/// <summary>
///
/// </summary>

std::string getErrorDescription() const;
bool errorDescriptionIsSet() const;
void unseterrorDescription();
void setErrorDescription(const std::string& value);

/// <summary>
///
/// </summary>

std::string getFailReason() const;
bool failReasonIsSet() const;
void unsetfailReason();
void setFailReason(const std::string& value);

/// <summary>
///
/// </summary>

std::string getJobId() const;
bool jobIdIsSet() const;
void unsetjobId();
void setJobId(const std::string& value);

/// <summary>
///
/// </summary>

std::string getOrderId() const;
bool orderIdIsSet() const;
void unsetorderId();
void setOrderId(const std::string& value);

/// <summary>
///
/// </summary>

std::string getTraceId() const;
bool traceIdIsSet() const;
void unsettraceId();
void setTraceId(const std::string& value);


protected:
std::vector<IpsRuleUpdateTimeVO> data_;
bool dataIsSet_;
std::string errorCode_;
bool errorCodeIsSet_;
std::string errorDescription_;
bool errorDescriptionIsSet_;
std::string failReason_;
bool failReasonIsSet_;
std::string jobId_;
bool jobIdIsSet_;
std::string orderId_;
bool orderIdIsSet_;
std::string traceId_;
bool traceIdIsSet_;

#ifdef RTTR_FLAG
RTTR_ENABLE()
Expand Down
2 changes: 1 addition & 1 deletion cfw/include/huaweicloud/cfw/v1/model/SubnetInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class HUAWEICLOUD_CFW_V1_EXPORT SubnetInfo
/// SubnetInfo members

/// <summary>
/// 子网所在的可用区标识,从终端节点获取,参考[终端节点](cfw_02_0003.xml)
/// 子网所在的可用区标识,从终端节点获取,参考[终端节点](cfw_02_0000.xml)
/// </summary>

std::string getAvailabilityZone() const;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class HUAWEICLOUD_CFW_V1_EXPORT UpdateLogConfigRequest
/// UpdateLogConfigRequest members

/// <summary>
/// 防火墙id,可通过[防火墙ID获取方式](cfw_02_0028.xml)获取(ListFirewallDetail.xml)
/// 防火墙id,可通过[防火墙ID获取方式](cfw_02_0028.xml)获取。
/// </summary>

std::string getFwInstanceId() const;
Expand Down
Loading

0 comments on commit 1fee9c7

Please sign in to comment.