Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sdk/batch/batch/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2019 Microsoft
Copyright (c) 2020 Microsoft

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion sdk/batch/batch/src/batchServiceClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class BatchServiceClient extends BatchServiceClientContext {
* @param batchUrl The base URL for all Azure Batch service requests.
* @param [options] The parameter options
*/
constructor(credentials: msRest.ServiceClientCredentials, batchUrl: string, options?: msRestAzure.AzureServiceClientOptions) {
constructor(credentials: msRest.ServiceClientCredentials, batchUrl: string, options?: msRest.AzureServiceClientOptions) {
super(credentials, batchUrl, options);
this.application = new operations.Application(this);
this.pool = new operations.Pool(this);
Expand Down
2 changes: 1 addition & 1 deletion sdk/batch/batch/src/batchServiceClientContext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class BatchServiceClientContext extends msRestAzure.AzureServiceClient {

super(credentials, options);

this.apiVersion = '2018-12-01.8.0';
this.apiVersion = '2020-03-01.11.0';
this.acceptLanguage = 'en-US';
this.longRunningOperationRetryTimeout = 30;
this.baseUri = "{batchUrl}";
Expand Down
6 changes: 3 additions & 3 deletions sdk/batch/batch/src/models/accountMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
*/

export {
AccountListNodeAgentSkusHeaders,
AccountListNodeAgentSkusResult,
AccountListPoolNodeCountsHeaders,
AccountListSupportedImagesHeaders,
AccountListSupportedImagesResult,
BatchError,
BatchErrorDetail,
ErrorMessage,
ImageInformation,
ImageReference,
NodeAgentSku,
NodeCounts,
PoolNodeCounts,
PoolNodeCountsListResult
Expand Down
3,464 changes: 1,886 additions & 1,578 deletions sdk/batch/batch/src/models/index.ts

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions sdk/batch/batch/src/models/jobMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,20 @@ export {
AuthenticationTokenSettings,
AutoPoolSpecification,
AutoUserSpecification,
AzureBlobFileSystemConfiguration,
AzureFileShareConfiguration,
BatchError,
BatchErrorDetail,
CertificateReference,
CIFSMountConfiguration,
CloudJob,
CloudJobListPreparationAndReleaseTaskStatusResult,
CloudJobListResult,
CloudServiceConfiguration,
ContainerConfiguration,
ContainerRegistry,
DataDisk,
DiskEncryptionConfiguration,
EnvironmentSetting,
ErrorMessage,
ImageReference,
Expand Down Expand Up @@ -56,16 +60,19 @@ export {
JobUpdateParameter,
LinuxUserConfiguration,
MetadataItem,
MountConfiguration,
NameValuePair,
NetworkConfiguration,
NetworkSecurityGroupRule,
NFSMountConfiguration,
OutputFile,
OutputFileBlobContainerDestination,
OutputFileDestination,
OutputFileUploadOptions,
PoolEndpointConfiguration,
PoolInformation,
PoolSpecification,
PublicIPAddressConfiguration,
ResourceFile,
StartTask,
TaskConstraints,
Expand Down
7 changes: 7 additions & 0 deletions sdk/batch/batch/src/models/jobScheduleMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,19 @@ export {
AuthenticationTokenSettings,
AutoPoolSpecification,
AutoUserSpecification,
AzureBlobFileSystemConfiguration,
AzureFileShareConfiguration,
BatchError,
BatchErrorDetail,
CertificateReference,
CIFSMountConfiguration,
CloudJobSchedule,
CloudJobScheduleListResult,
CloudServiceConfiguration,
ContainerConfiguration,
ContainerRegistry,
DataDisk,
DiskEncryptionConfiguration,
EnvironmentSetting,
ErrorMessage,
ImageReference,
Expand Down Expand Up @@ -47,15 +51,18 @@ export {
JobSpecification,
LinuxUserConfiguration,
MetadataItem,
MountConfiguration,
NetworkConfiguration,
NetworkSecurityGroupRule,
NFSMountConfiguration,
OutputFile,
OutputFileBlobContainerDestination,
OutputFileDestination,
OutputFileUploadOptions,
PoolEndpointConfiguration,
PoolInformation,
PoolSpecification,
PublicIPAddressConfiguration,
RecentJob,
ResourceFile,
Schedule,
Expand Down
Loading