-
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.
Conor joplin search microsoft.search 2023 11 01 (#25938)
* Adds base for updating Microsoft.Search from version stable/2022-09-01 to version 2023-11-01 * Updates readme * Updates API version in new specs and examples * Applying changes for the new 2023-11-01 API version * Fixing introduced linting warnings * update semantic description * Adding parameter location to new parameters --------- Co-authored-by: Conor Joplin <cojoplin@microsoft.com> Co-authored-by: Efrain Retana <efrainretana@microsoft.com>
- Loading branch information
1 parent
9ed9fe7
commit d56d45a
Showing
40 changed files
with
4,719 additions
and
2 deletions.
There are no files selected for viewing
39 changes: 39 additions & 0 deletions
39
.../Microsoft.Search/stable/2023-11-01/examples/CreateOrUpdateSharedPrivateLinkResource.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 @@ | ||
{ | ||
"parameters": { | ||
"searchServiceName": "mysearchservice", | ||
"resourceGroupName": "rg1", | ||
"api-version": "2023-11-01", | ||
"subscriptionId": "subid", | ||
"sharedPrivateLinkResourceName": "testResource", | ||
"sharedPrivateLinkResource": { | ||
"properties": { | ||
"requestMessage": "please approve", | ||
"groupId": "blob", | ||
"privateLinkResourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Storage/storageAccounts/storageAccountName", | ||
"resourceRegion": null | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"202": { | ||
"headers": { | ||
"Location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchService/sharedPrivateLinkResources/testResource/operationStatuses/08586060559526078782?api-version=2023-11-01", | ||
"Azure-AsyncOperation": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchService/sharedPrivateLinkResources/testResource/operationStatuses/08586060559526078782?api-version=2023-11-01" | ||
} | ||
}, | ||
"200": { | ||
"body": { | ||
"name": "testResource", | ||
"type": "Microsoft.Search/searchServices/sharedPrivateLinkResources", | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice/sharedPrivateLinkResources/testResource", | ||
"properties": { | ||
"requestMessage": "please approve", | ||
"groupId": "blob", | ||
"privateLinkResourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Storage/storageAccounts/storageAccountName", | ||
"status": "Pending", | ||
"resourceRegion": null | ||
} | ||
} | ||
} | ||
} | ||
} |
29 changes: 29 additions & 0 deletions
29
...-manager/Microsoft.Search/stable/2023-11-01/examples/DeletePrivateEndpointConnection.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,29 @@ | ||
{ | ||
"parameters": { | ||
"searchServiceName": "mysearchservice", | ||
"resourceGroupName": "rg1", | ||
"api-version": "2023-11-01", | ||
"subscriptionId": "subid", | ||
"privateEndpointConnectionName": "testEndpoint.50bf4fbe-d7c1-4b48-a642-4f5892642546" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice/privateEndpointConnections/testEndpoint.50bf4fbe-d7c1-4b48-a642-4f5892642546", | ||
"name": "testEndpoint.50bf4fbe-d7c1-4b48-a642-4f5892642546", | ||
"type": "Microsoft.Search/searchServices/privateEndpointConnections", | ||
"properties": { | ||
"privateEndpoint": { | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/privateEndpoints/testEndpoint" | ||
}, | ||
"privateLinkServiceConnectionState": { | ||
"status": "Disconnected", | ||
"description": "", | ||
"actionsRequired": "None" | ||
} | ||
} | ||
} | ||
}, | ||
"404": {} | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
...-manager/Microsoft.Search/stable/2023-11-01/examples/DeleteSharedPrivateLinkResource.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 @@ | ||
{ | ||
"parameters": { | ||
"searchServiceName": "mysearchservice", | ||
"resourceGroupName": "rg1", | ||
"api-version": "2023-11-01", | ||
"subscriptionId": "subid", | ||
"sharedPrivateLinkResourceName": "testResource" | ||
}, | ||
"responses": { | ||
"202": { | ||
"headers": { | ||
"Location": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchService/sharedPrivateLinkResources/testResource/operationStatuses/159c5e07-c829-4896-8aba-a1d4fcc7c89c?api-version=2023-11-01", | ||
"Azure-AsyncOperation": "https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchService/sharedPrivateLinkResources/testResource/operationStatuses/159c5e07-c829-4896-8aba-a1d4fcc7c89c?api-version=2023-11-01" | ||
} | ||
}, | ||
"204": {}, | ||
"404": {} | ||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
...rce-manager/Microsoft.Search/stable/2023-11-01/examples/GetPrivateEndpointConnection.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,28 @@ | ||
{ | ||
"parameters": { | ||
"searchServiceName": "mysearchservice", | ||
"resourceGroupName": "rg1", | ||
"api-version": "2023-11-01", | ||
"subscriptionId": "subid", | ||
"privateEndpointConnectionName": "testEndpoint.50bf4fbe-d7c1-4b48-a642-4f5892642546" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice/privateEndpointConnections/testEndpoint.50bf4fbe-d7c1-4b48-a642-4f5892642546", | ||
"name": "testEndpoint.50bf4fbe-d7c1-4b48-a642-4f5892642546", | ||
"type": "Microsoft.Search/searchServices/privateEndpointConnections", | ||
"properties": { | ||
"privateEndpoint": { | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/privateEndpoints/testEndpoint" | ||
}, | ||
"privateLinkServiceConnectionState": { | ||
"status": "Approved", | ||
"description": "", | ||
"actionsRequired": "None" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
...on/search/resource-manager/Microsoft.Search/stable/2023-11-01/examples/GetQuotaUsage.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,22 @@ | ||
{ | ||
"parameters": { | ||
"location": "westus", | ||
"api-version": "2023-11-01", | ||
"subscriptionId": "subid", | ||
"skuName": "free" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/{subscriptionId}/providers/Microsoft.Search/locations/{location}/usages/{skuName}", | ||
"unit": "Count", | ||
"currentValue": 8, | ||
"limit": 16, | ||
"name": { | ||
"value": "free", | ||
"localizedValue": "F - Free" | ||
} | ||
} | ||
} | ||
} | ||
} |
86 changes: 86 additions & 0 deletions
86
...arch/resource-manager/Microsoft.Search/stable/2023-11-01/examples/GetQuotaUsagesList.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,86 @@ | ||
{ | ||
"parameters": { | ||
"location": "westus", | ||
"api-version": "2023-11-01", | ||
"subscriptionId": "subid" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"id": "/subscriptions/{subscriptionId}/providers/Microsoft.Search/locations/{location}/usages/free", | ||
"unit": "Count", | ||
"currentValue": 8, | ||
"limit": 16, | ||
"name": { | ||
"value": "free", | ||
"localizedValue": "F - Free" | ||
} | ||
}, | ||
{ | ||
"id": "/subscriptions/{subscriptionId}/providers/Microsoft.Search/locations/{location}/usages/basic", | ||
"unit": "Count", | ||
"currentValue": 8, | ||
"limit": 16, | ||
"name": { | ||
"value": "basic", | ||
"localizedValue": "B - Basic" | ||
} | ||
}, | ||
{ | ||
"id": "/subscriptions/{subscriptionId}/providers/Microsoft.Search/locations/{location}/usages/standard", | ||
"unit": "Count", | ||
"currentValue": 8, | ||
"limit": 16, | ||
"name": { | ||
"value": "standard", | ||
"localizedValue": "S - Standard" | ||
} | ||
}, | ||
{ | ||
"id": "/subscriptions/{subscriptionId}/providers/Microsoft.Search/locations/{location}/usages/standard2", | ||
"unit": "Count", | ||
"currentValue": 8, | ||
"limit": 16, | ||
"name": { | ||
"value": "standard2", | ||
"localizedValue": "S2 - Standard2" | ||
} | ||
}, | ||
{ | ||
"id": "/subscriptions/{subscriptionId}/providers/Microsoft.Search/locations/{location}/usages/standard3", | ||
"unit": "Count", | ||
"currentValue": 8, | ||
"limit": 16, | ||
"name": { | ||
"value": "standard3", | ||
"localizedValue": "S3 - Standard3" | ||
} | ||
}, | ||
{ | ||
"id": "/subscriptions/{subscriptionId}/providers/Microsoft.Search/locations/{location}/usages/storageOptimizedL1", | ||
"unit": "Count", | ||
"currentValue": 8, | ||
"limit": 16, | ||
"name": { | ||
"value": "storageOptimizedL1", | ||
"localizedValue": "L1 - Storage Optimized" | ||
} | ||
}, | ||
{ | ||
"id": "/subscriptions/{subscriptionId}/providers/Microsoft.Search/locations/{location}/usages/storageOptimizedL2", | ||
"unit": "Count", | ||
"currentValue": 8, | ||
"limit": 16, | ||
"name": { | ||
"value": "storageOptimizedL2", | ||
"localizedValue": "L2 - Storage Optimized" | ||
} | ||
} | ||
], | ||
"nextLink": null | ||
} | ||
} | ||
} | ||
} |
25 changes: 25 additions & 0 deletions
25
...rce-manager/Microsoft.Search/stable/2023-11-01/examples/GetSharedPrivateLinkResource.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": { | ||
"searchServiceName": "mysearchservice", | ||
"resourceGroupName": "rg1", | ||
"api-version": "2023-11-01", | ||
"subscriptionId": "subid", | ||
"sharedPrivateLinkResourceName": "testResource" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"name": "testResource", | ||
"type": "Microsoft.Search/searchServices/sharedPrivateLinkResources", | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice/sharedPrivateLinkResources/testResource", | ||
"properties": { | ||
"requestMessage": "please approve", | ||
"groupId": "blob", | ||
"privateLinkResourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Storage/storageAccounts/storageAccountName", | ||
"status": "Pending", | ||
"resourceRegion": null | ||
} | ||
} | ||
} | ||
} | ||
} |
31 changes: 31 additions & 0 deletions
31
.../Microsoft.Search/stable/2023-11-01/examples/ListPrivateEndpointConnectionsByService.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 @@ | ||
{ | ||
"parameters": { | ||
"searchServiceName": "mysearchservice", | ||
"resourceGroupName": "rg1", | ||
"api-version": "2023-11-01", | ||
"subscriptionId": "subid" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice/privateEndpointConnections/testEndpoint.50bf4fbe-d7c1-4b48-a642-4f5892642546", | ||
"name": "testEndpoint.50bf4fbe-d7c1-4b48-a642-4f5892642546", | ||
"type": "Microsoft.Search/searchServices/privateEndpointConnections", | ||
"properties": { | ||
"privateEndpoint": { | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/privateEndpoints/testEndpoint" | ||
}, | ||
"privateLinkServiceConnectionState": { | ||
"status": "Approved", | ||
"description": "", | ||
"actionsRequired": "None" | ||
} | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
.../Microsoft.Search/stable/2023-11-01/examples/ListSharedPrivateLinkResourcesByService.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,28 @@ | ||
{ | ||
"parameters": { | ||
"searchServiceName": "mysearchservice", | ||
"resourceGroupName": "rg1", | ||
"api-version": "2023-11-01", | ||
"subscriptionId": "subid" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"name": "testResource", | ||
"type": "Microsoft.Search/searchServices/sharedPrivateLinkResources", | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice/sharedPrivateLinkResources/testResource", | ||
"properties": { | ||
"requestMessage": "please approve", | ||
"groupId": "blob", | ||
"privateLinkResourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Storage/storageAccounts/storageAccountName", | ||
"status": "Pending", | ||
"resourceRegion": null | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.