@@ -15,7 +15,7 @@ extension Command {
1515
1616 let method : HTTPMethod = . get
1717 let callType : CallType = . read
18- let path : URL = . clustersV1
18+ let path = URL . clustersV1
1919 let requestOptions : RequestOptions ?
2020
2121 init ( requestOptions: RequestOptions ? ) {
@@ -53,7 +53,7 @@ extension Command.MultiCluster {
5353
5454 let method : HTTPMethod = . post
5555 let callType : CallType = . write
56- let path : URL = . clustersV1. appending ( . mapping)
56+ let path = URL . clustersV1. appending ( . mapping)
5757 let body : Data ?
5858 let requestOptions : RequestOptions ?
5959
@@ -105,7 +105,7 @@ extension Command.MultiCluster {
105105
106106 let method : HTTPMethod = . get
107107 let callType : CallType = . read
108- let path : URL = . clustersV1
108+ let path = URL . clustersV1
109109 . appending ( . mapping)
110110 . appending ( . top)
111111 let requestOptions : RequestOptions ?
@@ -120,7 +120,7 @@ extension Command.MultiCluster {
120120
121121 let method : HTTPMethod = . get
122122 let callType : CallType = . read
123- let path : URL = . clustersV1
123+ let path = URL . clustersV1
124124 . appending ( . mapping)
125125 let requestOptions : RequestOptions ?
126126
@@ -155,7 +155,7 @@ extension Command.MultiCluster {
155155
156156 let method : HTTPMethod = . post
157157 let callType : CallType = . read
158- let path : URL = . clustersV1
158+ let path = URL . clustersV1
159159 . appending ( . mapping)
160160 . appending ( . search)
161161 let body : Data ?
0 commit comments