Пример #1
0
        private void ValidateMap(IntegrationAccountMap map)
        {
            Assert.Equal("/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountSdkTest/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5935/maps/IntegrationAccountMap1", map.Id);
            Assert.Equal("IntegrationAccountMap1", map.Name);
            Assert.Equal("Microsoft.Logic/integrationAccounts/maps", map.Type);

            Assert.Equal(MapType.Xslt, map.MapType);
            Assert.NotNull(map.ContentLink.Uri);
            Assert.Equal("\"0x8D33E418F1236A3\"", map.ContentLink.ContentVersion);
            Assert.Equal(3056, map.ContentLink.ContentSize);
            Assert.Equal("md5", map.ContentLink.ContentHash.Algorithm);
            Assert.NotNull(map.ContentLink.ContentHash.Value);


            //"2016-02-26T00:12:48.7095746Z"
            Assert.Equal(2016, map.CreatedTime.Value.Year);
            Assert.Equal(02, map.CreatedTime.Value.Month);
            Assert.Equal(26, map.CreatedTime.Value.Day);
            Assert.Equal(00, map.CreatedTime.Value.Hour);
            Assert.Equal(12, map.CreatedTime.Value.Minute);
            Assert.Equal(48, map.CreatedTime.Value.Second);
            Assert.Equal(DateTimeKind.Utc, map.CreatedTime.Value.Kind);

            //{2/24/2016 7:49:39 PM}
            Assert.Equal(2016, map.ChangedTime.Value.Year);
            Assert.Equal(02, map.ChangedTime.Value.Month);
            Assert.Equal(26, map.ChangedTime.Value.Day);
            Assert.Equal(00, map.ChangedTime.Value.Hour);
            Assert.Equal(12, map.ChangedTime.Value.Minute);
            Assert.Equal(48, map.ChangedTime.Value.Second);
            Assert.Equal(DateTimeKind.Utc, map.ChangedTime.Value.Kind);
        }
Пример #2
0
        private void ValidateMap(IntegrationAccountMap map)
        {
            Assert.True(this.ValidateIdFormat(id: map.Id, entityTypeName: "integrationAccounts", entitySubtypeName: "maps"));
            Assert.Equal("IntegrationAccountMap1", map.Name);
            Assert.Equal("Microsoft.Logic/integrationAccounts/maps", map.Type);

            Assert.Equal(MapType.Xslt, map.MapType);
            Assert.NotNull(map.ContentLink.Uri);
            Assert.Equal("\"0x8D33E418F1236A3\"", map.ContentLink.ContentVersion);
            Assert.Equal(3056, map.ContentLink.ContentSize);
            Assert.Equal("md5", map.ContentLink.ContentHash.Algorithm);
            Assert.NotNull(map.ContentLink.ContentHash.Value);


            //"2016-02-26T00:12:48.7095746Z"
            Assert.Equal(2016, map.CreatedTime.Value.Year);
            Assert.Equal(02, map.CreatedTime.Value.Month);
            Assert.Equal(26, map.CreatedTime.Value.Day);
            Assert.Equal(00, map.CreatedTime.Value.Hour);
            Assert.Equal(12, map.CreatedTime.Value.Minute);
            Assert.Equal(48, map.CreatedTime.Value.Second);
            Assert.Equal(DateTimeKind.Utc, map.CreatedTime.Value.Kind);

            //{2/24/2016 7:49:39 PM}
            Assert.Equal(2016, map.ChangedTime.Value.Year);
            Assert.Equal(02, map.ChangedTime.Value.Month);
            Assert.Equal(26, map.ChangedTime.Value.Day);
            Assert.Equal(00, map.ChangedTime.Value.Hour);
            Assert.Equal(12, map.ChangedTime.Value.Minute);
            Assert.Equal(48, map.ChangedTime.Value.Second);
            Assert.Equal(DateTimeKind.Utc, map.ChangedTime.Value.Kind);
        }
