Update ListTransitRouterPrefixListAssociation support NextHop and NextHopType filter.
This commit is contained in:
@@ -79,6 +79,15 @@ void ListTransitRouterPrefixListAssociationRequest::setOwnerUid(long ownerUid) {
|
||||
setParameter(std::string("OwnerUid"), std::to_string(ownerUid));
|
||||
}
|
||||
|
||||
std::string ListTransitRouterPrefixListAssociationRequest::getNextHopType() const {
|
||||
return nextHopType_;
|
||||
}
|
||||
|
||||
void ListTransitRouterPrefixListAssociationRequest::setNextHopType(const std::string &nextHopType) {
|
||||
nextHopType_ = nextHopType;
|
||||
setParameter(std::string("NextHopType"), nextHopType);
|
||||
}
|
||||
|
||||
std::string ListTransitRouterPrefixListAssociationRequest::getResourceOwnerAccount() const {
|
||||
return resourceOwnerAccount_;
|
||||
}
|
||||
@@ -124,3 +133,12 @@ void ListTransitRouterPrefixListAssociationRequest::setTransitRouterTableId(cons
|
||||
setParameter(std::string("TransitRouterTableId"), transitRouterTableId);
|
||||
}
|
||||
|
||||
std::string ListTransitRouterPrefixListAssociationRequest::getNextHop() const {
|
||||
return nextHop_;
|
||||
}
|
||||
|
||||
void ListTransitRouterPrefixListAssociationRequest::setNextHop(const std::string &nextHop) {
|
||||
nextHop_ = nextHop;
|
||||
setParameter(std::string("NextHop"), nextHop);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user