Skip to content

Commit 205a605

Browse files
authored
Merge pull request #855 from maxnystrom/include-missing-custom-hostname-statuses
Include the Blocked Custom Hostname status for Custom Hostnames.
2 parents 407749a + 81c2d67 commit 205a605

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

custom_hostname.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@ const (
2222
ACTIVE CustomHostnameStatus = "active"
2323
// MOVED status represents state of CustomHostname is moved.
2424
MOVED CustomHostnameStatus = "moved"
25-
// DELETED status represents state of CustomHostname is removed.
25+
// DELETED status represents state of CustomHostname is deleted.
2626
DELETED CustomHostnameStatus = "deleted"
27+
// BLOCKED status represents state of CustomHostname is blocked from going active.
28+
BLOCKED CustomHostnameStatus = "blocked"
2729
)
2830

2931
// CustomHostnameSSLSettings represents the SSL settings for a custom hostname.

0 commit comments

Comments
 (0)