Пример #3
0
 private void ValidateMap(IntegrationAccountMap expected, IntegrationAccountMap actual)
 {
     Assert.Equal(expected.Name, actual.Name);
     Assert.Equal(expected.MapType, actual.MapType);
     Assert.NotNull(actual.ContentLink.ContentSize);
     Assert.NotEmpty(actual.ContentLink.Uri);
     Assert.NotNull(actual.CreatedTime);
     Assert.NotNull(actual.ChangedTime);
 }
 /// <summary>
 /// Creates integration account map.
 /// </summary>
 /// <param name="resourceGroupName">The integration account resource group name.</param>
 /// <param name="integrationAccountName">The integration account name.</param>
 /// <param name="integrationAccountMapName">The integration account map name.</param>
 /// <param name="integrationAccountMap">The integration account map object.</param>
 /// <returns>Newly created integration account map object.</returns>
 public IntegrationAccountMap CreateIntegrationAccountMap(string resourceGroupName, string integrationAccountName, string integrationAccountMapName, IntegrationAccountMap integrationAccountMap)
 {
     if (!this.DoesIntegrationAccountMapExist(resourceGroupName, integrationAccountName,integrationAccountMapName))
     {
         return this.LogicManagementClient.IntegrationAccountMaps.CreateOrUpdate(resourceGroupName, integrationAccountName, integrationAccountMapName, integrationAccountMap);
     }
     else
     {
         throw new PSArgumentException(string.Format(CultureInfo.InvariantCulture,
             Properties.Resource.ResourceAlreadyExists, integrationAccountMapName, resourceGroupName));
     }
 }
Пример #5
0
        /// <summary>
        /// Creates an Integration account map.
        /// </summary>
        /// <param name="integrationAccountMapName">Name of the Map</param>
        /// <param name="integrationAccountName">Integration account name</param>
        /// <returns>Map instance</returns>
        private IntegrationAccountMap CreateIntegrationAccountMapInstance(string integrationAccountMapName,
                                                                          string integrationAccountName
                                                                          )
        {
            var map = new IntegrationAccountMap
            {
                ContentType = "application/xml",
                Location    = Constants.DefaultLocation,
                Name        = integrationAccountMapName,
                Tags        = new Dictionary <string, string>()
                {
                    { "integrationAccountMapName", integrationAccountMapName }
                },
                MapType  = MapType.Xslt,
                Content  = this.MapContent,
                Metadata = integrationAccountMapName
            };

            return(map);
        }
Пример #6
0
        private IntegrationAccountMap CreateIntegrationAccountMap(string mapName, string mapType)
        {
            string contentType;
            string mapContent;

            switch (mapType)
            {
            case MapType.Xslt:
                contentType = "application/xml";
                mapContent  = this.XsltMapContent;
                break;

            case MapType.Xslt20:
                contentType = "application/xml";
                mapContent  = this.Xslt20MapContent;
                break;

            case MapType.Xslt30:
                contentType = "application/xml";
                mapContent  = this.Xslt30MapContent;
                break;

            case MapType.Liquid:
            default:
                contentType = "text/plain";
                mapContent  = this.LiquidMapContent;
                break;
            }

            var map = new IntegrationAccountMap(mapType,
                                                name: mapName,
                                                location: Constants.DefaultLocation,
                                                content: mapContent,
                                                contentType: contentType);

            return(map);
        }
