public void TenantGitSaveValidateAndDeploy()
        {
            TestUtilities.StartTest("SmapiFunctionalTests", "TenantGitSaveValidateAndDeploy");

            try
            {
                var getResponse = ApiManagementClient.TenantAccessGit.Get(ResourceGroupName, ApiManagementServiceName);

                Assert.NotNull(getResponse);
                Assert.NotNull(getResponse.Value);
                Assert.Equal(HttpStatusCode.OK, getResponse.StatusCode);

                // enable git access
                var parameters = new AccessInformationUpdateParameters
                {
                    Enabled = true
                };
                var response = ApiManagementClient.TenantAccessGit.Update(ResourceGroupName,
                    ApiManagementServiceName, parameters, getResponse.ETag);

                Assert.NotNull(response);
                Assert.Equal(HttpStatusCode.NoContent, response.StatusCode);

                // test git is enabled
                getResponse = ApiManagementClient.TenantAccessGit.Get(ResourceGroupName, ApiManagementServiceName);

                Assert.NotNull(getResponse);
                Assert.NotNull(getResponse.Value);
                Assert.True(getResponse.Value.Enabled);
                
                // get the sync state of the repository
                var getSyncState = ApiManagementClient.TenantConfigurationSyncState.Get(ResourceGroupName,
                    ApiManagementServiceName);

                Assert.NotNull(getSyncState);
                Assert.NotNull(getSyncState.Value);
                Assert.True(getSyncState.Value.IsGitEnabled);

                // save changes in current database to configuration database
                var saveConfigurationParameters = new SaveConfigurationParameter("master");
                var getSaveResponse = ApiManagementClient.TenantConfiguration.Save(
                    ResourceGroupName,
                    ApiManagementServiceName,
                    saveConfigurationParameters);

                Assert.NotNull(getSaveResponse);
                Assert.Equal(HttpStatusCode.OK, getSaveResponse.StatusCode);
                Assert.NotNull(getSaveResponse.OperationResult);
                Assert.Equal(AsyncOperationState.Succeeded, getSaveResponse.OperationResult.Status);

                // get the sync state of the repository after Save
                getSyncState = ApiManagementClient.TenantConfigurationSyncState.Get(ResourceGroupName,
                    ApiManagementServiceName);

                Assert.NotNull(getSyncState);
                Assert.NotNull(getSyncState.Value);
                Assert.True(getSyncState.Value.IsGitEnabled);
                Assert.Equal("master", getSyncState.Value.Branch);

                // validate changes in current database to configuration database
                var deployConfigurationParameters = new DeployConfigurationParameters("master");
                var getValidateResponse = ApiManagementClient.TenantConfiguration.Validate(
                    ResourceGroupName,
                    ApiManagementServiceName,
                    deployConfigurationParameters);

                Assert.NotNull(getValidateResponse);
                Assert.Equal(HttpStatusCode.OK, getValidateResponse.StatusCode);
                Assert.NotNull(getSaveResponse.OperationResult);
                Assert.Equal(AsyncOperationState.Succeeded, getSaveResponse.OperationResult.Status);

                // deploy changes in current database to configuration database
                var getDeployResponse = ApiManagementClient.TenantConfiguration.Deploy(
                    ResourceGroupName,
                    ApiManagementServiceName,
                    deployConfigurationParameters);

                Assert.NotNull(getDeployResponse);
                Assert.Equal(HttpStatusCode.OK, getDeployResponse.StatusCode);
                Assert.NotNull(getSaveResponse.OperationResult);
                Assert.Equal(AsyncOperationState.Succeeded, getSaveResponse.OperationResult.Status);

                // get the sync state of the repository
                getSyncState = ApiManagementClient.TenantConfigurationSyncState.Get(ResourceGroupName,
                    ApiManagementServiceName);

                Assert.NotNull(getSyncState);
                Assert.NotNull(getSyncState.Value);
                Assert.True(getSyncState.Value.IsGitEnabled);
                Assert.Equal("master", getSyncState.Value.Branch);

                // disable git access
                parameters.Enabled = false;

                response = ApiManagementClient.TenantAccessGit.Update(ResourceGroupName,
                    ApiManagementServiceName, parameters, getResponse.ETag);

                Assert.NotNull(response);
                Assert.Equal(HttpStatusCode.NoContent, response.StatusCode);

                // test git is disabled
                getResponse = ApiManagementClient.TenantAccessGit.Get(ResourceGroupName, ApiManagementServiceName);

                Assert.NotNull(getResponse);
                Assert.NotNull(getResponse.Value);
                Assert.False(getResponse.Value.Enabled);
            }
            finally
            {
                TestUtilities.EndTest();
            }
        }
        public async Task ValidateSaveDeploy()
        {
            Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback");
            using (MockContext context = MockContext.Start(this.GetType()))
            {
                var testBase = new ApiManagementTestBase(context);
                testBase.TryCreateApiManagementService();

                // test git is enabled
                var getResponse = testBase.client.TenantAccessGit.Get(
                    testBase.rgName,
                    testBase.serviceName);

                Assert.NotNull(getResponse);
                Assert.True(getResponse.Enabled);

                // get the sync state of the repository
                var getSyncState = testBase.client.TenantConfiguration.GetSyncState(
                    testBase.rgName,
                    testBase.serviceName);

                Assert.NotNull(getSyncState);
                Assert.NotNull(getSyncState);
                Assert.True(getSyncState.IsGitEnabled);

                // save changes in current database to configuration database
                var saveConfigurationParameters         = new SaveConfigurationParameter("master");
                OperationResultContract getSaveResponse = testBase.client.TenantConfiguration.Save(
                    testBase.rgName,
                    testBase.serviceName,
                    saveConfigurationParameters);

                Assert.NotNull(getSaveResponse);
                Assert.NotNull(getSaveResponse.Status);
                Assert.NotNull(getSaveResponse.ResultInfo);
                Assert.Null(getSaveResponse.Error);
                Assert.Equal(AsyncOperationStatus.Succeeded, getSaveResponse.Status);

                // get the sync state of the repository after Save
                getSyncState = testBase.client.TenantConfiguration.GetSyncState(
                    testBase.rgName,
                    testBase.serviceName);

                Assert.NotNull(getSyncState);
                Assert.True(getSyncState.IsGitEnabled);
                Assert.Equal("master", getSyncState.Branch);

                // validate changes in current database to configuration database
                var deployConfigurationParameters           = new DeployConfigurationParameters("master");
                OperationResultContract getValidateResponse = testBase.client.TenantConfiguration.Validate(
                    testBase.rgName,
                    testBase.serviceName,
                    deployConfigurationParameters);

                Assert.NotNull(getValidateResponse);
                Assert.NotNull(getSaveResponse.ResultInfo);
                Assert.Null(getSaveResponse.Error);
                Assert.Equal(AsyncOperationStatus.Succeeded, getSaveResponse.Status);

                // deploy changes in current database to configuration database
                OperationResultContract getDeployResponse = testBase.client.TenantConfiguration.Deploy(
                    testBase.rgName,
                    testBase.serviceName,
                    deployConfigurationParameters);

                Assert.NotNull(getDeployResponse);
                Assert.NotNull(getDeployResponse.ResultInfo);
                Assert.Null(getSaveResponse.Error);
                Assert.Equal(AsyncOperationStatus.Succeeded, getDeployResponse.Status);

                // get the sync state of the repository
                var getSyncStateResponse = await testBase.client.TenantConfiguration.GetSyncStateWithHttpMessagesAsync(
                    testBase.rgName,
                    testBase.serviceName);

                Assert.NotNull(getSyncStateResponse);
                Assert.NotNull(getSyncStateResponse.Body.CommitId);
                Assert.True(getSyncStateResponse.Body.IsGitEnabled);
                Assert.True(getSyncStateResponse.Body.IsSynced);
                Assert.False(getSyncStateResponse.Body.IsExport);
                Assert.NotNull(getSyncStateResponse.Body.SyncDate);
                Assert.Equal("master", getSyncStateResponse.Body.Branch);
            }
        }
        /// <summary>
        /// This operation applies changes from the specified Git branch to the
        /// configuration database. This is a long running operation and could take
        /// several minutes to complete.
        /// <see href="https://azure.microsoft.com/en-us/documentation/articles/api-management-configuration-repository-git/#to-deploy-any-service-configuration-changes-to-the-api-management-service-instance" />
        /// </summary>
        /// <param name='resourceGroupName'>
        /// The name of the resource group.
        /// </param>
        /// <param name='serviceName'>
        /// The name of the API Management service.
        /// </param>
        /// <param name='parameters'>
        /// Deploy Configuration parameters.
        /// </param>
        /// <param name='customHeaders'>
        /// The headers that will be added to request.
        /// </param>
        /// <param name='cancellationToken'>
        /// The cancellation token.
        /// </param>
        public async Task <AzureOperationResponse <OperationResultContract> > DeployWithHttpMessagesAsync(string resourceGroupName, string serviceName, DeployConfigurationParameters parameters, Dictionary <string, List <string> > customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
        {
            // Send request
            AzureOperationResponse <OperationResultContract> _response = await BeginDeployWithHttpMessagesAsync(resourceGroupName, serviceName, parameters, customHeaders, cancellationToken).ConfigureAwait(false);

            return(await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false));
        }
        /// <summary>
        /// This operation validates the changes in the specified Git branch. This is a
        /// long running operation and could take several minutes to complete.
        /// </summary>
        /// <param name='resourceGroupName'>
        /// The name of the resource group.
        /// </param>
        /// <param name='serviceName'>
        /// The name of the API Management service.
        /// </param>
        /// <param name='parameters'>
        /// Validate Configuration parameters.
        /// </param>
        /// <param name='customHeaders'>
        /// Headers that will be added to request.
        /// </param>
        /// <param name='cancellationToken'>
        /// The cancellation token.
        /// </param>
        /// <exception cref="ErrorResponseException">
        /// Thrown when the operation returned an invalid status code
        /// </exception>
        /// <exception cref="SerializationException">
        /// Thrown when unable to deserialize the response
        /// </exception>
        /// <exception cref="ValidationException">
        /// Thrown when a required parameter is null
        /// </exception>
        /// <exception cref="System.ArgumentNullException">
        /// Thrown when a required parameter is null
        /// </exception>
        /// <return>
        /// A response object containing the response body and response headers.
        /// </return>
        public async Task <AzureOperationResponse <OperationResultContract> > BeginValidateWithHttpMessagesAsync(string resourceGroupName, string serviceName, DeployConfigurationParameters parameters, Dictionary <string, List <string> > customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
        {
            if (resourceGroupName == null)
            {
                throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName");
            }
            if (serviceName == null)
            {
                throw new ValidationException(ValidationRules.CannotBeNull, "serviceName");
            }
            if (serviceName != null)
            {
                if (serviceName.Length > 50)
                {
                    throw new ValidationException(ValidationRules.MaxLength, "serviceName", 50);
                }
                if (serviceName.Length < 1)
                {
                    throw new ValidationException(ValidationRules.MinLength, "serviceName", 1);
                }
                if (!System.Text.RegularExpressions.Regex.IsMatch(serviceName, "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"))
                {
                    throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$");
                }
            }
            if (parameters == null)
            {
                throw new ValidationException(ValidationRules.CannotBeNull, "parameters");
            }
            if (parameters != null)
            {
                parameters.Validate();
            }
            if (Client.SubscriptionId == null)
            {
                throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId");
            }
            string apiVersion        = "2019-12-01-preview";
            string configurationName = "configuration";
            // Tracing
            bool   _shouldTrace  = ServiceClientTracing.IsEnabled;
            string _invocationId = null;

            if (_shouldTrace)
            {
                _invocationId = ServiceClientTracing.NextInvocationId.ToString();
                Dictionary <string, object> tracingParameters = new Dictionary <string, object>();
                tracingParameters.Add("resourceGroupName", resourceGroupName);
                tracingParameters.Add("serviceName", serviceName);
                tracingParameters.Add("parameters", parameters);
                tracingParameters.Add("apiVersion", apiVersion);
                tracingParameters.Add("configurationName", configurationName);
                tracingParameters.Add("cancellationToken", cancellationToken);
                ServiceClientTracing.Enter(_invocationId, this, "BeginValidate", tracingParameters);
            }
            // Construct URL
            var _baseUrl = Client.BaseUri.AbsoluteUri;
            var _url     = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/tenant/{configurationName}/validate").ToString();

            _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName));
            _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName));
            _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId));
            _url = _url.Replace("{configurationName}", System.Uri.EscapeDataString(configurationName));
            List <string> _queryParameters = new List <string>();

            if (apiVersion != null)
            {
                _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion)));
            }
            if (_queryParameters.Count > 0)
            {
                _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters);
            }
            // Create HTTP transport objects
            var _httpRequest = new HttpRequestMessage();
            HttpResponseMessage _httpResponse = null;

            _httpRequest.Method     = new HttpMethod("POST");
            _httpRequest.RequestUri = new System.Uri(_url);
            // Set Headers
            if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value)
            {
                _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString());
            }
            if (Client.AcceptLanguage != null)
            {
                if (_httpRequest.Headers.Contains("accept-language"))
                {
                    _httpRequest.Headers.Remove("accept-language");
                }
                _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage);
            }


            if (customHeaders != null)
            {
                foreach (var _header in customHeaders)
                {
                    if (_httpRequest.Headers.Contains(_header.Key))
                    {
                        _httpRequest.Headers.Remove(_header.Key);
                    }
                    _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value);
                }
            }

            // Serialize Request
            string _requestContent = null;

            if (parameters != null)
            {
                _requestContent      = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings);
                _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8);
                _httpRequest.Content.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8");
            }
            // Set Credentials
            if (Client.Credentials != null)
            {
                cancellationToken.ThrowIfCancellationRequested();
                await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
            }
            // Send Request
            if (_shouldTrace)
            {
                ServiceClientTracing.SendRequest(_invocationId, _httpRequest);
            }
            cancellationToken.ThrowIfCancellationRequested();
            _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false);

            if (_shouldTrace)
            {
                ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse);
            }
            HttpStatusCode _statusCode = _httpResponse.StatusCode;

            cancellationToken.ThrowIfCancellationRequested();
            string _responseContent = null;

            if ((int)_statusCode != 200 && (int)_statusCode != 202)
            {
                var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
                try
                {
                    _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);

                    ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject <ErrorResponse>(_responseContent, Client.DeserializationSettings);
                    if (_errorBody != null)
                    {
                        ex.Body = _errorBody;
                    }
                }
                catch (JsonException)
                {
                    // Ignore the exception
                }
                ex.Request  = new HttpRequestMessageWrapper(_httpRequest, _requestContent);
                ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent);
                if (_shouldTrace)
                {
                    ServiceClientTracing.Error(_invocationId, ex);
                }
                _httpRequest.Dispose();
                if (_httpResponse != null)
                {
                    _httpResponse.Dispose();
                }
                throw ex;
            }
            // Create Result
            var _result = new AzureOperationResponse <OperationResultContract>();

            _result.Request  = _httpRequest;
            _result.Response = _httpResponse;
            if (_httpResponse.Headers.Contains("x-ms-request-id"))
            {
                _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
            }
            // Deserialize Response
            if ((int)_statusCode == 200)
            {
                _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);

                try
                {
                    _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject <OperationResultContract>(_responseContent, Client.DeserializationSettings);
                }
                catch (JsonException ex)
                {
                    _httpRequest.Dispose();
                    if (_httpResponse != null)
                    {
                        _httpResponse.Dispose();
                    }
                    throw new SerializationException("Unable to deserialize the response.", _responseContent, ex);
                }
            }
            if (_shouldTrace)
            {
                ServiceClientTracing.Exit(_invocationId, _result);
            }
            return(_result);
        }
