-
Notifications
You must be signed in to change notification settings - Fork 5.1k
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
Azure Search: Resource Manager: Support 'None' Identity type #5319
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
{ | ||
"parameters": { | ||
"searchServiceName": "mysearchservice", | ||
"resourceGroupName": "rg1", | ||
"api-version": "2015-08-19", | ||
"subscriptionId": "subid", | ||
"service": { | ||
"location": "westus", | ||
"tags": { | ||
"app-name": "My e-commerce app" | ||
}, | ||
"sku": { | ||
"name": "standard" | ||
}, | ||
"properties": { | ||
"replicaCount": 3, | ||
"partitionCount": 1, | ||
"hostingMode": "default" | ||
}, | ||
"identity": { | ||
"type": "SystemAssigned" | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice", | ||
"name": "mysearchservice", | ||
"location": "westus", | ||
"type": "Microsoft.Search/searchServices", | ||
"tags": { | ||
"app-name": "My e-commerce app" | ||
}, | ||
"sku": { | ||
"name": "standard" | ||
}, | ||
"properties":{ | ||
"replicaCount": 3, | ||
"partitionCount": 1, | ||
"status": "provisioning", | ||
"statusDetails": "", | ||
"hostingMode": "default", | ||
"provisioningState": "provisioning" | ||
}, | ||
"identity": { | ||
"type": "SystemAssigned", | ||
"principalId": "9d1e1f18-2122-4988-a11c-878782e40a5c", | ||
"tenantId": "f686d426-8d16-42db-81b7-ab578e110ccd" | ||
} | ||
} | ||
}, | ||
"201": { | ||
"body": { | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice", | ||
"name": "mysearchservice", | ||
"location": "westus", | ||
"type": "Microsoft.Search/searchServices", | ||
"tags": { | ||
"app-name": "My e-commerce app" | ||
}, | ||
"sku": { | ||
"name": "standard" | ||
}, | ||
"properties":{ | ||
"replicaCount": 3, | ||
"partitionCount": 1, | ||
"status": "provisioning", | ||
"statusDetails": "", | ||
"hostingMode": "default", | ||
"provisioningState": "provisioning" | ||
}, | ||
"identity": { | ||
"type": "SystemAssigned", | ||
"principalId": "9d1e1f18-2122-4988-a11c-878782e40a5c", | ||
"tenantId": "f686d426-8d16-42db-81b7-ab578e110ccd" | ||
} | ||
} | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"parameters": { | ||
"searchServiceName": "mysearchservice", | ||
"resourceGroupName": "rg1", | ||
"api-version": "2015-08-19", | ||
"subscriptionId": "subid", | ||
"service": { | ||
"sku": { | ||
"name": "standard" | ||
}, | ||
"identity": { | ||
"type": "None" | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice", | ||
"name": "mysearchservice", | ||
"location": "westus", | ||
"type": "Microsoft.Search/searchServices", | ||
"tags": { | ||
}, | ||
"sku": { | ||
"name": "standard" | ||
}, | ||
"properties":{ | ||
"replicaCount": 3, | ||
"partitionCount": 1, | ||
"status": "running", | ||
"statusDetails": "", | ||
"hostingMode": "default", | ||
"provisioningState": "succeeded" | ||
}, | ||
"identity": { | ||
"type": "None" | ||
} | ||
} | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -331,7 +331,8 @@ | |
], | ||
"operationId": "Services_CreateOrUpdate", | ||
"x-ms-examples": { | ||
"SearchCreateOrUpdateService": { "$ref": "./examples/SearchCreateOrUpdateService.json" } | ||
"SearchCreateOrUpdateService": { "$ref": "./examples/SearchCreateOrUpdateService.json" }, | ||
"SearchCreateOrUpdateServiceWithIdentity": { "$ref": "./examples/SearchCreateOrUpdateServiceWithIdentity.json" } | ||
}, | ||
"description": "Creates or updates a Search service in the given resource group. If the Search service already exists, all properties will be updated with the given values.", | ||
"externalDocs": { | ||
|
@@ -395,7 +396,8 @@ | |
], | ||
"operationId": "Services_Update", | ||
"x-ms-examples": { | ||
"SearchUpdateService": { "$ref": "./examples/SearchUpdateService.json" } | ||
"SearchUpdateService": { "$ref": "./examples/SearchUpdateService.json" }, | ||
"SearchUpdateServiceToRemoveIdentity": { "$ref": "./examples/SearchUpdateServiceToRemoveIdentity.json" } | ||
}, | ||
"description": "Updates an existing Search service in the given resource group.", | ||
"externalDocs": { | ||
|
@@ -1064,6 +1066,7 @@ | |
"type": "string", | ||
"description": "The identity type.", | ||
"enum": [ | ||
"None", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @natinimni Adding a new enum value is a client-side breaking change, so make sure to bump the major version of the .NET Management SDK. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It also wouldn't hurt to ensure there's an example of using this value. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. thanks @brjohnstmsft ! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good to know. Thanks! |
||
"SystemAssigned" | ||
], | ||
"x-ms-enum": { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@natinimni I trust these are not real IDs. :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The 'tenantId' is real, but public. The 'principalId' is not real, and not considered a secret :)