コード例 #1
0
        private void ValidateSchema(IntegrationAccountSchema schema)
        {
            Assert.Equal("/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountSdkTest/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1600/schemas/IntegrationAccountSchema2147", schema.Id);
            Assert.Equal("IntegrationAccountSchema2147", schema.Name);
            Assert.Equal("Microsoft.Logic/integrationAccounts/schemas", schema.Type);

            Assert.Equal(SchemaType.Xml, schema.SchemaType);
            Assert.Equal("http://Inbound_EDI.OrderFile", schema.TargetNamespace);
            Assert.NotNull(schema.ContentLink.Uri);
            Assert.Equal("\"0x8D33E2EA259B235\"", schema.ContentLink.ContentVersion);
            Assert.Equal(7901, schema.ContentLink.ContentSize);
            Assert.Equal("md5", schema.ContentLink.ContentHash.Algorithm);
            Assert.NotNull(schema.ContentLink.ContentHash.Value);


            //"2016-02-25T21:57:21.3956457Z"
            Assert.Equal(2016, schema.CreatedTime.Value.Year);
            Assert.Equal(02, schema.CreatedTime.Value.Month);
            Assert.Equal(25, schema.CreatedTime.Value.Day);
            Assert.Equal(21, schema.CreatedTime.Value.Hour);
            Assert.Equal(57, schema.CreatedTime.Value.Minute);
            Assert.Equal(21, schema.CreatedTime.Value.Second);
            Assert.Equal(DateTimeKind.Utc, schema.CreatedTime.Value.Kind);

            //{2/24/2016 7:49:39 PM}
            Assert.Equal(2016, schema.ChangedTime.Value.Year);
            Assert.Equal(02, schema.ChangedTime.Value.Month);
            Assert.Equal(25, schema.ChangedTime.Value.Day);
            Assert.Equal(21, schema.ChangedTime.Value.Hour);
            Assert.Equal(57, schema.ChangedTime.Value.Minute);
            Assert.Equal(21, schema.ChangedTime.Value.Second);
            Assert.Equal(DateTimeKind.Utc, schema.ChangedTime.Value.Kind);
        }
 private void ValidateSchema(IntegrationAccountSchema expected, IntegrationAccountSchema actual)
 {
     Assert.Equal(expected.Name, actual.Name);
     Assert.Equal(expected.SchemaType, actual.SchemaType);
     Assert.Equal(expected.TargetNamespace, actual.TargetNamespace);
     Assert.NotEmpty(actual.ContentLink.Uri);
     Assert.NotNull(actual.ContentLink.ContentSize);
     Assert.NotNull(actual.CreatedTime);
     Assert.NotNull(actual.ChangedTime);
 }
コード例 #3
0
 /// <summary>
 /// Creates integration account schema.
 /// </summary>
 /// <param name="resourceGroupName">The integration account resource group name.</param>
 /// <param name="integrationAccountName">The integration account name.</param>
 /// <param name="integrationAccountSchemaName">The integration account name.</param>
 /// <param name="integrationAccountSchema">The integration account schema object.</param>
 /// <returns>Newly created integration account schema object.</returns>
 public IntegrationAccountSchema CreateIntegrationAccountSchema(string resourceGroupName, string integrationAccountName, string integrationAccountSchemaName, IntegrationAccountSchema integrationAccountSchema)
 {
     if (!this.DoesIntegrationAccountSchemaExist(resourceGroupName, integrationAccountName,integrationAccountSchemaName))
     {
         return this.LogicManagementClient.IntegrationAccountSchemas.CreateOrUpdate(resourceGroupName, integrationAccountName, integrationAccountSchemaName, integrationAccountSchema);
     }
     else
     {
         throw new PSArgumentException(string.Format(CultureInfo.InvariantCulture,
             Properties.Resource.ResourceAlreadyExists, integrationAccountSchemaName, resourceGroupName));
     }
 }
コード例 #4
0
        /// <summary>
        /// Creates an Integration account schema
        /// </summary>
        /// <param name="integrationAccountSchemaName">Name of the schema</param>
        /// <param name="integrationAccountName">Name of the integration account</param>
        /// <returns>Schema instance</returns>
        private IntegrationAccountSchema CreateIntegrationAccountSchemaInstance(string integrationAccountSchemaName,
                                                                                string integrationAccountName)
        {
            IDictionary <string, string> tags = new Dictionary <string, string>();

            tags.Add("integrationAccountSchemaName", integrationAccountSchemaName);

            var schema = new IntegrationAccountSchema
            {
                ContentType = "application/xml",
                Location    = Constants.DefaultLocation,
                Name        = integrationAccountSchemaName,
                Tags        = tags,
                SchemaType  = SchemaType.Xml,
                Content     = this.SchemaContent,
                Metadata    = integrationAccountSchemaName
            };

            return(schema);
        }
