85 lines
2.3 KiB
C++
85 lines
2.3 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/vod/model/AttachAppPolicyToIdentityRequest.h>
|
|
|
|
using AlibabaCloud::Vod::Model::AttachAppPolicyToIdentityRequest;
|
|
|
|
AttachAppPolicyToIdentityRequest::AttachAppPolicyToIdentityRequest() :
|
|
RpcServiceRequest("vod", "2017-03-21", "AttachAppPolicyToIdentity")
|
|
{
|
|
setMethod(HttpRequest::Method::Post);
|
|
}
|
|
|
|
AttachAppPolicyToIdentityRequest::~AttachAppPolicyToIdentityRequest()
|
|
{}
|
|
|
|
std::string AttachAppPolicyToIdentityRequest::getPolicyNames()const
|
|
{
|
|
return policyNames_;
|
|
}
|
|
|
|
void AttachAppPolicyToIdentityRequest::setPolicyNames(const std::string& policyNames)
|
|
{
|
|
policyNames_ = policyNames;
|
|
setParameter("PolicyNames", policyNames);
|
|
}
|
|
|
|
std::string AttachAppPolicyToIdentityRequest::getResourceRealOwnerId()const
|
|
{
|
|
return resourceRealOwnerId_;
|
|
}
|
|
|
|
void AttachAppPolicyToIdentityRequest::setResourceRealOwnerId(const std::string& resourceRealOwnerId)
|
|
{
|
|
resourceRealOwnerId_ = resourceRealOwnerId;
|
|
setParameter("ResourceRealOwnerId", resourceRealOwnerId);
|
|
}
|
|
|
|
std::string AttachAppPolicyToIdentityRequest::getIdentityName()const
|
|
{
|
|
return identityName_;
|
|
}
|
|
|
|
void AttachAppPolicyToIdentityRequest::setIdentityName(const std::string& identityName)
|
|
{
|
|
identityName_ = identityName;
|
|
setParameter("IdentityName", identityName);
|
|
}
|
|
|
|
std::string AttachAppPolicyToIdentityRequest::getIdentityType()const
|
|
{
|
|
return identityType_;
|
|
}
|
|
|
|
void AttachAppPolicyToIdentityRequest::setIdentityType(const std::string& identityType)
|
|
{
|
|
identityType_ = identityType;
|
|
setParameter("IdentityType", identityType);
|
|
}
|
|
|
|
std::string AttachAppPolicyToIdentityRequest::getAppId()const
|
|
{
|
|
return appId_;
|
|
}
|
|
|
|
void AttachAppPolicyToIdentityRequest::setAppId(const std::string& appId)
|
|
{
|
|
appId_ = appId;
|
|
setParameter("AppId", appId);
|
|
}
|
|
|