@@ -133,7 +133,7 @@ typedef enum _sai_redis_switch_attr_t
133
133
* @param[in] attr_count List of attr_count. Caller passes the number
134
134
* of attribute for each object to create.
135
135
* @param[in] attr_list List of attributes for every object.
136
- * @param[in] type Bulk operation type.
136
+ * @param[in] mode Bulk operation error handling mode
137
137
* @param[out] object_statuses List of status for every object. Caller needs to
138
138
* allocate the buffer
139
139
*
@@ -147,15 +147,15 @@ sai_status_t sai_bulk_create_route_entry(
147
147
_In_ const sai_route_entry_t * route_entry ,
148
148
_In_ const uint32_t * attr_count ,
149
149
_In_ const sai_attribute_t * const * attr_list ,
150
- _In_ sai_bulk_op_type_t type ,
150
+ _In_ sai_bulk_op_error_mode_t mode ,
151
151
_Out_ sai_status_t * object_statuses );
152
152
153
153
/**
154
154
* @brief Bulk remove route entry
155
155
*
156
156
* @param[in] object_count Number of objects to remove
157
157
* @param[in] route_entry List of objects to remove
158
- * @param[in] type Bulk operation type.
158
+ * @param[in] mode Bulk operation error handling mode
159
159
* @param[out] object_statuses List of status for every object. Caller needs to
160
160
* allocate the buffer
161
161
*
@@ -167,7 +167,7 @@ sai_status_t sai_bulk_create_route_entry(
167
167
sai_status_t sai_bulk_remove_route_entry (
168
168
_In_ uint32_t object_count ,
169
169
_In_ const sai_route_entry_t * route_entry ,
170
- _In_ sai_bulk_op_type_t type ,
170
+ _In_ sai_bulk_op_error_mode_t mode ,
171
171
_Out_ sai_status_t * object_statuses );
172
172
173
173
/**
@@ -176,7 +176,7 @@ sai_status_t sai_bulk_remove_route_entry(
176
176
* @param[in] object_count Number of objects to set attribute
177
177
* @param[in] route_entry List of objects to set attribute
178
178
* @param[in] attr_list List of attributes to set on objects, one attribute per object
179
- * @param[in] type Bulk operation type.
179
+ * @param[in] mode Bulk operation error handling mode
180
180
* @param[out] object_statuses List of status for every object. Caller needs to
181
181
* allocate the buffer
182
182
*
@@ -189,7 +189,7 @@ sai_status_t sai_bulk_set_route_entry_attribute(
189
189
_In_ uint32_t object_count ,
190
190
_In_ const sai_route_entry_t * route_entry ,
191
191
_In_ const sai_attribute_t * attr_list ,
192
- _In_ sai_bulk_op_type_t type ,
192
+ _In_ sai_bulk_op_error_mode_t mode ,
193
193
_Out_ sai_status_t * object_statuses );
194
194
195
195
/**
@@ -200,7 +200,7 @@ sai_status_t sai_bulk_set_route_entry_attribute(
200
200
* @param[in] attr_count List of attr_count. Caller passes the number
201
201
* of attribute for each object to get
202
202
* @param[inout] attr_list List of attributes to set on objects, one attribute per object
203
- * @param[in] type Bulk operation type
203
+ * @param[in] mode Bulk operation error handling mode
204
204
* @param[out] object_statuses List of status for every object. Caller needs to
205
205
* allocate the buffer
206
206
*
@@ -214,35 +214,35 @@ sai_status_t sai_bulk_get_route_entry_attribute(
214
214
_In_ const sai_route_entry_t * route_entry ,
215
215
_In_ const uint32_t * attr_count ,
216
216
_Inout_ sai_attribute_t * * attr_list ,
217
- _In_ sai_bulk_op_type_t type ,
217
+ _In_ sai_bulk_op_error_mode_t mode ,
218
218
_Out_ sai_status_t * object_statuses );
219
219
220
220
sai_status_t sai_bulk_create_next_hop_group_members (
221
221
_In_ sai_object_id_t switch_id ,
222
222
_In_ uint32_t object_count ,
223
223
_In_ const uint32_t * attr_count ,
224
224
_In_ const sai_attribute_t * const * attrs ,
225
- _In_ sai_bulk_op_type_t type ,
225
+ _In_ sai_bulk_op_error_mode_t mode ,
226
226
_Out_ sai_object_id_t * object_id ,
227
227
_Out_ sai_status_t * object_statuses );
228
228
229
229
sai_status_t sai_bulk_remove_next_hop_group_members (
230
230
_In_ uint32_t object_count ,
231
231
_In_ const sai_object_id_t * object_id ,
232
- _In_ sai_bulk_op_type_t type ,
232
+ _In_ sai_bulk_op_error_mode_t mode ,
233
233
_Out_ sai_status_t * object_statuses );
234
234
235
235
sai_status_t sai_bulk_create_fdb_entry (
236
236
_In_ uint32_t object_count ,
237
237
_In_ const sai_fdb_entry_t * fdb_entry ,
238
238
_In_ const uint32_t * attr_count ,
239
239
_In_ const sai_attribute_t * const * attr_list ,
240
- _In_ sai_bulk_op_type_t type ,
240
+ _In_ sai_bulk_op_error_mode_t mode ,
241
241
_Out_ sai_status_t * object_statuses );
242
242
243
243
sai_status_t sai_bulk_remove_fdb_entry (
244
244
_In_ uint32_t object_count ,
245
245
_In_ const sai_fdb_entry_t * fdb_entry ,
246
- _In_ sai_bulk_op_type_t type ,
246
+ _In_ sai_bulk_op_error_mode_t mode ,
247
247
_Out_ sai_status_t * object_statuses );
248
248
#endif // __SAIREDIS__
0 commit comments