Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Generated from 9e4b98fcdd0e04fe19dfed9a7af6f82529297ab0
Merge fix
  • Loading branch information
AutorestCI committed May 9, 2019
commit 0e71e0bc6a7d2bdb7ab91ce393e4c75086715d1a
5 changes: 2 additions & 3 deletions sdk/applicationinsights/arm-appinsights/lib/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1095,10 +1095,9 @@ export interface WorkItemCreateConfiguration {
*/
connectorDataConfiguration?: string;
/**
* @member {string} [validateOnly] True or false string indicating validate
* only
* @member {boolean} [validateOnly] Boolean indicating validate only
*/
validateOnly?: string;
validateOnly?: boolean;
/**
* @member {{ [propertyName: string]: string }} [workItemProperties] Custom
* work item properties
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1309,7 +1309,7 @@ export const WorkItemCreateConfiguration: msRest.CompositeMapper = {
validateOnly: {
serializedName: "ValidateOnly",
type: {
name: "String"
name: "Boolean"
}
},
workItemProperties: {
Expand Down