2929 if_match_condition : Option < IfMatchCondition > ,
3030 if_modified_since : Option < IfModifiedSinceCondition > ,
3131 client_request_id : Option < ClientRequestId > ,
32- rename_source : Option < RenameSource > ,
3332 properties : Option < Properties > ,
3433 timeout : Option < Timeout > ,
3534 context : Context ,
@@ -45,7 +44,6 @@ impl<C: PathClient + 'static> PutPathBuilder<C> {
4544 if_match_condition : None ,
4645 if_modified_since : None ,
4746 client_request_id : None ,
48- rename_source : None ,
4947 properties : None ,
5048 timeout : None ,
5149 context,
@@ -59,7 +57,6 @@ impl<C: PathClient + 'static> PutPathBuilder<C> {
5957 if_match_condition: IfMatchCondition => Some ( if_match_condition) ,
6058 if_modified_since: IfModifiedSinceCondition => Some ( if_modified_since) ,
6159 client_request_id: ClientRequestId => Some ( client_request_id) ,
62- rename_source: RenameSource => Some ( rename_source) ,
6360 properties: Properties => Some ( properties) ,
6461 timeout: Timeout => Some ( timeout) ,
6562 context: Context => context,
@@ -85,7 +82,6 @@ impl<C: PathClient + 'static> PutPathBuilder<C> {
8582 add_optional_header2 ( & this. properties , & mut request) ?;
8683 add_optional_header2 ( & this. if_match_condition , & mut request) ?;
8784 add_optional_header2 ( & this. if_modified_since , & mut request) ?;
88- add_optional_header2 ( & this. rename_source , & mut request) ?;
8985 add_mandatory_header2 ( & ContentLength :: new ( 0 ) , & mut request) ?;
9086
9187 let response = self
@@ -106,7 +102,6 @@ where
106102{
107103 client : C ,
108104 mode : Option < PathRenameMode > ,
109- resource : Option < ResourceType > ,
110105 continuation : Option < NextMarker > ,
111106 if_match_condition : Option < IfMatchCondition > ,
112107 if_modified_since : Option < IfModifiedSinceCondition > ,
@@ -123,7 +118,6 @@ impl<C: PathClient + 'static> RenamePathBuilder<C> {
123118 client,
124119 mode : None ,
125120 continuation : None ,
126- resource : None ,
127121 if_match_condition : None ,
128122 if_modified_since : None ,
129123 client_request_id : None ,
@@ -136,7 +130,6 @@ impl<C: PathClient + 'static> RenamePathBuilder<C> {
136130
137131 setters ! {
138132 mode: PathRenameMode => Some ( mode) ,
139- resource: ResourceType => Some ( resource) ,
140133 continuation: NextMarker => Some ( continuation) ,
141134 if_match_condition: IfMatchCondition => Some ( if_match_condition) ,
142135 if_modified_since: IfModifiedSinceCondition => Some ( if_modified_since) ,
@@ -157,7 +150,6 @@ impl<C: PathClient + 'static> RenamePathBuilder<C> {
157150 if let Some ( continuation) = self . continuation {
158151 continuation. append_to_url_query_as_continuation ( & mut url) ;
159152 } ;
160- self . resource . append_to_url_query ( & mut url) ;
161153 self . mode . append_to_url_query ( & mut url) ;
162154 self . timeout . append_to_url_query ( & mut url) ;
163155
0 commit comments