blob: 1a308952a61f63654bb63937bb52a9b4dcbcb457 [file] [log] [blame]
package client
/*
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.
*/
import (
"fmt"
"github.com/apache/trafficcontrol/lib/go-tc"
"github.com/apache/trafficcontrol/traffic_ops/toclientlib"
)
// GetFederationFederationResolvers retrieves all Federation Resolvers belonging to Federation of ID.
func (to *Session) GetFederationFederationResolvers(id int, opts RequestOptions) (tc.FederationFederationResolversResponse, toclientlib.ReqInf, error) {
path := fmt.Sprintf("/federations/%d/federation_resolvers", id)
var resp tc.FederationFederationResolversResponse
reqInf, err := to.get(path, opts, &resp)
return resp, reqInf, err
}
// AssignFederationFederationResolver assigns the resolvers identified in
// resolverIDs to the Federation identified by fedID. If replace is true, this
// will overwrite any and all existing resolvers assigned to the Federation.
func (to *Session) AssignFederationFederationResolver(
fedID int,
resolverIDs []int,
replace bool,
opts RequestOptions,
) (tc.AssignFederationFederationResolversResponse, toclientlib.ReqInf, error) {
path := fmt.Sprintf("/federations/%d/federation_resolvers", fedID)
req := tc.AssignFederationResolversRequest{
Replace: replace,
FedResolverIDs: resolverIDs,
}
resp := tc.AssignFederationFederationResolversResponse{}
reqInf, err := to.post(path, opts, req, &resp)
return resp, reqInf, err
}