Skip to content

Commit 1f7b94e

Browse files
committed
Update sdk.
1 parent a54f4e6 commit 1f7b94e

File tree

724 files changed

+36110
-11221
lines changed

Some content is hidden

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

724 files changed

+36110
-11221
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2022-07-01 Version: 1.36.1165
2+
- Update sdk.
3+
14
2022-06-30 Version: 1.36.1164
25
- CreateMigrationJob SDK.
36

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.36.1164
1+
1.36.1165

ddoscoo/CMakeLists.txt

Lines changed: 544 additions & 168 deletions
Large diffs are not rendered by default.

ddoscoo/include/alibabacloud/ddoscoo/DdoscooClient.h

Lines changed: 1088 additions & 336 deletions
Large diffs are not rendered by default.
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_DDOSCOO_MODEL_ADDAUTOCCBLACKLISTREQUEST_H_
18+
#define ALIBABACLOUD_DDOSCOO_MODEL_ADDAUTOCCBLACKLISTREQUEST_H_
19+
20+
#include <alibabacloud/ddoscoo/DdoscooExport.h>
21+
#include <alibabacloud/core/RpcServiceRequest.h>
22+
#include <string>
23+
#include <vector>
24+
#include <map>
25+
26+
namespace AlibabaCloud {
27+
namespace Ddoscoo {
28+
namespace Model {
29+
class ALIBABACLOUD_DDOSCOO_EXPORT AddAutoCcBlacklistRequest : public RpcServiceRequest {
30+
public:
31+
AddAutoCcBlacklistRequest();
32+
~AddAutoCcBlacklistRequest();
33+
int getExpireTime() const;
34+
void setExpireTime(int expireTime);
35+
std::string getBlacklist() const;
36+
void setBlacklist(const std::string &blacklist);
37+
std::string getInstanceId() const;
38+
void setInstanceId(const std::string &instanceId);
39+
std::string getSourceIp() const;
40+
void setSourceIp(const std::string &sourceIp);
41+
42+
private:
43+
int expireTime_;
44+
std::string blacklist_;
45+
std::string instanceId_;
46+
std::string sourceIp_;
47+
};
48+
} // namespace Model
49+
} // namespace Ddoscoo
50+
} // namespace AlibabaCloud
51+
#endif // !ALIBABACLOUD_DDOSCOO_MODEL_ADDAUTOCCBLACKLISTREQUEST_H_

ddoscoo/include/alibabacloud/ddoscoo/model/DeleteLayer7CCRuleResult.h renamed to ddoscoo/include/alibabacloud/ddoscoo/model/AddAutoCcBlacklistResult.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_DDOSCOO_MODEL_DELETELAYER7CCRULERESULT_H_
18-
#define ALIBABACLOUD_DDOSCOO_MODEL_DELETELAYER7CCRULERESULT_H_
17+
#ifndef ALIBABACLOUD_DDOSCOO_MODEL_ADDAUTOCCBLACKLISTRESULT_H_
18+
#define ALIBABACLOUD_DDOSCOO_MODEL_ADDAUTOCCBLACKLISTRESULT_H_
1919

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

3636

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

4141
protected:
4242
void parse(const std::string &payload);
@@ -46,4 +46,4 @@ namespace AlibabaCloud
4646
}
4747
}
4848
}
49-
#endif // !ALIBABACLOUD_DDOSCOO_MODEL_DELETELAYER7CCRULERESULT_H_
49+
#endif // !ALIBABACLOUD_DDOSCOO_MODEL_ADDAUTOCCBLACKLISTRESULT_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_DDOSCOO_MODEL_ADDAUTOCCWHITELISTREQUEST_H_
18+
#define ALIBABACLOUD_DDOSCOO_MODEL_ADDAUTOCCWHITELISTREQUEST_H_
19+
20+
#include <alibabacloud/ddoscoo/DdoscooExport.h>
21+
#include <alibabacloud/core/RpcServiceRequest.h>
22+
#include <string>
23+
#include <vector>
24+
#include <map>
25+
26+
namespace AlibabaCloud {
27+
namespace Ddoscoo {
28+
namespace Model {
29+
class ALIBABACLOUD_DDOSCOO_EXPORT AddAutoCcWhitelistRequest : public RpcServiceRequest {
30+
public:
31+
AddAutoCcWhitelistRequest();
32+
~AddAutoCcWhitelistRequest();
33+
int getExpireTime() const;
34+
void setExpireTime(int expireTime);
35+
std::string getWhitelist() const;
36+
void setWhitelist(const std::string &whitelist);
37+
std::string getInstanceId() const;
38+
void setInstanceId(const std::string &instanceId);
39+
std::string getSourceIp() const;
40+
void setSourceIp(const std::string &sourceIp);
41+
42+
private:
43+
int expireTime_;
44+
std::string whitelist_;
45+
std::string instanceId_;
46+
std::string sourceIp_;
47+
};
48+
} // namespace Model
49+
} // namespace Ddoscoo
50+
} // namespace AlibabaCloud
51+
#endif // !ALIBABACLOUD_DDOSCOO_MODEL_ADDAUTOCCWHITELISTREQUEST_H_