コード例 #5
0
 /// <summary>
 /// Updates the integration account.
 /// </summary>
 /// <param name="resourceGroupName">The integration account schema resource group.</param>
 /// <param name="integrationAccountName">The integration account name.</param>
 /// <param name="integrationAccountSchemaName">The integration account schema name.</param>
 /// <param name="integrationAccountSchema">The integration account schema object.</param>
 /// <returns>Updated integration account schema</returns>
 public IntegrationAccountSchema UpdateIntegrationAccountSchema(string resourceGroupName, string integrationAccountName, string integrationAccountSchemaName, IntegrationAccountSchema integrationAccountSchema)
 {
     return(this.LogicManagementClient.IntegrationAccountSchemas.CreateOrUpdate(resourceGroupName, integrationAccountName, integrationAccountSchemaName, integrationAccountSchema));
 }
コード例 #6
0
 /// <summary>
 /// Creates integration account schema.
 /// </summary>
 /// <param name="resourceGroupName">The integration account resource group name.</param>
 /// <param name="integrationAccountName">The integration account name.</param>
 /// <param name="integrationAccountSchemaName">The integration account name.</param>
 /// <param name="integrationAccountSchema">The integration account schema object.</param>
 /// <returns>Newly created integration account schema object.</returns>
 public IntegrationAccountSchema CreateIntegrationAccountSchema(string resourceGroupName, string integrationAccountName, string integrationAccountSchemaName, IntegrationAccountSchema integrationAccountSchema)
 {
     if (!this.DoesIntegrationAccountSchemaExist(resourceGroupName, integrationAccountName, integrationAccountSchemaName))
     {
         return(this.LogicManagementClient.IntegrationAccountSchemas.CreateOrUpdate(resourceGroupName, integrationAccountName, integrationAccountSchemaName, integrationAccountSchema));
     }
     else
     {
         throw new PSArgumentException(string.Format(CultureInfo.InvariantCulture,
                                                     Properties.Resource.ResourceAlreadyExists, integrationAccountSchemaName, resourceGroupName));
     }
 }
コード例 #7
0
        /// <summary>
        /// Executes the integration account schema create command.
        /// </summary>
        public override void ExecuteCmdlet()
        {
            base.ExecuteCmdlet();

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

            var integrationAccountSchema = IntegrationAccountClient.GetIntegrationAccountSchema(this.ResourceGroupName,
                                                                                                this.Name,
                                                                                                this.SchemaName);

            var integrationAccountSchemaCopy = new IntegrationAccountSchema(schemaType: integrationAccountSchema.SchemaType,
                                                                            id: integrationAccountSchema.Id,
                                                                            name: integrationAccountSchema.Name,
                                                                            type: integrationAccountSchema.Type,
                                                                            location: integrationAccountSchema.Location,
                                                                            tags: integrationAccountSchema.Tags,
                                                                            targetNamespace: integrationAccountSchema.TargetNamespace,
                                                                            documentName: integrationAccountSchema.DocumentName,
                                                                            fileName: integrationAccountSchema.FileName,
                                                                            createdTime: integrationAccountSchema.CreatedTime,
                                                                            changedTime: integrationAccountSchema.ChangedTime,
                                                                            metadata: integrationAccountSchema.Metadata,
                                                                            content: integrationAccountSchema.Content,
                                                                            contentType: integrationAccountSchema.ContentType,
                                                                            contentLink: null);

            if (!string.IsNullOrEmpty(this.SchemaFilePath))
            {
                integrationAccountSchemaCopy.Content =
                    CmdletHelper.GetContentFromFile(this.TryResolvePath(this.SchemaFilePath));
            }

            if (!string.IsNullOrEmpty(this.SchemaDefinition))
            {
                integrationAccountSchemaCopy.Content = this.SchemaDefinition;
            }

            if (!string.IsNullOrEmpty(this.schemaType))
            {
                integrationAccountSchemaCopy.SchemaType = (SchemaType)Enum.Parse(typeof(SchemaType), this.SchemaType);
            }

            if (!string.IsNullOrEmpty(this.ContentType))
            {
                integrationAccountSchemaCopy.ContentType = this.ContentType;
            }

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

            ConfirmAction(Force.IsPresent,
                          string.Format(CultureInfo.InvariantCulture, Properties.Resource.UpdateResourceWarning,
                                        "Microsoft.Logic/integrationAccounts/schemas", this.Name),
                          string.Format(CultureInfo.InvariantCulture, Properties.Resource.UpdateResourceMessage,
                                        "Microsoft.Logic/integrationAccounts/schemas", this.Name),
                          Name,
                          () =>
            {
                this.WriteObject(
                    IntegrationAccountClient.UpdateIntegrationAccountSchema(this.ResourceGroupName,
                                                                            integrationAccount.Name,
                                                                            this.SchemaName, integrationAccountSchemaCopy), true);
            },
                          null);
        }
