Update ListTransitRouterPrefixListAssociation support NextHop and NextHopType filter.

This commit is contained in:
sdk-team
2022-11-02 09:47:19 +00:00
parent c9e34d5a9c
commit d0b808cbaa
4 changed files with 28 additions and 4 deletions

View File

@@ -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);
}