-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add API specs of the base version * version update from the base version * Add service tags property and update Readme --------- Co-authored-by: Kaushal Kumar <[email protected]>
- Loading branch information
1 parent
9fa791b
commit 617bbe0
Showing
61 changed files
with
7,033 additions
and
0 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
...Microsoft.Network/preview/2023-07-01-preview/examples/NetworkSecurityPerimeterDelete.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"title": "Delete Network Security Perimeter", | ||
"parameters": { | ||
"api-version": "2023-07-01-preview", | ||
"subscriptionId": "subId", | ||
"resourceGroupName": "rg1", | ||
"networkSecurityPerimeterName": "testNSP1" | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"204": {} | ||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
...er/Microsoft.Network/preview/2023-07-01-preview/examples/NetworkSecurityPerimeterGet.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"title": "Get Network Security Perimeter", | ||
"parameters": { | ||
"api-version": "2023-07-01-preview", | ||
"subscriptionId": "subId", | ||
"resourceGroupName": "rg1", | ||
"networkSecurityPerimeterName": "nsp1" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"name": "nsp1", | ||
"id": "/subscriptions/subId/resourceGroup/rg1/providers/Microsoft.Network/networkSecurityPerimeters/nsp1", | ||
"type": "Microsoft.Network/networkSecurityPerimeters", | ||
"tags": {}, | ||
"location": "East US 2 EUAP", | ||
"properties": { | ||
"perimeterGuid": "guid", | ||
"provisioningState": "Succeeded" | ||
} | ||
} | ||
} | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
...r/Microsoft.Network/preview/2023-07-01-preview/examples/NetworkSecurityPerimeterList.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"title": "List Network Security Perimeter", | ||
"parameters": { | ||
"api-version": "2023-07-01-preview", | ||
"subscriptionId": "subId", | ||
"resourceGroupName": "rg1" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"name": "testNSP1", | ||
"id": "/subscriptions/subId/resourceGroup/rg1/providers/Microsoft.Network/networkSecurityPerimeters/testNSP1", | ||
"type": "Microsoft.Network/networkSecurityPerimeters", | ||
"tags": {}, | ||
"location": "East US 2 EUAP", | ||
"properties": { | ||
"perimeterGuid": "guid", | ||
"provisioningState": "Succeeded" | ||
} | ||
}, | ||
{ | ||
"name": "testNSP2", | ||
"id": "/subscriptions/subId/resourceGroup/rg1/providers/Microsoft.Network/networkSecurityPerimeters/testNSP2", | ||
"type": "Microsoft.Network/networkSecurityPerimeters", | ||
"tags": {}, | ||
"location": "East US 2 EUAP", | ||
"properties": { | ||
"perimeterGuid": "guid", | ||
"provisioningState": "Succeeded" | ||
} | ||
} | ||
], | ||
"nextLink": "{baseurl}/subscriptions/subId/resourceGroup/rg1/providers/Microsoft.Network/networkSecurityPerimeters?api-version=2023-07-01-preview&$skipToken=10" | ||
} | ||
} | ||
} | ||
} |
38 changes: 38 additions & 0 deletions
38
...icrosoft.Network/preview/2023-07-01-preview/examples/NetworkSecurityPerimeterListAll.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"title": "List all the Network Security Perimeters in a Subscription", | ||
"parameters": { | ||
"api-version": "2023-07-01-preview", | ||
"subscriptionId": "subId" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"name": "testNSP1", | ||
"id": "/subscriptions/subId/resourceGroup/rg1/providers/Microsoft.Network/networkSecurityPerimeters/testNSP1", | ||
"type": "Microsoft.Network/networkSecurityPerimeters", | ||
"tags": {}, | ||
"location": "East US 2 EUAP", | ||
"properties": { | ||
"perimeterGuid": "guid", | ||
"provisioningState": "Succeeded" | ||
} | ||
}, | ||
{ | ||
"name": "testNSP2", | ||
"id": "/subscriptions/subId/resourceGroup/rg1/providers/Microsoft.Network/networkSecurityPerimeters/testNSP2", | ||
"type": "Microsoft.Network/networkSecurityPerimeters", | ||
"tags": {}, | ||
"location": "East US 2 EUAP", | ||
"properties": { | ||
"perimeterGuid": "guid", | ||
"provisioningState": "Succeeded" | ||
} | ||
} | ||
], | ||
"nextLink": "{baseurl}/subscriptions/subId/providers/Microsoft.Network/networkSecurityPerimeters?api-version=2023-07-01-preview&$skipToken=10" | ||
} | ||
} | ||
} | ||
} |
31 changes: 31 additions & 0 deletions
31
.../Microsoft.Network/preview/2023-07-01-preview/examples/NetworkSecurityPerimeterPatch.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"title": "Patch Network Security Perimeter", | ||
"parameters": { | ||
"api-version": "2023-07-01-preview", | ||
"subscriptionId": "subId", | ||
"resourceGroupName": "rg1", | ||
"networkSecurityPerimeterName": "nsp1", | ||
"parameters": { | ||
"tags": { | ||
"description": "nsp1" | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"name": "TestNetworkSecurityPerimeter", | ||
"id": "/subscriptions/subId/resourceGroup/rg1/providers/Microsoft.Network/networkSecurityPerimeters/TestNetworkSecurityPerimeter", | ||
"type": "Microsoft.Network/networkSecurityPerimeters", | ||
"tags": { | ||
"description": "nsp1" | ||
}, | ||
"location": "East US 2 EUAP", | ||
"properties": { | ||
"perimeterGuid": "guid", | ||
"provisioningState": "Succeeded" | ||
} | ||
} | ||
} | ||
} | ||
} |
40 changes: 40 additions & 0 deletions
40
...er/Microsoft.Network/preview/2023-07-01-preview/examples/NetworkSecurityPerimeterPut.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"title": "Create/Update Network Security Perimeter", | ||
"parameters": { | ||
"api-version": "2023-07-01-preview", | ||
"subscriptionId": "subId", | ||
"resourceGroupName": "rg1", | ||
"networkSecurityPerimeterName": "nsp1", | ||
"parameters": { | ||
"properties": {} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"name": "TestNetworkSecurityPerimeter", | ||
"id": "/subscriptions/subId/resourceGroup/rg1/providers/Microsoft.Network/networkSecurityPerimeters/TestNetworkSecurityPerimeter", | ||
"type": "Microsoft.Network/networkSecurityPerimeters", | ||
"tags": {}, | ||
"location": "East US 2 EUAP", | ||
"properties": { | ||
"perimeterGuid": "guid", | ||
"provisioningState": "Succeeded" | ||
} | ||
} | ||
}, | ||
"201": { | ||
"body": { | ||
"name": "TestNetworkSecurityPerimeter", | ||
"id": "/subscriptions/subId/resourceGroup/rg1/providers/Microsoft.Network/networkSecurityPerimeters/TestNetworkSecurityPerimeter", | ||
"type": "Microsoft.Network/networkSecurityPerimeters", | ||
"tags": {}, | ||
"location": "East US 2 EUAP", | ||
"properties": { | ||
"perimeterGuid": "guid", | ||
"provisioningState": "Succeeded" | ||
} | ||
} | ||
} | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
...ce-manager/Microsoft.Network/preview/2023-07-01-preview/examples/NspAccessRuleDelete.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"title": "Delete NSP access rule", | ||
"parameters": { | ||
"api-version": "2023-07-01-preview", | ||
"subscriptionId": "subId", | ||
"resourceGroupName": "rg1", | ||
"networkSecurityPerimeterName": "nsp1", | ||
"profileName": "profile1", | ||
"accessRuleName": "accessRule1" | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"204": {} | ||
} | ||
} |
33 changes: 33 additions & 0 deletions
33
...ource-manager/Microsoft.Network/preview/2023-07-01-preview/examples/NspAccessRuleGet.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"title": "Get NSP Access Rule", | ||
"parameters": { | ||
"api-version": "2023-07-01-preview", | ||
"subscriptionId": "subId", | ||
"resourceGroupName": "rg1", | ||
"networkSecurityPerimeterName": "nsp1", | ||
"profileName": "profile1", | ||
"accessRuleName": "accessRule1" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"name": "accessRule1", | ||
"id": "/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityPerimeters/nsp1/profiles/profile1/accessRules/accessRule1", | ||
"type": "Microsoft.Network/networkSecurityPerimeters/profiles/accessRules", | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"direction": "Outbound", | ||
"addressPrefixes": [], | ||
"fullyQualifiedDomainNames": [ | ||
"paasrp1.contoso.org", | ||
"paasrp2.contoso.org" | ||
], | ||
"subscriptions": [], | ||
"networkSecurityPerimeters": [], | ||
"emailAddresses": [], | ||
"phoneNumbers": [] | ||
} | ||
} | ||
} | ||
} | ||
} |
55 changes: 55 additions & 0 deletions
55
...urce-manager/Microsoft.Network/preview/2023-07-01-preview/examples/NspAccessRuleList.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
{ | ||
"title": "List NSP Access Rules", | ||
"parameters": { | ||
"api-version": "2023-07-01-preview", | ||
"subscriptionId": "subId", | ||
"resourceGroupName": "rg1", | ||
"networkSecurityPerimeterName": "nsp1", | ||
"profileName": "profile1" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"name": "accessRule1", | ||
"id": "/subscriptions/rg1/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityPerimeters/nsp1/profiles/profile1/accessRules/accessRule1", | ||
"type": "Microsoft.Network/networkSecurityPerimeters/profiles/accessRules", | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"direction": "Inbound", | ||
"addressPrefixes": [ | ||
"10.11.0.0/16", | ||
"10.10.1.0/24" | ||
], | ||
"fullyQualifiedDomainNames": [], | ||
"subscriptions": [], | ||
"networkSecurityPerimeters": [], | ||
"emailAddresses": [], | ||
"phoneNumbers": [] | ||
} | ||
}, | ||
{ | ||
"name": "accessRule2", | ||
"id": "/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityPerimeters/nsp1/profiles/profile1/accessRules/accessRule2", | ||
"type": "Microsoft.Network/networkSecurityPerimeters/profiles/accessRules", | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"direction": "Outbound", | ||
"addressPrefixes": [], | ||
"fullyQualifiedDomainNames": [ | ||
"paasrp1.contoso.org", | ||
"paasrp2.contoso.org" | ||
], | ||
"subscriptions": [], | ||
"networkSecurityPerimeters": [], | ||
"emailAddresses": [], | ||
"phoneNumbers": [] | ||
} | ||
} | ||
], | ||
"nextLink": "{baseurl}/subscriptions/subId/resourceGroup/rg1/providers/Microsoft.Network/networkSecurityPerimeters/nsp1/profiles/profile1/accessRules?api-version=2023-07-01-preview&$skipToken=10" | ||
} | ||
} | ||
} | ||
} |
62 changes: 62 additions & 0 deletions
62
...ource-manager/Microsoft.Network/preview/2023-07-01-preview/examples/NspAccessRulePut.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
{ | ||
"title": "Create/Update NSP access rule", | ||
"parameters": { | ||
"api-version": "2023-07-01-preview", | ||
"subscriptionId": "subId", | ||
"resourceGroupName": "rg1", | ||
"networkSecurityPerimeterName": "nsp1", | ||
"profileName": "profile1", | ||
"accessRuleName": "accessRule1", | ||
"parameters": { | ||
"properties": { | ||
"direction": "Inbound", | ||
"addressPrefixes": [ | ||
"10.11.0.0/16", | ||
"10.10.1.0/24" | ||
] | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"name": "accessRule1", | ||
"id": "/subscriptions/subId/resourceGroup/rg1/providers/Microsoft.Network/networkSecurityPerimeters/nsp1/profiles/profile1/accessRules/accessRule1", | ||
"type": "Microsoft.Network/networkSecurityPerimeters/profiles/accessRules", | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"direction": "Inbound", | ||
"addressPrefixes": [ | ||
"10.11.0.0/16", | ||
"10.10.1.0/24" | ||
], | ||
"fullyQualifiedDomainNames": [], | ||
"subscriptions": [], | ||
"networkSecurityPerimeters": [], | ||
"emailAddresses": [], | ||
"phoneNumbers": [] | ||
} | ||
} | ||
}, | ||
"201": { | ||
"body": { | ||
"name": "accessRule1", | ||
"id": "/subscriptions/subId/resourceGroup/rg1/providers/Microsoft.Network/networkSecurityPerimeters/nsp1/profiles/profile1/accessRules/accessRule1", | ||
"type": "Microsoft.Network/networkSecurityPerimeters/profiles/accessRules", | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"direction": "Inbound", | ||
"addressPrefixes": [ | ||
"10.11.0.0/16", | ||
"10.10.1.0/24" | ||
], | ||
"fullyQualifiedDomainNames": [], | ||
"subscriptions": [], | ||
"networkSecurityPerimeters": [], | ||
"emailAddresses": [], | ||
"phoneNumbers": [] | ||
} | ||
} | ||
} | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
...manager/Microsoft.Network/preview/2023-07-01-preview/examples/NspAccessRuleReconcile.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"title": "Reconcile NSP access rule", | ||
"parameters": { | ||
"api-version": "2023-07-01-preview", | ||
"subscriptionId": "subId", | ||
"resourceGroupName": "rg1", | ||
"networkSecurityPerimeterName": "nsp1", | ||
"profileName": "profile1", | ||
"accessRuleName": "accessRuleName1", | ||
"parameters": { | ||
"properties": {} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": {} | ||
} | ||
} | ||
} |
Oops, something went wrong.