Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c2b59302fa | ||
|
|
742ad5f67c | ||
|
|
099ec7bb13 | ||
|
|
b972642ffe | ||
|
|
ed4870b066 | ||
|
|
5ce3266e7f | ||
|
|
d850c22c0f |
22
CHANGELOG
22
CHANGELOG
@@ -1,3 +1,25 @@
|
||||
2021-04-20 Version: 1.36.689
|
||||
- LivenessFaceVerify ContrastFaceVerify CompareFaceVerify API Return CertifyId.
|
||||
|
||||
2021-04-19 Version: 1.36.688
|
||||
- Export StartBack2BackCall API.
|
||||
|
||||
2021-04-19 Version: 1.36.687
|
||||
- Generated 2020-10-29 for `reid_cloud`.
|
||||
|
||||
2021-04-17 Version: 1.36.686
|
||||
- Update RunMedQA.
|
||||
|
||||
2021-04-16 Version: 1.36.685
|
||||
- Support devops organization deletion.
|
||||
|
||||
2021-04-16 Version: 1.36.684
|
||||
- Add CheckProductOpen.
|
||||
- Add az routing policy.
|
||||
|
||||
2021-04-16 Version: 1.36.683
|
||||
- Generated 2020-10-29 for `reid_cloud`.
|
||||
|
||||
2021-04-16 Version: 1.36.682
|
||||
- Add API GetDomain.
|
||||
- Add API ListSystemAnalyzers.
|
||||
|
||||
@@ -41,6 +41,8 @@ namespace AlibabaCloud
|
||||
void setBroker(const std::string& broker);
|
||||
std::string getUserId()const;
|
||||
void setUserId(const std::string& userId);
|
||||
std::string getDeviceId()const;
|
||||
void setDeviceId(const std::string& deviceId);
|
||||
std::string getAdditionalBroker()const;
|
||||
void setAdditionalBroker(const std::string& additionalBroker);
|
||||
std::string getTags()const;
|
||||
@@ -56,6 +58,7 @@ namespace AlibabaCloud
|
||||
std::string callee_;
|
||||
std::string broker_;
|
||||
std::string userId_;
|
||||
std::string deviceId_;
|
||||
std::string additionalBroker_;
|
||||
std::string tags_;
|
||||
int timeoutSeconds_;
|
||||
|
||||
@@ -60,6 +60,17 @@ void StartBack2BackCallRequest::setUserId(const std::string& userId)
|
||||
setParameter("UserId", userId);
|
||||
}
|
||||
|
||||
std::string StartBack2BackCallRequest::getDeviceId()const
|
||||
{
|
||||
return deviceId_;
|
||||
}
|
||||
|
||||
void StartBack2BackCallRequest::setDeviceId(const std::string& deviceId)
|
||||
{
|
||||
deviceId_ = deviceId;
|
||||
setParameter("DeviceId", deviceId);
|
||||
}
|
||||
|
||||
std::string StartBack2BackCallRequest::getAdditionalBroker()const
|
||||
{
|
||||
return additionalBroker_;
|
||||
|
||||
@@ -97,6 +97,8 @@ set(cloudauth_public_header_model
|
||||
include/alibabacloud/cloudauth/model/InitFaceVerifyResult.h
|
||||
include/alibabacloud/cloudauth/model/InitSmartVerifyRequest.h
|
||||
include/alibabacloud/cloudauth/model/InitSmartVerifyResult.h
|
||||
include/alibabacloud/cloudauth/model/LivenessDetectRequest.h
|
||||
include/alibabacloud/cloudauth/model/LivenessDetectResult.h
|
||||
include/alibabacloud/cloudauth/model/LivenessFaceVerifyRequest.h
|
||||
include/alibabacloud/cloudauth/model/LivenessFaceVerifyResult.h
|
||||
include/alibabacloud/cloudauth/model/ModifyDeviceInfoRequest.h
|
||||
@@ -196,6 +198,8 @@ set(cloudauth_src
|
||||
src/model/InitFaceVerifyResult.cc
|
||||
src/model/InitSmartVerifyRequest.cc
|
||||
src/model/InitSmartVerifyResult.cc
|
||||
src/model/LivenessDetectRequest.cc
|
||||
src/model/LivenessDetectResult.cc
|
||||
src/model/LivenessFaceVerifyRequest.cc
|
||||
src/model/LivenessFaceVerifyResult.cc
|
||||
src/model/ModifyDeviceInfoRequest.cc
|
||||
|
||||
@@ -98,6 +98,8 @@
|
||||
#include "model/InitFaceVerifyResult.h"
|
||||
#include "model/InitSmartVerifyRequest.h"
|
||||
#include "model/InitSmartVerifyResult.h"
|
||||
#include "model/LivenessDetectRequest.h"
|
||||
#include "model/LivenessDetectResult.h"
|
||||
#include "model/LivenessFaceVerifyRequest.h"
|
||||
#include "model/LivenessFaceVerifyResult.h"
|
||||
#include "model/ModifyDeviceInfoRequest.h"
|
||||
@@ -241,6 +243,9 @@ namespace AlibabaCloud
|
||||
typedef Outcome<Error, Model::InitSmartVerifyResult> InitSmartVerifyOutcome;
|
||||
typedef std::future<InitSmartVerifyOutcome> InitSmartVerifyOutcomeCallable;
|
||||
typedef std::function<void(const CloudauthClient*, const Model::InitSmartVerifyRequest&, const InitSmartVerifyOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> InitSmartVerifyAsyncHandler;
|
||||
typedef Outcome<Error, Model::LivenessDetectResult> LivenessDetectOutcome;
|
||||
typedef std::future<LivenessDetectOutcome> LivenessDetectOutcomeCallable;
|
||||
typedef std::function<void(const CloudauthClient*, const Model::LivenessDetectRequest&, const LivenessDetectOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> LivenessDetectAsyncHandler;
|
||||
typedef Outcome<Error, Model::LivenessFaceVerifyResult> LivenessFaceVerifyOutcome;
|
||||
typedef std::future<LivenessFaceVerifyOutcome> LivenessFaceVerifyOutcomeCallable;
|
||||
typedef std::function<void(const CloudauthClient*, const Model::LivenessFaceVerifyRequest&, const LivenessFaceVerifyOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> LivenessFaceVerifyAsyncHandler;
|
||||
@@ -390,6 +395,9 @@ namespace AlibabaCloud
|
||||
InitSmartVerifyOutcome initSmartVerify(const Model::InitSmartVerifyRequest &request)const;
|
||||
void initSmartVerifyAsync(const Model::InitSmartVerifyRequest& request, const InitSmartVerifyAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
InitSmartVerifyOutcomeCallable initSmartVerifyCallable(const Model::InitSmartVerifyRequest& request) const;
|
||||
LivenessDetectOutcome livenessDetect(const Model::LivenessDetectRequest &request)const;
|
||||
void livenessDetectAsync(const Model::LivenessDetectRequest& request, const LivenessDetectAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
LivenessDetectOutcomeCallable livenessDetectCallable(const Model::LivenessDetectRequest& request) const;
|
||||
LivenessFaceVerifyOutcome livenessFaceVerify(const Model::LivenessFaceVerifyRequest &request)const;
|
||||
void livenessFaceVerifyAsync(const Model::LivenessFaceVerifyRequest& request, const LivenessFaceVerifyAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
LivenessFaceVerifyOutcomeCallable livenessFaceVerifyCallable(const Model::LivenessFaceVerifyRequest& request) const;
|
||||
|
||||
@@ -36,6 +36,7 @@ namespace AlibabaCloud
|
||||
{
|
||||
std::string passed;
|
||||
float verifyScore;
|
||||
std::string certifyId;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@@ -35,6 +35,7 @@ namespace AlibabaCloud
|
||||
struct ResultObject
|
||||
{
|
||||
std::string passed;
|
||||
std::string certifyId;
|
||||
std::string identityInfo;
|
||||
std::string materialInfo;
|
||||
std::string subCode;
|
||||
|
||||
@@ -0,0 +1,60 @@
|
||||
/*
|
||||
* 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_CLOUDAUTH_MODEL_LIVENESSDETECTREQUEST_H_
|
||||
#define ALIBABACLOUD_CLOUDAUTH_MODEL_LIVENESSDETECTREQUEST_H_
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <alibabacloud/core/RpcServiceRequest.h>
|
||||
#include <alibabacloud/cloudauth/CloudauthExport.h>
|
||||
|
||||
namespace AlibabaCloud
|
||||
{
|
||||
namespace Cloudauth
|
||||
{
|
||||
namespace Model
|
||||
{
|
||||
class ALIBABACLOUD_CLOUDAUTH_EXPORT LivenessDetectRequest : public RpcServiceRequest
|
||||
{
|
||||
|
||||
public:
|
||||
LivenessDetectRequest();
|
||||
~LivenessDetectRequest();
|
||||
|
||||
std::string getMediaCategory()const;
|
||||
void setMediaCategory(const std::string& mediaCategory);
|
||||
std::string getMediaUrl()const;
|
||||
void setMediaUrl(const std::string& mediaUrl);
|
||||
std::string getBizType()const;
|
||||
void setBizType(const std::string& bizType);
|
||||
std::string getBizId()const;
|
||||
void setBizId(const std::string& bizId);
|
||||
std::string getMediaFile()const;
|
||||
void setMediaFile(const std::string& mediaFile);
|
||||
|
||||
private:
|
||||
std::string mediaCategory_;
|
||||
std::string mediaUrl_;
|
||||
std::string bizType_;
|
||||
std::string bizId_;
|
||||
std::string mediaFile_;
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif // !ALIBABACLOUD_CLOUDAUTH_MODEL_LIVENESSDETECTREQUEST_H_
|
||||
@@ -0,0 +1,61 @@
|
||||
/*
|
||||
* 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_CLOUDAUTH_MODEL_LIVENESSDETECTRESULT_H_
|
||||
#define ALIBABACLOUD_CLOUDAUTH_MODEL_LIVENESSDETECTRESULT_H_
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <utility>
|
||||
#include <alibabacloud/core/ServiceResult.h>
|
||||
#include <alibabacloud/cloudauth/CloudauthExport.h>
|
||||
|
||||
namespace AlibabaCloud
|
||||
{
|
||||
namespace Cloudauth
|
||||
{
|
||||
namespace Model
|
||||
{
|
||||
class ALIBABACLOUD_CLOUDAUTH_EXPORT LivenessDetectResult : public ServiceResult
|
||||
{
|
||||
public:
|
||||
struct ResultObject
|
||||
{
|
||||
std::string passed;
|
||||
float score;
|
||||
std::string frameUrl;
|
||||
};
|
||||
|
||||
|
||||
LivenessDetectResult();
|
||||
explicit LivenessDetectResult(const std::string &payload);
|
||||
~LivenessDetectResult();
|
||||
ResultObject getResultObject()const;
|
||||
std::string getMessage()const;
|
||||
std::string getCode()const;
|
||||
|
||||
protected:
|
||||
void parse(const std::string &payload);
|
||||
private:
|
||||
ResultObject resultObject_;
|
||||
std::string message_;
|
||||
std::string code_;
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif // !ALIBABACLOUD_CLOUDAUTH_MODEL_LIVENESSDETECTRESULT_H_
|
||||
@@ -35,6 +35,7 @@ namespace AlibabaCloud
|
||||
struct ResultObject
|
||||
{
|
||||
std::string passed;
|
||||
std::string certifyId;
|
||||
std::string materialInfo;
|
||||
std::string subCode;
|
||||
};
|
||||
|
||||
@@ -1419,6 +1419,42 @@ CloudauthClient::InitSmartVerifyOutcomeCallable CloudauthClient::initSmartVerify
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
CloudauthClient::LivenessDetectOutcome CloudauthClient::livenessDetect(const LivenessDetectRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return LivenessDetectOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return LivenessDetectOutcome(LivenessDetectResult(outcome.result()));
|
||||
else
|
||||
return LivenessDetectOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void CloudauthClient::livenessDetectAsync(const LivenessDetectRequest& request, const LivenessDetectAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, livenessDetect(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
CloudauthClient::LivenessDetectOutcomeCallable CloudauthClient::livenessDetectCallable(const LivenessDetectRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<LivenessDetectOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->livenessDetect(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
CloudauthClient::LivenessFaceVerifyOutcome CloudauthClient::livenessFaceVerify(const LivenessFaceVerifyRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
|
||||
@@ -44,6 +44,8 @@ void CompareFaceVerifyResult::parse(const std::string &payload)
|
||||
resultObject_.passed = resultObjectNode["Passed"].asString();
|
||||
if(!resultObjectNode["VerifyScore"].isNull())
|
||||
resultObject_.verifyScore = std::stof(resultObjectNode["VerifyScore"].asString());
|
||||
if(!resultObjectNode["CertifyId"].isNull())
|
||||
resultObject_.certifyId = resultObjectNode["CertifyId"].asString();
|
||||
if(!value["Message"].isNull())
|
||||
message_ = value["Message"].asString();
|
||||
if(!value["Code"].isNull())
|
||||
|
||||
@@ -48,6 +48,8 @@ void ContrastFaceVerifyResult::parse(const std::string &payload)
|
||||
resultObject_.materialInfo = resultObjectNode["MaterialInfo"].asString();
|
||||
if(!resultObjectNode["SubCode"].isNull())
|
||||
resultObject_.subCode = resultObjectNode["SubCode"].asString();
|
||||
if(!resultObjectNode["CertifyId"].isNull())
|
||||
resultObject_.certifyId = resultObjectNode["CertifyId"].asString();
|
||||
if(!value["Message"].isNull())
|
||||
message_ = value["Message"].asString();
|
||||
if(!value["Code"].isNull())
|
||||
|
||||
84
cloudauth/src/model/LivenessDetectRequest.cc
Normal file
84
cloudauth/src/model/LivenessDetectRequest.cc
Normal file
@@ -0,0 +1,84 @@
|
||||
/*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/cloudauth/model/LivenessDetectRequest.h>
|
||||
|
||||
using AlibabaCloud::Cloudauth::Model::LivenessDetectRequest;
|
||||
|
||||
LivenessDetectRequest::LivenessDetectRequest() :
|
||||
RpcServiceRequest("cloudauth", "2020-11-12", "LivenessDetect")
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
LivenessDetectRequest::~LivenessDetectRequest()
|
||||
{}
|
||||
|
||||
std::string LivenessDetectRequest::getMediaCategory()const
|
||||
{
|
||||
return mediaCategory_;
|
||||
}
|
||||
|
||||
void LivenessDetectRequest::setMediaCategory(const std::string& mediaCategory)
|
||||
{
|
||||
mediaCategory_ = mediaCategory;
|
||||
setBodyParameter("MediaCategory", mediaCategory);
|
||||
}
|
||||
|
||||
std::string LivenessDetectRequest::getMediaUrl()const
|
||||
{
|
||||
return mediaUrl_;
|
||||
}
|
||||
|
||||
void LivenessDetectRequest::setMediaUrl(const std::string& mediaUrl)
|
||||
{
|
||||
mediaUrl_ = mediaUrl;
|
||||
setBodyParameter("MediaUrl", mediaUrl);
|
||||
}
|
||||
|
||||
std::string LivenessDetectRequest::getBizType()const
|
||||
{
|
||||
return bizType_;
|
||||
}
|
||||
|
||||
void LivenessDetectRequest::setBizType(const std::string& bizType)
|
||||
{
|
||||
bizType_ = bizType;
|
||||
setBodyParameter("BizType", bizType);
|
||||
}
|
||||
|
||||
std::string LivenessDetectRequest::getBizId()const
|
||||
{
|
||||
return bizId_;
|
||||
}
|
||||
|
||||
void LivenessDetectRequest::setBizId(const std::string& bizId)
|
||||
{
|
||||
bizId_ = bizId;
|
||||
setBodyParameter("BizId", bizId);
|
||||
}
|
||||
|
||||
std::string LivenessDetectRequest::getMediaFile()const
|
||||
{
|
||||
return mediaFile_;
|
||||
}
|
||||
|
||||
void LivenessDetectRequest::setMediaFile(const std::string& mediaFile)
|
||||
{
|
||||
mediaFile_ = mediaFile;
|
||||
setBodyParameter("MediaFile", mediaFile);
|
||||
}
|
||||
|
||||
70
cloudauth/src/model/LivenessDetectResult.cc
Normal file
70
cloudauth/src/model/LivenessDetectResult.cc
Normal file
@@ -0,0 +1,70 @@
|
||||
/*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/cloudauth/model/LivenessDetectResult.h>
|
||||
#include <json/json.h>
|
||||
|
||||
using namespace AlibabaCloud::Cloudauth;
|
||||
using namespace AlibabaCloud::Cloudauth::Model;
|
||||
|
||||
LivenessDetectResult::LivenessDetectResult() :
|
||||
ServiceResult()
|
||||
{}
|
||||
|
||||
LivenessDetectResult::LivenessDetectResult(const std::string &payload) :
|
||||
ServiceResult()
|
||||
{
|
||||
parse(payload);
|
||||
}
|
||||
|
||||
LivenessDetectResult::~LivenessDetectResult()
|
||||
{}
|
||||
|
||||
void LivenessDetectResult::parse(const std::string &payload)
|
||||
{
|
||||
Json::Reader reader;
|
||||
Json::Value value;
|
||||
reader.parse(payload, value);
|
||||
setRequestId(value["RequestId"].asString());
|
||||
auto resultObjectNode = value["ResultObject"];
|
||||
if(!resultObjectNode["Passed"].isNull())
|
||||
resultObject_.passed = resultObjectNode["Passed"].asString();
|
||||
if(!resultObjectNode["Score"].isNull())
|
||||
resultObject_.score = std::stof(resultObjectNode["Score"].asString());
|
||||
if(!resultObjectNode["FrameUrl"].isNull())
|
||||
resultObject_.frameUrl = resultObjectNode["FrameUrl"].asString();
|
||||
if(!value["Code"].isNull())
|
||||
code_ = value["Code"].asString();
|
||||
if(!value["Message"].isNull())
|
||||
message_ = value["Message"].asString();
|
||||
|
||||
}
|
||||
|
||||
LivenessDetectResult::ResultObject LivenessDetectResult::getResultObject()const
|
||||
{
|
||||
return resultObject_;
|
||||
}
|
||||
|
||||
std::string LivenessDetectResult::getMessage()const
|
||||
{
|
||||
return message_;
|
||||
}
|
||||
|
||||
std::string LivenessDetectResult::getCode()const
|
||||
{
|
||||
return code_;
|
||||
}
|
||||
|
||||
@@ -46,6 +46,8 @@ void LivenessFaceVerifyResult::parse(const std::string &payload)
|
||||
resultObject_.materialInfo = resultObjectNode["MaterialInfo"].asString();
|
||||
if(!resultObjectNode["SubCode"].isNull())
|
||||
resultObject_.subCode = resultObjectNode["SubCode"].asString();
|
||||
if(!resultObjectNode["CertifyId"].isNull())
|
||||
resultObject_.certifyId = resultObjectNode["CertifyId"].asString();
|
||||
if(!value["Message"].isNull())
|
||||
message_ = value["Message"].asString();
|
||||
if(!value["Code"].isNull())
|
||||
|
||||
1
devops-rdc/2020-03-03/BatchInsertMembers.xml
Normal file
1
devops-rdc/2020-03-03/BatchInsertMembers.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="BatchInsertMembers" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes /></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/member/create#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="members" tagName="Members" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="realPk" tagName="RealPk" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/member/create#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="RequestId" visibility="Public" type="String" name="requestId" nullToEmpty="false"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode" nullToEmpty="false"/><Member tagName="ErrorMessage" visibility="Public" type="String" name="errorMsg" nullToEmpty="false"/><Member tagName="Success" visibility="Public" type="Boolean" name="successful" nullToEmpty="false"/><Member tagName="Object" visibility="Public" type="Boolean" name="object" nullToEmpty="false"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/CancelPipeline.xml
Normal file
1
devops-rdc/2020-03-03/CancelPipeline.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="CancelPipeline" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes /></ErrorMapping><IspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://deops/api/pipeline/cancel#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="pipelineId" tagName="PipelineId" type="Long" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="flowInstanceId" tagName="FlowInstanceId" type="Long" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="userPk" tagName="UserPk" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://devops_pre/api/pipeline/cancel#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Success" visibility="Public" type="Boolean" name="successful" nullToEmpty="false"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode" nullToEmpty="true"/><Member tagName="ErrorMessage" visibility="Public" type="String" name="errorMsg" nullToEmpty="true"/><Member tagName="Object" visibility="Public" type="Boolean" name="object" nullToEmpty="false"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId" nullToEmpty="false"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/CheckAliyunAccountExists.xml
Normal file
1
devops-rdc/2020-03-03/CheckAliyunAccountExists.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="CheckAliyunAccountExists" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidPipeline.NotFound" errorCode="InvalidPipeline.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified pipeline does not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/user/check/exists#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="userPk" tagName="UserPk" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/user/check/exists#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Successful" visibility="Public" type="Boolean" name="successful"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode"/><Member tagName="ErrorMsg" visibility="Public" type="String" name="errorMsg"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId"/><Member tagName="Object" visibility="Public" type="Boolean" name="object"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/CheckResource.xml
Normal file
1
devops-rdc/2020-03-03/CheckResource.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Private" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="CheckResource" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping><ErrorCodes /></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/account/checkResource#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerUid" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerBid" tagName="callerBid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="interrupt" tagName="Interrupt" type="Boolean" required="false" tagPosition="Query" checkBlank="false" visibility="Public"/><Parameter name="invoker" tagName="Invoker" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="pk" tagName="Pk" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="bid" tagName="Bid" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="hid" tagName="Hid" type="Long" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="country" tagName="Country" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="taskIdentifier" tagName="TaskIdentifier" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="taskExtraData" tagName="TaskExtraData" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="gmtWakeup" tagName="GmtWakeup" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="success" tagName="Success" type="Boolean" required="false" tagPosition="Query" checkBlank="false" visibility="Public"/><Parameter name="message" tagName="Message" type="String" required="false" tagPosition="Query" checkBlank="false" visibility="Public"/><Parameter name="level" tagName="Level" type="Long" required="false" tagPosition="Query" checkBlank="false" visibility="Public"/><Parameter name="url" tagName="Url" type="String" required="false" tagPosition="Query" checkBlank="false" visibility="Public"/><Parameter name="prompt" tagName="Prompt" type="String" required="false" tagPosition="Query" checkBlank="false" visibility="Public"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/account/checkResource#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Interrupt" visibility="Public" type="Boolean" name="interrupt" nullToEmpty="false"/><Member tagName="Invoker" visibility="Public" type="String" name="invoker" nullToEmpty="false"/><Member tagName="Pk" visibility="Public" type="String" name="pk" nullToEmpty="false"/><Member tagName="Bid" visibility="Public" type="String" name="bid" nullToEmpty="false"/><Member tagName="Hid" visibility="Public" type="Long" name="hid" nullToEmpty="false"/><Member tagName="Country" visibility="Public" type="String" name="country" nullToEmpty="false"/><Member tagName="TaskIdentifier" visibility="Public" type="String" name="taskIdentifier" nullToEmpty="false"/><Member tagName="TaskExtraData" visibility="Public" type="String" name="taskExtraData" nullToEmpty="false"/><Member tagName="GmtWakeup" visibility="Public" type="String" name="gmtWakeup" nullToEmpty="false"/><Member tagName="Success" visibility="Public" type="Boolean" name="success" nullToEmpty="false"/><Member tagName="Message" visibility="Public" type="String" name="message" nullToEmpty="false"/><Member tagName="Level" visibility="Public" type="Long" name="level" nullToEmpty="false"/><Member tagName="Url" visibility="Public" type="String" name="url" nullToEmpty="false"/><Member tagName="Prompt" visibility="Public" type="String" name="prompt" nullToEmpty="false"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/CreateCommonGroup.xml
Normal file
1
devops-rdc/2020-03-03/CreateCommonGroup.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="CreateCommonGroup" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/smartGroup/commonGroup/create#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="projectId" tagName="ProjectId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="description" tagName="Description" type="String" required="false" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="smartGroupId" tagName="SmartGroupId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="name" tagName="Name" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/smartGroup/commonGroup/create#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Successful" visibility="Public" type="Boolean" name="successful"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode"/><Member tagName="ErrorMsg" visibility="Public" type="String" name="errorMsg"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId"/><Struct tagName="Object" visibility="Public" name="object"><Member tagName="Id" visibility="Public" type="String" name="id"/></Struct></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/CreateCredential.xml
Normal file
1
devops-rdc/2020-03-03/CreateCredential.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="CreateCredential" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidPipeline.NotFound" errorCode="InvalidPipeline.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified pipeline does not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /><ErrorCode code="SystemError.UnKnownError" errorCode="SystemError.UnKnownError" type="user" httpCode="500" extendedErrorCode="" errorMessage="An error occurred while processing your request." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://deops/api/credential/create#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="name" tagName="Name" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="username" tagName="UserName" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="password" tagName="Password" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="type" tagName="Type" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="userPk" tagName="UserPk" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="1" apiDefault="50" /><PreIspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://devops_pre/api/credential/create#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="RequestId" visibility="Public" type="String" name="requestId" nullToEmpty="false"/><Member tagName="ErrorCode" visibility="Public" type="String" name="ErrorCode" nullToEmpty="true"/><Member tagName="ErrorMessage" visibility="Public" type="String" name="errorMsg" nullToEmpty="true"/><Member tagName="Success" visibility="Public" type="Boolean" name="successful" nullToEmpty="false"/><Member tagName="Object" visibility="Public" type="Long" name="object" nullToEmpty="false"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/CreateDevopsOrganization.xml
Normal file
1
devops-rdc/2020-03-03/CreateDevopsOrganization.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="CreateDevopsOrganization" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes /></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/organization/create#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgName" tagName="OrgName" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="source" tagName="Source" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="realPk" tagName="RealPk" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="desiredMemberCount" tagName="DesiredMemberCount" type="Integer" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/organization/create#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="RequestId" visibility="Public" type="String" name="requestId" nullToEmpty="false"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode" nullToEmpty="false"/><Member tagName="ErrorMessage" visibility="Public" type="String" name="errorMsg" nullToEmpty="false"/><Member tagName="Success" visibility="Public" type="Boolean" name="successful" nullToEmpty="false"/><Member tagName="Object" visibility="Public" type="String" name="object" nullToEmpty="false"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/CreateDevopsProject.xml
Normal file
1
devops-rdc/2020-03-03/CreateDevopsProject.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="CreateDevopsProject" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/project/create#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="name" tagName="Name" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="description" tagName="Description" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/project/create#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="RequestId" visibility="Public" type="String" name="requestId" nullToEmpty="false"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode" nullToEmpty="false"/><Member tagName="ErrorMessage" visibility="Public" type="String" name="errorMsg" nullToEmpty="false"/><Member tagName="Success" visibility="Public" type="Boolean" name="successful" nullToEmpty="false"/><Member tagName="Object" visibility="Public" type="String" name="object" nullToEmpty="false"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/CreateDevopsProjectSprint.xml
Normal file
1
devops-rdc/2020-03-03/CreateDevopsProjectSprint.xml
Normal file
File diff suppressed because one or more lines are too long
1
devops-rdc/2020-03-03/CreateDevopsProjectTask.xml
Normal file
1
devops-rdc/2020-03-03/CreateDevopsProjectTask.xml
Normal file
File diff suppressed because one or more lines are too long
1
devops-rdc/2020-03-03/CreatePipeline.xml
Normal file
1
devops-rdc/2020-03-03/CreatePipeline.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="CreatePipeline" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidPipeline.NotFound" errorCode="InvalidPipeline.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified pipeline does not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /><ErrorCode code="SystemError.UnKnownError" errorCode="SystemError.UnKnownError" type="user" httpCode="500" extendedErrorCode="" errorMessage="An error occurred while processing your request." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://deops/api/pipeline/create#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="pipeline" tagName="Pipeline" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="userPk" tagName="UserPk" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://devops_pre/api/pipeline/create#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="RequestId" visibility="Public" type="String" name="requestId" nullToEmpty="false"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode" nullToEmpty="false"/><Member tagName="ErrorMessage" visibility="Public" type="String" name="errorMsg" nullToEmpty="false"/><Member tagName="Success" visibility="Public" type="Boolean" name="successful" nullToEmpty="false"/><Member tagName="Object" visibility="Public" type="Long" name="object" nullToEmpty="false"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/CreateServiceConnection.xml
Normal file
1
devops-rdc/2020-03-03/CreateServiceConnection.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="CreateServiceConnection" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidPipeline.NotFound" errorCode="InvalidPipeline.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified pipeline does not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /><ErrorCode code="SystemError.UnKnownError" errorCode="SystemError.UnKnownError" type="user" httpCode="500" extendedErrorCode="" errorMessage="An error occurred while processing your request." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://deops/api/serviceConnection/create#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="serviceConnectionType" tagName="ServiceConnectionType" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="userPk" tagName="UserPk" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://devops_pre/api/serviceConnection/create#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="RequestId" visibility="Public" type="String" name="requestId" nullToEmpty="false"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode" nullToEmpty="false"/><Member tagName="ErrorMessage" visibility="Public" type="String" name="errorMsg" nullToEmpty="false"/><Member tagName="Success" visibility="Public" type="Boolean" name="successful" nullToEmpty="false"/><Member tagName="Object" visibility="Public" type="Long" name="object" nullToEmpty="false"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/DeleteCommonGroup.xml
Normal file
1
devops-rdc/2020-03-03/DeleteCommonGroup.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="DeleteCommonGroup" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/smartGroup/commonGroup/delete#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="projectId" tagName="ProjectId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="commonGroupId" tagName="CommonGroupId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/smartGroup/commonGroup/delete#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Successful" visibility="Public" type="Boolean" name="successful"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode"/><Member tagName="ErrorMsg" visibility="Public" type="String" name="errorMsg"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId"/><Struct tagName="Object" visibility="Public" name="object"><Member tagName="Id" visibility="Public" type="String" name="_id"/></Struct></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/DeleteDevopsOrganization.xml
Normal file
1
devops-rdc/2020-03-03/DeleteDevopsOrganization.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="DeleteDevopsOrganization" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /><ErrorCode code="SystemError.UnKnownError" errorCode="SystemError.UnKnownError" type="user" httpCode="500" extendedErrorCode="" errorMessage="An error occurred while processing your request." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/organization/delete#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/organization/delete#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="RequestId" visibility="Public" type="String" name="requestId" nullToEmpty="false"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode" nullToEmpty="false"/><Member tagName="ErrorMessage" visibility="Public" type="String" name="errorMsg" nullToEmpty="false"/><Member tagName="Success" visibility="Public" type="Boolean" name="successful" nullToEmpty="false"/><Member tagName="Object" visibility="Public" type="String" name="object" nullToEmpty="false"/></ResultMapping></Api>
|
||||
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="disable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="DeleteDevopsOrganizationMembers" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes /></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/member/delete#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="userId" tagName="UserId" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="realPk" tagName="RealPk" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/member/delete#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="RequestId" visibility="Public" type="String" name="requestId" nullToEmpty="false"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode" nullToEmpty="false"/><Member tagName="ErrorMessage" visibility="Public" type="String" name="errorMsg" nullToEmpty="false"/><Member tagName="Success" visibility="Public" type="Boolean" name="successful" nullToEmpty="false"/><Member tagName="Object" visibility="Public" type="Boolean" name="object" nullToEmpty="false"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/DeleteDevopsProject.xml
Normal file
1
devops-rdc/2020-03-03/DeleteDevopsProject.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Enable" version="2020-03-03" keepClientResourceOwnerId="false" name="DeleteDevopsProject" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/project/delete#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="projectId" tagName="ProjectId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/project/delete#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode" nullToEmpty="false"/><Member tagName="ErrorMessage" visibility="Public" type="String" name="errorMsg" nullToEmpty="false"/><Member tagName="Object" visibility="Public" type="String" name="object" nullToEmpty="false"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId" nullToEmpty="false"/><Member tagName="Success" visibility="Public" type="Boolean" name="successful" nullToEmpty="false"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/DeleteDevopsProjectMembers.xml
Normal file
1
devops-rdc/2020-03-03/DeleteDevopsProjectMembers.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="DeleteDevopsProjectMembers" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/project/members/delete#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="projectId" tagName="ProjectId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="userIds" tagName="UserIds" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/project/members/delete#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Successful" visibility="Public" type="Boolean" name="successful"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode"/><Member tagName="ErrorMsg" visibility="Public" type="String" name="errorMsg"/><Member tagName="Object" visibility="Public" type="Boolean" name="object"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/DeleteDevopsProjectSprint.xml
Normal file
1
devops-rdc/2020-03-03/DeleteDevopsProjectSprint.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="DeleteDevopsProjectSprint" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/sprint/delete#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="sprintId" tagName="SprintId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/sprint/delete#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Successful" visibility="Public" type="Boolean" name="successful"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode"/><Member tagName="ErrorMsg" visibility="Public" type="String" name="errorMsg"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId"/><Member tagName="Object" visibility="Public" type="Boolean" name="object"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/DeleteDevopsProjectTask.xml
Normal file
1
devops-rdc/2020-03-03/DeleteDevopsProjectTask.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="DeleteDevopsProjectTask" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/task/delete#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="taskId" tagName="TaskId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/task/delete#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Successful" visibility="Public" type="Boolean" name="successful"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode"/><Member tagName="ErrorMsg" visibility="Public" type="String" name="errorMsg"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId"/><Member tagName="Object" visibility="Public" type="Boolean" name="object"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/DeletePipelineMember.xml
Normal file
1
devops-rdc/2020-03-03/DeletePipelineMember.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="DeletePipelineMember" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidPipeline.NotFound" errorCode="InvalidPipeline.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified pipeline does not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /><ErrorCode code="SystemError.UnKnownError" errorCode="SystemError.UnKnownError" type="user" httpCode="500" extendedErrorCode="" errorMessage="An error occurred while processing your request." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://deops/api/pipeline/members/delete#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="pipelineId" tagName="PipelineId" type="Long" required="true" tagPosition="Query" docRequired="true" checkBlank="false" minValue="1" maxValue="999999999999999" visibility="Public"/><Parameter name="signature" tagName="Signature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="signatureType" tagName="SignatureType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="signatureNonce" tagName="SignatureNonce" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="sigantureVersion" tagName="SignatureVersion" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="ispSignatureSecret" tagName="IspSignatureSecretKey" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="userPk" tagName="UserPk" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="userId" tagName="UserId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://devops_pre/api/pipeline/members/delete#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Success" visibility="Public" type="Boolean" name="successful" nullToEmpty="false"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode" nullToEmpty="true"/><Member tagName="ErrorMessage" visibility="Public" type="String" name="errorMsg" nullToEmpty="true"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId" nullToEmpty="false"/><Member tagName="Object" visibility="Public" type="Boolean" name="object" nullToEmpty="false"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/ExecutePipeline.xml
Normal file
1
devops-rdc/2020-03-03/ExecutePipeline.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="ExecutePipeline" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidPipeline.NotFound" errorCode="InvalidPipeline.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified pipeline does not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /><ErrorCode code="SystemError.UnKnownError" errorCode="SystemError.UnKnownError" type="user" httpCode="500" extendedErrorCode="" errorMessage="An error occurred while processing your request." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://deops/api/pipeline/execute#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="pipelineId" tagName="PipelineId" type="Long" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="params" tagName="Parameters" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="userPk" tagName="UserPk" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://devops_pre/api/pipeline/execute#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode" nullToEmpty="false"/><Member tagName="ErrorMessage" visibility="Public" type="String" name="errorMsg" nullToEmpty="true"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId" nullToEmpty="true"/><Member tagName="Success" visibility="Public" type="Boolean" name="successful" nullToEmpty="false"/><Member tagName="Object" visibility="Public" type="Long" name="object" nullToEmpty="true"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/GetDevopsOrganizationMembers.xml
Normal file
1
devops-rdc/2020-03-03/GetDevopsOrganizationMembers.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="GetDevopsOrganizationMembers" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidPipeline.NotFound" errorCode="InvalidPipeline.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified pipeline does not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/organization/members#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/organization/members#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Successful" visibility="Public" type="Boolean" name="successful"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode"/><Member tagName="ErrorMsg" visibility="Public" type="String" name="errorMsg"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId"/><Array tagName="Object" visibility="Public" itemName="member" name="object"><Member tagName="MemberId" visibility="Public" type="String" name="memberId"/><Member tagName="UserId" visibility="Public" type="String" name="userId"/><Member tagName="Role" visibility="Public" type="Integer" name="role"/><Member tagName="Name" visibility="Public" type="String" name="name"/><Member tagName="AvatarUrl" visibility="Public" type="String" name="avatarUrl"/><Member tagName="Email" visibility="Public" type="String" name="email"/><Member tagName="Phone" visibility="Public" type="String" name="phone"/></Array></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/GetDevopsProjectInfo.xml
Normal file
1
devops-rdc/2020-03-03/GetDevopsProjectInfo.xml
Normal file
File diff suppressed because one or more lines are too long
1
devops-rdc/2020-03-03/GetDevopsProjectMembers.xml
Normal file
1
devops-rdc/2020-03-03/GetDevopsProjectMembers.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="GetDevopsProjectMembers" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/project/members/query#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="projectId" tagName="ProjectId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/project/members/query#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Successful" visibility="Public" type="Boolean" name="successful"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode"/><Member tagName="ErrorMsg" visibility="Public" type="String" name="errorMsg"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId"/><Array tagName="Object" visibility="Public" itemName="Member" name="object"><Member tagName="MemberId" visibility="Public" type="String" name="memberId"/><Member tagName="UserId" visibility="Public" type="String" name="userId"/><Member tagName="Role" visibility="Public" type="Integer" name="role"/><Member tagName="Name" visibility="Public" type="String" name="name"/><Member tagName="AvatarUrl" visibility="Public" type="String" name="avatarUrl"/><Member tagName="Email" visibility="Public" type="String" name="email"/><Member tagName="Phone" visibility="Public" type="String" name="phone"/></Array></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/GetDevopsProjectSprintInfo.xml
Normal file
1
devops-rdc/2020-03-03/GetDevopsProjectSprintInfo.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="GetDevopsProjectSprintInfo" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/sprint/query#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="sprintId" tagName="SprintId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/sprint/query#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Successful" visibility="Public" type="Boolean" name="successful"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode"/><Member tagName="ErrorMsg" visibility="Public" type="String" name="errorMsg"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId"/><Struct tagName="Object" visibility="Public" name="object"><Member tagName="Accomplished" visibility="Public" type="String" name="accomplished"/><Member tagName="IsDeleted" visibility="Public" type="Boolean" name="isDeleted"/><Member tagName="Created" visibility="Public" type="String" name="created"/><Member tagName="DueDate" visibility="Public" type="String" name="dueDate"/><Member tagName="Name" visibility="Public" type="String" name="name"/><Member tagName="CreatorId" visibility="Public" type="String" name="_creatorId"/><Member tagName="Id" visibility="Public" type="String" name="_id"/><Member tagName="Updated" visibility="Public" type="String" name="updated"/><Member tagName="StartDate" visibility="Public" type="String" name="startDate"/><Member tagName="Status" visibility="Public" type="String" name="status"/><Member tagName="ProjectId" visibility="Public" type="String" name="_projectId"/><Struct tagName="PlanToDo" visibility="Public" name="planToDo"><Member tagName="StoryPoints" visibility="Public" type="Integer" name="storyPoints"/><Member tagName="WorkTimes" visibility="Public" type="Integer" name="workTimes"/><Member tagName="Tasks" visibility="Public" type="Integer" name="tasks"/></Struct></Struct></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/GetDevopsProjectTaskInfo.xml
Normal file
1
devops-rdc/2020-03-03/GetDevopsProjectTaskInfo.xml
Normal file
File diff suppressed because one or more lines are too long
1
devops-rdc/2020-03-03/GetLastWorkspace.xml
Normal file
1
devops-rdc/2020-03-03/GetLastWorkspace.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="GetLastWorkspace" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /><ErrorCode code="SystemError.UnKnownError" errorCode="SystemError.UnKnownError" type="user" httpCode="500" extendedErrorCode="" errorMessage="An error occurred while processing your request." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/organization/lastworkspace#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="realPk" tagName="RealPk" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/organization/lastworkspace#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="RequestId" visibility="Public" type="String" name="requestId" nullToEmpty="false"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode" nullToEmpty="false"/><Member tagName="ErrorMessage" visibility="Public" type="String" name="errorMsg" nullToEmpty="false"/><Member tagName="Success" visibility="Public" type="Boolean" name="successful" nullToEmpty="false"/><Member tagName="Object" visibility="Public" type="String" name="object" nullToEmpty="false"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/GetPipelineInstHistory.xml
Normal file
1
devops-rdc/2020-03-03/GetPipelineInstHistory.xml
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
devops-rdc/2020-03-03/GetPipelineInstanceGroupStatus.xml
Normal file
1
devops-rdc/2020-03-03/GetPipelineInstanceGroupStatus.xml
Normal file
File diff suppressed because one or more lines are too long
1
devops-rdc/2020-03-03/GetPipelineInstanceInfo.xml
Normal file
1
devops-rdc/2020-03-03/GetPipelineInstanceInfo.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="GetPipelineInstanceInfo" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidPipeline.NotFound" errorCode="InvalidPipeline.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified pipeline does not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /><ErrorCode code="SystemError.UnKnownError" errorCode="SystemError.UnKnownError" type="user" httpCode="500" extendedErrorCode="" errorMessage="An error occurred while processing your request." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://deops/api/pipeline/execute/info#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="pipelineId" tagName="PipelineId" type="Long" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="flowInstanceId" tagName="FlowInstanceId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="userPk" tagName="UserPk" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://devops_pre/api/pipeline/execute/info#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode" nullToEmpty="false"/><Member tagName="ErrorMessage" visibility="Public" type="String" name="errorMsg" nullToEmpty="true"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId" nullToEmpty="true"/><Member tagName="Success" visibility="Public" type="Boolean" name="successful" nullToEmpty="false"/><Struct tagName="Object" visibility="Public" name="object" nullToEmpty="true"><Member tagName="Status" visibility="Public" type="String" name="status" nullToEmpty="true"/><Member tagName="StartTime" visibility="Public" type="Long" name="startTime" nullToEmpty="true"/><Member tagName="EndTime" visibility="Public" type="Long" name="endTime" nullToEmpty="true"/><Member tagName="Sources" visibility="Public" type="String" name="sources" nullToEmpty="true"/><Member tagName="EmployeeId" visibility="Public" type="String" name="employeeId" nullToEmpty="true"/><List tagName="PackageDownloadUrls" visibility="Public" itemName="PackageDownloadUrls" name="packageDownloadUrls" nullToEmpty="true" type="String"/><List tagName="DockerImages" visibility="Public" itemName="DockerImages" name="dockerImages" nullToEmpty="true" type="String"/></Struct></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/GetPipelineInstanceStatus.xml
Normal file
1
devops-rdc/2020-03-03/GetPipelineInstanceStatus.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="GetPipelineInstanceStatus" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidPipeline.NotFound" errorCode="InvalidPipeline.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified pipeline does not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /><ErrorCode code="SystemError.UnKnownError" errorCode="SystemError.UnKnownError" type="user" httpCode="500" extendedErrorCode="" errorMessage="An error occurred while processing your request." /></ErrorCodes><UnknownError errorCode="InvalidOrganization.NotFound" httpCode="404" errorMessage="The specified organization doe not exist." /></ErrorMapping><IspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://deops/api/pipeline/execute/status#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="pipelineId" tagName="PipelineId" type="Long" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="flowInstanceId" tagName="FlowInstanceId" type="Long" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="signature" tagName="Signature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="signatureType" tagName="SignatureType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="signatureNonce" tagName="SignatureNonce" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="sigantureVersion" tagName="SignatureVersion" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="ispSignatureSecret" tagName="IspSignatureSecretKey" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="userPk" tagName="UserPk" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://devops_pre/api/pipeline/execute/status#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Success" visibility="Public" type="Boolean" name="successful" nullToEmpty="false"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode" nullToEmpty="true"/><Member tagName="ErrorMessage" visibility="Public" type="String" name="errorMsg" nullToEmpty="true"/><Member tagName="Object" visibility="Public" type="String" name="object" nullToEmpty="false"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId" nullToEmpty="false"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/GetPipelineLog.xml
Normal file
1
devops-rdc/2020-03-03/GetPipelineLog.xml
Normal file
File diff suppressed because one or more lines are too long
1
devops-rdc/2020-03-03/GetPipelineStepLog.xml
Normal file
1
devops-rdc/2020-03-03/GetPipelineStepLog.xml
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
devops-rdc/2020-03-03/GetProjectOption.xml
Normal file
2
devops-rdc/2020-03-03/GetProjectOption.xml
Normal file
@@ -0,0 +1,2 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="GetProjectOption" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/project/option/query#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="projectId" tagName="ProjectId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="type" tagName="Type" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="true" value="executorId,creatorId,tagId,involveMembers,sprintId,taskflowstatusId
|
||||
" visibility="Public"/><Parameter name="query" tagName="Query" type="String" required="false" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/project/option/query#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Successful" visibility="Public" type="Boolean" name="successful"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode"/><Member tagName="ErrorMsg" visibility="Public" type="String" name="errorMsg"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId"/><Array tagName="Object" visibility="Public" itemName="Option" name="object"><Member tagName="Name" visibility="Public" type="String" name="name"/><Member tagName="Value" visibility="Public" type="String" name="value"/></Array></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/GetTaskDetailActivity.xml
Normal file
1
devops-rdc/2020-03-03/GetTaskDetailActivity.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="GetTaskDetailActivity" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/task/detail/activities#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="projectId" tagName="ProjectId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="taskId" tagName="TaskId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/task/detail/activities#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Successful" visibility="Public" type="Boolean" name="successful"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode"/><Member tagName="ErrorMsg" visibility="Public" type="String" name="errorMsg"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId"/><Member tagName="HttpStatusCode" visibility="Public" type="Integer" name="httpStatusCode"/><Array tagName="Object" visibility="Public" itemName="Activity" name="object"><Member tagName="Created" visibility="Public" type="String" name="created"/><Member tagName="Title" visibility="Public" type="String" name="title"/><Member tagName="Action" visibility="Public" type="String" name="action"/><Member tagName="Updated" visibility="Public" type="String" name="updated"/><Member tagName="Content" visibility="Public" type="Map" name="content"/></Array></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/GetTaskDetailBase.xml
Normal file
1
devops-rdc/2020-03-03/GetTaskDetailBase.xml
Normal file
File diff suppressed because one or more lines are too long
1
devops-rdc/2020-03-03/GetTaskListFilter.xml
Normal file
1
devops-rdc/2020-03-03/GetTaskListFilter.xml
Normal file
File diff suppressed because one or more lines are too long
1
devops-rdc/2020-03-03/GetUserByAliyunUid.xml
Normal file
1
devops-rdc/2020-03-03/GetUserByAliyunUid.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="disable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="GetUserByAliyunUid" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidPipeline.NotFound" errorCode="InvalidPipeline.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified pipeline does not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/user/info/pk#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="userPk" tagName="UserPk" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/user/info/pk#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Successful" visibility="Public" type="Boolean" name="successful"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode"/><Member tagName="ErrorMsg" visibility="Public" type="String" name="errorMsg"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId"/><Struct tagName="Object" visibility="Public" name="object"><Member tagName="Name" visibility="Public" type="String" name="name"/><Member tagName="Id" visibility="Public" type="String" name="id"/><Member tagName="AliyunPk" visibility="Public" type="String" name="aliyunPk"/><Member tagName="AvatarUrl" visibility="Public" type="String" name="avatarUrl"/><Member tagName="Email" visibility="Public" type="String" name="email"/><Member tagName="Phone" visibility="Public" type="String" name="phone"/></Struct></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/GetUserName.xml
Normal file
1
devops-rdc/2020-03-03/GetUserName.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="GetUserName" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/user/name#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="userId" tagName="UserId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/user/name#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Successful" visibility="Public" type="Boolean" name="successful"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode"/><Member tagName="ErrorMsg" visibility="Public" type="String" name="errorMsg"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId"/><Member tagName="Object" visibility="Public" type="String" name="object"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/InsertDevopsUser.xml
Normal file
1
devops-rdc/2020-03-03/InsertDevopsUser.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="InsertDevopsUser" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes /></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/user/create#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="userPk" tagName="UserPk" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="username" tagName="UserName" type="String" required="false" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="phone" tagName="Phone" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="email" tagName="Email" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/user/create#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode" nullToEmpty="false"/><Member tagName="ErrorMessage" visibility="Public" type="String" name="errorMessage" nullToEmpty="false"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId" nullToEmpty="false"/><Member tagName="Success" visibility="Public" type="Boolean" name="successful" nullToEmpty="false"/><Member tagName="Object" visibility="Public" type="String" name="object" nullToEmpty="false"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/InsertPipelineMember.xml
Normal file
1
devops-rdc/2020-03-03/InsertPipelineMember.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="InsertPipelineMember" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidPipeline.NotFound" errorCode="InvalidPipeline.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified pipeline does not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /><ErrorCode code="SystemError.UnKnownError" errorCode="SystemError.UnKnownError" type="user" httpCode="500" extendedErrorCode="" errorMessage="An error occurred while processing your request." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://deops/api/pipeline/members/add#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="pipelineId" tagName="PipelineId" type="Long" required="true" tagPosition="Query" docRequired="true" checkBlank="false" minValue="1" maxValue="999999999999999" visibility="Public"/><Parameter name="signature" tagName="Signature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="signatureType" tagName="SignatureType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="signatureNonce" tagName="SignatureNonce" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="sigantureVersion" tagName="SignatureVersion" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="ispSignatureSecret" tagName="IspSignatureSecretKey" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="userPk" tagName="UserPk" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="userId" tagName="UserId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="roleName" tagName="RoleName" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://devops_pre/api/pipeline/members/add#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Success" visibility="Public" type="Boolean" name="successful" nullToEmpty="false"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode" nullToEmpty="true"/><Member tagName="ErrorMessage" visibility="Public" type="String" name="errorMsg" nullToEmpty="true"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId" nullToEmpty="false"/><Member tagName="Object" visibility="Public" type="Boolean" name="object" nullToEmpty="false"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/InsertProjectMembers.xml
Normal file
1
devops-rdc/2020-03-03/InsertProjectMembers.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="InsertProjectMembers" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/project/members/add#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="projectId" tagName="ProjectId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="members" tagName="Members" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/project/members/add#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Successful" visibility="Public" type="Boolean" name="successful"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode"/><Member tagName="ErrorMsg" visibility="Public" type="String" name="errorMsg"/><Member tagName="Object" visibility="Public" type="Boolean" name="object"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/ListCommonGroup.xml
Normal file
1
devops-rdc/2020-03-03/ListCommonGroup.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Enable" version="2020-03-03" keepClientResourceOwnerId="false" name="ListCommonGroup" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/smartGroup/commonGroup/list#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="projectId" tagName="ProjectId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="smartGroupId" tagName="SmartGroupId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="all" tagName="All" type="Boolean" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/smartGroup/commonGroup/list#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Successful" visibility="Public" type="Boolean" name="successful"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode"/><Member tagName="ErrorMsg" visibility="Public" type="String" name="errorMsg"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId"/><Array tagName="Object" visibility="Public" itemName="CommonGroup" name="object"><Member tagName="Pinyin" visibility="Public" type="String" name="pinyin"/><Member tagName="IsRoot" visibility="Public" type="Boolean" name="isRoot"/><Member tagName="Pos" visibility="Public" type="Integer" name="pos"/><Member tagName="ResourceCount" visibility="Public" type="Integer" name="resourceCount"/><Member tagName="Name" visibility="Public" type="String" name="name"/><Member tagName="CreatorId" visibility="Public" type="String" name="creatorId"/><Member tagName="SmartGroupId" visibility="Public" type="String" name="smartGroupId"/><Member tagName="ProjectId" visibility="Public" type="String" name="projectId"/><Member tagName="id" visibility="Public" type="String" name="id"/></Array></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/ListCredentials.xml
Normal file
1
devops-rdc/2020-03-03/ListCredentials.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="ListCredentials" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidPipeline.NotFound" errorCode="InvalidPipeline.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified pipeline does not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /><ErrorCode code="SystemError.UnKnownError" errorCode="SystemError.UnKnownError" type="user" httpCode="500" extendedErrorCode="" errorMessage="An error occurred while processing your request." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://devops2020_vpc/api/credential/list#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="userPk" tagName="UserPk" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://devops_pre/api/credential/list#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="RequestId" visibility="Public" type="String" name="requestId" nullToEmpty="false"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode" nullToEmpty="false"/><Member tagName="ErrorMessage" visibility="Public" type="String" name="errorMsg" nullToEmpty="false"/><Member tagName="Success" visibility="Public" type="Boolean" name="successful" nullToEmpty="false"/><List tagName="Object" visibility="Public" itemName="Object" name="object" nullToEmpty="false" type="Map"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/ListDevopsProjectSprints.xml
Normal file
1
devops-rdc/2020-03-03/ListDevopsProjectSprints.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="ListDevopsProjectSprints" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/sprint/list#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="projectId" tagName="ProjectId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/sprint/list#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Successful" visibility="Public" type="Boolean" name="successful"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode"/><Member tagName="ErrorMsg" visibility="Public" type="String" name="errorMsg"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId"/><Array tagName="Object" visibility="Public" itemName="Sprint" name="object"><Member tagName="Accomplished" visibility="Public" type="String" name="accomplished"/><Member tagName="IsDeleted" visibility="Public" type="Boolean" name="isDeleted"/><Member tagName="Created" visibility="Public" type="String" name="created"/><Member tagName="DueDate" visibility="Public" type="String" name="dueDate"/><Member tagName="Name" visibility="Public" type="String" name="name"/><Member tagName="CreatorId" visibility="Public" type="String" name="_creatorId"/><Member tagName="Id" visibility="Public" type="String" name="_id"/><Member tagName="Updated" visibility="Public" type="String" name="updated"/><Member tagName="StartDate" visibility="Public" type="String" name="startDate"/><Member tagName="Status" visibility="Public" type="String" name="status"/><Member tagName="ProjectId" visibility="Public" type="String" name="_projectId"/><Struct tagName="PlanToDo" visibility="Public" name="planToDo"><Member tagName="StoryPoints" visibility="Public" type="Integer" name="storyPoints"/><Member tagName="WorkTimes" visibility="Public" type="Integer" name="workTimes"/><Member tagName="Tasks" visibility="Public" type="Integer" name="tasks"/></Struct></Array></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/ListDevopsProjectTaskFlow.xml
Normal file
1
devops-rdc/2020-03-03/ListDevopsProjectTaskFlow.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="ListDevopsProjectTaskFlow" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/task/taskFlow/list#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="projectId" tagName="ProjectId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="actio" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/task/taskFlow/list#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Successful" visibility="Public" type="Boolean" name="successful"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode"/><Member tagName="ErrorMsg" visibility="Public" type="String" name="errorMsg"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId"/><Array tagName="Object" visibility="Public" itemName="Taskflow" name="object"><Member tagName="Id" visibility="Public" type="String" name="id"/><Member tagName="Type" visibility="Public" type="String" name="type"/><Member tagName="Name" visibility="Public" type="String" name="name"/></Array></ResultMapping></Api>
|
||||
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="ListDevopsProjectTaskFlowStatus" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/task/taskFlow/query#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="taskflowId" tagName="TaskFlowId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/task/taskFlow/query#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Successful" visibility="Public" type="Boolean" name="successful"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode"/><Member tagName="ErrorMsg" visibility="Public" type="String" name="errorMsg"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId"/><Array tagName="Object" visibility="Public" itemName="taskflowStatus" name="object"><Member tagName="IsDeleted" visibility="Public" type="Boolean" name="isDeleted"/><Member tagName="RejectStatusIds" visibility="Public" type="String" name="rejectStatusIds"/><Member tagName="Pos" visibility="Public" type="Integer" name="pos"/><Member tagName="Kind" visibility="Public" type="String" name="kind"/><Member tagName="Created" visibility="Public" type="String" name="created"/><Member tagName="TaskflowId" visibility="Public" type="String" name="_taskflowId"/><Member tagName="Name" visibility="Public" type="String" name="name"/><Member tagName="CreatorId" visibility="Public" type="String" name="_creatorId"/><Member tagName="Id" visibility="Public" type="String" name="_id"/><Member tagName="Updated" visibility="Public" type="String" name="updated"/></Array></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/ListDevopsProjectTaskList.xml
Normal file
1
devops-rdc/2020-03-03/ListDevopsProjectTaskList.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Enable" version="2020-03-03" keepClientResourceOwnerId="false" name="ListDevopsProjectTaskList" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/tasklist/list#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="projectId" tagName="ProjectId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/tasklist/list#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Successful" visibility="Public" type="Boolean" name="successful"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode"/><Member tagName="ErrorMsg" visibility="Public" type="String" name="errorMsg"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId"/><Struct tagName="Object" visibility="Public" name="object"><Array tagName="Result" visibility="Public" itemName="Result" name="result"><Member tagName="Id" visibility="Public" type="String" name="_id"/></Array></Struct></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/ListDevopsProjectTasks.xml
Normal file
1
devops-rdc/2020-03-03/ListDevopsProjectTasks.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="ListDevopsProjectTasks" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/task/list#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="projectIds" tagName="ProjectIds" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/task/list#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Successful" visibility="Public" type="Boolean" name="successful"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode"/><Member tagName="ErrorMsg" visibility="Public" type="String" name="errorMsg"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId"/><Array tagName="Object" visibility="Public" itemName="Task" name="object"><Member tagName="TasklistId" visibility="Public" type="String" name="_tasklistId"/><Member tagName="ProjectId" visibility="Public" type="String" name="_projectId"/><Member tagName="TaskgroupId" visibility="Public" type="String" name="_taskgroupId"/><Member tagName="Name" visibility="Public" type="String" name="content"/><Member tagName="CreatorId" visibility="Public" type="String" name="_creatorId"/><Member tagName="Created" visibility="Public" type="String" name="created"/><Member tagName="ModifierId" visibility="Public" type="String" name="modifierId"/><Member tagName="Updated" visibility="Public" type="String" name="updated"/><Member tagName="Id" visibility="Public" type="String" name="_id"/></Array></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/ListDevopsScenarioFieldConfig.xml
Normal file
1
devops-rdc/2020-03-03/ListDevopsScenarioFieldConfig.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="ListDevopsScenarioFieldConfig" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/task/scenariofieldconfigs/list#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="projectId" tagName="ProjectId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="10" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/task/scenariofieldconfigs/list#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Successful" visibility="Public" type="Boolean" name="successful"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode"/><Member tagName="ErrorMsg" visibility="Public" type="String" name="errorMsg"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId"/><Array tagName="Object" visibility="Public" itemName="ScenarioFieldConfig" name="object"><Member tagName="Id" visibility="Public" type="String" name="id"/><Member tagName="Type" visibility="Public" type="String" name="type"/></Array></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/ListPipelines.xml
Normal file
1
devops-rdc/2020-03-03/ListPipelines.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="ListPipelines" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidPipeline.NotFound" errorCode="InvalidPipeline.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified pipeline does not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /><ErrorCode code="SystemError.UnKnownError" errorCode="SystemError.UnKnownError" type="user" httpCode="500" extendedErrorCode="" errorMessage="An error occurred while processing your request." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://deops/api/pipeline/list#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="pipelineName" tagName="PipelineName" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="creators" tagName="Creators" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="operators" tagName="Operators" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="resultStatusList" tagName="ResultStatusList" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="createStartTime" tagName="CreateStartTime" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="createEndTime" tagName="CreateEndTime" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="executeStartTime" tagName="ExecuteStartTime" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="executeEndTime" tagName="ExecuteEndTime" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="pageSize" tagName="PageSize" type="Integer" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="pageStart" tagName="PageStart" type="Integer" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="userPk" tagName="UserPk" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://devops_pre/api/pipeline/list#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Success" visibility="Public" type="Boolean" name="successful" nullToEmpty="false"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode" nullToEmpty="true"/><Member tagName="ErrorMessage" visibility="Public" type="String" name="errorMsg" nullToEmpty="true"/><Member tagName="Object" visibility="Public" type="Map" name="object" nullToEmpty="false"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId" nullToEmpty="false"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/ListProjectCustomFields.xml
Normal file
1
devops-rdc/2020-03-03/ListProjectCustomFields.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="ListProjectCustomFields" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/project/customFiled#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="projectId" tagName="ProjectId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Minute" userDefault="30" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/project/customFiled#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Successful" visibility="Public" type="Boolean" name="successful"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode"/><Member tagName="ErrorMsg" visibility="Public" type="String" name="errorMsg"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId"/><Array tagName="Object" visibility="Public" itemName="CustomField" name="object"><Member tagName="CustomFieldId" visibility="Public" type="String" name="customFieldId"/><Member tagName="Type" visibility="Public" type="String" name="type"/><Member tagName="Subtype" visibility="Public" type="String" name="subtype"/><Member tagName="Name" visibility="Public" type="String" name="name"/><Array tagName="Values" visibility="Public" itemName="Value" name="choices"><Member tagName="Id" visibility="Public" type="String" name="id"/><Member tagName="Value" visibility="Public" type="String" name="value"/></Array></Array></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/ListServiceConnections.xml
Normal file
1
devops-rdc/2020-03-03/ListServiceConnections.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="ListServiceConnections" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidPipeline.NotFound" errorCode="InvalidPipeline.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified pipeline does not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /><ErrorCode code="SystemError.UnKnownError" errorCode="SystemError.UnKnownError" type="user" httpCode="500" extendedErrorCode="" errorMessage="An error occurred while processing your request." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://deops/api/serviceConnection/list#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="scType" tagName="ScType" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="userPk" tagName="UserPk" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://devops_pre/api/serviceConnection/list#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="RequestId" visibility="Public" type="String" name="requestId" nullToEmpty="false"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode" nullToEmpty="false"/><Member tagName="ErrorMessage" visibility="Public" type="String" name="errorMsg" nullToEmpty="false"/><Member tagName="Success" visibility="Public" type="Boolean" name="successful" nullToEmpty="false"/><List tagName="Object" visibility="Public" itemName="Object" name="object" nullToEmpty="false" type="Map"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/ListSmartGroup.xml
Normal file
1
devops-rdc/2020-03-03/ListSmartGroup.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Enable" version="2020-03-03" keepClientResourceOwnerId="false" name="ListSmartGroup" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/smartGroup/list#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="projectId" tagName="ProjectId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/smartGroup/list#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Successful" visibility="Public" type="Boolean" name="successful"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode"/><Member tagName="ErrorMsg" visibility="Public" type="String" name="errorMsg"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId"/><Array tagName="Object" visibility="Public" itemName="SmartGroup" name="object"><Member tagName="Id" visibility="Public" type="String" name="id"/><Member tagName="Type" visibility="Public" type="String" name="type"/></Array></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/ListUserOrganization.xml
Normal file
1
devops-rdc/2020-03-03/ListUserOrganization.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="ListUserOrganization" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /><ErrorCode code="SystemError.UnKnownError" errorCode="SystemError.UnKnownError" type="user" httpCode="500" extendedErrorCode="" errorMessage="An error occurred while processing your request." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/organization/list#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="realPk" tagName="RealPk" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/organization/list#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="RequestId" visibility="Public" type="String" name="requestId"/><Member tagName="Success" visibility="Public" type="Boolean" name="successful"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode" nullToEmpty="false"/><Member tagName="ErrorMessage" visibility="Public" type="String" name="errorMsg" nullToEmpty="false"/><Array tagName="Object" visibility="Public" itemName="Organization" name="object"><Member tagName="Name" visibility="Public" type="String" name="name"/><Member tagName="Id" visibility="Public" type="String" name="id"/></Array></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/LogicalDeleteResource.xml
Normal file
1
devops-rdc/2020-03-03/LogicalDeleteResource.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Private" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="LogicalDeleteResource" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping><ErrorCodes /></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/account/logicalDeleteResource#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerUid" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerBid" tagName="callerBid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="interrupt" tagName="Interrupt" type="Boolean" required="false" tagPosition="Query" checkBlank="false" visibility="Public"/><Parameter name="invoker" tagName="Invoker" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="pk" tagName="Pk" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="bid" tagName="Bid" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="hid" tagName="Hid" type="Long" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="country" tagName="Country" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="taskIdentifier" tagName="TaskIdentifier" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="taskExtraData" tagName="TaskExtraData" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="gmtWakeup" tagName="GmtWakeup" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="success" tagName="Success" type="Boolean" required="false" tagPosition="Query" checkBlank="false" visibility="Public"/><Parameter name="message" tagName="Message" type="String" required="false" tagPosition="Query" checkBlank="false" visibility="Public"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/account/logicalDeleteResource#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Interrupt" visibility="Public" type="Boolean" name="interrupt" nullToEmpty="false"/><Member tagName="Invoker" visibility="Public" type="String" name="invoker" nullToEmpty="false"/><Member tagName="Pk" visibility="Public" type="String" name="pk" nullToEmpty="false"/><Member tagName="Bid" visibility="Public" type="String" name="bid" nullToEmpty="false"/><Member tagName="Hid" visibility="Public" type="Long" name="hid" nullToEmpty="false"/><Member tagName="Country" visibility="Public" type="String" name="country" nullToEmpty="false"/><Member tagName="TaskIdentifier" visibility="Public" type="String" name="taskIdentifier" nullToEmpty="false"/><Member tagName="TaskExtraData" visibility="Public" type="String" name="taskExtraData" nullToEmpty="false"/><Member tagName="GmtWakeup" visibility="Public" type="String" name="gmtWakeup" nullToEmpty="false"/><Member tagName="Success" visibility="Public" type="Boolean" name="success" nullToEmpty="false"/><Member tagName="Message" visibility="Public" type="String" name="message" nullToEmpty="false"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/PhysicalDeleteResource.xml
Normal file
1
devops-rdc/2020-03-03/PhysicalDeleteResource.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Private" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="PhysicalDeleteResource" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping><ErrorCodes /></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/account/physicalDeleteResource#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerUid" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerBid" tagName="callerBid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="interrupt" tagName="Interrupt" type="Boolean" required="false" tagPosition="Query" checkBlank="false" visibility="Public"/><Parameter name="invoker" tagName="Invoker" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="pk" tagName="Pk" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="bid" tagName="Bid" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="hid" tagName="Hid" type="Long" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="country" tagName="Country" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="taskIdentifier" tagName="TaskIdentifier" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="taskExtraData" tagName="TaskExtraData" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="gmtWakeup" tagName="GmtWakeup" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="success" tagName="Success" type="Boolean" required="false" tagPosition="Query" checkBlank="false" visibility="Public"/><Parameter name="message" tagName="Message" type="String" required="false" tagPosition="Query" checkBlank="false" visibility="Public"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/account/physicalDeleteResource#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Interrupt" visibility="Public" type="Boolean" name="interrupt" nullToEmpty="false"/><Member tagName="Invoker" visibility="Public" type="String" name="invoker" nullToEmpty="false"/><Member tagName="Pk" visibility="Public" type="String" name="pk" nullToEmpty="false"/><Member tagName="Bid" visibility="Public" type="String" name="bid" nullToEmpty="false"/><Member tagName="Hid" visibility="Public" type="Long" name="hid" nullToEmpty="false"/><Member tagName="Country" visibility="Public" type="String" name="country" nullToEmpty="false"/><Member tagName="TaskIdentifier" visibility="Public" type="String" name="taskIdentifier" nullToEmpty="false"/><Member tagName="TaskExtraData" visibility="Public" type="String" name="taskExtraData" nullToEmpty="false"/><Member tagName="GmtWakeup" visibility="Public" type="String" name="gmtWakeup" nullToEmpty="false"/><Member tagName="Success" visibility="Public" type="Boolean" name="success" nullToEmpty="false"/><Member tagName="Message" visibility="Public" type="String" name="message" nullToEmpty="false"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/TransferPipelineOwner.xml
Normal file
1
devops-rdc/2020-03-03/TransferPipelineOwner.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="TransferPipelineOwner" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidPipeline.NotFound" errorCode="InvalidPipeline.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified pipeline does not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /><ErrorCode code="SystemError.UnKnownError" errorCode="SystemError.UnKnownError" type="user" httpCode="500" extendedErrorCode="" errorMessage="An error occurred while processing your request." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://deops/api/pipeline/members/transfer/owner#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="pipelineId" tagName="PipelineId" type="Long" required="true" tagPosition="Query" docRequired="true" checkBlank="false" minValue="1" maxValue="999999999999999" visibility="Public"/><Parameter name="signature" tagName="Signature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="signatureType" tagName="SignatureType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="signatureNonce" tagName="SignatureNonce" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="sigantureVersion" tagName="SignatureVersion" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="ispSignatureSecret" tagName="IspSignatureSecretKey" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="userPk" tagName="UserPk" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="newOwnerId" tagName="NewOwnerId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://devops_pre/api/pipeline/members/transfer/owner#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Success" visibility="Public" type="Boolean" name="successful" nullToEmpty="false"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode" nullToEmpty="true"/><Member tagName="ErrorMessage" visibility="Public" type="String" name="errorMsg" nullToEmpty="true"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId" nullToEmpty="false"/><Member tagName="Object" visibility="Public" type="Map" name="object" nullToEmpty="false"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/UpdateCommonGroup.xml
Normal file
1
devops-rdc/2020-03-03/UpdateCommonGroup.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="UpdateCommonGroup" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/smartGroup/commonGroup/update#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="projectId" tagName="ProjectId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="description" tagName="Description" type="String" required="false" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="smartGroupId" tagName="SmartGroupId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="commonGroupId" tagName="CommonGroupId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="name" tagName="Name" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/smartGroup/commonGroup/update#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Successful" visibility="Public" type="Boolean" name="successful"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode"/><Member tagName="ErrorMsg" visibility="Public" type="String" name="errorMsg"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId"/><Struct tagName="Object" visibility="Public" name="object"><Member tagName="Id" visibility="Public" type="String" name="_id"/></Struct></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/UpdateDevopsProject.xml
Normal file
1
devops-rdc/2020-03-03/UpdateDevopsProject.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="UpdateDevopsProject" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_prod/api/pop/project/update#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="name" tagName="Name" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="description" tagName="Description" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="projectId" tagName="ProjectId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/project/update#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="RequestId" visibility="Public" type="String" name="requestId" nullToEmpty="false"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode" nullToEmpty="false"/><Member tagName="ErrorMessage" visibility="Public" type="String" name="errorMsg" nullToEmpty="false"/><Member tagName="Success" visibility="Public" type="Boolean" name="successful" nullToEmpty="false"/><Member tagName="Object" visibility="Public" type="String" name="object" nullToEmpty="false"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/UpdateDevopsProjectSprint.xml
Normal file
1
devops-rdc/2020-03-03/UpdateDevopsProjectSprint.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="UpdateDevopsProjectSprint" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidOrganization.NotFound" errorCode="InvalidOrganization.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified organization doe not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-project" timeout="5000" protocol="http" httpHost="http://project_api_pre/api/pop/sprint/update#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="name" tagName="Name" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="description" tagName="Description" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="projectId" tagName="ProjectId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="executorId" tagName="ExecutorId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="startDate" tagName="StartDate" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="dueDate" tagName="DueDate" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="sprintId" tagName="SprintId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><ResultMapping><Member tagName="Successful" visibility="Public" type="Boolean" name="successful"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode"/><Member tagName="ErrorMsg" visibility="Public" type="String" name="errorMsg"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId"/><Member tagName="Object" visibility="Public" type="Boolean" name="object"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/UpdateDevopsProjectTask.xml
Normal file
1
devops-rdc/2020-03-03/UpdateDevopsProjectTask.xml
Normal file
File diff suppressed because one or more lines are too long
1
devops-rdc/2020-03-03/UpdatePipelineMember.xml
Normal file
1
devops-rdc/2020-03-03/UpdatePipelineMember.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Api responseBodyIsOriginalObject="" authType="AK" responseLog="enable" isolationType="outer" parameterType="Single" product="devops-rdc" visibility="Public" akProvenStatus="Disable" version="2020-03-03" keepClientResourceOwnerId="false" name="UpdatePipelineMember" showJsonItemName="false" status="online"><IsvProtocol protocol="HTTPS|HTTP" method="POST" /><ErrorMapping exceptionExpress="successful=false,errorCode,errorMsg,httpStatusCode,errorCode,errorMsg"><ErrorCodes><ErrorCode code="InvalidPipeline.NotFound" errorCode="InvalidPipeline.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified pipeline does not exist." /><ErrorCode code="InvalidUser.NotFound" errorCode="InvalidUser.NotFound" type="user" httpCode="404" extendedErrorCode="" errorMessage="The specified user does not exist." /><ErrorCode code="InvalidUser.UserNotInCurrentOrganization" errorCode="InvalidUser.UserNotInCurrentOrganization" type="user" httpCode="400" extendedErrorCode="" errorMessage="The user does not belong to the specified organization." /><ErrorCode code="SystemError.UnKnownError" errorCode="SystemError.UnKnownError" type="user" httpCode="500" extendedErrorCode="" errorMessage="An error occurred while processing your request." /></ErrorCodes></ErrorMapping><IspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://deops/api/pipeline/members/update#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><Parameters><Parameter name="requestId" tagName="RequestId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="aliyunPk" tagName="callerUid" type="Long" required="false" tagPosition="System" checkBlank="false"/><Parameter name="orgId" tagName="OrgId" type="String" required="true" tagPosition="Query" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="pipelineId" tagName="PipelineId" type="Long" required="true" tagPosition="Query" docRequired="true" checkBlank="false" minValue="1" maxValue="999999999999999" visibility="Public"/><Parameter name="signature" tagName="Signature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="signatureType" tagName="SignatureType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="signatureNonce" tagName="SignatureNonce" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="sigantureVersion" tagName="SignatureVersion" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="ispSignatureSecret" tagName="IspSignatureSecretKey" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="IspSignature" tagName="IspSignature" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="callerType" tagName="callerType" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="accessKeyId" tagName="AccessKeyId" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="securityToken" tagName="SecurityToken" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="userPk" tagName="UserPk" type="String" required="false" tagPosition="Body" checkBlank="false" visibility="Public"/><Parameter name="action" tagName="Action" type="String" required="false" tagPosition="System" checkBlank="false"/><Parameter name="userId" tagName="UserId" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/><Parameter name="roleName" tagName="RoleName" type="String" required="true" tagPosition="Body" docRequired="true" checkBlank="false" visibility="Public"/></Parameters><FlowControl controlUnit="Second" userDefault="100" apiDefault="200" /><PreIspProtocol sign="true" signKeyName="devops-secret" timeout="5000" protocol="http" httpHost="http://devops_pre/api/pipeline/members/add#vpc" resultType="Object" signPolicy="Local" httpsValidation="true" retries="-1" /><ResultMapping><Member tagName="Success" visibility="Public" type="Boolean" name="successful" nullToEmpty="false"/><Member tagName="ErrorCode" visibility="Public" type="String" name="errorCode" nullToEmpty="true"/><Member tagName="ErrorMessage" visibility="Public" type="String" name="errorMsg" nullToEmpty="true"/><Member tagName="RequestId" visibility="Public" type="String" name="requestId" nullToEmpty="false"/><Member tagName="Object" visibility="Public" type="Boolean" name="object" nullToEmpty="false"/></ResultMapping></Api>
|
||||
1
devops-rdc/2020-03-03/UpdateTaskDetail.xml
Normal file
1
devops-rdc/2020-03-03/UpdateTaskDetail.xml
Normal file
File diff suppressed because one or more lines are too long
@@ -45,6 +45,8 @@ set(devops-rdc_public_header_model
|
||||
include/alibabacloud/devops-rdc/model/CreateServiceConnectionResult.h
|
||||
include/alibabacloud/devops-rdc/model/DeleteCommonGroupRequest.h
|
||||
include/alibabacloud/devops-rdc/model/DeleteCommonGroupResult.h
|
||||
include/alibabacloud/devops-rdc/model/DeleteDevopsOrganizationRequest.h
|
||||
include/alibabacloud/devops-rdc/model/DeleteDevopsOrganizationResult.h
|
||||
include/alibabacloud/devops-rdc/model/DeleteDevopsOrganizationMembersRequest.h
|
||||
include/alibabacloud/devops-rdc/model/DeleteDevopsOrganizationMembersResult.h
|
||||
include/alibabacloud/devops-rdc/model/DeleteDevopsProjectRequest.h
|
||||
@@ -172,6 +174,8 @@ set(devops-rdc_src
|
||||
src/model/CreateServiceConnectionResult.cc
|
||||
src/model/DeleteCommonGroupRequest.cc
|
||||
src/model/DeleteCommonGroupResult.cc
|
||||
src/model/DeleteDevopsOrganizationRequest.cc
|
||||
src/model/DeleteDevopsOrganizationResult.cc
|
||||
src/model/DeleteDevopsOrganizationMembersRequest.cc
|
||||
src/model/DeleteDevopsOrganizationMembersResult.cc
|
||||
src/model/DeleteDevopsProjectRequest.cc
|
||||
|
||||
@@ -46,6 +46,8 @@
|
||||
#include "model/CreateServiceConnectionResult.h"
|
||||
#include "model/DeleteCommonGroupRequest.h"
|
||||
#include "model/DeleteCommonGroupResult.h"
|
||||
#include "model/DeleteDevopsOrganizationRequest.h"
|
||||
#include "model/DeleteDevopsOrganizationResult.h"
|
||||
#include "model/DeleteDevopsOrganizationMembersRequest.h"
|
||||
#include "model/DeleteDevopsOrganizationMembersResult.h"
|
||||
#include "model/DeleteDevopsProjectRequest.h"
|
||||
@@ -191,6 +193,9 @@ namespace AlibabaCloud
|
||||
typedef Outcome<Error, Model::DeleteCommonGroupResult> DeleteCommonGroupOutcome;
|
||||
typedef std::future<DeleteCommonGroupOutcome> DeleteCommonGroupOutcomeCallable;
|
||||
typedef std::function<void(const Devops_rdcClient*, const Model::DeleteCommonGroupRequest&, const DeleteCommonGroupOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DeleteCommonGroupAsyncHandler;
|
||||
typedef Outcome<Error, Model::DeleteDevopsOrganizationResult> DeleteDevopsOrganizationOutcome;
|
||||
typedef std::future<DeleteDevopsOrganizationOutcome> DeleteDevopsOrganizationOutcomeCallable;
|
||||
typedef std::function<void(const Devops_rdcClient*, const Model::DeleteDevopsOrganizationRequest&, const DeleteDevopsOrganizationOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DeleteDevopsOrganizationAsyncHandler;
|
||||
typedef Outcome<Error, Model::DeleteDevopsOrganizationMembersResult> DeleteDevopsOrganizationMembersOutcome;
|
||||
typedef std::future<DeleteDevopsOrganizationMembersOutcome> DeleteDevopsOrganizationMembersOutcomeCallable;
|
||||
typedef std::function<void(const Devops_rdcClient*, const Model::DeleteDevopsOrganizationMembersRequest&, const DeleteDevopsOrganizationMembersOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DeleteDevopsOrganizationMembersAsyncHandler;
|
||||
@@ -382,6 +387,9 @@ namespace AlibabaCloud
|
||||
DeleteCommonGroupOutcome deleteCommonGroup(const Model::DeleteCommonGroupRequest &request)const;
|
||||
void deleteCommonGroupAsync(const Model::DeleteCommonGroupRequest& request, const DeleteCommonGroupAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
DeleteCommonGroupOutcomeCallable deleteCommonGroupCallable(const Model::DeleteCommonGroupRequest& request) const;
|
||||
DeleteDevopsOrganizationOutcome deleteDevopsOrganization(const Model::DeleteDevopsOrganizationRequest &request)const;
|
||||
void deleteDevopsOrganizationAsync(const Model::DeleteDevopsOrganizationRequest& request, const DeleteDevopsOrganizationAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
DeleteDevopsOrganizationOutcomeCallable deleteDevopsOrganizationCallable(const Model::DeleteDevopsOrganizationRequest& request) const;
|
||||
DeleteDevopsOrganizationMembersOutcome deleteDevopsOrganizationMembers(const Model::DeleteDevopsOrganizationMembersRequest &request)const;
|
||||
void deleteDevopsOrganizationMembersAsync(const Model::DeleteDevopsOrganizationMembersRequest& request, const DeleteDevopsOrganizationMembersAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
DeleteDevopsOrganizationMembersOutcomeCallable deleteDevopsOrganizationMembersCallable(const Model::DeleteDevopsOrganizationMembersRequest& request) const;
|
||||
|
||||
@@ -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_DEVOPS_RDC_MODEL_DELETEDEVOPSORGANIZATIONREQUEST_H_
|
||||
#define ALIBABACLOUD_DEVOPS_RDC_MODEL_DELETEDEVOPSORGANIZATIONREQUEST_H_
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <alibabacloud/core/RpcServiceRequest.h>
|
||||
#include <alibabacloud/devops-rdc/Devops_rdcExport.h>
|
||||
|
||||
namespace AlibabaCloud
|
||||
{
|
||||
namespace Devops_rdc
|
||||
{
|
||||
namespace Model
|
||||
{
|
||||
class ALIBABACLOUD_DEVOPS_RDC_EXPORT DeleteDevopsOrganizationRequest : public RpcServiceRequest
|
||||
{
|
||||
|
||||
public:
|
||||
DeleteDevopsOrganizationRequest();
|
||||
~DeleteDevopsOrganizationRequest();
|
||||
|
||||
std::string getOrgId()const;
|
||||
void setOrgId(const std::string& orgId);
|
||||
|
||||
private:
|
||||
std::string orgId_;
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif // !ALIBABACLOUD_DEVOPS_RDC_MODEL_DELETEDEVOPSORGANIZATIONREQUEST_H_
|
||||
@@ -0,0 +1,57 @@
|
||||
/*
|
||||
* 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_DEVOPS_RDC_MODEL_DELETEDEVOPSORGANIZATIONRESULT_H_
|
||||
#define ALIBABACLOUD_DEVOPS_RDC_MODEL_DELETEDEVOPSORGANIZATIONRESULT_H_
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <utility>
|
||||
#include <alibabacloud/core/ServiceResult.h>
|
||||
#include <alibabacloud/devops-rdc/Devops_rdcExport.h>
|
||||
|
||||
namespace AlibabaCloud
|
||||
{
|
||||
namespace Devops_rdc
|
||||
{
|
||||
namespace Model
|
||||
{
|
||||
class ALIBABACLOUD_DEVOPS_RDC_EXPORT DeleteDevopsOrganizationResult : public ServiceResult
|
||||
{
|
||||
public:
|
||||
|
||||
|
||||
DeleteDevopsOrganizationResult();
|
||||
explicit DeleteDevopsOrganizationResult(const std::string &payload);
|
||||
~DeleteDevopsOrganizationResult();
|
||||
std::string getObject()const;
|
||||
std::string getErrorCode()const;
|
||||
std::string getErrorMessage()const;
|
||||
bool getSuccess()const;
|
||||
|
||||
protected:
|
||||
void parse(const std::string &payload);
|
||||
private:
|
||||
std::string object_;
|
||||
std::string errorCode_;
|
||||
std::string errorMessage_;
|
||||
bool success_;
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif // !ALIBABACLOUD_DEVOPS_RDC_MODEL_DELETEDEVOPSORGANIZATIONRESULT_H_
|
||||
@@ -483,6 +483,42 @@ Devops_rdcClient::DeleteCommonGroupOutcomeCallable Devops_rdcClient::deleteCommo
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
Devops_rdcClient::DeleteDevopsOrganizationOutcome Devops_rdcClient::deleteDevopsOrganization(const DeleteDevopsOrganizationRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return DeleteDevopsOrganizationOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return DeleteDevopsOrganizationOutcome(DeleteDevopsOrganizationResult(outcome.result()));
|
||||
else
|
||||
return DeleteDevopsOrganizationOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void Devops_rdcClient::deleteDevopsOrganizationAsync(const DeleteDevopsOrganizationRequest& request, const DeleteDevopsOrganizationAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, deleteDevopsOrganization(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
Devops_rdcClient::DeleteDevopsOrganizationOutcomeCallable Devops_rdcClient::deleteDevopsOrganizationCallable(const DeleteDevopsOrganizationRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<DeleteDevopsOrganizationOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->deleteDevopsOrganization(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
Devops_rdcClient::DeleteDevopsOrganizationMembersOutcome Devops_rdcClient::deleteDevopsOrganizationMembers(const DeleteDevopsOrganizationMembersRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
|
||||
40
devops-rdc/src/model/DeleteDevopsOrganizationRequest.cc
Normal file
40
devops-rdc/src/model/DeleteDevopsOrganizationRequest.cc
Normal file
@@ -0,0 +1,40 @@
|
||||
/*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/devops-rdc/model/DeleteDevopsOrganizationRequest.h>
|
||||
|
||||
using AlibabaCloud::Devops_rdc::Model::DeleteDevopsOrganizationRequest;
|
||||
|
||||
DeleteDevopsOrganizationRequest::DeleteDevopsOrganizationRequest() :
|
||||
RpcServiceRequest("devops-rdc", "2020-03-03", "DeleteDevopsOrganization")
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteDevopsOrganizationRequest::~DeleteDevopsOrganizationRequest()
|
||||
{}
|
||||
|
||||
std::string DeleteDevopsOrganizationRequest::getOrgId()const
|
||||
{
|
||||
return orgId_;
|
||||
}
|
||||
|
||||
void DeleteDevopsOrganizationRequest::setOrgId(const std::string& orgId)
|
||||
{
|
||||
orgId_ = orgId;
|
||||
setBodyParameter("OrgId", orgId);
|
||||
}
|
||||
|
||||
72
devops-rdc/src/model/DeleteDevopsOrganizationResult.cc
Normal file
72
devops-rdc/src/model/DeleteDevopsOrganizationResult.cc
Normal file
@@ -0,0 +1,72 @@
|
||||
/*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/devops-rdc/model/DeleteDevopsOrganizationResult.h>
|
||||
#include <json/json.h>
|
||||
|
||||
using namespace AlibabaCloud::Devops_rdc;
|
||||
using namespace AlibabaCloud::Devops_rdc::Model;
|
||||
|
||||
DeleteDevopsOrganizationResult::DeleteDevopsOrganizationResult() :
|
||||
ServiceResult()
|
||||
{}
|
||||
|
||||
DeleteDevopsOrganizationResult::DeleteDevopsOrganizationResult(const std::string &payload) :
|
||||
ServiceResult()
|
||||
{
|
||||
parse(payload);
|
||||
}
|
||||
|
||||
DeleteDevopsOrganizationResult::~DeleteDevopsOrganizationResult()
|
||||
{}
|
||||
|
||||
void DeleteDevopsOrganizationResult::parse(const std::string &payload)
|
||||
{
|
||||
Json::Reader reader;
|
||||
Json::Value value;
|
||||
reader.parse(payload, value);
|
||||
setRequestId(value["RequestId"].asString());
|
||||
if(!value["ErrorCode"].isNull())
|
||||
errorCode_ = value["ErrorCode"].asString();
|
||||
if(!value["ErrorMessage"].isNull())
|
||||
errorMessage_ = value["ErrorMessage"].asString();
|
||||
if(!value["Success"].isNull())
|
||||
success_ = value["Success"].asString() == "true";
|
||||
if(!value["Object"].isNull())
|
||||
object_ = value["Object"].asString();
|
||||
|
||||
}
|
||||
|
||||
std::string DeleteDevopsOrganizationResult::getObject()const
|
||||
{
|
||||
return object_;
|
||||
}
|
||||
|
||||
std::string DeleteDevopsOrganizationResult::getErrorCode()const
|
||||
{
|
||||
return errorCode_;
|
||||
}
|
||||
|
||||
std::string DeleteDevopsOrganizationResult::getErrorMessage()const
|
||||
{
|
||||
return errorMessage_;
|
||||
}
|
||||
|
||||
bool DeleteDevopsOrganizationResult::getSuccess()const
|
||||
{
|
||||
return success_;
|
||||
}
|
||||
|
||||
1
devops-rdc/version-2020-03-03.xml
Normal file
1
devops-rdc/version-2020-03-03.xml
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?><Version product="devops-rdc" apiStyle="RPC" name="2020-03-03" isolationType="outer"><ErrorMapping exceptionExpress=""><ErrorCodes /></ErrorMapping><Apis><Api name="DeleteDevopsOrganization" /><Api name="PhysicalDeleteResource" /><Api name="CheckResource" /><Api name="LogicalDeleteResource" /><Api name="GetLastWorkspace" /><Api name="GetPipelineInstHistory" /><Api name="GetPipelineStepLog" /><Api name="UpdateTaskDetail" /><Api name="ListProjectCustomFields" /><Api name="GetTaskListFilter" /><Api name="GetTaskDetailBase" /><Api name="UpdateCommonGroup" /><Api name="GetTaskDetailActivity" /><Api name="CreateCommonGroup" /><Api name="GetProjectOption" /><Api name="DeleteCommonGroup" /><Api name="ListCommonGroup" /><Api name="GetUserName" /><Api name="ListSmartGroup" /><Api name="ListDevopsProjectTaskList" /><Api name="UpdatePipelineMember" /><Api name="InsertPipelineMember" /><Api name="TransferPipelineOwner" /><Api name="DeletePipelineMember" /><Api name="ListUserOrganization" /><Api name="UpdateDevopsProjectSprint" /><Api name="DeleteDevopsProjectMembers" /><Api name="UpdateDevopsProject" /><Api name="GetDevopsProjectMembers" /><Api name="CreateDevopsProjectSprint" /><Api name="ListDevopsProjectTasks" /><Api name="UpdateDevopsProjectTask" /><Api name="GetDevopsProjectInfo" /><Api name="ListDevopsScenarioFieldConfig" /><Api name="CreateDevopsProject" /><Api name="CheckAliyunAccountExists" /><Api name="DeleteDevopsProjectSprint" /><Api name="BatchInsertMembers" /><Api name="CreateDevopsProjectTask" /><Api name="GetDevopsProjectSprintInfo" /><Api name="ListDevopsProjectSprints" /><Api name="CreateDevopsOrganization" /><Api name="GetDevopsOrganizationMembers" /><Api name="GetUserByAliyunUid" /><Api name="GetDevopsProjectTaskInfo" /><Api name="ListDevopsProjectTaskFlow" /><Api name="ListDevopsProjectTaskFlowStatus" /><Api name="DeleteDevopsProjectTask" /><Api name="InsertDevopsUser" /><Api name="DeleteDevopsOrganizationMembers" /><Api name="InsertProjectMembers" /><Api name="DeleteDevopsProject" /><Api name="GetPipelineInstanceBuildNumberStatus" /><Api name="GetPipleineLatestInstanceStatus" /><Api name="GetPipelineInstanceGroupStatus" /><Api name="GetPipelineLog" /><Api name="GetPipelineInstanceInfo" /><Api name="ListServiceConnections" /><Api name="ListPipelines" /><Api name="CreateServiceConnection" /><Api name="CreateCredential" /><Api name="ListCredentials" /><Api name="CreatePipeline" /><Api name="GetPipelineInstanceStatus" /><Api name="CancelPipeline" /><Api name="ExecutePipeline" /></Apis></Version>
|
||||
File diff suppressed because one or more lines are too long
@@ -30,22 +30,50 @@ namespace AlibabaCloud
|
||||
{
|
||||
class ALIBABACLOUD_IMAGEPROCESS_EXPORT RunMedQARequest : public RpcServiceRequest
|
||||
{
|
||||
public:
|
||||
struct AnswerImageDataList
|
||||
{
|
||||
std::string answerImageData;
|
||||
};
|
||||
struct AnswerTextList
|
||||
{
|
||||
std::string answerText;
|
||||
};
|
||||
struct AnswerImageURLList
|
||||
{
|
||||
std::string answerImageURL;
|
||||
};
|
||||
|
||||
public:
|
||||
RunMedQARequest();
|
||||
~RunMedQARequest();
|
||||
|
||||
std::string getQuestion()const;
|
||||
void setQuestion(const std::string& question);
|
||||
std::string getOrgId()const;
|
||||
void setOrgId(const std::string& orgId);
|
||||
std::string getSessionId()const;
|
||||
void setSessionId(const std::string& sessionId);
|
||||
std::string getOrgName()const;
|
||||
void setOrgName(const std::string& orgName);
|
||||
std::vector<AnswerImageDataList> getAnswerImageDataList()const;
|
||||
void setAnswerImageDataList(const std::vector<AnswerImageDataList>& answerImageDataList);
|
||||
std::vector<AnswerTextList> getAnswerTextList()const;
|
||||
void setAnswerTextList(const std::vector<AnswerTextList>& answerTextList);
|
||||
std::string getDepartment()const;
|
||||
void setDepartment(const std::string& department);
|
||||
std::vector<AnswerImageURLList> getAnswerImageURLList()const;
|
||||
void setAnswerImageURLList(const std::vector<AnswerImageURLList>& answerImageURLList);
|
||||
std::string getQuestionType()const;
|
||||
void setQuestionType(const std::string& questionType);
|
||||
std::string getOrgId()const;
|
||||
void setOrgId(const std::string& orgId);
|
||||
|
||||
private:
|
||||
std::string question_;
|
||||
std::string orgId_;
|
||||
std::string sessionId_;
|
||||
std::string orgName_;
|
||||
std::vector<AnswerImageDataList> answerImageDataList_;
|
||||
std::vector<AnswerTextList> answerTextList_;
|
||||
std::string department_;
|
||||
std::vector<AnswerImageURLList> answerImageURLList_;
|
||||
std::string questionType_;
|
||||
std::string orgId_;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -34,20 +34,28 @@ namespace AlibabaCloud
|
||||
public:
|
||||
struct Data
|
||||
{
|
||||
std::string answer;
|
||||
std::vector<std::string> similarQuestion;
|
||||
std::vector<std::string> options;
|
||||
std::string reports;
|
||||
std::string questionType;
|
||||
std::string answerType;
|
||||
std::string question;
|
||||
std::string sessionId;
|
||||
};
|
||||
|
||||
|
||||
RunMedQAResult();
|
||||
explicit RunMedQAResult(const std::string &payload);
|
||||
~RunMedQAResult();
|
||||
std::string getMessage()const;
|
||||
Data getData()const;
|
||||
std::string getCode()const;
|
||||
|
||||
protected:
|
||||
void parse(const std::string &payload);
|
||||
private:
|
||||
std::string message_;
|
||||
Data data_;
|
||||
std::string code_;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -27,26 +27,15 @@ RunMedQARequest::RunMedQARequest() :
|
||||
RunMedQARequest::~RunMedQARequest()
|
||||
{}
|
||||
|
||||
std::string RunMedQARequest::getQuestion()const
|
||||
std::string RunMedQARequest::getSessionId()const
|
||||
{
|
||||
return question_;
|
||||
return sessionId_;
|
||||
}
|
||||
|
||||
void RunMedQARequest::setQuestion(const std::string& question)
|
||||
void RunMedQARequest::setSessionId(const std::string& sessionId)
|
||||
{
|
||||
question_ = question;
|
||||
setBodyParameter("Question", question);
|
||||
}
|
||||
|
||||
std::string RunMedQARequest::getOrgId()const
|
||||
{
|
||||
return orgId_;
|
||||
}
|
||||
|
||||
void RunMedQARequest::setOrgId(const std::string& orgId)
|
||||
{
|
||||
orgId_ = orgId;
|
||||
setBodyParameter("OrgId", orgId);
|
||||
sessionId_ = sessionId;
|
||||
setBodyParameter("SessionId", sessionId);
|
||||
}
|
||||
|
||||
std::string RunMedQARequest::getOrgName()const
|
||||
@@ -60,3 +49,81 @@ void RunMedQARequest::setOrgName(const std::string& orgName)
|
||||
setBodyParameter("OrgName", orgName);
|
||||
}
|
||||
|
||||
std::vector<RunMedQARequest::AnswerImageDataList> RunMedQARequest::getAnswerImageDataList()const
|
||||
{
|
||||
return answerImageDataList_;
|
||||
}
|
||||
|
||||
void RunMedQARequest::setAnswerImageDataList(const std::vector<AnswerImageDataList>& answerImageDataList)
|
||||
{
|
||||
answerImageDataList_ = answerImageDataList;
|
||||
for(int dep1 = 0; dep1!= answerImageDataList.size(); dep1++) {
|
||||
auto answerImageDataListObj = answerImageDataList.at(dep1);
|
||||
std::string answerImageDataListObjStr = "AnswerImageDataList." + std::to_string(dep1 + 1);
|
||||
setParameter(answerImageDataListObjStr + ".AnswerImageData", answerImageDataListObj.answerImageData);
|
||||
}
|
||||
}
|
||||
|
||||
std::vector<RunMedQARequest::AnswerTextList> RunMedQARequest::getAnswerTextList()const
|
||||
{
|
||||
return answerTextList_;
|
||||
}
|
||||
|
||||
void RunMedQARequest::setAnswerTextList(const std::vector<AnswerTextList>& answerTextList)
|
||||
{
|
||||
answerTextList_ = answerTextList;
|
||||
for(int dep1 = 0; dep1!= answerTextList.size(); dep1++) {
|
||||
auto answerTextListObj = answerTextList.at(dep1);
|
||||
std::string answerTextListObjStr = "AnswerTextList." + std::to_string(dep1 + 1);
|
||||
setParameter(answerTextListObjStr + ".AnswerText", answerTextListObj.answerText);
|
||||
}
|
||||
}
|
||||
|
||||
std::string RunMedQARequest::getDepartment()const
|
||||
{
|
||||
return department_;
|
||||
}
|
||||
|
||||
void RunMedQARequest::setDepartment(const std::string& department)
|
||||
{
|
||||
department_ = department;
|
||||
setBodyParameter("Department", department);
|
||||
}
|
||||
|
||||
std::vector<RunMedQARequest::AnswerImageURLList> RunMedQARequest::getAnswerImageURLList()const
|
||||
{
|
||||
return answerImageURLList_;
|
||||
}
|
||||
|
||||
void RunMedQARequest::setAnswerImageURLList(const std::vector<AnswerImageURLList>& answerImageURLList)
|
||||
{
|
||||
answerImageURLList_ = answerImageURLList;
|
||||
for(int dep1 = 0; dep1!= answerImageURLList.size(); dep1++) {
|
||||
auto answerImageURLListObj = answerImageURLList.at(dep1);
|
||||
std::string answerImageURLListObjStr = "AnswerImageURLList." + std::to_string(dep1 + 1);
|
||||
setParameter(answerImageURLListObjStr + ".AnswerImageURL", answerImageURLListObj.answerImageURL);
|
||||
}
|
||||
}
|
||||
|
||||
std::string RunMedQARequest::getQuestionType()const
|
||||
{
|
||||
return questionType_;
|
||||
}
|
||||
|
||||
void RunMedQARequest::setQuestionType(const std::string& questionType)
|
||||
{
|
||||
questionType_ = questionType;
|
||||
setBodyParameter("QuestionType", questionType);
|
||||
}
|
||||
|
||||
std::string RunMedQARequest::getOrgId()const
|
||||
{
|
||||
return orgId_;
|
||||
}
|
||||
|
||||
void RunMedQARequest::setOrgId(const std::string& orgId)
|
||||
{
|
||||
orgId_ = orgId;
|
||||
setBodyParameter("OrgId", orgId);
|
||||
}
|
||||
|
||||
|
||||
@@ -40,16 +40,38 @@ void RunMedQAResult::parse(const std::string &payload)
|
||||
reader.parse(payload, value);
|
||||
setRequestId(value["RequestId"].asString());
|
||||
auto dataNode = value["Data"];
|
||||
if(!dataNode["Answer"].isNull())
|
||||
data_.answer = dataNode["Answer"].asString();
|
||||
auto allSimilarQuestion = dataNode["SimilarQuestion"]["SimilarQuestion"];
|
||||
for (auto value : allSimilarQuestion)
|
||||
data_.similarQuestion.push_back(value.asString());
|
||||
if(!dataNode["Reports"].isNull())
|
||||
data_.reports = dataNode["Reports"].asString();
|
||||
if(!dataNode["QuestionType"].isNull())
|
||||
data_.questionType = dataNode["QuestionType"].asString();
|
||||
if(!dataNode["AnswerType"].isNull())
|
||||
data_.answerType = dataNode["AnswerType"].asString();
|
||||
if(!dataNode["Question"].isNull())
|
||||
data_.question = dataNode["Question"].asString();
|
||||
if(!dataNode["SessionId"].isNull())
|
||||
data_.sessionId = dataNode["SessionId"].asString();
|
||||
auto allOptions = dataNode["Options"]["options"];
|
||||
for (auto value : allOptions)
|
||||
data_.options.push_back(value.asString());
|
||||
if(!value["Message"].isNull())
|
||||
message_ = value["Message"].asString();
|
||||
if(!value["Code"].isNull())
|
||||
code_ = value["Code"].asString();
|
||||
|
||||
}
|
||||
|
||||
std::string RunMedQAResult::getMessage()const
|
||||
{
|
||||
return message_;
|
||||
}
|
||||
|
||||
RunMedQAResult::Data RunMedQAResult::getData()const
|
||||
{
|
||||
return data_;
|
||||
}
|
||||
|
||||
std::string RunMedQAResult::getCode()const
|
||||
{
|
||||
return code_;
|
||||
}
|
||||
|
||||
|
||||
@@ -29,6 +29,8 @@ set(privatelink_public_header_model
|
||||
include/alibabacloud/privatelink/model/AttachResourceToVpcEndpointServiceResult.h
|
||||
include/alibabacloud/privatelink/model/AttachSecurityGroupToVpcEndpointRequest.h
|
||||
include/alibabacloud/privatelink/model/AttachSecurityGroupToVpcEndpointResult.h
|
||||
include/alibabacloud/privatelink/model/CheckProductOpenRequest.h
|
||||
include/alibabacloud/privatelink/model/CheckProductOpenResult.h
|
||||
include/alibabacloud/privatelink/model/CreateVpcEndpointRequest.h
|
||||
include/alibabacloud/privatelink/model/CreateVpcEndpointResult.h
|
||||
include/alibabacloud/privatelink/model/CreateVpcEndpointServiceRequest.h
|
||||
@@ -92,6 +94,8 @@ set(privatelink_src
|
||||
src/model/AttachResourceToVpcEndpointServiceResult.cc
|
||||
src/model/AttachSecurityGroupToVpcEndpointRequest.cc
|
||||
src/model/AttachSecurityGroupToVpcEndpointResult.cc
|
||||
src/model/CheckProductOpenRequest.cc
|
||||
src/model/CheckProductOpenResult.cc
|
||||
src/model/CreateVpcEndpointRequest.cc
|
||||
src/model/CreateVpcEndpointResult.cc
|
||||
src/model/CreateVpcEndpointServiceRequest.cc
|
||||
|
||||
@@ -30,6 +30,8 @@
|
||||
#include "model/AttachResourceToVpcEndpointServiceResult.h"
|
||||
#include "model/AttachSecurityGroupToVpcEndpointRequest.h"
|
||||
#include "model/AttachSecurityGroupToVpcEndpointResult.h"
|
||||
#include "model/CheckProductOpenRequest.h"
|
||||
#include "model/CheckProductOpenResult.h"
|
||||
#include "model/CreateVpcEndpointRequest.h"
|
||||
#include "model/CreateVpcEndpointResult.h"
|
||||
#include "model/CreateVpcEndpointServiceRequest.h"
|
||||
@@ -103,6 +105,9 @@ namespace AlibabaCloud
|
||||
typedef Outcome<Error, Model::AttachSecurityGroupToVpcEndpointResult> AttachSecurityGroupToVpcEndpointOutcome;
|
||||
typedef std::future<AttachSecurityGroupToVpcEndpointOutcome> AttachSecurityGroupToVpcEndpointOutcomeCallable;
|
||||
typedef std::function<void(const PrivatelinkClient*, const Model::AttachSecurityGroupToVpcEndpointRequest&, const AttachSecurityGroupToVpcEndpointOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> AttachSecurityGroupToVpcEndpointAsyncHandler;
|
||||
typedef Outcome<Error, Model::CheckProductOpenResult> CheckProductOpenOutcome;
|
||||
typedef std::future<CheckProductOpenOutcome> CheckProductOpenOutcomeCallable;
|
||||
typedef std::function<void(const PrivatelinkClient*, const Model::CheckProductOpenRequest&, const CheckProductOpenOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> CheckProductOpenAsyncHandler;
|
||||
typedef Outcome<Error, Model::CreateVpcEndpointResult> CreateVpcEndpointOutcome;
|
||||
typedef std::future<CreateVpcEndpointOutcome> CreateVpcEndpointOutcomeCallable;
|
||||
typedef std::function<void(const PrivatelinkClient*, const Model::CreateVpcEndpointRequest&, const CreateVpcEndpointOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> CreateVpcEndpointAsyncHandler;
|
||||
@@ -198,6 +203,9 @@ namespace AlibabaCloud
|
||||
AttachSecurityGroupToVpcEndpointOutcome attachSecurityGroupToVpcEndpoint(const Model::AttachSecurityGroupToVpcEndpointRequest &request)const;
|
||||
void attachSecurityGroupToVpcEndpointAsync(const Model::AttachSecurityGroupToVpcEndpointRequest& request, const AttachSecurityGroupToVpcEndpointAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
AttachSecurityGroupToVpcEndpointOutcomeCallable attachSecurityGroupToVpcEndpointCallable(const Model::AttachSecurityGroupToVpcEndpointRequest& request) const;
|
||||
CheckProductOpenOutcome checkProductOpen(const Model::CheckProductOpenRequest &request)const;
|
||||
void checkProductOpenAsync(const Model::CheckProductOpenRequest& request, const CheckProductOpenAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
CheckProductOpenOutcomeCallable checkProductOpenCallable(const Model::CheckProductOpenRequest& request) const;
|
||||
CreateVpcEndpointOutcome createVpcEndpoint(const Model::CreateVpcEndpointRequest &request)const;
|
||||
void createVpcEndpointAsync(const Model::CreateVpcEndpointRequest& request, const CreateVpcEndpointAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
CreateVpcEndpointOutcomeCallable createVpcEndpointCallable(const Model::CreateVpcEndpointRequest& request) const;
|
||||
|
||||
@@ -37,8 +37,8 @@ namespace AlibabaCloud
|
||||
|
||||
std::string getClientToken()const;
|
||||
void setClientToken(const std::string& clientToken);
|
||||
std::string getUserId()const;
|
||||
void setUserId(const std::string& userId);
|
||||
long getUserId()const;
|
||||
void setUserId(long userId);
|
||||
std::string getRegionId()const;
|
||||
void setRegionId(const std::string& regionId);
|
||||
bool getDryRun()const;
|
||||
@@ -48,7 +48,7 @@ namespace AlibabaCloud
|
||||
|
||||
private:
|
||||
std::string clientToken_;
|
||||
std::string userId_;
|
||||
long userId_;
|
||||
std::string regionId_;
|
||||
bool dryRun_;
|
||||
std::string serviceId_;
|
||||
|
||||
@@ -43,6 +43,8 @@ namespace AlibabaCloud
|
||||
void setRegionId(const std::string& regionId);
|
||||
bool getDryRun()const;
|
||||
void setDryRun(bool dryRun);
|
||||
std::string getIp()const;
|
||||
void setIp(const std::string& ip);
|
||||
std::string getVSwitchId()const;
|
||||
void setVSwitchId(const std::string& vSwitchId);
|
||||
std::string getZoneId()const;
|
||||
@@ -53,6 +55,7 @@ namespace AlibabaCloud
|
||||
std::string endpointId_;
|
||||
std::string regionId_;
|
||||
bool dryRun_;
|
||||
std::string ip_;
|
||||
std::string vSwitchId_;
|
||||
std::string zoneId_;
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user