-
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
ba1976d
commit 0eb6aae
Showing
74 changed files
with
7,279 additions
and
28 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.113 | ||
3.1.114 |
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
71 changes: 71 additions & 0 deletions
71
csms/include/huaweicloud/csms/v1/model/CreateGrantsRequest.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,71 @@ | ||
|
||
#ifndef HUAWEICLOUD_SDK_CSMS_V1_MODEL_CreateGrantsRequest_H_ | ||
#define HUAWEICLOUD_SDK_CSMS_V1_MODEL_CreateGrantsRequest_H_ | ||
|
||
|
||
#include <huaweicloud/csms/v1/CsmsExport.h> | ||
|
||
#include <huaweicloud/core/utils/ModelBase.h> | ||
#include <huaweicloud/core/utils/Utils.h> | ||
#include <huaweicloud/core/http/HttpResponse.h> | ||
|
||
#include <huaweicloud/csms/v1/model/GrantSecretReqBody.h> | ||
|
||
namespace HuaweiCloud { | ||
namespace Sdk { | ||
namespace Csms { | ||
namespace V1 { | ||
namespace Model { | ||
|
||
using namespace HuaweiCloud::Sdk::Core::Utils; | ||
using namespace HuaweiCloud::Sdk::Core::Http; | ||
/// <summary> | ||
/// Request Object | ||
/// </summary> | ||
class HUAWEICLOUD_CSMS_V1_EXPORT CreateGrantsRequest | ||
: public ModelBase | ||
{ | ||
public: | ||
CreateGrantsRequest(); | ||
virtual ~CreateGrantsRequest(); | ||
|
||
///////////////////////////////////////////// | ||
/// ModelBase overrides | ||
|
||
void validate() override; | ||
web::json::value toJson() const override; | ||
bool fromJson(const web::json::value& json) override; | ||
///////////////////////////////////////////// | ||
/// CreateGrantsRequest members | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
|
||
GrantSecretReqBody getBody() const; | ||
bool bodyIsSet() const; | ||
void unsetbody(); | ||
void setBody(const GrantSecretReqBody& value); | ||
|
||
|
||
protected: | ||
GrantSecretReqBody body_; | ||
bool bodyIsSet_; | ||
|
||
#ifdef RTTR_FLAG | ||
RTTR_ENABLE() | ||
public: | ||
CreateGrantsRequest& dereference_from_shared_ptr(std::shared_ptr<CreateGrantsRequest> ptr) { | ||
return *ptr; | ||
} | ||
#endif | ||
}; | ||
|
||
|
||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
#endif // HUAWEICLOUD_SDK_CSMS_V1_MODEL_CreateGrantsRequest_H_ |
Oops, something went wrong.