Skip to content

Commit 595c192

Browse files
committed
Fixed bugs for GetScriptFileNames result.pathName
1 parent 9f078db commit 595c192

File tree

487 files changed

+16682
-9794
lines changed

Some content is hidden

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

487 files changed

+16682
-9794
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.36.1356
1+
1.36.1357

opensearch/CMakeLists.txt

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

opensearch/include/alibabacloud/opensearch/OpenSearchClient.h

Lines changed: 232 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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_OPENSEARCH_MODEL_BINDESUSERANALYZERREQUEST_H_
18+
#define ALIBABACLOUD_OPENSEARCH_MODEL_BINDESUSERANALYZERREQUEST_H_
19+
20+
#include <alibabacloud/opensearch/OpenSearchExport.h>
21+
#include <alibabacloud/core/RoaServiceRequest.h>
22+
#include <string>
23+
#include <vector>
24+
#include <map>
25+
26+
namespace AlibabaCloud {
27+
namespace OpenSearch {
28+
namespace Model {
29+
class ALIBABACLOUD_OPENSEARCH_EXPORT BindESUserAnalyzerRequest : public RoaServiceRequest {
30+
public:
31+
BindESUserAnalyzerRequest();
32+
~BindESUserAnalyzerRequest();
33+
std::string getEsInstanceId() const;
34+
void setEsInstanceId(const std::string &esInstanceId);
35+
std::string getAppGroupIdentity() const;
36+
void setAppGroupIdentity(const std::string &appGroupIdentity);
37+
38+
private:
39+
std::string esInstanceId_;
40+
std::string appGroupIdentity_;
41+
};
42+
} // namespace Model
43+
} // namespace OpenSearch
44+
} // namespace AlibabaCloud
45+
#endif // !ALIBABACLOUD_OPENSEARCH_MODEL_BINDESUSERANALYZERREQUEST_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_OPENSEARCH_MODEL_BINDESUSERANALYZERRESULT_H_
18+
#define ALIBABACLOUD_OPENSEARCH_MODEL_BINDESUSERANALYZERRESULT_H_
19+
20+
#include <string>
21+
#include <vector>
22+
#include <utility>
23+
#include <alibabacloud/core/ServiceResult.h>
24+
#include <alibabacloud/opensearch/OpenSearchExport.h>
25+
26+
namespace AlibabaCloud
27+
{
28+
namespace OpenSearch
29+
{
30+
namespace Model
31+
{
32+
class ALIBABACLOUD_OPENSEARCH_EXPORT BindESUserAnalyzerResult : public ServiceResult
33+
{
34+
public:
35+
36+
37+
BindESUserAnalyzerResult();
38+
explicit BindESUserAnalyzerResult(const std::string &payload);
39+
~BindESUserAnalyzerResult();
40+
std::string getRequestId()const;
41+
std::string getResult()const;
42+
43+
protected:
44+
void parse(const std::string &payload);
45+
private:
46+
std::string requestId_;
47+
std::string result_;
48+
49+
};
50+
}
51+
}
52+
}
53+
#endif // !ALIBABACLOUD_OPENSEARCH_MODEL_BINDESUSERANALYZERRESULT_H_
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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_OPENSEARCH_MODEL_BINDESINSTANCEREQUEST_H_
18+
#define ALIBABACLOUD_OPENSEARCH_MODEL_BINDESINSTANCEREQUEST_H_
19+
20+
#include <alibabacloud/opensearch/OpenSearchExport.h>
21+
#include <alibabacloud/core/RoaServiceRequest.h>
22+
#include <string>
23+
#include <vector>
24+
#include <map>
25+
26+
namespace AlibabaCloud {
27+
namespace OpenSearch {
28+
namespace Model {
29+
class ALIBABACLOUD_OPENSEARCH_EXPORT BindEsInstanceRequest : public RoaServiceRequest {
30+
public:
31+
BindEsInstanceRequest();
32+
~BindEsInstanceRequest();
33+
std::string getAppGroupIdentity() const;
34+
void setAppGroupIdentity(const std::string &appGroupIdentity);
35+
36+
private:
37+
std::string appGroupIdentity_;
38+
};
39+
} // namespace Model
40+
} // namespace OpenSearch
41+
} // namespace AlibabaCloud
42+
#endif // !ALIBABACLOUD_OPENSEARCH_MODEL_BINDESINSTANCEREQUEST_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_OPENSEARCH_MODEL_BINDESINSTANCERESULT_H_
18+
#define ALIBABACLOUD_OPENSEARCH_MODEL_BINDESINSTANCERESULT_H_
19+
20+
#include <string>
21+
#include <vector>
22+
#include <utility>
23+
#include <alibabacloud/core/ServiceResult.h>
24+
#include <alibabacloud/opensearch/OpenSearchExport.h>
25+
26+
namespace AlibabaCloud
27+
{
28+
namespace OpenSearch
29+
{
30+
namespace Model
31+
{
32+
class ALIBABACLOUD_OPENSEARCH_EXPORT BindEsInstanceResult : public ServiceResult
33+
{
34+
public:
35+
36+
37+
BindEsInstanceResult();
38+
explicit BindEsInstanceResult(const std::string &payload);
39+
~BindEsInstanceResult();
40+
std::string getRequestId()const;
41+
std::string getResult()const;
42+
43+
protected:
44+
void parse(const std::string &payload);
45+
private:
46+
std::string requestId_;
47+
std::string result_;
48+
49+
};
50+
}
51+
}
52+
}
53+
#endif // !ALIBABACLOUD_OPENSEARCH_MODEL_BINDESINSTANCERESULT_H_
Lines changed: 37 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,48 @@
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_OPENSEARCH_MODEL_COMPILESORTSCRIPTREQUEST_H_
18-
#define ALIBABACLOUD_OPENSEARCH_MODEL_COMPILESORTSCRIPTREQUEST_H_
19-
20-
#include <string>
21-
#include <vector>
22-
#include <alibabacloud/core/RoaServiceRequest.h>
23-
#include <alibabacloud/opensearch/OpenSearchExport.h>
24-
25-
namespace AlibabaCloud
26-
{
27-
namespace OpenSearch
28-
{
29-
namespace Model
30-
{
31-
class ALIBABACLOUD_OPENSEARCH_EXPORT CompileSortScriptRequest : public RoaServiceRequest
32-
{
33-
34-
public:
35-
CompileSortScriptRequest();
36-
~CompileSortScriptRequest();
37-
38-
std::string getAppVersionId()const;
39-
void setAppVersionId(const std::string& appVersionId);
40-
std::string getScriptName()const;
41-
void setScriptName(const std::string& scriptName);
42-
std::string getAppGroupIdentity()const;
43-
void setAppGroupIdentity(const std::string& appGroupIdentity);
44-
45-
private:
46-
std::string appVersionId_;
47-
std::string scriptName_;
48-
std::string appGroupIdentity_;
49-
50-
};
51-
}
52-
}
53-
}
54-
#endif // !ALIBABACLOUD_OPENSEARCH_MODEL_COMPILESORTSCRIPTREQUEST_H_
15+
*/
16+
17+
#ifndef ALIBABACLOUD_OPENSEARCH_MODEL_COMPILESORTSCRIPTREQUEST_H_
18+
#define ALIBABACLOUD_OPENSEARCH_MODEL_COMPILESORTSCRIPTREQUEST_H_
19+
20+
#include <alibabacloud/opensearch/OpenSearchExport.h>
21+
#include <alibabacloud/core/RoaServiceRequest.h>
22+
#include <string>
23+
#include <vector>
24+
#include <map>
25+
26+
namespace AlibabaCloud {
27+
namespace OpenSearch {
28+
namespace Model {
29+
class ALIBABACLOUD_OPENSEARCH_EXPORT CompileSortScriptRequest : public RoaServiceRequest {
30+
public:
31+
CompileSortScriptRequest();
32+
~CompileSortScriptRequest();
33+
std::string getAppVersionId() const;
34+
void setAppVersionId(const std::string &appVersionId);
35+
std::string getScriptName() const;
36+
void setScriptName(const std::string &scriptName);
37+
std::string getAppGroupIdentity() const;
38+
void setAppGroupIdentity(const std::string &appGroupIdentity);
39+
40+
private:
41+
std::string appVersionId_;
42+
std::string scriptName_;
43+
std::string appGroupIdentity_;
44+
};
45+
} // namespace Model
46+
} // namespace OpenSearch
47+
} // namespace AlibabaCloud
48+
#endif // !ALIBABACLOUD_OPENSEARCH_MODEL_COMPILESORTSCRIPTREQUEST_H_
Lines changed: 37 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,48 @@
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_OPENSEARCH_MODEL_CREATEABTESTEXPERIMENTREQUEST_H_
18-
#define ALIBABACLOUD_OPENSEARCH_MODEL_CREATEABTESTEXPERIMENTREQUEST_H_
19-
20-
#include <string>
21-
#include <vector>
22-
#include <alibabacloud/core/RoaServiceRequest.h>
23-
#include <alibabacloud/opensearch/OpenSearchExport.h>
24-
25-
namespace AlibabaCloud
26-
{
27-
namespace OpenSearch
28-
{
29-
namespace Model
30-
{
31-
class ALIBABACLOUD_OPENSEARCH_EXPORT CreateABTestExperimentRequest : public RoaServiceRequest
32-
{
33-
34-
public:
35-
CreateABTestExperimentRequest();
36-
~CreateABTestExperimentRequest();
37-
38-
int getGroupId()const;
39-
void setGroupId(int groupId);
40-
int getSceneId()const;
41-
void setSceneId(int sceneId);
42-
std::string getAppGroupIdentity()const;
43-
void setAppGroupIdentity(const std::string& appGroupIdentity);
44-
45-
private:
46-
int groupId_;
47-
int sceneId_;
48-
std::string appGroupIdentity_;
49-
50-
};
51-
}
52-
}
53-
}
54-
#endif // !ALIBABACLOUD_OPENSEARCH_MODEL_CREATEABTESTEXPERIMENTREQUEST_H_
15+
*/
16+
17+
#ifndef ALIBABACLOUD_OPENSEARCH_MODEL_CREATEABTESTEXPERIMENTREQUEST_H_
18+
#define ALIBABACLOUD_OPENSEARCH_MODEL_CREATEABTESTEXPERIMENTREQUEST_H_
19+
20+
#include <alibabacloud/opensearch/OpenSearchExport.h>
21+
#include <alibabacloud/core/RoaServiceRequest.h>
22+
#include <string>
23+
#include <vector>
24+
#include <map>
25+
26+
namespace AlibabaCloud {
27+
namespace OpenSearch {
28+
namespace Model {
29+
class ALIBABACLOUD_OPENSEARCH_EXPORT CreateABTestExperimentRequest : public RoaServiceRequest {
30+
public:
31+
CreateABTestExperimentRequest();
32+
~CreateABTestExperimentRequest();
33+
int getGroupId() const;
34+
void setGroupId(int groupId);
35+
int getSceneId() const;
36+
void setSceneId(int sceneId);
37+
std::string getAppGroupIdentity() const;
38+
void setAppGroupIdentity(const std::string &appGroupIdentity);
39+
40+
private:
41+
int groupId_;
42+
int sceneId_;
43+
std::string appGroupIdentity_;
44+
};
45+
} // namespace Model
46+
} // namespace OpenSearch
47+
} // namespace AlibabaCloud
48+
#endif // !ALIBABACLOUD_OPENSEARCH_MODEL_CREATEABTESTEXPERIMENTREQUEST_H_

opensearch/include/alibabacloud/opensearch/model/CreateABTestExperimentResult.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ namespace AlibabaCloud
3939
std::string params;
4040
std::string id;
4141
bool online;
42-
std::string name;
4342
int created;
43+
std::string name;
4444
};
4545

4646

0 commit comments

Comments
 (0)