ddoscoo/include/alibabacloud/ddoscoo/model/EnableLayer7CCRuleResult.h renamed to ddoscoo/include/alibabacloud/ddoscoo/model/AddAutoCcWhitelistResult.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_DDOSCOO_MODEL_ENABLELAYER7CCRULERESULT_H_
18-
#define ALIBABACLOUD_DDOSCOO_MODEL_ENABLELAYER7CCRULERESULT_H_
17+
#ifndef ALIBABACLOUD_DDOSCOO_MODEL_ADDAUTOCCWHITELISTRESULT_H_
18+
#define ALIBABACLOUD_DDOSCOO_MODEL_ADDAUTOCCWHITELISTRESULT_H_
1919

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

3636

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

4141
protected:
4242
void parse(const std::string &payload);
@@ -46,4 +46,4 @@ namespace AlibabaCloud
4646
}
4747
}
4848
}
49-
#endif // !ALIBABACLOUD_DDOSCOO_MODEL_ENABLELAYER7CCRULERESULT_H_
49+
#endif // !ALIBABACLOUD_DDOSCOO_MODEL_ADDAUTOCCWHITELISTRESULT_H_

ddoscoo/include/alibabacloud/ddoscoo/model/AddLayer7CCRuleRequest.h

Lines changed: 0 additions & 75 deletions
This file was deleted.
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
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_DDOSCOO_MODEL_ASSOCIATEWEBCERTREQUEST_H_
18+
#define ALIBABACLOUD_DDOSCOO_MODEL_ASSOCIATEWEBCERTREQUEST_H_
19+
20+
#include <alibabacloud/ddoscoo/DdoscooExport.h>
21+
#include <alibabacloud/core/RpcServiceRequest.h>
22+
#include <string>
23+
#include <vector>
24+
#include <map>
25+
26+
namespace AlibabaCloud {
27+
namespace Ddoscoo {
28+
namespace Model {
29+
class ALIBABACLOUD_DDOSCOO_EXPORT AssociateWebCertRequest : public RpcServiceRequest {
30+
public:
31+
AssociateWebCertRequest();
32+
~AssociateWebCertRequest();
33+
std::string getCert() const;
34+
void setCert(const std::string &cert);
35+
int getCertId() const;
36+
void setCertId(int certId);
37+
std::string getResourceGroupId() const;
38+
void setResourceGroupId(const std::string &resourceGroupId);
39+
std::string getSourceIp() const;
40+
void setSourceIp(const std::string &sourceIp);
41+
std::string getKey() const;
42+
void setKey(const std::string &key);
43+
std::string getCertName() const;
44+
void setCertName(const std::string &certName);
45+
std::string getDomain() const;
46+
void setDomain(const std::string &domain);
47+
48+
private:
49+
std::string cert_;
50+
int certId_;
51+
std::string resourceGroupId_;
52+
std::string sourceIp_;
53+
std::string key_;
54+
std::string certName_;
55+
std::string domain_;
56+
};
57+
} // namespace Model
58+
} // namespace Ddoscoo
59+
} // namespace AlibabaCloud
60+
#endif // !ALIBABACLOUD_DDOSCOO_MODEL_ASSOCIATEWEBCERTREQUEST_H_

0 commit comments

Comments
 (0)