Skip to content

Commit b05bece

Browse files
author
SDK Automation
committed
Update from master
1 parent 9a5f84b commit b05bece

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

sdk/operationalinsights/arm-operationalinsights/src/models/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ export interface DataSource extends ProxyResource {
180180
/**
181181
* The ETag of the data source.
182182
*/
183-
eTag?: string;
183+
etag?: string;
184184
/**
185185
* Possible values include: 'WindowsEvent', 'WindowsPerformanceCounter', 'IISLogs',
186186
* 'LinuxSyslog', 'LinuxSyslogCollection', 'LinuxPerformanceObject',
@@ -793,7 +793,7 @@ export interface SavedSearch extends ProxyResource {
793793
/**
794794
* The ETag of the saved search.
795795
*/
796-
eTag?: string;
796+
etag?: string;
797797
/**
798798
* The category of the saved search. This helps the user to find a saved search faster.
799799
*/

sdk/operationalinsights/arm-operationalinsights/src/models/mappers.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -284,8 +284,8 @@ export const DataSource: msRest.CompositeMapper = {
284284
name: "Object"
285285
}
286286
},
287-
eTag: {
288-
serializedName: "eTag",
287+
etag: {
288+
serializedName: "etag",
289289
type: {
290290
name: "String"
291291
}
@@ -1271,8 +1271,8 @@ export const SavedSearch: msRest.CompositeMapper = {
12711271
className: "SavedSearch",
12721272
modelProperties: {
12731273
...ProxyResource.type.modelProperties,
1274-
eTag: {
1275-
serializedName: "eTag",
1274+
etag: {
1275+
serializedName: "etag",
12761276
type: {
12771277
name: "String"
12781278
}

sdk/operationalinsights/arm-operationalinsights/src/operationalInsightsManagementClientContext.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export class OperationalInsightsManagementClientContext extends msRestAzure.Azur
3737
if (!options) {
3838
options = {};
3939
}
40-
if (!options.userAgent) {
40+
if(!options.userAgent) {
4141
const defaultUserAgent = msRestAzure.getDefaultUserAgentValue();
4242
options.userAgent = `${packageName}/${packageVersion} ${defaultUserAgent}`;
4343
}
@@ -52,10 +52,10 @@ export class OperationalInsightsManagementClientContext extends msRestAzure.Azur
5252
this.credentials = credentials;
5353
this.subscriptionId = subscriptionId;
5454

55-
if (options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
55+
if(options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
5656
this.acceptLanguage = options.acceptLanguage;
5757
}
58-
if (options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
58+
if(options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
5959
this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout;
6060
}
6161
}

0 commit comments

Comments
 (0)