-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update workspaceRP swagger with automation result (#24333)
* Update workspace rp swagger with automation result rename pe definition to avoid conflict fix update PE name Update connection credential hide armid fix more things Fix enum issue fix polymorphism Update examples Update body name and example fix more issue update response body Fix Revert "file change" This reverts commit 4a1fdccf6eb22e1dda82d3acce8065fae171f422. file change Update swagger fix errors update format add example for connetion list secrets api run prettier * Fixing more issue * revert custom-words * run prettier * Update securityDefinitions * Revert operation id * Update description and summary. * fix prettier issue and add description * remove redundent object definition * fixing swagger issue revert PaginationParameter * Revert back to old file with only reorder for better compare * Revert "Revert back to old file with only reorder for better compare" This reverts commit 8feb7d8. * Revert connection v2 tag issue * Add back delete op for network rule * Add back example for the removed API * Suppress header check caused by old design * fix delete rule in path * Update example error * Update delete rule api and remove suppression
- Loading branch information
Showing
13 changed files
with
2,372 additions
and
1,929 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
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
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
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
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
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
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
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
38 changes: 38 additions & 0 deletions
38
...LearningServices/preview/2023-06-01-preview/examples/WorkspaceConnection/listSecrets.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 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
"resourceGroupName": "test-rg", | ||
"workspaceName": "aml-workspace-name", | ||
"connectionName": "some_string", | ||
"api-version": "2023-06-01-preview" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"id": "some_string", | ||
"name": "some_string", | ||
"type": "some_string", | ||
"properties": { | ||
"authType": "AccessKey", | ||
"credentials": { | ||
"accessKeyId": "some_string", | ||
"secretAccessKey": "some_string" | ||
}, | ||
"category": "CustomKeys", | ||
"expiryTime": "2020-01-01T00:00:00Z", | ||
"target": "some_string", | ||
"metadata": {} | ||
}, | ||
"systemData": { | ||
"createdAt": "2020-01-01T00:00:00Z", | ||
"createdBy": "some_string", | ||
"createdByType": "ManagedIdentity", | ||
"lastModifiedAt": "2020-01-01T00:00:00Z", | ||
"lastModifiedBy": "some_string", | ||
"lastModifiedByType": "User" | ||
} | ||
} | ||
} | ||
} | ||
} |
51 changes: 51 additions & 0 deletions
51
...chineLearningServices/preview/2023-06-01-preview/examples/WorkspaceConnection/update.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,51 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
"resourceGroupName": "test-rg", | ||
"workspaceName": "aml-workspace-name", | ||
"connectionName": "some_string", | ||
"api-version": "2023-06-01-preview", | ||
"body": { | ||
"properties": { | ||
"authType": "AccessKey", | ||
"credentials": { | ||
"accessKeyId": "some_string", | ||
"secretAccessKey": "some_string" | ||
}, | ||
"category": "ADLSGen2", | ||
"expiryTime": "2020-01-01T00:00:00Z", | ||
"target": "some_string", | ||
"metadata": {} | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"id": "some_string", | ||
"name": "some_string", | ||
"type": "some_string", | ||
"properties": { | ||
"authType": "AccessKey", | ||
"credentials": { | ||
"accessKeyId": "some_string", | ||
"secretAccessKey": "some_string" | ||
}, | ||
"category": "ADLSGen2", | ||
"expiryTime": "2020-01-01T00:00:00Z", | ||
"target": "some_string", | ||
"metadata": {} | ||
}, | ||
"systemData": { | ||
"createdAt": "2020-01-01T00:00:00Z", | ||
"createdBy": "some_string", | ||
"createdByType": "ManagedIdentity", | ||
"lastModifiedAt": "2020-01-01T00:00:00Z", | ||
"lastModifiedBy": "some_string", | ||
"lastModifiedByType": "Application" | ||
} | ||
} | ||
} | ||
} | ||
} |
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
Oops, something went wrong.