コード例 #8
0
 /// <summary>
 /// Creates or updates an integration account schema.
 /// </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='schemaName'>
 /// The integration account schema name.
 /// </param>
 /// <param name='schema'>
 /// The integration account schema.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <IntegrationAccountSchema> CreateOrUpdateAsync(this IIntegrationAccountSchemasOperations operations, string resourceGroupName, string integrationAccountName, string schemaName, IntegrationAccountSchema schema, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, integrationAccountName, schemaName, schema, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
コード例 #9
0
 /// <summary>
 /// Creates or updates an integration account schema.
 /// </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='schemaName'>
 /// The integration account schema name.
 /// </param>
 /// <param name='schema'>
 /// The integration account schema.
 /// </param>
 public static IntegrationAccountSchema CreateOrUpdate(this IIntegrationAccountSchemasOperations operations, string resourceGroupName, string integrationAccountName, string schemaName, IntegrationAccountSchema schema)
 {
     return(Task.Factory.StartNew(s => ((IIntegrationAccountSchemasOperations)s).CreateOrUpdateAsync(resourceGroupName, integrationAccountName, schemaName, schema), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult());
 }
コード例 #10
0
        /// <summary>
        /// Creates or updates an integration account schema.
        /// </summary>
        /// <param name='resourceGroupName'>
        /// The resource group name.
        /// </param>
        /// <param name='integrationAccountName'>
        /// The integration account name.
        /// </param>
        /// <param name='schemaName'>
        /// The integration account schema name.
        /// </param>
        /// <param name='schema'>
        /// The integration account schema.
        /// </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 <IntegrationAccountSchema> > CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string schemaName, IntegrationAccountSchema schema, 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 (schemaName == null)
            {
                throw new ValidationException(ValidationRules.CannotBeNull, "schemaName");
            }
            if (schema == null)
            {
                throw new ValidationException(ValidationRules.CannotBeNull, "schema");
            }
            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("schemaName", schemaName);
                tracingParameters.Add("apiVersion", apiVersion);
                tracingParameters.Add("schema", schema);
                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}/schemas/{schemaName}").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("{schemaName}", Uri.EscapeDataString(schemaName));
            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 (schema != null)
            {
                _requestContent      = SafeJsonConvert.SerializeObject(schema, 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 <IntegrationAccountSchema>();

            _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 <IntegrationAccountSchema>(_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 <IntegrationAccountSchema>(_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);
        }
コード例 #11
0
 /// <summary>
 /// Updates the integration account.
 /// </summary>
 /// <param name="resourceGroupName">The integration account schema resource group.</param>
 /// <param name="integrationAccountName">The integration account name.</param>
 /// <param name="integrationAccountSchemaName">The integration account schema name.</param>
 /// <param name="integrationAccountSchema">The integration account schema object.</param>
 /// <returns>Updated integration account schema</returns>
 public IntegrationAccountSchema UpdateIntegrationAccountSchema(string resourceGroupName, string integrationAccountName, string integrationAccountSchemaName, IntegrationAccountSchema integrationAccountSchema)
 {
     return this.LogicManagementClient.IntegrationAccountSchemas.CreateOrUpdate(resourceGroupName, integrationAccountName, integrationAccountSchemaName, integrationAccountSchema);
 }
 /// <summary>
 /// Creates or updates an integration account schema.
 /// </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='schemaName'>
 /// The integration account schema name.
 /// </param>
 /// <param name='schema'>
 /// The integration account schema.
 /// </param>
 public static IntegrationAccountSchema CreateOrUpdate(this IIntegrationAccountSchemasOperations operations, string resourceGroupName, string integrationAccountName, string schemaName, IntegrationAccountSchema schema)
 {
     return(operations.CreateOrUpdateAsync(resourceGroupName, integrationAccountName, schemaName, schema).GetAwaiter().GetResult());
 }