-
Notifications
You must be signed in to change notification settings - Fork 76
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
Showing
24 changed files
with
530 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.36.2033 | ||
1.36.2034 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* | ||
* Copyright 2009-2017 Alibaba Cloud All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#ifndef ALIBABACLOUD_ENS_MODEL_DELETEEIPREQUEST_H_ | ||
#define ALIBABACLOUD_ENS_MODEL_DELETEEIPREQUEST_H_ | ||
|
||
#include <alibabacloud/ens/EnsExport.h> | ||
#include <alibabacloud/core/RpcServiceRequest.h> | ||
#include <string> | ||
#include <vector> | ||
#include <map> | ||
|
||
namespace AlibabaCloud { | ||
namespace Ens { | ||
namespace Model { | ||
class ALIBABACLOUD_ENS_EXPORT DeleteEipRequest : public RpcServiceRequest { | ||
public: | ||
DeleteEipRequest(); | ||
~DeleteEipRequest(); | ||
std::string getInstanceId() const; | ||
void setInstanceId(const std::string &instanceId); | ||
|
||
private: | ||
std::string instanceId_; | ||
}; | ||
} // namespace Model | ||
} // namespace Ens | ||
} // namespace AlibabaCloud | ||
#endif // !ALIBABACLOUD_ENS_MODEL_DELETEEIPREQUEST_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,49 @@ | ||
/* | ||
* Copyright 2009-2017 Alibaba Cloud All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#ifndef ALIBABACLOUD_ENS_MODEL_DELETEEIPRESULT_H_ | ||
#define ALIBABACLOUD_ENS_MODEL_DELETEEIPRESULT_H_ | ||
|
||
#include <string> | ||
#include <vector> | ||
#include <utility> | ||
#include <alibabacloud/core/ServiceResult.h> | ||
#include <alibabacloud/ens/EnsExport.h> | ||
|
||
namespace AlibabaCloud | ||
{ | ||
namespace Ens | ||
{ | ||
namespace Model | ||
{ | ||
class ALIBABACLOUD_ENS_EXPORT DeleteEipResult : public ServiceResult | ||
{ | ||
public: | ||
|
||
|
||
DeleteEipResult(); | ||
explicit DeleteEipResult(const std::string &payload); | ||
~DeleteEipResult(); | ||
|
||
protected: | ||
void parse(const std::string &payload); | ||
private: | ||
|
||
}; | ||
} | ||
} | ||
} | ||
#endif // !ALIBABACLOUD_ENS_MODEL_DELETEEIPRESULT_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
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
48 changes: 48 additions & 0 deletions
48
ens/include/alibabacloud/ens/model/ModifySnatEntryRequest.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,48 @@ | ||
/* | ||
* Copyright 2009-2017 Alibaba Cloud All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#ifndef ALIBABACLOUD_ENS_MODEL_MODIFYSNATENTRYREQUEST_H_ | ||
#define ALIBABACLOUD_ENS_MODEL_MODIFYSNATENTRYREQUEST_H_ | ||
|
||
#include <alibabacloud/ens/EnsExport.h> | ||
#include <alibabacloud/core/RpcServiceRequest.h> | ||
#include <string> | ||
#include <vector> | ||
#include <map> | ||
|
||
namespace AlibabaCloud { | ||
namespace Ens { | ||
namespace Model { | ||
class ALIBABACLOUD_ENS_EXPORT ModifySnatEntryRequest : public RpcServiceRequest { | ||
public: | ||
ModifySnatEntryRequest(); | ||
~ModifySnatEntryRequest(); | ||
std::string getSnatEntryId() const; | ||
void setSnatEntryId(const std::string &snatEntryId); | ||
std::string getSnatEntryName() const; | ||
void setSnatEntryName(const std::string &snatEntryName); | ||
bool getIspAffinity() const; | ||
void setIspAffinity(bool ispAffinity); | ||
|
||
private: | ||
std::string snatEntryId_; | ||
std::string snatEntryName_; | ||
bool ispAffinity_; | ||
}; | ||
} // namespace Model | ||
} // namespace Ens | ||
} // namespace AlibabaCloud | ||
#endif // !ALIBABACLOUD_ENS_MODEL_MODIFYSNATENTRYREQUEST_H_ |
Oops, something went wrong.