Skip to content

Commit

Permalink
Updated default tag to latest stable version. (Azure#9085)
Browse files Browse the repository at this point in the history
* Updated default tag to newest stable version.

* Modified swagger to include next link property and azure resource properties.

* Addressed CI errors.

Co-authored-by: Jacob Hill <thhill@microsoft.com>
  • Loading branch information
2 people authored and 00Kai0 committed Oct 12, 2020
1 parent fb41774 commit a403c12
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"subscriptionId": "subid",
"sharedPrivateLinkResourceName": "testResource",
"sharedPrivateLinkResource": {
"name": "testResource",
"properties": {
"requestMessage": "please approve",
"groupId": "blob",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"subscriptionId": "subid",
"privateEndpointConnectionName": "testEndpoint.50bf4fbe-d7c1-4b48-a642-4f5892642546",
"privateEndpointConnection": {
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice/privateEndpointConnections/testEndpoint.50bf4fbe-d7c1-4b48-a642-4f5892642546",
"properties": {
"privateLinkServiceConnectionState": {
"status": "Rejected",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1293,6 +1293,11 @@
"$ref": "#/definitions/QueryKey"
},
"description": "The query keys for the Azure Cognitive Search service."
},
"nextLink": {
"readOnly": true,
"type": "string",
"description": "Request URL that can be used to query next page of query keys. Returned when the total number of requested query keys exceed maximum page size."
}
},
"description": "Response containing the query API keys for a given Azure Cognitive Search service.",
Expand Down Expand Up @@ -1324,8 +1329,10 @@
}
},
"PrivateEndpointConnection": {
"x-ms-azure-resource": true,
"properties": {
"id": {
"readOnly": true,
"type": "string",
"description": "The ID of the private endpoint connection. This can be used with the Azure Resource Manager to link resources together.",
"externalDocs": {
Expand Down Expand Up @@ -1425,20 +1432,37 @@
"$ref": "#/definitions/PrivateEndpointConnection"
},
"description": "The list of Private Endpoint connections."
},
"nextLink": {
"readOnly": true,
"type": "string",
"description": "Request URL that can be used to query next page of private endpoint connections. Returned when the total number of requested private endpoint connections exceed maximum page size."
}
},
"description": "Response containing a list of Private Endpoint connections.",
"x-ms-external": true
},
"SharedPrivateLinkResource": {
"x-ms-azure-resource": true,
"properties": {
"name": {
"readOnly": true,
"type": "string",
"description": "The name of the shared private link resource.",
"externalDocs": {
"url": "https://aka.ms/search-naming-rules"
}
},
"id": {
"readOnly": true,
"type": "string",
"description": "The ID of the shared private link resource."
},
"type": {
"readOnly": true,
"type": "string",
"description": "The resource type."
},
"properties": {
"$ref": "#/definitions/SharedPrivateLinkResourceProperties",
"description": "Describes the properties of a Shared Private Link Resource managed by the Azure Cognitive Search service."
Expand Down Expand Up @@ -1738,6 +1762,11 @@
"$ref": "#/definitions/SearchService"
},
"description": "The list of Search services."
},
"nextLink": {
"readOnly": true,
"type": "string",
"description": "Request URL that can be used to query next page of search services. Returned when the total number of requested search services exceed maximum page size."
}
},
"description": "Response containing a list of Azure Cognitive Search services.",
Expand Down
2 changes: 1 addition & 1 deletion specification/search/resource-manager/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ These are the global settings for the SearchManagementClient API.

``` yaml
openapi-type: arm
tag: package-2015-08
tag: package-2020-03
```
### Tag: package-2020-03
Expand Down

0 comments on commit a403c12

Please sign in to comment.