Skip to content

Commit 5d3f641

Browse files
committed
Add ImportOAS.
1 parent 1b709ba commit 5d3f641

File tree

551 files changed

+30794
-14675
lines changed

Some content is hidden

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

551 files changed

+30794
-14675
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.36.1337
1+
1.36.1338

cloudapi/CMakeLists.txt

Lines changed: 244 additions & 16 deletions
Large diffs are not rendered by default.

cloudapi/include/alibabacloud/cloudapi/CloudAPIClient.h

Lines changed: 488 additions & 32 deletions
Large diffs are not rendered by default.
Lines changed: 43 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,54 @@
11
/*
22
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
3-
*
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
*
7+
*
88
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*/
16-
17-
#ifndef ALIBABACLOUD_CLOUDAPI_MODEL_ABOLISHAPIREQUEST_H_
18-
#define ALIBABACLOUD_CLOUDAPI_MODEL_ABOLISHAPIREQUEST_H_
19-
20-
#include <string>
21-
#include <vector>
22-
#include <alibabacloud/core/RpcServiceRequest.h>
23-
#include <alibabacloud/cloudapi/CloudAPIExport.h>
24-
25-
namespace AlibabaCloud
26-
{
27-
namespace CloudAPI
28-
{
29-
namespace Model
30-
{
31-
class ALIBABACLOUD_CLOUDAPI_EXPORT AbolishApiRequest : public RpcServiceRequest
32-
{
33-
34-
public:
35-
AbolishApiRequest();
36-
~AbolishApiRequest();
37-
38-
std::string getStageName()const;
39-
void setStageName(const std::string& stageName);
40-
std::string getGroupId()const;
41-
void setGroupId(const std::string& groupId);
42-
std::string getAccessKeyId()const;
43-
void setAccessKeyId(const std::string& accessKeyId);
44-
std::string getSecurityToken()const;
45-
void setSecurityToken(const std::string& securityToken);
46-
std::string getApiId()const;
47-
void setApiId(const std::string& apiId);
48-
49-
private:
50-
std::string stageName_;
51-
std::string groupId_;
52-
std::string accessKeyId_;
53-
std::string securityToken_;
54-
std::string apiId_;
55-
56-
};
57-
}
58-
}
59-
}
60-
#endif // !ALIBABACLOUD_CLOUDAPI_MODEL_ABOLISHAPIREQUEST_H_
15+
*/
16+
17+
#ifndef ALIBABACLOUD_CLOUDAPI_MODEL_ABOLISHAPIREQUEST_H_
18+
#define ALIBABACLOUD_CLOUDAPI_MODEL_ABOLISHAPIREQUEST_H_
19+
20+
#include <alibabacloud/cloudapi/CloudAPIExport.h>
21+
#include <alibabacloud/core/RpcServiceRequest.h>
22+
#include <string>
23+
#include <vector>
24+
#include <map>
25+
26+
namespace AlibabaCloud {
27+
namespace CloudAPI {
28+
namespace Model {
29+
class ALIBABACLOUD_CLOUDAPI_EXPORT AbolishApiRequest : public RpcServiceRequest {
30+
public:
31+
AbolishApiRequest();
32+
~AbolishApiRequest();
33+
std::string getStageName() const;
34+
void setStageName(const std::string &stageName);
35+
std::string getGroupId() const;
36+
void setGroupId(const std::string &groupId);
37+
std::string getAccessKeyId() const;
38+
void setAccessKeyId(const std::string &accessKeyId);
39+
std::string getSecurityToken() const;
40+
void setSecurityToken(const std::string &securityToken);
41+
std::string getApiId() const;
42+
void setApiId(const std::string &apiId);
43+
44+
private:
45+
std::string stageName_;
46+
std::string groupId_;
47+
std::string accessKeyId_;
48+
std::string securityToken_;
49+
std::string apiId_;
50+
};
51+
} // namespace Model
52+
} // namespace CloudAPI
53+
} // namespace AlibabaCloud
54+
#endif // !ALIBABACLOUD_CLOUDAPI_MODEL_ABOLISHAPIREQUEST_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_CLOUDAPI_MODEL_ADDACCESSCONTROLLISTENTRYREQUEST_H_
18+
#define ALIBABACLOUD_CLOUDAPI_MODEL_ADDACCESSCONTROLLISTENTRYREQUEST_H_
19+
20+
#include <alibabacloud/cloudapi/CloudAPIExport.h>
21+
#include <alibabacloud/core/RpcServiceRequest.h>
22+
#include <string>
23+
#include <vector>
24+
#include <map>
25+
26+
namespace AlibabaCloud {
27+
namespace CloudAPI {
28+
namespace Model {
29+
class ALIBABACLOUD_CLOUDAPI_EXPORT AddAccessControlListEntryRequest : public RpcServiceRequest {
30+
public:
31+
AddAccessControlListEntryRequest();
32+
~AddAccessControlListEntryRequest();
33+
std::string getAclId() const;
34+
void setAclId(const std::string &aclId);
35+
std::string getAclEntrys() const;
36+
void setAclEntrys(const std::string &aclEntrys);
37+
std::string getAccessKeyId() const;
38+
void setAccessKeyId(const std::string &accessKeyId);
39+
std::string getSecurityToken() const;
40+
void setSecurityToken(const std::string &securityToken);
41+
42+
private:
43+
std::string aclId_;
44+
std::string aclEntrys_;
45+
std::string accessKeyId_;
46+
std::string securityToken_;
47+
};
48+
} // namespace Model
49+
} // namespace CloudAPI
50+
} // namespace AlibabaCloud
51+
#endif // !ALIBABACLOUD_CLOUDAPI_MODEL_ADDACCESSCONTROLLISTENTRYREQUEST_H_

