Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.

Commit d93e212

Browse files
authored
Merge pull request #2281 from annatisch/batch-sdk-updates
Batch sdk test updates
2 parents bddcb02 + 5fc29db commit d93e212

File tree

121 files changed

+1400
-869
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+1400
-869
lines changed

lib/services/batch/lib/models/accountListNodeAgentSkusOptions.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
class AccountListNodeAgentSkusOptions {
1818
/**
1919
* Create a AccountListNodeAgentSkusOptions.
20-
* @member {string} [filter] An OData $filter clause.
20+
* @member {string} [filter] An OData $filter clause. For more information on
21+
* constructing this filter, see
22+
* https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-node-agent-skus.
2123
* @member {number} [maxResults] The maximum number of items to return in the
2224
* response. A maximum of 1000 results will be returned. Default value: 1000
2325
* .

lib/services/batch/lib/models/certificateListOptions.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
class CertificateListOptions {
1818
/**
1919
* Create a CertificateListOptions.
20-
* @member {string} [filter] An OData $filter clause.
20+
* @member {string} [filter] An OData $filter clause. For more information on
21+
* constructing this filter, see
22+
* https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-certificates.
2123
* @member {string} [select] An OData $select clause.
2224
* @member {number} [maxResults] The maximum number of items to return in the
2325
* response. A maximum of 1000 certificates can be returned. Default value:

lib/services/batch/lib/models/computeNodeListOptions.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
class ComputeNodeListOptions {
1818
/**
1919
* Create a ComputeNodeListOptions.
20-
* @member {string} [filter] An OData $filter clause..
20+
* @member {string} [filter] An OData $filter clause. For more information on
21+
* constructing this filter, see
22+
* https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-nodes-in-a-pool.
2123
* @member {string} [select] An OData $select clause.
2224
* @member {number} [maxResults] The maximum number of items to return in the
2325
* response. A maximum of 1000 nodes can be returned. Default value: 1000 .

lib/services/batch/lib/models/fileListFromComputeNodeOptions.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
class FileListFromComputeNodeOptions {
1818
/**
1919
* Create a FileListFromComputeNodeOptions.
20-
* @member {string} [filter] An OData $filter clause.
20+
* @member {string} [filter] An OData $filter clause. For more information on
21+
* constructing this filter, see
22+
* https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-compute-node-files.
2123
* @member {number} [maxResults] The maximum number of items to return in the
2224
* response. A maximum of 1000 files can be returned. Default value: 1000 .
2325
* @member {number} [timeout] The maximum time that the server can spend

lib/services/batch/lib/models/fileListFromTaskOptions.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
class FileListFromTaskOptions {
1818
/**
1919
* Create a FileListFromTaskOptions.
20-
* @member {string} [filter] An OData $filter clause.
20+
* @member {string} [filter] An OData $filter clause. For more information on
21+
* constructing this filter, see
22+
* https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-task-files.
2123
* @member {number} [maxResults] The maximum number of items to return in the
2224
* response. A maximum of 1000 files can be returned. Default value: 1000 .
2325
* @member {number} [timeout] The maximum time that the server can spend

lib/services/batch/lib/models/index.d.ts

Lines changed: 36 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -12406,9 +12406,9 @@ export interface ApplicationGetOptions {
1240612406
* must be at least two hours before the current time. If not specified this
1240712407
* defaults to the end time of the last aggregation interval currently
1240812408
* available.
12409-
* @member {string} [filter] An OData $filter clause. If this is not specified
12410-
* the response includes all pools that existed in the account in the time
12411-
* range of the returned aggregation intervals.
12409+
* @member {string} [filter] An OData $filter clause. For more information on
12410+
* constructing this filter, see
12411+
* https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-account-usage-metrics.
1241212412
* @member {number} [maxResults] The maximum number of items to return in the
1241312413
* response. A maximum of 1000 results will be returned. Default value: 1000 .
1241412414
* @member {number} [timeout] The maximum time that the server can spend
@@ -12490,7 +12490,9 @@ export interface PoolAddOptions {
1249012490
* @constructor
1249112491
* Additional parameters for list operation.
1249212492
*
12493-
* @member {string} [filter] An OData $filter clause.
12493+
* @member {string} [filter] An OData $filter clause. For more information on
12494+
* constructing this filter, see
12495+
* https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-pools.
1249412496
* @member {string} [select] An OData $select clause.
1249512497
* @member {string} [expand] An OData $expand clause.
1249612498
* @member {number} [maxResults] The maximum number of items to return in the
@@ -13008,7 +13010,9 @@ export interface PoolRemoveNodesOptions {
1300813010
* @constructor
1300913011
* Additional parameters for listNodeAgentSkus operation.
1301013012
*
13011-
* @member {string} [filter] An OData $filter clause.
13013+
* @member {string} [filter] An OData $filter clause. For more information on
13014+
* constructing this filter, see
13015+
* https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-node-agent-skus.
1301213016
* @member {number} [maxResults] The maximum number of items to return in the
1301313017
* response. A maximum of 1000 results will be returned. Default value: 1000 .
1301413018
* @member {number} [timeout] The maximum time that the server can spend
@@ -13407,7 +13411,9 @@ export interface JobAddOptions {
1340713411
* @constructor
1340813412
* Additional parameters for list operation.
1340913413
*
13410-
* @member {string} [filter] An OData $filter clause.
13414+
* @member {string} [filter] An OData $filter clause. For more information on
13415+
* constructing this filter, see
13416+
* https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-jobs.
1341113417
* @member {string} [select] An OData $select clause.
1341213418
* @member {string} [expand] An OData $expand clause.
1341313419
* @member {number} [maxResults] The maximum number of items to return in the
@@ -13441,7 +13447,9 @@ export interface JobListOptions {
1344113447
* @constructor
1344213448
* Additional parameters for listFromJobSchedule operation.
1344313449
*
13444-
* @member {string} [filter] An OData $filter clause.
13450+
* @member {string} [filter] An OData $filter clause. For more information on
13451+
* constructing this filter, see
13452+
* https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-jobs-in-a-job-schedule.
1344513453
* @member {string} [select] An OData $select clause.
1344613454
* @member {string} [expand] An OData $expand clause.
1344713455
* @member {number} [maxResults] The maximum number of items to return in the
@@ -13475,9 +13483,9 @@ export interface JobListFromJobScheduleOptions {
1347513483
* @constructor
1347613484
* Additional parameters for listPreparationAndReleaseTaskStatus operation.
1347713485
*
13478-
* @member {string} [filter] An OData $filter clause. To get the status of the
13479-
* Job Preparation and Job Release tasks on a specific compute node, use
13480-
* "nodeId eq '{desired-node-id}'"
13486+
* @member {string} [filter] An OData $filter clause. For more information on
13487+
* constructing this filter, see
13488+
* https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-job-preparation-and-release-status.
1348113489
* @member {string} [select] An OData $select clause.
1348213490
* @member {number} [maxResults] The maximum number of items to return in the
1348313491
* response. A maximum of 1000 tasks can be returned. Default value: 1000 .
@@ -13559,7 +13567,9 @@ export interface CertificateAddOptions {
1355913567
* @constructor
1356013568
* Additional parameters for list operation.
1356113569
*
13562-
* @member {string} [filter] An OData $filter clause.
13570+
* @member {string} [filter] An OData $filter clause. For more information on
13571+
* constructing this filter, see
13572+
* https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-certificates.
1356313573
* @member {string} [select] An OData $select clause.
1356413574
* @member {number} [maxResults] The maximum number of items to return in the
1356513575
* response. A maximum of 1000 certificates can be returned. Default value:
@@ -13865,7 +13875,9 @@ export interface FileGetPropertiesFromComputeNodeOptions {
1386513875
* @constructor
1386613876
* Additional parameters for listFromTask operation.
1386713877
*
13868-
* @member {string} [filter] An OData $filter clause.
13878+
* @member {string} [filter] An OData $filter clause. For more information on
13879+
* constructing this filter, see
13880+
* https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-task-files.
1386913881
* @member {number} [maxResults] The maximum number of items to return in the
1387013882
* response. A maximum of 1000 files can be returned. Default value: 1000 .
1387113883
* @member {number} [timeout] The maximum time that the server can spend
@@ -13895,7 +13907,9 @@ export interface FileListFromTaskOptions {
1389513907
* @constructor
1389613908
* Additional parameters for listFromComputeNode operation.
1389713909
*
13898-
* @member {string} [filter] An OData $filter clause.
13910+
* @member {string} [filter] An OData $filter clause. For more information on
13911+
* constructing this filter, see
13912+
* https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-compute-node-files.
1389913913
* @member {number} [maxResults] The maximum number of items to return in the
1390013914
* response. A maximum of 1000 files can be returned. Default value: 1000 .
1390113915
* @member {number} [timeout] The maximum time that the server can spend
@@ -14314,7 +14328,9 @@ export interface JobScheduleAddOptions {
1431414328
* @constructor
1431514329
* Additional parameters for list operation.
1431614330
*
14317-
* @member {string} [filter] An OData $filter clause.
14331+
* @member {string} [filter] An OData $filter clause. For more information on
14332+
* constructing this filter, see
14333+
* https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-job-schedules.
1431814334
* @member {string} [select] An OData $select clause.
1431914335
* @member {string} [expand] An OData $expand clause.
1432014336
* @member {number} [maxResults] The maximum number of items to return in the
@@ -14374,7 +14390,9 @@ export interface TaskAddOptions {
1437414390
* @constructor
1437514391
* Additional parameters for list operation.
1437614392
*
14377-
* @member {string} [filter] An OData $filter clause.
14393+
* @member {string} [filter] An OData $filter clause. For more information on
14394+
* constructing this filter, see
14395+
* https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-tasks.
1437814396
* @member {string} [select] An OData $select clause.
1437914397
* @member {string} [expand] An OData $expand clause.
1438014398
* @member {number} [maxResults] The maximum number of items to return in the
@@ -14941,7 +14959,9 @@ export interface ComputeNodeGetRemoteDesktopOptions {
1494114959
* @constructor
1494214960
* Additional parameters for list operation.
1494314961
*
14944-
* @member {string} [filter] An OData $filter clause..
14962+
* @member {string} [filter] An OData $filter clause. For more information on
14963+
* constructing this filter, see
14964+
* https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-nodes-in-a-pool.
1494514965
* @member {string} [select] An OData $select clause.
1494614966
* @member {number} [maxResults] The maximum number of items to return in the
1494714967
* response. A maximum of 1000 nodes can be returned. Default value: 1000 .

lib/services/batch/lib/models/jobListFromJobScheduleOptions.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
class JobListFromJobScheduleOptions {
1818
/**
1919
* Create a JobListFromJobScheduleOptions.
20-
* @member {string} [filter] An OData $filter clause.
20+
* @member {string} [filter] An OData $filter clause. For more information on
21+
* constructing this filter, see
22+
* https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-jobs-in-a-job-schedule.
2123
* @member {string} [select] An OData $select clause.
2224
* @member {string} [expand] An OData $expand clause.
2325
* @member {number} [maxResults] The maximum number of items to return in the

lib/services/batch/lib/models/jobListOptions.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
class JobListOptions {
1818
/**
1919
* Create a JobListOptions.
20-
* @member {string} [filter] An OData $filter clause.
20+
* @member {string} [filter] An OData $filter clause. For more information on
21+
* constructing this filter, see
22+
* https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-jobs.
2123
* @member {string} [select] An OData $select clause.
2224
* @member {string} [expand] An OData $expand clause.
2325
* @member {number} [maxResults] The maximum number of items to return in the

lib/services/batch/lib/models/jobListPreparationAndReleaseTaskStatusOptions.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
class JobListPreparationAndReleaseTaskStatusOptions {
1818
/**
1919
* Create a JobListPreparationAndReleaseTaskStatusOptions.
20-
* @member {string} [filter] An OData $filter clause. To get the status of
21-
* the Job Preparation and Job Release tasks on a specific compute node, use
22-
* "nodeId eq '{desired-node-id}'"
20+
* @member {string} [filter] An OData $filter clause. For more information on
21+
* constructing this filter, see
22+
* https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-job-preparation-and-release-status.
2323
* @member {string} [select] An OData $select clause.
2424
* @member {number} [maxResults] The maximum number of items to return in the
2525
* response. A maximum of 1000 tasks can be returned. Default value: 1000 .

lib/services/batch/lib/models/jobScheduleListOptions.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
class JobScheduleListOptions {
1818
/**
1919
* Create a JobScheduleListOptions.
20-
* @member {string} [filter] An OData $filter clause.
20+
* @member {string} [filter] An OData $filter clause. For more information on
21+
* constructing this filter, see
22+
* https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-job-schedules.
2123
* @member {string} [select] An OData $select clause.
2224
* @member {string} [expand] An OData $expand clause.
2325
* @member {number} [maxResults] The maximum number of items to return in the

0 commit comments

Comments
 (0)