From 205868345174561a64076a3dfda655ce7032de6d Mon Sep 17 00:00:00 2001 From: Prachi Damle Date: Fri, 26 Apr 2019 11:48:53 -0700 Subject: [PATCH] Change CloudFlare proxySetting parameter to bool --- apis/management.cattle.io/v3/globaldns_types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apis/management.cattle.io/v3/globaldns_types.go b/apis/management.cattle.io/v3/globaldns_types.go index a2858046..16fa9e12 100644 --- a/apis/management.cattle.io/v3/globaldns_types.go +++ b/apis/management.cattle.io/v3/globaldns_types.go @@ -63,7 +63,7 @@ type Route53ProviderConfig struct { type CloudflareProviderConfig struct { APIKey string `json:"apiKey" norman:"notnullable,required,minLength=1,type=password"` APIEmail string `json:"apiEmail" norman:"notnullable,required,minLength=1"` - ProxySetting string `json:"proxySetting" norman:"default=true"` + ProxySetting *bool `json:"proxySetting" norman:"default=true"` } type UpdateGlobalDNSTargetsInput struct {