-
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
1fee9c7
commit 4bf6801
Showing
23 changed files
with
1,555 additions
and
1 deletion.
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.118 | ||
3.1.119 |
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 |
---|---|---|
@@ -0,0 +1,75 @@ | ||
|
||
#ifndef HUAWEICLOUD_SDK_DRS_V5_MODEL_AgencyRole_H_ | ||
#define HUAWEICLOUD_SDK_DRS_V5_MODEL_AgencyRole_H_ | ||
|
||
|
||
#include <huaweicloud/drs/v5/DrsExport.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 Drs { | ||
namespace V5 { | ||
namespace Model { | ||
|
||
using namespace HuaweiCloud::Sdk::Core::Utils; | ||
using namespace HuaweiCloud::Sdk::Core::Http; | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
class HUAWEICLOUD_DRS_V5_EXPORT AgencyRole | ||
: public ModelBase | ||
{ | ||
public: | ||
AgencyRole(); | ||
virtual ~AgencyRole(); | ||
|
||
///////////////////////////////////////////// | ||
/// ModelBase overrides | ||
|
||
void validate() override; | ||
web::json::value toJson() const override; | ||
bool fromJson(const web::json::value& json) override; | ||
///////////////////////////////////////////// | ||
/// AgencyRole members | ||
|
||
/// <summary> | ||
/// 策略名称。 | ||
/// </summary> | ||
|
||
std::string getName() const; | ||
bool nameIsSet() const; | ||
void unsetname(); | ||
void setName(const std::string& value); | ||
|
||
/// <summary> | ||
/// 策略描述。 | ||
/// </summary> | ||
|
||
std::string getDescription() const; | ||
bool descriptionIsSet() const; | ||
void unsetdescription(); | ||
void setDescription(const std::string& value); | ||
|
||
|
||
protected: | ||
std::string name_; | ||
bool nameIsSet_; | ||
std::string description_; | ||
bool descriptionIsSet_; | ||
|
||
}; | ||
|
||
|
||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
#endif // HUAWEICLOUD_SDK_DRS_V5_MODEL_AgencyRole_H_ |
82 changes: 82 additions & 0 deletions
82
drs/include/huaweicloud/drs/v5/model/ShowAgencyInfoRequest.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,82 @@ | ||
|
||
#ifndef HUAWEICLOUD_SDK_DRS_V5_MODEL_ShowAgencyInfoRequest_H_ | ||
#define HUAWEICLOUD_SDK_DRS_V5_MODEL_ShowAgencyInfoRequest_H_ | ||
|
||
|
||
#include <huaweicloud/drs/v5/DrsExport.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 Drs { | ||
namespace V5 { | ||
namespace Model { | ||
|
||
using namespace HuaweiCloud::Sdk::Core::Utils; | ||
using namespace HuaweiCloud::Sdk::Core::Http; | ||
/// <summary> | ||
/// Request Object | ||
/// </summary> | ||
class HUAWEICLOUD_DRS_V5_EXPORT ShowAgencyInfoRequest | ||
: public ModelBase | ||
{ | ||
public: | ||
ShowAgencyInfoRequest(); | ||
virtual ~ShowAgencyInfoRequest(); | ||
|
||
///////////////////////////////////////////// | ||
/// ModelBase overrides | ||
|
||
void validate() override; | ||
web::json::value toJson() const override; | ||
bool fromJson(const web::json::value& json) override; | ||
///////////////////////////////////////////// | ||
/// ShowAgencyInfoRequest members | ||
|
||
/// <summary> | ||
/// 请求语言类型。默认en-us。 取值范围: - en-us - zh-cn | ||
/// </summary> | ||
|
||
std::string getXLanguage() const; | ||
bool xLanguageIsSet() const; | ||
void unsetxLanguage(); | ||
void setXLanguage(const std::string& value); | ||
|
||
/// <summary> | ||
/// 委托名称。 | ||
/// </summary> | ||
|
||
std::string getAgencyName() const; | ||
bool agencyNameIsSet() const; | ||
void unsetagencyName(); | ||
void setAgencyName(const std::string& value); | ||
|
||
|
||
protected: | ||
std::string xLanguage_; | ||
bool xLanguageIsSet_; | ||
std::string agencyName_; | ||
bool agencyNameIsSet_; | ||
|
||
#ifdef RTTR_FLAG | ||
RTTR_ENABLE() | ||
public: | ||
ShowAgencyInfoRequest& dereference_from_shared_ptr(std::shared_ptr<ShowAgencyInfoRequest> ptr) { | ||
return *ptr; | ||
} | ||
#endif | ||
}; | ||
|
||
|
||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
#endif // HUAWEICLOUD_SDK_DRS_V5_MODEL_ShowAgencyInfoRequest_H_ |
Oops, something went wrong.