Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b32a862
adding managed network settings updates for the april version
Dchillakuru Apr 4, 2025
9129542
bug fixes
Dchillakuru Apr 4, 2025
0a585ee
reference the post outbound rules json examples in batch outbound rul…
Dchillakuru Apr 4, 2025
1d2d6ec
fix the example reference
Dchillakuru Apr 4, 2025
19a0496
fix the additional properties issue
Dchillakuru Apr 4, 2025
6e2a302
run npx prettier locally
Dchillakuru Apr 4, 2025
05a1984
adding firewall public ip address
Dchillakuru Apr 4, 2025
3494e1d
modifying the outbound rule to outbound rule dto in sub classes
Dchillakuru Apr 4, 2025
ddc0660
adding operation id for missing apis
Dchillakuru Apr 4, 2025
99b2246
removing outbound rule dto objects
Dchillakuru Apr 4, 2025
7243cb9
adding back removed put rule path
Dchillakuru Apr 4, 2025
59ca75b
address arm requirements
Dchillakuru Apr 7, 2025
16ce6a4
revert body to parameters
Dchillakuru Apr 7, 2025
e9c3d9a
remove required parameter for patch mvnet
Dchillakuru Apr 8, 2025
3db9a7a
replacing managed network settings dto to managed network settings
Dchillakuru Apr 8, 2025
de337fb
add enable network monitor to managed network settings
Dchillakuru Apr 8, 2025
ee11f51
remove required for managed network settings basic resource
Dchillakuru Apr 9, 2025
cae44ec
removing v2 kind changes
Dchillakuru Apr 9, 2025
4fb49d6
adding the error information in examples
Dchillakuru Apr 9, 2025
8a65425
adding description for error information and enable network monitor
Dchillakuru Apr 10, 2025
9784e66
adding default value for enable network monitor
Dchillakuru Apr 10, 2025
55c5f72
ran npx prettier
Dchillakuru Apr 10, 2025
3607693
address PR comments
Dchillakuru Apr 14, 2025
9e74e5f
removing enable network monitor for stable version
Dchillakuru Apr 14, 2025
9d7fc57
adding kind description in managed network settings as well
Dchillakuru Apr 14, 2025
210e607
Merge branch 'release-machinelearningservices-Microsoft.MachineLearni…
ZhidaLiu Apr 15, 2025
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 @@ -30,10 +30,10 @@
"type": "FQDN",
"destination": "destination_endpoint",
"status": "Active",
"category": "UserDefined"
"category": "UserDefined",
"errorInformation": null
}
}
}
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,3 @@
"204": {}
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
"type": "FQDN",
"destination": "destination_of_the_fqdn_rule",
"status": "Active",
"category": "UserDefined"
"category": "UserDefined",
"errorInformation": null
}
}
}
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"type": "FQDN",
"destination": "destination_of_the_fqdn_rule",
"status": "Inactive",
"category": "Required"
"category": "Required",
"errorInformation": "Error message"
}
},
{
Expand All @@ -29,12 +30,12 @@
"type": "FQDN",
"destination": "destination_of_the_fqdn_rule",
"status": "Inactive",
"category": "Required"
"category": "Required",
"errorInformation": "Error message"
}
}
]
}
}
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,3 @@
}
}
}

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{

Check notice on line 1 in specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2025-04-01/workspaceRP.json

View workflow job for this annotation

GitHub Actions / TypeSpec Requirement

Brownfield services will soon be required to convert from OpenAPI to TypeSpec. See https://aka.ms/azsdk/typespec.
"swagger": "2.0",
"info": {
"title": "Azure Machine Learning Services",
Expand Down Expand Up @@ -2723,9 +2723,29 @@
"firewallSku": {
"description": "Firewall Sku used for FQDN Rules",
"$ref": "#/definitions/FirewallSku"
},
"managedNetworkKind": {
"description": "The Kind of the managed network. Users can switch from V1 to V2 for granular access controls, but cannot switch back to V1 once V2 is enabled.",
"$ref": "#/definitions/ManagedNetworkKind"
},
"firewallPublicIpAddress": {
"description": "Public IP address assigned to the Azure Firewall.",
"type": "string"
}
}
},
"ManagedNetworkKind": {
"description": "The Kind of the managed network. Users can switch from V1 to V2 for granular access controls, but cannot switch back to V1 once V2 is enabled.",
"enum": [
"V1",
"V2"
],
"type": "string",
"x-ms-enum": {
"name": "ManagedNetworkKind",
"modelAsString": true
}
},
"ManagedNetworkProvisionOptions": {
"description": "Managed Network Provisioning options for managed network of a machine learning workspace.",
"type": "object",
Expand Down Expand Up @@ -2787,6 +2807,24 @@
},
"type": {
"$ref": "#/definitions/RuleType"
},
"errorInformation": {
"description": "Error information about an outbound rule of a machine learning workspace if RuleStatus is failed.",
"type": "string",
"readOnly": true,
"x-ms-mutability": [
"read"
]
},
"parentRuleNames": {
"type": "array",
"items": {
"type": "string"
},
"readOnly": true,
"x-ms-mutability": [
"read"
]
}
},
"discriminator": "type"
Expand Down Expand Up @@ -2911,7 +2949,10 @@
"description": "Type of a managed network Outbound Rule of a machine learning workspace.",
"enum": [
"Inactive",
"Active"
"Active",
"Provisioning",
"Deleting",
"Failed"
],
"type": "string",
"x-ms-enum": {
Expand Down Expand Up @@ -3704,4 +3745,3 @@
}
}
}