1610, 2017

What are the New Features Included in Azure Stream Analytics?

By |October 16th, 2017|Azure News, Microsoft Azure, New Features|0 Comments

New features are added up in Azure Stream Analytics which improve the efficiency of the work and take less time to accomplish the complex tasks. These features include egress to Azure Function, JavaScript User-defined Aggregates, machine learning based anomaly detection, and support for CI/CD in Visual Studio.

What is Built-in Machine Learning-based Anomaly Detection?

The customers of […]

1610, 2017

What is the General Availability of Service Fabric on Linux?

By |October 16th, 2017|Azure News, Microsoft Azure, New Features|0 Comments

Azure Service Fabric is a platform designed to power the core Azure infrastructure. The user can run containerized applications on both Windows and Linux with the help of Azure Service Fabric. Microsoft offers complete support to Ubuntu 16.04 for the Linux Clusters while the runtime is same for both Linux and Windows due to the similarity […]

1610, 2017

How Azure Security Center has Extended the Advanced Threat Protection to Hybrid Cloud Workloads?

By |October 16th, 2017|Azure News, Microsoft Azure, New Features|0 Comments

Azure Security Center provides cyber protection to the workloads of the users and now the services are extended to the workloads running on-premises and other clouds too. The complex infrastructure of the companies often leaves some security gaps in the systems which makes the system vulnerable to malicious items and attackers. Security Center unifies the […]

610, 2017

How to Use Azure Cost Management for Free?

By |October 6th, 2017|Azure News, Microsoft Azure, New Features|0 Comments

The trend of cloud adoption in enterprises is getting faster and companies prefer to shift their data to the cloud due to the easy access. There are various benefits associated with the cloud usage, but the proper utilization of the cloud spend is a common problem faced by the cloud user enterprises. To cater this […]

610, 2017

What is On-Premises Automation and Configuration of Azure?

By |October 6th, 2017|Azure How To, Azure News, Microsoft Azure, New Features|0 Comments

The configuration and automation of hybrid clouds becomes a challenging task for the companies and not understanding the requirements of the operating system is a major problem in many cases. A well-managed environment at scale demands complete control on the updates of the operating system and it’s also necessary to apply and monitor the configuration […]

2709, 2017

How to Protect Applications and Data on Azure Stack?

By |September 27th, 2017|Azure News, Microsoft Azure, New Features|0 Comments

The Azure stack is offering powerful support to the cloud computing running in Microsoft Datacenter over the 40 regions. Azure Stack Development Kit (ASDK). It’s helping the countries to develop and design their strategies as well as allowing them to a modern app by using hybrid cloud services. Like the other strategies, business continuity and […]

2709, 2017

What is EDNS Client Subnet Support in Azure Traffic Manager?

By |September 27th, 2017|Azure News, Microsoft Azure, New Features|0 Comments

The support of Azure Traffic Manager is playing an important role in the improvement of services like  Fast failover,  Geographic Traffic Routing, and TCP probing. The valuable support enables the services users to explore the features in better and proactive manner and now you can Azure Traffic Manager with EDNS Client Subnet (ECS).

How Does It […]

2709, 2017

How to Get More Fun with Terraform on Azure?

By |September 27th, 2017|Azure News, Microsoft Azure, New Features|0 Comments

The combined effort of Microsoft and HashiCorp brought huge benefits in the features of the Terraform and within a month support for Azure Container was added while 8 verified modules have also become a part of Terraform on Azure.

What is Terraform Module Registry?

Terraform Module Registry allows the users to generate Terraform modules which are the […]

2609, 2017

What’s the New Power BI Connector for Azure Enterprise Users?

By |September 26th, 2017|Azure News, Microsoft Azure, New Features|0 Comments

Azure Consumption and Insight Connector in Power BI Desktop offers various benefits to developers and lets the enterprise customers pull Azure Charge and usage data for Azure as well as Marketplace resources. Complicated tasks like analyzing and exploring have become easy while the users can also make their own custom dashboard to make their workspace […]

2009, 2017

How to Use Azure Management Libraries for .NET – v1.2?

By |September 20th, 2017|Azure How To, Azure News, Microsoft Azure, New Features|0 Comments

1.2 Azure management libraries for .NET offers additional security and storage service encryption. The other benefits include network watcher service, search service, the creation of users in Azure Active Directory, and management service identity. After the downloading the 1.2 library, you need to create a virtual machine using define() … create() method chain.

IVirtualMachine virtualMachine = azure.VirtualMachines.Define(“myLinuxVM”)

.WithRegion(Region.USEast)

.WithNewResourceGroup(rgName)

.WithNewPrimaryNetwork(“10.0.0.0/28”)

.WithPrimaryPrivateIPAddressDynamic()

.WithNewPrimaryPublicIPAddress(pipName)

.WithPopularLinuxImage(KnownLinuxVirtualMachineImage.UbuntuServer16_04_Lts)

.WithRootUsername(“tirekicker”)

.WithRootPassword(password)

.WithSize(VirtualMachineSizeTypes.StandardDS2V2)

.WithOSDiskCaching(CachingTypes.ReadWrite)

.WithManagedServiceIdentity()

.WithRoleBasedAccessToCurrentResourceGroup(BuiltInRole.Contributor)

.Create();

 

Follow […]