-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Private links #13945
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
Merged
Merged
Private links #13945
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
a8dd2f3
remove name validation from client side
tjegbejimba d94dfb5
remove name check from deploymentScripts swagger
tjegbejimba 21147fb
Merge branch 'master' of https://github.com/Azure/azure-rest-api-spec…
tjegbejimba d120664
create privateLinks swagger
tjegbejimba 1cd0959
add all private link commands
tjegbejimba fdf3885
add PLA and RMPL capabilities to swagger
tjegbejimba f47d494
update privateLink swagger
tjegbejimba 2f649b4
add rmpl to custom words
tjegbejimba cca71fe
fix semantic validation errors
tjegbejimba f4073e1
update resourcemanager readme
tjegbejimba 370520a
Merge branch 'master' into privateLinks
tjegbejimba 398c130
fix semanticvalidation errors
tjegbejimba e8a7dda
add correct resourceGroupName param
tjegbejimba 89f0427
add examples for privateLink
tjegbejimba 587b424
Merge branch 'master' into privateLinks
tjegbejimba eff448b
fix prettier errors
tjegbejimba d264538
merge master
tjegbejimba 44075ee
Merge branch 'master' into privateLinks
tjegbejimba 179da9b
Update specification/resources/resource-manager/Microsoft.Authorizati…
tjegbejimba 5594c20
fix ModelValidation Errors
tjegbejimba 35b0816
fix prettier errors
tjegbejimba b8bebd7
fix prettier errors
tjegbejimba 1c8c5dc
add read only to properties
tjegbejimba 390d983
add resource extension
tjegbejimba 81a1361
add example to privateLink
tjegbejimba a30e86d
fix some prettier issues
tjegbejimba 5724261
ran prettiercheck
tjegbejimba 4ea438c
fix errors
tjegbejimba 6653a78
semanticValidation errors
tjegbejimba 501b4f8
add suppression to readme
tjegbejimba 02b32e4
add 204 delete operation
tjegbejimba 8eba7e8
MissingType Object fix
tjegbejimba 74c2b52
Merge branch 'master' into privateLinks
tjegbejimba 29d4e86
add suppresion for list operation
tjegbejimba b39e2de
fix prettier errors
tjegbejimba 9fb392c
fix package tag for privatelinks
tjegbejimba File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -1600,6 +1600,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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.