-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
efdddbd
commit b952d80
Showing
284 changed files
with
27,212 additions
and
112 deletions.
There are no files selected for viewing
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
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
3.1.85 | ||
3.1.86 |
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
108 changes: 108 additions & 0 deletions
108
cdn/include/huaweicloud/cdn/v2/model/CertificatesGetBody.h
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,108 @@ | ||
|
||
#ifndef HUAWEICLOUD_SDK_CDN_V2_MODEL_CertificatesGetBody_H_ | ||
#define HUAWEICLOUD_SDK_CDN_V2_MODEL_CertificatesGetBody_H_ | ||
|
||
|
||
#include <huaweicloud/cdn/v2/CdnExport.h> | ||
|
||
#include <huaweicloud/core/utils/ModelBase.h> | ||
#include <huaweicloud/core/utils/Utils.h> | ||
#include <huaweicloud/core/http/HttpResponse.h> | ||
|
||
#include <string> | ||
|
||
namespace HuaweiCloud { | ||
namespace Sdk { | ||
namespace Cdn { | ||
namespace V2 { | ||
namespace Model { | ||
|
||
using namespace HuaweiCloud::Sdk::Core::Utils; | ||
using namespace HuaweiCloud::Sdk::Core::Http; | ||
/// <summary> | ||
/// 双证书配置查询响应体。 | ||
/// </summary> | ||
class HUAWEICLOUD_CDN_V2_EXPORT CertificatesGetBody | ||
: public ModelBase | ||
{ | ||
public: | ||
CertificatesGetBody(); | ||
virtual ~CertificatesGetBody(); | ||
|
||
///////////////////////////////////////////// | ||
/// ModelBase overrides | ||
|
||
void validate() override; | ||
web::json::value toJson() const override; | ||
bool fromJson(const web::json::value& json) override; | ||
///////////////////////////////////////////// | ||
/// CertificatesGetBody members | ||
|
||
/// <summary> | ||
/// 证书类型,server:国际证书;server_sm:国密证书。 | ||
/// </summary> | ||
|
||
std::string getCertificateType() const; | ||
bool certificateTypeIsSet() const; | ||
void unsetcertificateType(); | ||
void setCertificateType(const std::string& value); | ||
|
||
/// <summary> | ||
/// 证书名字。 | ||
/// </summary> | ||
|
||
std::string getCertificateName() const; | ||
bool certificateNameIsSet() const; | ||
void unsetcertificateName(); | ||
void setCertificateName(const std::string& value); | ||
|
||
/// <summary> | ||
/// HTTPS协议使用的证书内容,PEM编码格式。 | ||
/// </summary> | ||
|
||
std::string getCertificateValue() const; | ||
bool certificateValueIsSet() const; | ||
void unsetcertificateValue(); | ||
void setCertificateValue(const std::string& value); | ||
|
||
/// <summary> | ||
/// 国密证书加密证书内容,PEM编码格式。 | ||
/// </summary> | ||
|
||
std::string getEncCertificateValue() const; | ||
bool encCertificateValueIsSet() const; | ||
void unsetencCertificateValue(); | ||
void setEncCertificateValue(const std::string& value); | ||
|
||
/// <summary> | ||
/// 证书过期时间。 > UTC时间。 | ||
/// </summary> | ||
|
||
int64_t getExpireTime() const; | ||
bool expireTimeIsSet() const; | ||
void unsetexpireTime(); | ||
void setExpireTime(int64_t value); | ||
|
||
|
||
protected: | ||
std::string certificateType_; | ||
bool certificateTypeIsSet_; | ||
std::string certificateName_; | ||
bool certificateNameIsSet_; | ||
std::string certificateValue_; | ||
bool certificateValueIsSet_; | ||
std::string encCertificateValue_; | ||
bool encCertificateValueIsSet_; | ||
int64_t expireTime_; | ||
bool expireTimeIsSet_; | ||
|
||
}; | ||
|
||
|
||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
#endif // HUAWEICLOUD_SDK_CDN_V2_MODEL_CertificatesGetBody_H_ |
Oops, something went wrong.