Skip to content

Commit 5933df6

Browse files
committed
name update
1 parent b97665c commit 5933df6

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

sdk/batch/azure-batch/azure/batch/_operations/_patch.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1189,7 +1189,7 @@ def create_tasks(
11891189
return _models.BatchCreateTaskCollectionResult(result_values=submitted_tasks)
11901190

11911191
@distributed_trace
1192-
def get_node_file(
1192+
def download_node_file(
11931193
self,
11941194
pool_id: str,
11951195
node_id: str,
@@ -1246,7 +1246,7 @@ def get_node_file(
12461246
}
12471247
)
12481248
kwargs["stream"] = True
1249-
return super().get_node_file(*args, **kwargs)
1249+
return super().download_node_file(*args, **kwargs)
12501250

12511251
@distributed_trace
12521252
def get_node_file_properties(

sdk/batch/azure-batch/azure/batch/aio/_operations/_patch.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1373,7 +1373,7 @@ def cls(_pipeline_response, _json_response, headers):
13731373
return get_response
13741374

13751375
@distributed_trace
1376-
async def get_task_file(
1376+
async def download_task_file(
13771377
self,
13781378
job_id: str,
13791379
task_id: str,
@@ -1431,7 +1431,7 @@ async def get_task_file(
14311431
}
14321432
)
14331433
kwargs["stream"] = True
1434-
return await super().get_task_file(*args, **kwargs)
1434+
return await super().download_task_file(*args, **kwargs)
14351435

14361436

14371437
class _TaskWorkflowManager:

0 commit comments

Comments
 (0)