-
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
ffe92be
commit 255e54a
Showing
62 changed files
with
3,221 additions
and
567 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.81 | ||
3.1.82 |
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
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
93 changes: 93 additions & 0 deletions
93
...bforopengauss/include/huaweicloud/gaussdbforopengauss/v3/model/DeleteInstanceTagRequest.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,93 @@ | ||
|
||
#ifndef HUAWEICLOUD_SDK_GAUSSDBFOROPENGAUSS_V3_MODEL_DeleteInstanceTagRequest_H_ | ||
#define HUAWEICLOUD_SDK_GAUSSDBFOROPENGAUSS_V3_MODEL_DeleteInstanceTagRequest_H_ | ||
|
||
|
||
#include <huaweicloud/gaussdbforopengauss/v3/GaussDBforopenGaussExport.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 Gaussdbforopengauss { | ||
namespace V3 { | ||
namespace Model { | ||
|
||
using namespace HuaweiCloud::Sdk::Core::Utils; | ||
using namespace HuaweiCloud::Sdk::Core::Http; | ||
/// <summary> | ||
/// Request Object | ||
/// </summary> | ||
class HUAWEICLOUD_GAUSSDBFOROPENGAUSS_V3_EXPORT DeleteInstanceTagRequest | ||
: public ModelBase | ||
{ | ||
public: | ||
DeleteInstanceTagRequest(); | ||
virtual ~DeleteInstanceTagRequest(); | ||
|
||
///////////////////////////////////////////// | ||
/// ModelBase overrides | ||
|
||
void validate() override; | ||
web::json::value toJson() const override; | ||
bool fromJson(const web::json::value& json) override; | ||
///////////////////////////////////////////// | ||
/// DeleteInstanceTagRequest members | ||
|
||
/// <summary> | ||
/// 语言 | ||
/// </summary> | ||
|
||
std::string getXLanguage() const; | ||
bool xLanguageIsSet() const; | ||
void unsetxLanguage(); | ||
void setXLanguage(const std::string& value); | ||
|
||
/// <summary> | ||
/// 实例ID,严格匹配UUID规则。 | ||
/// </summary> | ||
|
||
std::string getInstanceId() const; | ||
bool instanceIdIsSet() const; | ||
void unsetinstanceId(); | ||
void setInstanceId(const std::string& value); | ||
|
||
/// <summary> | ||
/// 标签键 | ||
/// </summary> | ||
|
||
std::string getKey() const; | ||
bool keyIsSet() const; | ||
void unsetkey(); | ||
void setKey(const std::string& value); | ||
|
||
|
||
protected: | ||
std::string xLanguage_; | ||
bool xLanguageIsSet_; | ||
std::string instanceId_; | ||
bool instanceIdIsSet_; | ||
std::string key_; | ||
bool keyIsSet_; | ||
|
||
#ifdef RTTR_FLAG | ||
RTTR_ENABLE() | ||
public: | ||
DeleteInstanceTagRequest& dereference_from_shared_ptr(std::shared_ptr<DeleteInstanceTagRequest> ptr) { | ||
return *ptr; | ||
} | ||
#endif | ||
}; | ||
|
||
|
||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
#endif // HUAWEICLOUD_SDK_GAUSSDBFOROPENGAUSS_V3_MODEL_DeleteInstanceTagRequest_H_ |
Oops, something went wrong.