Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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 @@ -13,6 +13,9 @@
"guestConfiguration": {
"name": "WhitelistedApplication",
"version": "1.*",
"contentUri": "https://thisisfake/pacakge",
"contentHash": "123contenthash",
"assignmentType": "ApplyAndAutoCorrect",
"configurationParameter": [
{
"name": "[InstalledApplication]bwhitelistedapp;Name",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
"guestConfiguration": {
"name": "WhitelistedApplication",
"version": "1.*",
"contentUri": "https://thisisfake/pacakge",
"contentHash": "123contenthash",
"assignmentType": "ApplyAndAutoCorrect",
"configurationParameter": [
{
"name": "[InstalledApplication]bwhitelistedapp;Name",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -802,16 +802,28 @@
"type": "string",
"description": "Version of the guest configuration."
},
"contentUri": {
"readOnly": true,
"contentUri": {
"type": "string",
"description": "Uri of the storage where guest configuration package is uploaded."
},
"contentHash": {
"readOnly": true,
"contentHash": {
"type": "string",
"description": "Combined hash of the guest configuration package and configuration parameters."
},
"assignmentType": {
"type": "string",
"description": "Specifies the assignment type and execution of the configuration. Possible values are Audit, DeployAndAutoCorrect, ApplyAndAutoCorrect and ApplyAndMonitor.",
"x-ms-enum": {
"name": "assignmentType",
"modelAsString": true
},
"enum": [
"Audit",
"DeployAndAutoCorrect",
"ApplyAndAutoCorrect",
"ApplyAndMonitor"
]
},
"configurationParameter": {
"type": "array",
"items": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
"guestConfiguration": {
"name": "WhitelistedApplication",
"version": "1.*",
"contentUri": "https://thisisfake/pacakge",
"contentHash": "123contenthash",
"assignmentType": "ApplyAndAutoCorrect",
"configurationParameter": [
{
"name": "[InstalledApplication]bwhitelistedapp;Name",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
"guestConfiguration": {
"name": "WhitelistedApplication",
"version": "1.*",
"contentUri": "https://thisisfake/pacakge",
"contentHash": "123contenthash",
"assignmentType": "ApplyAndAutoCorrect",
"configurationParameter": [
{
"name": "[InstalledApplication]bwhitelistedapp;Name",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -802,16 +802,28 @@
"type": "string",
"description": "Version of the guest configuration."
},
"contentUri": {
"readOnly": true,
"contentUri": {
"type": "string",
"description": "Uri of the storage where guest configuration package is uploaded."
},
"contentHash": {
"readOnly": true,
"contentHash": {
"type": "string",
"description": "Combined hash of the guest configuration package and configuration parameters."
},
"assignmentType": {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If this assignmentType property is same with the configurationMode property, does it mean the configurationMode property needs to be removed in this PR?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We never used configurationMode.
But since we already have it in swagger spec - we cannot delete it. BreakingChange team wont allow us to remove it.
I will work with my team and come up with a plan to remove the configurationMode section. Right now it wont harm it.

"type": "string",
"description": "Specifies the assignment type and execution of the configuration. Possible values are Audit, DeployAndAutoCorrect, ApplyAndAutoCorrect and ApplyAndMonitor.",
"x-ms-enum": {
"name": "assignmentType",
"modelAsString": true
},
"enum": [
"Audit",
"DeployAndAutoCorrect",
"ApplyAndAutoCorrect",
"ApplyAndMonitor"
]
},
"configurationParameter": {
"type": "array",
"items": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
"guestConfiguration": {
"name": "WhitelistedApplication",
"version": "1.*",
"contentUri": "https://thisisfake/pacakge",
"contentHash": "123contenthash",
"assignmentType": "ApplyAndAutoCorrect",
"configurationParameter": [
{
"name": "[InstalledApplication]bwhitelistedapp;Name",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
"guestConfiguration": {
"name": "WhitelistedApplication",
"version": "1.*",
"contentUri": "https://thisisfake/pacakge",
"contentHash": "123contenthash",
"assignmentType": "ApplyAndAutoCorrect",
"configurationParameter": [
{
"name": "[InstalledApplication]bwhitelistedapp;Name",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1087,16 +1087,28 @@
"type": "string",
"description": "Version of the guest configuration."
},
"contentUri": {
"readOnly": true,
"contentUri": {
"type": "string",
"description": "Uri of the storage where guest configuration package is uploaded."
},
"contentHash": {
"readOnly": true,
"contentHash": {
"type": "string",
"description": "Combined hash of the guest configuration package and configuration parameters."
},
"assignmentType": {
"type": "string",
"description": "Specifies the assignment type and execution of the configuration. Possible values are Audit, DeployAndAutoCorrect, ApplyAndAutoCorrect and ApplyAndMonitor.",
"x-ms-enum": {
"name": "assignmentType",
"modelAsString": true
},
"enum": [
"Audit",
"DeployAndAutoCorrect",
"ApplyAndAutoCorrect",
"ApplyAndMonitor"
]
},
"configurationParameter": {
"type": "array",
"items": {
Expand Down