-
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.
* remove name validation from client side * remove name check from deploymentScripts swagger * create privateLinks swagger * add all private link commands * add PLA and RMPL capabilities to swagger * update privateLink swagger * add rmpl to custom words * fix semantic validation errors * update resourcemanager readme * fix semanticvalidation errors * add correct resourceGroupName param * add examples for privateLink * fix prettier errors * Update specification/resources/resource-manager/Microsoft.Authorization/stable/2020-05-01/privateLinks.json Co-authored-by: JianyeXi <59603451+jianyexi@users.noreply.github.com> * fix ModelValidation Errors * fix prettier errors * fix prettier errors * add read only to properties * add resource extension * add example to privateLink * fix some prettier issues * ran prettiercheck * fix errors * semanticValidation errors * add suppression to readme * add 204 delete operation * MissingType Object fix * add suppresion for list operation * fix prettier errors * fix package tag for privatelinks Co-authored-by: JianyeXi <59603451+jianyexi@users.noreply.github.com>
- Loading branch information
1 parent
1bed774
commit 19707b7
Showing
10 changed files
with
723 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -1605,6 +1605,7 @@ rhel | |
RIRs | ||
rmem | ||
Rmem | ||
rmpl | ||
Rolledback | ||
Rollforward | ||
rollouts | ||
|
13 changes: 13 additions & 0 deletions
13
...ager/Microsoft.Authorization/stable/2020-05-01/examples/DeletePrivateLinkAssociation.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 @@ | ||
{ | ||
"parameters": { | ||
"plaId": "00000000-0000-0000-0000-000000000000", | ||
"groupId": "my-management-group", | ||
"api-version": "2020-05-01" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {} | ||
}, | ||
"204": {} | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
...crosoft.Authorization/stable/2020-05-01/examples/DeleteResourceManagementPrivateLink.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,14 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-0000-0000-0000-000000000000", | ||
"resourceGroupName": "my-resource-group", | ||
"api-version": "2020-05-01", | ||
"rmplName": "my-rmplName" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {} | ||
}, | ||
"204": {} | ||
} | ||
} |
25 changes: 25 additions & 0 deletions
25
...manager/Microsoft.Authorization/stable/2020-05-01/examples/GetPrivateLinkAssociation.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,25 @@ | ||
{ | ||
"parameters": { | ||
"groupId": "my-management-group", | ||
"api-version": "2020-05-01" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"properties": { | ||
"privateLink": "00000000-0000-0000-0000-000000000000", | ||
"publicNetworkAccess": "Enabled", | ||
"tenantID": "06b3ccb8-1384-4bcc-aec7-852f6d57161b", | ||
"scope": "/providers/Microsoft.Management/managementGroups/my-management-group" | ||
}, | ||
"id": "00000000-0000-0000-0000-000000000000", | ||
"type": "Microsoft.Authorization/privateLinkAssociations", | ||
"name": "my-pla" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
.../Microsoft.Authorization/stable/2020-05-01/examples/GetResourceManagementPrivateLink.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,21 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-0000-0000-0000-000000000000", | ||
"resourceGroupName": "my-resource-group", | ||
"api-version": "2020-05-01", | ||
"rmplName": "my-rmplName" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"properties": { | ||
"privateEndpointConnections": [] | ||
}, | ||
"id": "00000000-0000-0000-0000-000000000000", | ||
"name": "my-pla", | ||
"type": "Microsoft.Authorization/privateLinkAssociations", | ||
"location": "eastus" | ||
} | ||
} | ||
} | ||
} |
32 changes: 32 additions & 0 deletions
32
...Microsoft.Authorization/stable/2020-05-01/examples/ListResourceManagementPrivateLink.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,32 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-0000-0000-0000-000000000000", | ||
"api-version": "2020-05-01" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"properties": { | ||
"privateEndpointConnections": [] | ||
}, | ||
"id": "00000000-0000-0000-0000-000000000000", | ||
"name": "my-pla", | ||
"type": "Microsoft.Authorization/privateLinkAssociations", | ||
"location": "eastus" | ||
}, | ||
{ | ||
"properties": { | ||
"privateEndpointConnections": [] | ||
}, | ||
"id": "00000000-0000-0000-0000-000000000001", | ||
"name": "my-pla2", | ||
"type": "Microsoft.Authorization/privateLinkAssociations", | ||
"location": "eastus" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
26 changes: 26 additions & 0 deletions
26
...manager/Microsoft.Authorization/stable/2020-05-01/examples/PutPrivateLinkAssociation.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,26 @@ | ||
{ | ||
"parameters": { | ||
"plaId": "00000000-0000-0000-0000-000000000000", | ||
"groupId": "my-management-group", | ||
"api-version": "2020-05-01", | ||
"parameters": { | ||
"privateLink": "00000000-0000-0000-0000-000000000000", | ||
"publicNetworkAccess": "Enabled" | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"properties": { | ||
"privateLink": "00000000-0000-0000-0000-000000000000", | ||
"publicNetworkAccess": "Enabled", | ||
"tenantID": "06b3ccb8-1384-4bcc-aec7-852f6d57161b", | ||
"scope": "/providers/Microsoft.Management/managementGroups/my-management-group" | ||
}, | ||
"id": "00000000-0000-0000-0000-000000000000", | ||
"type": "Microsoft.Authorization/privateLinkAssociations", | ||
"name": "my-pla" | ||
} | ||
} | ||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
.../Microsoft.Authorization/stable/2020-05-01/examples/PutResourceManagementPrivateLink.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 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-0000-0000-0000-000000000000", | ||
"resourceGroupName": "my-resource-group", | ||
"api-version": "2020-05-01", | ||
"rmplName": "my-rmplName", | ||
"parameters": { | ||
"location": "eastus" | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"properties": { | ||
"privateEndpointConnections": [] | ||
}, | ||
"id": "00000000-0000-0000-0000-000000000000", | ||
"name": "my-pla", | ||
"type": "Microsoft.Authorization/privateLinkAssociations", | ||
"location": "eastus" | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.