cloudapi/include/alibabacloud/cloudapi/model/ModifyApiMarketAttributesResult.h renamed to cloudapi/include/alibabacloud/cloudapi/model/AddAccessControlListEntryResult.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
* limitations under the License.
1515
*/
1616

17-
#ifndef ALIBABACLOUD_CLOUDAPI_MODEL_MODIFYAPIMARKETATTRIBUTESRESULT_H_
18-
#define ALIBABACLOUD_CLOUDAPI_MODEL_MODIFYAPIMARKETATTRIBUTESRESULT_H_
17+
#ifndef ALIBABACLOUD_CLOUDAPI_MODEL_ADDACCESSCONTROLLISTENTRYRESULT_H_
18+
#define ALIBABACLOUD_CLOUDAPI_MODEL_ADDACCESSCONTROLLISTENTRYRESULT_H_
1919

2020
#include <string>
2121
#include <vector>
@@ -29,14 +29,14 @@ namespace AlibabaCloud
2929
{
3030
namespace Model
3131
{
32-
class ALIBABACLOUD_CLOUDAPI_EXPORT ModifyApiMarketAttributesResult : public ServiceResult
32+
class ALIBABACLOUD_CLOUDAPI_EXPORT AddAccessControlListEntryResult : public ServiceResult
3333
{
3434
public:
3535

3636

37-
ModifyApiMarketAttributesResult();
38-
explicit ModifyApiMarketAttributesResult(const std::string &payload);
39-
~ModifyApiMarketAttributesResult();
37+
AddAccessControlListEntryResult();
38+
explicit AddAccessControlListEntryResult(const std::string &payload);
39+
~AddAccessControlListEntryResult();
4040

4141
protected:
4242
void parse(const std::string &payload);
@@ -46,4 +46,4 @@ namespace AlibabaCloud
4646
}
4747
}
4848
}
49-
#endif // !ALIBABACLOUD_CLOUDAPI_MODEL_MODIFYAPIMARKETATTRIBUTESRESULT_H_
49+
#endif // !ALIBABACLOUD_CLOUDAPI_MODEL_ADDACCESSCONTROLLISTENTRYRESULT_H_
Lines changed: 43 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,54 @@
11
/*
22
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
3-
*
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
*
7+
*
88
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*/
16-
17-
#ifndef ALIBABACLOUD_CLOUDAPI_MODEL_ADDIPCONTROLPOLICYITEMREQUEST_H_
18-
#define ALIBABACLOUD_CLOUDAPI_MODEL_ADDIPCONTROLPOLICYITEMREQUEST_H_
19-
20-
#include <string>
21-
#include <vector>
22-
#include <alibabacloud/core/RpcServiceRequest.h>
23-
#include <alibabacloud/cloudapi/CloudAPIExport.h>
24-
25-
namespace AlibabaCloud
26-
{
27-
namespace CloudAPI
28-
{
29-
namespace Model
30-
{
31-
class ALIBABACLOUD_CLOUDAPI_EXPORT AddIpControlPolicyItemRequest : public RpcServiceRequest
32-
{
33-
34-
public:
35-
AddIpControlPolicyItemRequest();
36-
~AddIpControlPolicyItemRequest();
37-
38-
std::string getAccessKeyId()const;
39-
void setAccessKeyId(const std::string& accessKeyId);
40-
std::string getIpControlId()const;
41-
void setIpControlId(const std::string& ipControlId);
42-
std::string getSecurityToken()const;
43-
void setSecurityToken(const std::string& securityToken);
44-
std::string getAppId()const;
45-
void setAppId(const std::string& appId);
46-
std::string getCidrIp()const;
47-
void setCidrIp(const std::string& cidrIp);
48-
49-
private:
50-
std::string accessKeyId_;
51-
std::string ipControlId_;
52-
std::string securityToken_;
53-
std::string appId_;
54-
std::string cidrIp_;
55-
56-
};
57-
}
58-
}
59-
}
60-
#endif // !ALIBABACLOUD_CLOUDAPI_MODEL_ADDIPCONTROLPOLICYITEMREQUEST_H_
15+
*/
16+
17+
#ifndef ALIBABACLOUD_CLOUDAPI_MODEL_ADDIPCONTROLPOLICYITEMREQUEST_H_
18+
#define ALIBABACLOUD_CLOUDAPI_MODEL_ADDIPCONTROLPOLICYITEMREQUEST_H_
19+
20+
#include <alibabacloud/cloudapi/CloudAPIExport.h>
21+
#include <alibabacloud/core/RpcServiceRequest.h>
22+
#include <string>
23+
#include <vector>
24+
#include <map>
25+
26+
namespace AlibabaCloud {
27+
namespace CloudAPI {
28+
namespace Model {
29+
class ALIBABACLOUD_CLOUDAPI_EXPORT AddIpControlPolicyItemRequest : public RpcServiceRequest {
30+
public:
31+
AddIpControlPolicyItemRequest();
32+
~AddIpControlPolicyItemRequest();
33+
std::string getAccessKeyId() const;
34+
void setAccessKeyId(const std::string &accessKeyId);
35+
std::string getIpControlId() const;
36+
void setIpControlId(const std::string &ipControlId);
37+
std::string getSecurityToken() const;
38+
void setSecurityToken(const std::string &securityToken);
39+
std::string getAppId() const;
40+
void setAppId(const std::string &appId);
41+
std::string getCidrIp() const;
42+
void setCidrIp(const std::string &cidrIp);
43+
44+
private:
45+
std::string accessKeyId_;
46+
std::string ipControlId_;
47+
std::string securityToken_;
48+
std::string appId_;
49+
std::string cidrIp_;
50+
};
51+
} // namespace Model
52+
} // namespace CloudAPI
53+
} // namespace AlibabaCloud
54+
#endif // !ALIBABACLOUD_CLOUDAPI_MODEL_ADDIPCONTROLPOLICYITEMREQUEST_H_

0 commit comments

Comments
 (0)