Skip to content

Commit

Permalink
rename function to GetEdgeDeployment
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-cxf committed Apr 25, 2024
1 parent 4a954e1 commit 21eb6d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api.go
Original file line number Diff line number Diff line change
Expand Up @@ -2920,8 +2920,8 @@ type EdgeDeployment struct {
ServicesAttached []FastlyService `json:"ServicesAttached"`
}

// ConfirmEdgeDeployment retrieves currently deployed EdgeWafs and Fastly Services mapped to a site..
func (sc *Client) ConfirmEdgeDeployment(corpName, siteName string) (EdgeDeployment, error) {
// GetEdgeDeployment retrieves currently deployed EdgeWafs and Fastly Services mapped to a site..
func (sc *Client) GetEdgeDeployment(corpName, siteName string) (EdgeDeployment, error) {
resp, err := sc.doRequest("GET", fmt.Sprintf("/v0/corps/%s/sites/%s/edgeDeployment", corpName, siteName), "")
if err != nil {
return EdgeDeployment{}, err
Expand Down

0 comments on commit 21eb6d6

Please sign in to comment.