79 lines
2.9 KiB
C++
79 lines
2.9 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.
|
|
*/
|
|
|
|
#ifndef ALIBABACLOUD_ECD_MODEL_CREATEADCONNECTORDIRECTORYREQUEST_H_
|
|
#define ALIBABACLOUD_ECD_MODEL_CREATEADCONNECTORDIRECTORYREQUEST_H_
|
|
|
|
#include <alibabacloud/ecd/EcdExport.h>
|
|
#include <alibabacloud/core/RpcServiceRequest.h>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <map>
|
|
|
|
namespace AlibabaCloud {
|
|
namespace Ecd {
|
|
namespace Model {
|
|
class ALIBABACLOUD_ECD_EXPORT CreateADConnectorDirectoryRequest : public RpcServiceRequest {
|
|
public:
|
|
CreateADConnectorDirectoryRequest();
|
|
~CreateADConnectorDirectoryRequest();
|
|
std::vector<std::string> getSubDomainDnsAddress() const;
|
|
void setSubDomainDnsAddress(const std::vector<std::string> &subDomainDnsAddress);
|
|
std::string getSubDomainName() const;
|
|
void setSubDomainName(const std::string &subDomainName);
|
|
std::string getDomainPassword() const;
|
|
void setDomainPassword(const std::string &domainPassword);
|
|
std::string getRegionId() const;
|
|
void setRegionId(const std::string ®ionId);
|
|
bool getEnableAdminAccess() const;
|
|
void setEnableAdminAccess(bool enableAdminAccess);
|
|
std::string getDesktopAccessType() const;
|
|
void setDesktopAccessType(const std::string &desktopAccessType);
|
|
std::string getDomainName() const;
|
|
void setDomainName(const std::string &domainName);
|
|
long getSpecification() const;
|
|
void setSpecification(long specification);
|
|
std::string getDirectoryName() const;
|
|
void setDirectoryName(const std::string &directoryName);
|
|
std::vector<std::string> getVSwitchId() const;
|
|
void setVSwitchId(const std::vector<std::string> &vSwitchId);
|
|
bool getMfaEnabled() const;
|
|
void setMfaEnabled(bool mfaEnabled);
|
|
std::string getDomainUserName() const;
|
|
void setDomainUserName(const std::string &domainUserName);
|
|
std::vector<std::string> getDnsAddress() const;
|
|
void setDnsAddress(const std::vector<std::string> &dnsAddress);
|
|
|
|
private:
|
|
std::vector<std::string> subDomainDnsAddress_;
|
|
std::string subDomainName_;
|
|
std::string domainPassword_;
|
|
std::string regionId_;
|
|
bool enableAdminAccess_;
|
|
std::string desktopAccessType_;
|
|
std::string domainName_;
|
|
long specification_;
|
|
std::string directoryName_;
|
|
std::vector<std::string> vSwitchId_;
|
|
bool mfaEnabled_;
|
|
std::string domainUserName_;
|
|
std::vector<std::string> dnsAddress_;
|
|
};
|
|
} // namespace Model
|
|
} // namespace Ecd
|
|
} // namespace AlibabaCloud
|
|
#endif // !ALIBABACLOUD_ECD_MODEL_CREATEADCONNECTORDIRECTORYREQUEST_H_
|