Tenant Configuration - Save
This operation creates a commit with the current configuration snapshot to the specified branch in the repository. This is a long running operation and could take several minutes to complete.
POST https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/tenant/configuration/save?api-version=2024-05-01
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
configuration
|
path | True |
The identifier of the Git Configuration Operation. |
|
resource
|
path | True |
string |
The name of the resource group. The name is case insensitive. |
service
|
path | True |
string |
The name of the API Management service. Regex pattern: |
subscription
|
path | True |
string uuid |
The ID of the target subscription. The value must be an UUID. |
api-version
|
query | True |
string |
The API version to use for this operation. |
Request Body
Name | Required | Type | Description |
---|---|---|---|
properties.branch | True |
string |
The name of the Git branch in which to commit the current configuration snapshot. |
properties.force |
boolean |
The value if true, the current configuration database is committed to the Git repository, even if the Git repository has newer changes that would be overwritten. |
Responses
Name | Type | Description |
---|---|---|
200 OK |
Result of creating a commit in the repository. |
|
202 Accepted |
Accepted: Location header contains the URL where the status of the long running operation can be checked. Headers location: string |
|
Other Status Codes |
Error response describing why the operation failed. |
Security
azure_auth
Azure Active Directory OAuth2 Flow.
Type:
oauth2
Flow:
implicit
Authorization URL:
https://login.microsoftonline.com/common/oauth2/authorize
Scopes
Name | Description |
---|---|
user_impersonation | impersonate your user account |
Examples
ApiManagementTenantConfigurationSave
Sample request
POST https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tenant/configuration/save?api-version=2024-05-01
{
"properties": {
"branch": "master"
}
}
Sample response
location: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/tenant/operationResults/5a1af57d2a6d2e0b688d751b?api-version=2024-05-01
{
"id": "6074e652093a9d0dac3d733c",
"type": "Microsoft.ApiManagement/service/tenant/operationResults",
"name": "6074e652093a9d0dac3d733c",
"properties": {
"status": "Succeeded",
"started": "2021-04-13T00:31:14.94Z",
"updated": "2021-04-13T00:31:27.59Z",
"resultInfo": "The configuration was successfully saved to master as commit c0ae274f6046912107bad734834cbf65918668b6.",
"actionLog": []
}
}
Definitions
Name | Description |
---|---|
Async |
Status of an async operation. |
configuration |
The identifier of the Git Configuration Operation. |
Error |
The resource management error additional info. |
Error |
The error detail. |
Error |
Error Field contract. |
Error |
Error response |
Error |
Error Body contract. |
Operation |
Long Running Git Operation Results. |
Operation |
Log of the entity being created, updated or deleted. |
Save |
Save Tenant Configuration Contract details. |
AsyncOperationStatus
Status of an async operation.
Name | Type | Description |
---|---|---|
Failed |
string |
|
InProgress |
string |
|
Started |
string |
|
Succeeded |
string |
configurationIdName
The identifier of the Git Configuration Operation.
Name | Type | Description |
---|---|---|
configuration |
string |
ErrorAdditionalInfo
The resource management error additional info.
Name | Type | Description |
---|---|---|
info |
object |
The additional info. |
type |
string |
The additional info type. |
ErrorDetail
The error detail.
Name | Type | Description |
---|---|---|
additionalInfo |
The error additional info. |
|
code |
string |
The error code. |
details |
The error details. |
|
message |
string |
The error message. |
target |
string |
The error target. |
ErrorFieldContract
Error Field contract.
Name | Type | Description |
---|---|---|
code |
string |
Property level error code. |
message |
string |
Human-readable representation of property-level error. |
target |
string |
Property name. |
ErrorResponse
Error response
Name | Type | Description |
---|---|---|
error |
The error object. |
ErrorResponseBody
Error Body contract.
Name | Type | Description |
---|---|---|
code |
string |
Service-defined error code. This code serves as a sub-status for the HTTP error code specified in the response. |
details |
The list of invalid fields send in request, in case of validation error. |
|
message |
string |
Human-readable representation of the error. |
OperationResultContract
Long Running Git Operation Results.
Name | Type | Description |
---|---|---|
id |
string |
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name |
string |
The name of the resource |
properties.actionLog |
This property if only provided as part of the TenantConfiguration_Validate operation. It contains the log the entities which will be updated/created/deleted as part of the TenantConfiguration_Deploy operation. |
|
properties.error |
Error Body Contract |
|
properties.id |
string |
Operation result identifier. |
properties.resultInfo |
string |
Optional result info. |
properties.started |
string |
Start time of an async operation. The date conforms to the following format: |
properties.status |
Status of an async operation. |
|
properties.updated |
string |
Last update time of an async operation. The date conforms to the following format: |
type |
string |
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
OperationResultLogItemContract
Log of the entity being created, updated or deleted.
Name | Type | Description |
---|---|---|
action |
string |
Action like create/update/delete. |
objectKey |
string |
Identifier of the entity being created/updated/deleted. |
objectType |
string |
The type of entity contract. |
SaveConfigurationParameter
Save Tenant Configuration Contract details.
Name | Type | Description |
---|---|---|
properties.branch |
string |
The name of the Git branch in which to commit the current configuration snapshot. |
properties.force |
boolean |
The value if true, the current configuration database is committed to the Git repository, even if the Git repository has newer changes that would be overwritten. |