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

Moving missed changes from 2023-11-01 packet capture swagger fix to l… #29473

Merged
merged 19 commits into from
Jun 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
3b129b6
Adds base for updating Microsoft.Network from version stable/2023-11-…
GuptaVertika Apr 16, 2024
cda6854
Updates readme
GuptaVertika Apr 16, 2024
583dff5
Updates API version in new specs and examples
GuptaVertika Apr 16, 2024
a59b7d4
Add examples for Subnet peering and v6 Subnet peering. (#28827)
saurabh83 May 14, 2024
ac89c7b
Init (#29127)
abhi7860 May 21, 2024
117cbc9
Adding the new response code to the 2024-01-01 version release of swa…
arsheen May 21, 2024
8c2b109
Added NoHealthyBackendsBehavior (#28868)
EugenioPena May 30, 2024
c37ec24
VirtualNetworkGatewayConnection using key vault for authentication. (…
daweiwang-microsoft May 31, 2024
e907ad8
added networkidentifier under vnet->subet->serviceendpoint (#29292)
bhupeshbhatt1985 Jun 7, 2024
7e2f093
resolving conflict (#29343)
GuptaVertika Jun 9, 2024
fff6b9a
Fix for PR VirtualNetworkGatewayConnection using key vault for authen…
Khushboo-Baheti Jun 9, 2024
c3086a2
Adding GET operaton for Network Virtual Appliance Inbound Secuirty Ru…
ashutmi Jun 10, 2024
9834099
Moving missed changes from 2023-11-01 packet capture swagger fix to l…
nikhilpadhye1 Jun 17, 2024
3a6c7d9
Add CrossConnection Name as an optional query parameter in List Expre…
jianzhao1992 Jun 18, 2024
73d9086
initial changes (#29235)
nimaller Jun 18, 2024
b490d38
Merge branch 'release-network-Microsoft.Network-2024-01-01' into pack…
nikhilpadhye1 Jun 18, 2024
153ac53
Merge branch 'main' into packetCaptureFixToLatestAPI
nikhilpadhye1 Jun 20, 2024
b30f488
adding supression for the breaking change in azure-sdk-for-go
nikhilpadhye1 Jun 21, 2024
6f7ccec
adding correct package for this supression
nikhilpadhye1 Jun 21, 2024
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 @@ -1217,7 +1217,7 @@
},
"description": "List of SNAT IP Prefixes learnt by firewall to not SNAT"
},
"FirewallPacketCaptureParametersFormat": {
"FirewallPacketCaptureParameters": {
"type": "object",
"properties": {
"durationInSeconds": {
Expand Down Expand Up @@ -1267,7 +1267,7 @@
"x-ms-identifiers": []
}
},
"description": "Packet capture parameters on azure firewall."
"description": "Azure Firewall Packet Capture Parameters."
},
"AzureFirewallPacketCaptureFlags": {
"type": "object",
Expand Down Expand Up @@ -1321,22 +1321,6 @@
}
},
"description": "Group of src/dest ips and ports to be captured."
},
"FirewallPacketCaptureParameters": {
"type": "object",
"properties": {
"properties": {
"x-ms-client-flatten": true,
"$ref": "#/definitions/FirewallPacketCaptureParametersFormat",
"description": "Properties of the azure firewall."
}
},
"allOf": [
{
"$ref": "./network.json#/definitions/SubResource"
}
],
"description": "Azure Firewall Packet Capture Parameters resource."
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,47 +5,45 @@
"resourceGroupName": "rg1",
"azureFirewallName": "azureFirewall1",
"parameters": {
"properties": {
"durationInSeconds": 300,
"numberOfPacketsToCapture": 5000,
"sasUrl": "someSASURL",
"fileName": "azureFirewallPacketCapture",
"protocol": "Any",
"flags": [
{
"type": "syn"
},
{
"type": "fin"
}
],
"filters": [
{
"sources": [
"20.1.1.0"
],
"destinations": [
"20.1.2.0"
],
"destinationPorts": [
"4500"
]
},
{
"sources": [
"10.1.1.0",
"10.1.1.1"
],
"destinations": [
"10.1.2.0"
],
"destinationPorts": [
"123",
"80"
]
}
]
}
"durationInSeconds": 300,
"numberOfPacketsToCapture": 5000,
"sasUrl": "someSASURL",
"fileName": "azureFirewallPacketCapture",
"protocol": "Any",
"flags": [
{
"type": "syn"
},
{
"type": "fin"
}
],
"filters": [
{
"sources": [
"20.1.1.0"
],
"destinations": [
"20.1.2.0"
],
"destinationPorts": [
"4500"
]
},
{
"sources": [
"10.1.1.0",
"10.1.1.1"
],
"destinations": [
"10.1.2.0"
],
"destinationPorts": [
"123",
"80"
]
}
]
}
},
"responses": {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
suppressions:
azure-sdk-for-go:
- package: 'sdk/resourcemanager/network/armnetwork'
breaking-changes:
- Struct `FirewallPacketCaptureParametersFormat` has been removed
- Field `ID`, `Properties` of struct `FirewallPacketCaptureParameters` has been removed