Example #5
0
 /// <summary>
 /// Begin deploy operation of configuration from the specified Git
 /// branch to the configuration database in an Api Management
 /// service.To determine whether the operation has finished processing
 /// the request, call GetTenantConfigurationLongRunningOperationStatus.
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.Azure.Management.ApiManagement.ITenantConfigurationOperations.
 /// </param>
 /// <param name='resourceGroupName'>
 /// Required. The name of the resource group.
 /// </param>
 /// <param name='serviceName'>
 /// Required. The name of the Api Management service.
 /// </param>
 /// <param name='parameters'>
 /// Required. Deploy Configuration parameters.
 /// </param>
 /// <returns>
 /// A standard service response for long running tenant operations.
 /// </returns>
 public static Task <TenantLongRunningOperationResponse> BeginDeployAsync(this ITenantConfigurationOperations operations, string resourceGroupName, string serviceName, DeployConfigurationParameters parameters)
 {
     return(operations.BeginDeployAsync(resourceGroupName, serviceName, parameters, CancellationToken.None));
 }
Example #6
0
 /// <summary>
 /// Begin deploy operation of configuration from the specified Git
 /// branch to the configuration database in an Api Management
 /// service.To determine whether the operation has finished processing
 /// the request, call GetTenantConfigurationLongRunningOperationStatus.
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.Azure.Management.ApiManagement.ITenantConfigurationOperations.
 /// </param>
 /// <param name='resourceGroupName'>
 /// Required. The name of the resource group.
 /// </param>
 /// <param name='serviceName'>
 /// Required. The name of the Api Management service.
 /// </param>
 /// <param name='parameters'>
 /// Required. Deploy Configuration parameters.
 /// </param>
 /// <returns>
 /// A standard service response for long running tenant operations.
 /// </returns>
 public static TenantLongRunningOperationResponse BeginDeploy(this ITenantConfigurationOperations operations, string resourceGroupName, string serviceName, DeployConfigurationParameters parameters)
 {
     return(Task.Factory.StartNew((object s) =>
     {
         return ((ITenantConfigurationOperations)s).BeginDeployAsync(resourceGroupName, serviceName, parameters);
     }
                                  , operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult());
 }
Example #7
0
 /// <summary>
 /// This operation applies changes from the specified Git branch to the
 /// configuration database. This is a long running operation and could take
 /// several minutes to complete.
 /// <see href="https://azure.microsoft.com/en-us/documentation/articles/api-management-configuration-repository-git/#to-deploy-any-service-configuration-changes-to-the-api-management-service-instance" />
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group.
 /// </param>
 /// <param name='serviceName'>
 /// The name of the API Management service.
 /// </param>
 /// <param name='parameters'>
 /// Deploy Configuration parameters.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <OperationResultContract> DeployAsync(this ITenantConfigurationOperations operations, string resourceGroupName, string serviceName, DeployConfigurationParameters parameters, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.DeployWithHttpMessagesAsync(resourceGroupName, serviceName, parameters, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
Example #8
0
 /// <summary>
 /// This operation applies changes from the specified Git branch to the
 /// configuration database. This is a long running operation and could take
 /// several minutes to complete.
 /// <see href="https://azure.microsoft.com/en-us/documentation/articles/api-management-configuration-repository-git/#to-deploy-any-service-configuration-changes-to-the-api-management-service-instance" />
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group.
 /// </param>
 /// <param name='serviceName'>
 /// The name of the API Management service.
 /// </param>
 /// <param name='parameters'>
 /// Deploy Configuration parameters.
 /// </param>
 public static OperationResultContract Deploy(this ITenantConfigurationOperations operations, string resourceGroupName, string serviceName, DeployConfigurationParameters parameters)
 {
     return(operations.DeployAsync(resourceGroupName, serviceName, parameters).GetAwaiter().GetResult());
 }
        public void TenantGitSaveValidateAndDeploy()
        {
            TestUtilities.StartTest("SmapiFunctionalTests", "TenantGitSaveValidateAndDeploy");

            try
            {
                var getResponse = ApiManagementClient.TenantAccessGit.Get(ResourceGroupName, ApiManagementServiceName);

                Assert.NotNull(getResponse);
                Assert.NotNull(getResponse.Value);
                Assert.Equal(HttpStatusCode.OK, getResponse.StatusCode);

                // enable git access
                var parameters = new AccessInformationUpdateParameters
                {
                    Enabled = true
                };
                var response = ApiManagementClient.TenantAccessGit.Update(ResourceGroupName,
                                                                          ApiManagementServiceName, parameters, getResponse.ETag);

                Assert.NotNull(response);
                Assert.Equal(HttpStatusCode.NoContent, response.StatusCode);

                // test git is enabled
                getResponse = ApiManagementClient.TenantAccessGit.Get(ResourceGroupName, ApiManagementServiceName);

                Assert.NotNull(getResponse);
                Assert.NotNull(getResponse.Value);
                Assert.True(getResponse.Value.Enabled);

                // get the sync state of the repository
                var getSyncState = ApiManagementClient.TenantConfigurationSyncState.Get(ResourceGroupName,
                                                                                        ApiManagementServiceName);

                Assert.NotNull(getSyncState);
                Assert.NotNull(getSyncState.Value);
                Assert.True(getSyncState.Value.IsGitEnabled);

                // save changes in current database to configuration database
                var saveConfigurationParameters = new SaveConfigurationParameter("master");
                var getSaveResponse             = ApiManagementClient.TenantConfiguration.Save(
                    ResourceGroupName,
                    ApiManagementServiceName,
                    saveConfigurationParameters);

                Assert.NotNull(getSaveResponse);
                Assert.Equal(HttpStatusCode.OK, getSaveResponse.StatusCode);
                Assert.NotNull(getSaveResponse.OperationResult);
                Assert.Equal(AsyncOperationState.Succeeded, getSaveResponse.OperationResult.Status);

                // get the sync state of the repository after Save
                getSyncState = ApiManagementClient.TenantConfigurationSyncState.Get(ResourceGroupName,
                                                                                    ApiManagementServiceName);

                Assert.NotNull(getSyncState);
                Assert.NotNull(getSyncState.Value);
                Assert.True(getSyncState.Value.IsGitEnabled);
                Assert.Equal("master", getSyncState.Value.Branch);

                // validate changes in current database to configuration database
                var deployConfigurationParameters = new DeployConfigurationParameters("master");
                var getValidateResponse           = ApiManagementClient.TenantConfiguration.Validate(
                    ResourceGroupName,
                    ApiManagementServiceName,
                    deployConfigurationParameters);

                Assert.NotNull(getValidateResponse);
                Assert.Equal(HttpStatusCode.OK, getValidateResponse.StatusCode);
                Assert.NotNull(getSaveResponse.OperationResult);
                Assert.Equal(AsyncOperationState.Succeeded, getSaveResponse.OperationResult.Status);

                // deploy changes in current database to configuration database
                var getDeployResponse = ApiManagementClient.TenantConfiguration.Deploy(
                    ResourceGroupName,
                    ApiManagementServiceName,
                    deployConfigurationParameters);

                Assert.NotNull(getDeployResponse);
                Assert.Equal(HttpStatusCode.OK, getDeployResponse.StatusCode);
                Assert.NotNull(getSaveResponse.OperationResult);
                Assert.Equal(AsyncOperationState.Succeeded, getSaveResponse.OperationResult.Status);

                // get the sync state of the repository
                getSyncState = ApiManagementClient.TenantConfigurationSyncState.Get(ResourceGroupName,
                                                                                    ApiManagementServiceName);

                Assert.NotNull(getSyncState);
                Assert.NotNull(getSyncState.Value);
                Assert.True(getSyncState.Value.IsGitEnabled);
                Assert.Equal("master", getSyncState.Value.Branch);

                // disable git access
                parameters.Enabled = false;

                response = ApiManagementClient.TenantAccessGit.Update(ResourceGroupName,
                                                                      ApiManagementServiceName, parameters, getResponse.ETag);

                Assert.NotNull(response);
                Assert.Equal(HttpStatusCode.NoContent, response.StatusCode);

                // test git is disabled
                getResponse = ApiManagementClient.TenantAccessGit.Get(ResourceGroupName, ApiManagementServiceName);

                Assert.NotNull(getResponse);
                Assert.NotNull(getResponse.Value);
                Assert.False(getResponse.Value.Enabled);
            }
            finally
            {
                TestUtilities.EndTest();
            }
        }