@@ -178,8 +178,10 @@ func (client *Client) ModifyDataPathBackendSpectraS3(request *models.ModifyDataP
178178 WithHttpVerb (HTTP_VERB_PUT ).
179179 WithPath ("/_rest_/data_path_backend" ).
180180 WithOptionalQueryParam ("activated" , networking .BoolPtrToStrPtr (request .Activated )).
181+ WithOptionalQueryParam ("allow_new_job_requests" , networking .BoolPtrToStrPtr (request .AllowNewJobRequests )).
181182 WithOptionalQueryParam ("auto_activate_timeout_in_mins" , networking .IntPtrToStrPtr (request .AutoActivateTimeoutInMins )).
182183 WithOptionalQueryParam ("auto_inspect" , networking .InterfaceToStrPtr (request .AutoInspect )).
184+ WithOptionalQueryParam ("cache_available_retry_after_in_seconds" , networking .IntPtrToStrPtr (request .CacheAvailableRetryAfterInSeconds )).
183185 WithOptionalQueryParam ("default_import_conflict_resolution_mode" , networking .InterfaceToStrPtr (request .DefaultImportConflictResolutionMode )).
184186 WithOptionalQueryParam ("default_verify_data_after_import" , networking .InterfaceToStrPtr (request .DefaultVerifyDataAfterImport )).
185187 WithOptionalQueryParam ("default_verify_data_prior_to_import" , networking .BoolPtrToStrPtr (request .DefaultVerifyDataPriorToImport )).
@@ -1986,6 +1988,7 @@ func (client *Client) ModifyTapeDriveSpectraS3(request *models.ModifyTapeDriveSp
19861988 WithHttpVerb (HTTP_VERB_PUT ).
19871989 WithPath ("/_rest_/tape_drive/" + request .TapeDriveId ).
19881990 WithOptionalQueryParam ("quiesced" , networking .InterfaceToStrPtr (request .Quiesced )).
1991+ WithOptionalQueryParam ("reserved_task_type" , networking .InterfaceToStrPtr (request .ReservedTaskType )).
19891992 Build (client .connectionInfo )
19901993
19911994 if err != nil {
@@ -2009,6 +2012,8 @@ func (client *Client) ModifyTapePartitionSpectraS3(request *models.ModifyTapePar
20092012 httpRequest , err := networking .NewHttpRequestBuilder ().
20102013 WithHttpVerb (HTTP_VERB_PUT ).
20112014 WithPath ("/_rest_/tape_partition/" + request .TapePartition ).
2015+ WithOptionalQueryParam ("minimum_read_reserved_drives" , networking .IntPtrToStrPtr (request .MinimumReadReservedDrives )).
2016+ WithOptionalQueryParam ("minimum_write_reserved_drives" , networking .IntPtrToStrPtr (request .MinimumWriteReservedDrives )).
20122017 WithOptionalQueryParam ("quiesced" , networking .InterfaceToStrPtr (request .Quiesced )).
20132018 Build (client .connectionInfo )
20142019
0 commit comments