Пример #7
0
        /// <summary>
        /// Executes the integration account map update command.
        /// </summary>
        public override void ExecuteCmdlet()
        {
            base.ExecuteCmdlet();

            var integrationAccount = IntegrationAccountClient.GetIntegrationAccount(this.ResourceGroupName, this.Name);

            var integrationAccountMap = IntegrationAccountClient.GetIntegrationAccountMap(this.ResourceGroupName,
                                                                                          this.Name,
                                                                                          this.MapName);

            var integrationAccountMapCopy = new IntegrationAccountMap(mapType: integrationAccountMap.MapType,
                                                                      id: integrationAccountMap.Id,
                                                                      name: integrationAccountMap.Name,
                                                                      type: integrationAccountMap.Type,
                                                                      location: integrationAccountMap.Location,
                                                                      tags: integrationAccountMap.Tags,
                                                                      parametersSchema: integrationAccountMap.ParametersSchema,
                                                                      createdTime: integrationAccountMap.CreatedTime,
                                                                      changedTime: integrationAccountMap.ChangedTime,
                                                                      content: integrationAccountMap.Content,
                                                                      contentLink: null,
                                                                      metadata: integrationAccountMap.Metadata);

            if (!string.IsNullOrEmpty(this.MapFilePath))
            {
                integrationAccountMapCopy.Content = CmdletHelper.GetStringContentFromFile(this.TryResolvePath(this.MapFilePath));
            }

            if (!string.IsNullOrEmpty(this.MapDefinition))
            {
                integrationAccountMapCopy.Content = this.MapDefinition;
                CmdletHelper.GetStringContentFromFile(this.TryResolvePath(this.MapFilePath));
            }

            if (!string.IsNullOrEmpty(this.MapType))
            {
                integrationAccountMapCopy.MapType = this.MapType;
            }

            integrationAccountMapCopy.ContentType = this.MapType.Equals("liquid", StringComparison.CurrentCultureIgnoreCase) ? "text/plain" : "application/xml";

            if (this.Metadata != null)
            {
                integrationAccountMapCopy.Metadata = CmdletHelper.ConvertToMetadataJObject(this.Metadata);
            }

            ConfirmAction(Force.IsPresent,
                          string.Format(CultureInfo.InvariantCulture, Properties.Resource.UpdateResourceWarning,
                                        "Microsoft.Logic/integrationAccounts/maps", this.Name),
                          string.Format(CultureInfo.InvariantCulture, Properties.Resource.UpdateResourceMessage,
                                        "Microsoft.Logic/integrationAccounts/maps", this.Name),
                          Name,
                          () =>
            {
                this.WriteObject(
                    IntegrationAccountClient.UpdateIntegrationAccountMap(this.ResourceGroupName, this.Name,
                                                                         this.MapName,
                                                                         integrationAccountMapCopy), true);
            },
                          null);
        }
 /// <summary>
 /// Updates the integration account.
 /// </summary>
 /// <param name="resourceGroupName">The integration account map resource group.</param>
 /// <param name="integrationAccountName">The integration account name.</param>
 /// <param name="integrationAccountMapName">The integration account map name.</param>
 /// <param name="integrationAccountMap">The integration account map object.</param>
 /// <returns>Updated integration account map</returns>
 public IntegrationAccountMap UpdateIntegrationAccountMap(string resourceGroupName, string integrationAccountName, string integrationAccountMapName, IntegrationAccountMap integrationAccountMap)
 {
     return(this.LogicManagementClient.IntegrationAccountMaps.CreateOrUpdate(resourceGroupName, integrationAccountName, integrationAccountMapName, integrationAccountMap));
 }
 /// <summary>
 /// Creates integration account map.
 /// </summary>
 /// <param name="resourceGroupName">The integration account resource group name.</param>
 /// <param name="integrationAccountName">The integration account name.</param>
 /// <param name="integrationAccountMapName">The integration account map name.</param>
 /// <param name="integrationAccountMap">The integration account map object.</param>
 /// <returns>Newly created integration account map object.</returns>
 public IntegrationAccountMap CreateIntegrationAccountMap(string resourceGroupName, string integrationAccountName, string integrationAccountMapName, IntegrationAccountMap integrationAccountMap)
 {
     if (!this.DoesIntegrationAccountMapExist(resourceGroupName, integrationAccountName, integrationAccountMapName))
     {
         return(this.LogicManagementClient.IntegrationAccountMaps.CreateOrUpdate(resourceGroupName, integrationAccountName, integrationAccountMapName, integrationAccountMap));
     }
     else
     {
         throw new PSArgumentException(string.Format(CultureInfo.InvariantCulture,
                                                     Properties.Resource.ResourceAlreadyExists, integrationAccountMapName, resourceGroupName));
     }
 }
 /// <summary>
 /// Updates the integration account.
 /// </summary>
 /// <param name="resourceGroupName">The integration account map resource group.</param>
 /// <param name="integrationAccountName">The integration account name.</param>
 /// <param name="integrationAccountMapName">The integration account map name.</param>
 /// <param name="integrationAccountMap">The integration account map object.</param>
 /// <returns>Updated integration account map</returns>
 public IntegrationAccountMap UpdateIntegrationAccountMap(string resourceGroupName, string integrationAccountName, string integrationAccountMapName, IntegrationAccountMap integrationAccountMap)
 {
     return this.LogicManagementClient.IntegrationAccountMaps.CreateOrUpdate(resourceGroupName, integrationAccountName, integrationAccountMapName, integrationAccountMap);
 }
