App-related actions support tag authentication.
This commit is contained in:
126
cloudapi/src/model/DescribeApisRequest.cc
Normal file
126
cloudapi/src/model/DescribeApisRequest.cc
Normal file
@@ -0,0 +1,126 @@
|
||||
/*
|
||||
* 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/cloudapi/model/DescribeApisRequest.h>
|
||||
|
||||
using AlibabaCloud::CloudAPI::Model::DescribeApisRequest;
|
||||
|
||||
DescribeApisRequest::DescribeApisRequest() :
|
||||
RpcServiceRequest("cloudapi", "2016-07-14", "DescribeApis")
|
||||
{}
|
||||
|
||||
DescribeApisRequest::~DescribeApisRequest()
|
||||
{}
|
||||
|
||||
std::string DescribeApisRequest::getApiName()const
|
||||
{
|
||||
return apiName_;
|
||||
}
|
||||
|
||||
void DescribeApisRequest::setApiName(const std::string& apiName)
|
||||
{
|
||||
apiName_ = apiName;
|
||||
setCoreParameter("ApiName", apiName);
|
||||
}
|
||||
|
||||
std::string DescribeApisRequest::getCatalogId()const
|
||||
{
|
||||
return catalogId_;
|
||||
}
|
||||
|
||||
void DescribeApisRequest::setCatalogId(const std::string& catalogId)
|
||||
{
|
||||
catalogId_ = catalogId;
|
||||
setCoreParameter("CatalogId", catalogId);
|
||||
}
|
||||
|
||||
std::string DescribeApisRequest::getVisibility()const
|
||||
{
|
||||
return visibility_;
|
||||
}
|
||||
|
||||
void DescribeApisRequest::setVisibility(const std::string& visibility)
|
||||
{
|
||||
visibility_ = visibility;
|
||||
setCoreParameter("Visibility", visibility);
|
||||
}
|
||||
|
||||
std::string DescribeApisRequest::getSecurityToken()const
|
||||
{
|
||||
return securityToken_;
|
||||
}
|
||||
|
||||
void DescribeApisRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string DescribeApisRequest::getGroupId()const
|
||||
{
|
||||
return groupId_;
|
||||
}
|
||||
|
||||
void DescribeApisRequest::setGroupId(const std::string& groupId)
|
||||
{
|
||||
groupId_ = groupId;
|
||||
setCoreParameter("GroupId", groupId);
|
||||
}
|
||||
|
||||
int DescribeApisRequest::getPageSize()const
|
||||
{
|
||||
return pageSize_;
|
||||
}
|
||||
|
||||
void DescribeApisRequest::setPageSize(int pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string DescribeApisRequest::getApiId()const
|
||||
{
|
||||
return apiId_;
|
||||
}
|
||||
|
||||
void DescribeApisRequest::setApiId(const std::string& apiId)
|
||||
{
|
||||
apiId_ = apiId;
|
||||
setCoreParameter("ApiId", apiId);
|
||||
}
|
||||
|
||||
int DescribeApisRequest::getPageNumber()const
|
||||
{
|
||||
return pageNumber_;
|
||||
}
|
||||
|
||||
void DescribeApisRequest::setPageNumber(int pageNumber)
|
||||
{
|
||||
pageNumber_ = pageNumber;
|
||||
setCoreParameter("PageNumber", std::to_string(pageNumber));
|
||||
}
|
||||
|
||||
std::string DescribeApisRequest::getAccessKeyId()const
|
||||
{
|
||||
return accessKeyId_;
|
||||
}
|
||||
|
||||
void DescribeApisRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user