Skip to content

Commit f22a078

Browse files
committed
Generated 2017-08-01 for polardb.
1 parent 5b357e5 commit f22a078

File tree

557 files changed

+45350
-1317
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

557 files changed

+45350
-1317
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.36.2110
1+
1.36.2111

polardb/CMakeLists.txt

Lines changed: 474 additions & 2 deletions
Large diffs are not rendered by default.

polardb/include/alibabacloud/polardb/PolardbClient.h

Lines changed: 944 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
/*
2+
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
#ifndef ALIBABACLOUD_POLARDB_MODEL_ABORTDBCLUSTERMIGRATIONREQUEST_H_
18+
#define ALIBABACLOUD_POLARDB_MODEL_ABORTDBCLUSTERMIGRATIONREQUEST_H_
19+
20+
#include <alibabacloud/polardb/PolardbExport.h>
21+
#include <alibabacloud/core/RpcServiceRequest.h>
22+
#include <string>
23+
#include <vector>
24+
#include <map>
25+
26+
namespace AlibabaCloud {
27+
namespace Polardb {
28+
namespace Model {
29+
class ALIBABACLOUD_POLARDB_EXPORT AbortDBClusterMigrationRequest : public RpcServiceRequest {
30+
public:
31+
AbortDBClusterMigrationRequest();
32+
~AbortDBClusterMigrationRequest();
33+
long getResourceOwnerId() const;
34+
void setResourceOwnerId(long resourceOwnerId);
35+
std::string getAccessKeyId() const;
36+
void setAccessKeyId(const std::string &accessKeyId);
37+
std::string getResourceGroupId() const;
38+
void setResourceGroupId(const std::string &resourceGroupId);
39+
std::string getSecurityToken() const;
40+
void setSecurityToken(const std::string &securityToken);
41+
std::string getResourceOwnerAccount() const;
42+
void setResourceOwnerAccount(const std::string &resourceOwnerAccount);
43+
std::string getDBClusterId() const;
44+
void setDBClusterId(const std::string &dBClusterId);
45+
std::string getOwnerAccount() const;
46+
void setOwnerAccount(const std::string &ownerAccount);
47+
long getOwnerId() const;
48+
void setOwnerId(long ownerId);
49+
50+
private:
51+
long resourceOwnerId_;
52+
std::string accessKeyId_;
53+
std::string resourceGroupId_;
54+
std::string securityToken_;
55+
std::string resourceOwnerAccount_;
56+
std::string dBClusterId_;
57+
std::string ownerAccount_;
58+
long ownerId_;
59+
};
60+
} // namespace Model
61+
} // namespace Polardb
62+
} // namespace AlibabaCloud
63+
#endif // !ALIBABACLOUD_POLARDB_MODEL_ABORTDBCLUSTERMIGRATIONREQUEST_H_
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
/*
2+
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
#ifndef ALIBABACLOUD_POLARDB_MODEL_ABORTDBCLUSTERMIGRATIONRESULT_H_
18+
#define ALIBABACLOUD_POLARDB_MODEL_ABORTDBCLUSTERMIGRATIONRESULT_H_
19+
20+
#include <string>
21+
#include <vector>
22+
#include <utility>
23+
#include <alibabacloud/core/ServiceResult.h>
24+
#include <alibabacloud/polardb/PolardbExport.h>
25+
26+
namespace AlibabaCloud
27+
{
28+
namespace Polardb
29+
{
30+
namespace Model
31+
{
32+
class ALIBABACLOUD_POLARDB_EXPORT AbortDBClusterMigrationResult : public ServiceResult
33+
{
34+
public:
35+
36+
37+
AbortDBClusterMigrationResult();
38+
explicit AbortDBClusterMigrationResult(const std::string &payload);
39+
~AbortDBClusterMigrationResult();
40+
41+
protected:
42+
void parse(const std::string &payload);
43+
private:
44+
45+
};
46+
}
47+
}
48+
}
49+
#endif // !ALIBABACLOUD_POLARDB_MODEL_ABORTDBCLUSTERMIGRATIONRESULT_H_
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
/*
2+
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
#ifndef ALIBABACLOUD_POLARDB_MODEL_ADDENCRYPTIONDBROLEPRIVILEGEREQUEST_H_
18+
#define ALIBABACLOUD_POLARDB_MODEL_ADDENCRYPTIONDBROLEPRIVILEGEREQUEST_H_
19+
20+
#include <alibabacloud/polardb/PolardbExport.h>
21+
#include <alibabacloud/core/RpcServiceRequest.h>
22+
#include <string>
23+
#include <vector>
24+
#include <map>
25+
26+
namespace AlibabaCloud {
27+
namespace Polardb {
28+
namespace Model {
29+
class ALIBABACLOUD_POLARDB_EXPORT AddEncryptionDBRolePrivilegeRequest : public RpcServiceRequest {
30+
public:
31+
AddEncryptionDBRolePrivilegeRequest();
32+
~AddEncryptionDBRolePrivilegeRequest();
33+
long getResourceOwnerId() const;
34+
void setResourceOwnerId(long resourceOwnerId);
35+
std::string getAccessKeyId() const;
36+
void setAccessKeyId(const std::string &accessKeyId);
37+
std::string getRolePrivilegeConfig() const;
38+
void setRolePrivilegeConfig(const std::string &rolePrivilegeConfig);
39+
std::string getResourceOwnerAccount() const;
40+
void setResourceOwnerAccount(const std::string &resourceOwnerAccount);
41+
std::string getDBClusterId() const;
42+
void setDBClusterId(const std::string &dBClusterId);
43+
std::string getOwnerAccount() const;
44+
void setOwnerAccount(const std::string &ownerAccount);
45+
long getOwnerId() const;
46+
void setOwnerId(long ownerId);
47+
std::string getRolePrivilegeName() const;
48+
void setRolePrivilegeName(const std::string &rolePrivilegeName);
49+
50+
private:
51+
long resourceOwnerId_;
52+
std::string accessKeyId_;
53+
std::string rolePrivilegeConfig_;
54+
std::string resourceOwnerAccount_;
55+
std::string dBClusterId_;
56+
std::string ownerAccount_;
57+
long ownerId_;
58+
std::string rolePrivilegeName_;
59+
};
60+
} // namespace Model
61+
} // namespace Polardb
62+
} // namespace AlibabaCloud
63+
#endif // !ALIBABACLOUD_POLARDB_MODEL_ADDENCRYPTIONDBROLEPRIVILEGEREQUEST_H_
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
/*
2+
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
#ifndef ALIBABACLOUD_POLARDB_MODEL_ADDENCRYPTIONDBROLEPRIVILEGERESULT_H_
18+
#define ALIBABACLOUD_POLARDB_MODEL_ADDENCRYPTIONDBROLEPRIVILEGERESULT_H_
19+
20+
#include <string>
21+
#include <vector>
22+
#include <utility>
23+
#include <alibabacloud/core/ServiceResult.h>
24+
#include <alibabacloud/polardb/PolardbExport.h>
25+
26+
namespace AlibabaCloud
27+
{
28+
namespace Polardb
29+
{
30+
namespace Model
31+
{
32+
class ALIBABACLOUD_POLARDB_EXPORT AddEncryptionDBRolePrivilegeResult : public ServiceResult
33+
{
34+
public:
35+
36+
37+
AddEncryptionDBRolePrivilegeResult();
38+
explicit AddEncryptionDBRolePrivilegeResult(const std::string &payload);
39+
~AddEncryptionDBRolePrivilegeResult();
40+
std::string getDBClusterId()const;
41+
42+
protected:
43+
void parse(const std::string &payload);
44+
private:
45+
std::string dBClusterId_;
46+
47+
};
48+
}
49+
}
50+
}
51+
#endif // !ALIBABACLOUD_POLARDB_MODEL_ADDENCRYPTIONDBROLEPRIVILEGERESULT_H_
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
/*
2+
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
#ifndef ALIBABACLOUD_POLARDB_MODEL_ADDFIREWALLRULESREQUEST_H_
18+
#define ALIBABACLOUD_POLARDB_MODEL_ADDFIREWALLRULESREQUEST_H_
19+
20+
#include <alibabacloud/polardb/PolardbExport.h>
21+
#include <alibabacloud/core/RpcServiceRequest.h>
22+
#include <string>
23+
#include <vector>
24+
#include <map>
25+
26+
namespace AlibabaCloud {
27+
namespace Polardb {
28+
namespace Model {
29+
class ALIBABACLOUD_POLARDB_EXPORT AddFirewallRulesRequest : public RpcServiceRequest {
30+
public:
31+
AddFirewallRulesRequest();
32+
~AddFirewallRulesRequest();
33+
long getResourceOwnerId() const;
34+
void setResourceOwnerId(long resourceOwnerId);
35+
std::string getRuleName() const;
36+
void setRuleName(const std::string &ruleName);
37+
std::string getAccessKeyId() const;
38+
void setAccessKeyId(const std::string &accessKeyId);
39+
std::string getResourceGroupId() const;
40+
void setResourceGroupId(const std::string &resourceGroupId);
41+
std::string getResourceOwnerAccount() const;
42+
void setResourceOwnerAccount(const std::string &resourceOwnerAccount);
43+
std::string getDBClusterId() const;
44+
void setDBClusterId(const std::string &dBClusterId);
45+
std::string getOwnerAccount() const;
46+
void setOwnerAccount(const std::string &ownerAccount);
47+
long getOwnerId() const;
48+
void setOwnerId(long ownerId);
49+
std::string getRuleConfig() const;
50+
void setRuleConfig(const std::string &ruleConfig);
51+
52+
private:
53+
long resourceOwnerId_;
54+
std::string ruleName_;
55+
std::string accessKeyId_;
56+
std::string resourceGroupId_;
57+
std::string resourceOwnerAccount_;
58+
std::string dBClusterId_;
59+
std::string ownerAccount_;
60+
long ownerId_;
61+
std::string ruleConfig_;
62+
};
63+
} // namespace Model
64+
} // namespace Polardb
65+
} // namespace AlibabaCloud
66+
#endif // !ALIBABACLOUD_POLARDB_MODEL_ADDFIREWALLRULESREQUEST_H_
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
/*
2+
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
#ifndef ALIBABACLOUD_POLARDB_MODEL_ADDFIREWALLRULESRESULT_H_
18+
#define ALIBABACLOUD_POLARDB_MODEL_ADDFIREWALLRULESRESULT_H_
19+
20+
#include <string>
21+
#include <vector>
22+
#include <utility>
23+
#include <alibabacloud/core/ServiceResult.h>
24+
#include <alibabacloud/polardb/PolardbExport.h>
25+
26+
namespace AlibabaCloud
27+
{
28+
namespace Polardb
29+
{
30+
namespace Model
31+
{
32+
class ALIBABACLOUD_POLARDB_EXPORT AddFirewallRulesResult : public ServiceResult
33+
{
34+
public:
35+
36+
37+
AddFirewallRulesResult();
38+
explicit AddFirewallRulesResult(const std::string &payload);
39+
~AddFirewallRulesResult();
40+
std::string getMessage()const;
41+
bool getSuccess()const;
42+
43+
protected:
44+
void parse(const std::string &payload);
45+
private:
46+
std::string message_;
47+
bool success_;
48+
49+
};
50+
}
51+
}
52+
}
53+
#endif // !ALIBABACLOUD_POLARDB_MODEL_ADDFIREWALLRULESRESULT_H_

0 commit comments

Comments
 (0)