Пример #11
0
        /// <summary>
        /// Creates or updates an integration account map.
        /// </summary>
        /// <param name='resourceGroupName'>
        /// The resource group name.
        /// </param>
        /// <param name='integrationAccountName'>
        /// The integration account name.
        /// </param>
        /// <param name='mapName'>
        /// The integration account map name.
        /// </param>
        /// <param name='map'>
        /// The integration account map.
        /// </param>
        /// <param name='customHeaders'>
        /// Headers that will be added to request.
        /// </param>
        /// <param name='cancellationToken'>
        /// The cancellation token.
        /// </param>
        /// <exception cref="CloudException">
        /// 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>
        /// <return>
        /// A response object containing the response body and response headers.
        /// </return>
        public async Task <AzureOperationResponse <IntegrationAccountMap> > CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string mapName, IntegrationAccountMap map, Dictionary <string, List <string> > customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
        {
            if (this.Client.SubscriptionId == null)
            {
                throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId");
            }
            if (resourceGroupName == null)
            {
                throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName");
            }
            if (integrationAccountName == null)
            {
                throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName");
            }
            if (mapName == null)
            {
                throw new ValidationException(ValidationRules.CannotBeNull, "mapName");
            }
            if (map == null)
            {
                throw new ValidationException(ValidationRules.CannotBeNull, "map");
            }
            string apiVersion = "2015-08-01-preview";
            // 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("integrationAccountName", integrationAccountName);
                tracingParameters.Add("mapName", mapName);
                tracingParameters.Add("apiVersion", apiVersion);
                tracingParameters.Add("map", map);
                tracingParameters.Add("cancellationToken", cancellationToken);
                ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters);
            }
            // Construct URL
            var _baseUrl = this.Client.BaseUri.AbsoluteUri;
            var _url     = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/maps/{mapName}").ToString();

            _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId));
            _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName));
            _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName));
            _url = _url.Replace("{mapName}", Uri.EscapeDataString(mapName));
            List <string> _queryParameters = new List <string>();

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

            _httpRequest.Method     = new HttpMethod("PUT");
            _httpRequest.RequestUri = new Uri(_url);
            // Set Headers
            if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value)
            {
                _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString());
            }
            if (this.Client.AcceptLanguage != null)
            {
                if (_httpRequest.Headers.Contains("accept-language"))
                {
                    _httpRequest.Headers.Remove("accept-language");
                }
                _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.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 (map != null)
            {
                _requestContent      = SafeJsonConvert.SerializeObject(map, this.Client.SerializationSettings);
                _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8);
                _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8");
            }
            // Set Credentials
            if (this.Client.Credentials != null)
            {
                cancellationToken.ThrowIfCancellationRequested();
                await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
            }
            // Send Request
            if (_shouldTrace)
            {
                ServiceClientTracing.SendRequest(_invocationId, _httpRequest);
            }
            cancellationToken.ThrowIfCancellationRequested();
            _httpResponse = await this.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 != 201)
            {
                var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
                try
                {
                    _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);

                    CloudError _errorBody = SafeJsonConvert.DeserializeObject <CloudError>(_responseContent, this.Client.DeserializationSettings);
                    if (_errorBody != null)
                    {
                        ex      = new CloudException(_errorBody.Message);
                        ex.Body = _errorBody;
                    }
                }
                catch (JsonException)
                {
                    // Ignore the exception
                }
                ex.Request  = new HttpRequestMessageWrapper(_httpRequest, _requestContent);
                ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent);
                if (_httpResponse.Headers.Contains("x-ms-request-id"))
                {
                    ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
                }
                if (_shouldTrace)
                {
                    ServiceClientTracing.Error(_invocationId, ex);
                }
                _httpRequest.Dispose();
                if (_httpResponse != null)
                {
                    _httpResponse.Dispose();
                }
                throw ex;
            }
            // Create Result
            var _result = new AzureOperationResponse <IntegrationAccountMap>();

            _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 = SafeJsonConvert.DeserializeObject <IntegrationAccountMap>(_responseContent, this.Client.DeserializationSettings);
                }
                catch (JsonException ex)
                {
                    _httpRequest.Dispose();
                    if (_httpResponse != null)
                    {
                        _httpResponse.Dispose();
                    }
                    throw new SerializationException("Unable to deserialize the response.", _responseContent, ex);
                }
            }
            // Deserialize Response
            if ((int)_statusCode == 201)
            {
                _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);

                try
                {
                    _result.Body = SafeJsonConvert.DeserializeObject <IntegrationAccountMap>(_responseContent, this.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);
        }
 /// <summary>
 /// Creates or updates an integration account map.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The resource group name.
 /// </param>
 /// <param name='integrationAccountName'>
 /// The integration account name.
 /// </param>
 /// <param name='mapName'>
 /// The integration account map name.
 /// </param>
 /// <param name='map'>
 /// The integration account map.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <IntegrationAccountMap> CreateOrUpdateAsync(this IIntegrationAccountMapsOperations operations, string resourceGroupName, string integrationAccountName, string mapName, IntegrationAccountMap map, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, integrationAccountName, mapName, map, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
 /// <summary>
 /// Creates or updates an integration account map.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The resource group name.
 /// </param>
 /// <param name='integrationAccountName'>
 /// The integration account name.
 /// </param>
 /// <param name='mapName'>
 /// The integration account map name.
 /// </param>
 /// <param name='map'>
 /// The integration account map.
 /// </param>
 public static IntegrationAccountMap CreateOrUpdate(this IIntegrationAccountMapsOperations operations, string resourceGroupName, string integrationAccountName, string mapName, IntegrationAccountMap map)
 {
     return(Task.Factory.StartNew(s => ((IIntegrationAccountMapsOperations)s).CreateOrUpdateAsync(resourceGroupName, integrationAccountName, mapName, map), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult());
 }
Пример #14
0
 /// <summary>
 /// Creates or updates an integration account map.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The resource group name.
 /// </param>
 /// <param name='integrationAccountName'>
 /// The integration account name.
 /// </param>
 /// <param name='mapName'>
 /// The integration account map name.
 /// </param>
 /// <param name='map'>
 /// The integration account map.
 /// </param>
 public static IntegrationAccountMap CreateOrUpdate(this IIntegrationAccountMapsOperations operations, string resourceGroupName, string integrationAccountName, string mapName, IntegrationAccountMap map)
 {
     return(operations.CreateOrUpdateAsync(resourceGroupName, integrationAccountName, mapName, map).GetAwaiter().GetResult());
 }