Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changing boolean properties to string #13

Merged
merged 1 commit into from
Nov 28, 2019
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"disksToInclude" : [
{
"diskId": "disk1",
"isOSDisk": true,
"isOSDisk": "true",
"logStorageAccountId": "/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.Storage/storageAccounts/logStorageAccount1",
"logStorageAccountSasSecretName": "logStorageSas"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"properties": {
"providerSpecificDetails": {
"instanceType": "VMwareCbt",
"performShutdown": true
"performShutdown": "true"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"properties": {
"providerSpecificDetails": {
"instanceType": "VMwareCbt",
"skipCbtReset": true
"skipCbtReset": "true"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16156,7 +16156,7 @@
},
"isOSDisk": {
"description": "A value indicating whether the disk is the OS disk.",
"type": "boolean"
"type": "string"
},
"logStorageAccountId": {
"description": "The log storage account ARM Id.",
Expand Down Expand Up @@ -16262,7 +16262,7 @@
},
"performAutoResync": {
"description": "A value indicating whether auto resync is to be done.",
"type": "boolean"
"type": "string"
}
},
"x-ms-discriminator-value": "VMwareCbt"
Expand Down Expand Up @@ -16299,7 +16299,7 @@
"properties": {
"performShutdown": {
"description": "A value indicating whether VM is to be shutdown.",
"type": "boolean"
"type": "string"
}
},
"x-ms-discriminator-value": "VMwareCbt"
Expand Down Expand Up @@ -16430,7 +16430,7 @@
},
"performAutoResync": {
"description": "A value indicating whether auto resync is to be done.",
"type": "boolean"
"type": "string"
}
},
"x-ms-discriminator-value": "VMwareCbt"
Expand All @@ -16446,7 +16446,7 @@
},
"isPrimaryNic": {
"description": "A value indicating whether this is the primary NIC.",
"type": "boolean"
"type": "string"
},
"sourceIPAddress": {
"description": "The source IP address.",
Expand Down Expand Up @@ -16493,7 +16493,7 @@
},
"isSelectedForMigration": {
"description": "A value indicating whether this NIC is selected for migration.",
"type": "boolean"
"type": "string"
}
}
},
Expand All @@ -16511,7 +16511,7 @@
},
"isPrimaryNic": {
"description": "A value indicating whether this is the primary NIC.",
"type": "boolean"
"type": "string"
},
"targetSubnetName": {
"description": "Target subnet name.",
Expand All @@ -16523,7 +16523,7 @@
},
"isSelectedForMigration": {
"description": "A value indicating whether this NIC is selected for migration.",
"type": "boolean"
"type": "string"
}
}
},
Expand Down Expand Up @@ -16602,7 +16602,7 @@
},
"isOSDisk": {
"description": "A value indicating whether the disk is the OS disk.",
"type": "boolean",
"type": "string",
"readOnly": true
},
"capacityInBytes": {
Expand Down Expand Up @@ -16703,7 +16703,7 @@
"properties": {
"skipCbtReset": {
"description": "A value indicating whether CBT is to be reset.",
"type": "boolean"
"type": "string"
}
},
"x-ms-discriminator-value": "VMwareCbt"
Expand Down Expand Up @@ -16789,7 +16789,7 @@
},
"performAutoResync": {
"description": "A value indicating whether auto resync is to be done.",
"type": "boolean"
"type": "string"
}
},
"x-ms-discriminator-value": "VMwareCbt"
Expand Down