64 lines
1.8 KiB
C++
64 lines
1.8 KiB
C++
/*
|
|
* 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/ros/model/DescribeChangeSetDetailRequest.h>
|
|
|
|
using AlibabaCloud::ROS::Model::DescribeChangeSetDetailRequest;
|
|
|
|
DescribeChangeSetDetailRequest::DescribeChangeSetDetailRequest() :
|
|
RoaServiceRequest("ros", "2015-09-01")
|
|
{
|
|
setResourcePath("/stacks/[StackName]/[StackId]/changeSets/[ChangeSetName]");
|
|
setMethod(HttpRequest::Method::Get);
|
|
}
|
|
|
|
DescribeChangeSetDetailRequest::~DescribeChangeSetDetailRequest()
|
|
{}
|
|
|
|
std::string DescribeChangeSetDetailRequest::getChangeSetName()const
|
|
{
|
|
return changeSetName_;
|
|
}
|
|
|
|
void DescribeChangeSetDetailRequest::setChangeSetName(const std::string& changeSetName)
|
|
{
|
|
changeSetName_ = changeSetName;
|
|
setParameter("ChangeSetName", changeSetName);
|
|
}
|
|
|
|
std::string DescribeChangeSetDetailRequest::getStackId()const
|
|
{
|
|
return stackId_;
|
|
}
|
|
|
|
void DescribeChangeSetDetailRequest::setStackId(const std::string& stackId)
|
|
{
|
|
stackId_ = stackId;
|
|
setParameter("StackId", stackId);
|
|
}
|
|
|
|
std::string DescribeChangeSetDetailRequest::getStackName()const
|
|
{
|
|
return stackName_;
|
|
}
|
|
|
|
void DescribeChangeSetDetailRequest::setStackName(const std::string& stackName)
|
|
{
|
|
stackName_ = stackName;
|
|
setParameter("StackName", stackName);
|
|
}
|
|
|