29
29
if_match_condition : Option < IfMatchCondition > ,
30
30
if_modified_since : Option < IfModifiedSinceCondition > ,
31
31
client_request_id : Option < ClientRequestId > ,
32
- rename_source : Option < RenameSource > ,
33
32
properties : Option < Properties > ,
34
33
timeout : Option < Timeout > ,
35
34
context : Context ,
@@ -45,7 +44,6 @@ impl<C: PathClient + 'static> PutPathBuilder<C> {
45
44
if_match_condition : None ,
46
45
if_modified_since : None ,
47
46
client_request_id : None ,
48
- rename_source : None ,
49
47
properties : None ,
50
48
timeout : None ,
51
49
context,
@@ -59,7 +57,6 @@ impl<C: PathClient + 'static> PutPathBuilder<C> {
59
57
if_match_condition: IfMatchCondition => Some ( if_match_condition) ,
60
58
if_modified_since: IfModifiedSinceCondition => Some ( if_modified_since) ,
61
59
client_request_id: ClientRequestId => Some ( client_request_id) ,
62
- rename_source: RenameSource => Some ( rename_source) ,
63
60
properties: Properties => Some ( properties) ,
64
61
timeout: Timeout => Some ( timeout) ,
65
62
context: Context => context,
@@ -85,7 +82,6 @@ impl<C: PathClient + 'static> PutPathBuilder<C> {
85
82
add_optional_header2 ( & this. properties , & mut request) ?;
86
83
add_optional_header2 ( & this. if_match_condition , & mut request) ?;
87
84
add_optional_header2 ( & this. if_modified_since , & mut request) ?;
88
- add_optional_header2 ( & this. rename_source , & mut request) ?;
89
85
add_mandatory_header2 ( & ContentLength :: new ( 0 ) , & mut request) ?;
90
86
91
87
let response = self
@@ -106,7 +102,6 @@ where
106
102
{
107
103
client : C ,
108
104
mode : Option < PathRenameMode > ,
109
- resource : Option < ResourceType > ,
110
105
continuation : Option < NextMarker > ,
111
106
if_match_condition : Option < IfMatchCondition > ,
112
107
if_modified_since : Option < IfModifiedSinceCondition > ,
@@ -123,7 +118,6 @@ impl<C: PathClient + 'static> RenamePathBuilder<C> {
123
118
client,
124
119
mode : None ,
125
120
continuation : None ,
126
- resource : None ,
127
121
if_match_condition : None ,
128
122
if_modified_since : None ,
129
123
client_request_id : None ,
@@ -136,7 +130,6 @@ impl<C: PathClient + 'static> RenamePathBuilder<C> {
136
130
137
131
setters ! {
138
132
mode: PathRenameMode => Some ( mode) ,
139
- resource: ResourceType => Some ( resource) ,
140
133
continuation: NextMarker => Some ( continuation) ,
141
134
if_match_condition: IfMatchCondition => Some ( if_match_condition) ,
142
135
if_modified_since: IfModifiedSinceCondition => Some ( if_modified_since) ,
@@ -157,7 +150,6 @@ impl<C: PathClient + 'static> RenamePathBuilder<C> {
157
150
if let Some ( continuation) = self . continuation {
158
151
continuation. append_to_url_query_as_continuation ( & mut url) ;
159
152
} ;
160
- self . resource . append_to_url_query ( & mut url) ;
161
153
self . mode . append_to_url_query ( & mut url) ;
162
154
self . timeout . append_to_url_query ( & mut url) ;
163
155
0 commit comments