Giter Club home page Giter Club logo

Comments (5)

mcgallan avatar mcgallan commented on June 26, 2024 1

Hi @sebasviot, thank you for your feedback! You can achieve the functionality you need by setting WebSiteData.SiteConfig.IsVnetRouteAllEnabled to True. Here’s a simple example:

var data = new WebSiteData(location)
{
    IsReserved = false,
    IsXenon = false,
    IsHyperV = false,
    SiteConfig = new SiteConfigProperties
    {
        NetFrameworkVersion = "v4.6",
        AppSettings =
        {
            new AppServiceNameValuePair
            {
                Name = "WEBSITE_NODE_DEFAULT_VERSION",
                Value = "10.14"
            }
        },
        IsLocalMySqlEnabled = false,
        IsHttp20Enabled = true,
        IsVnetRouteAllEnabled = true,
    },
    IsScmSiteAlsoStopped = false,
    IsHttpsOnly = false
};

from azure-sdk-for-net.

github-actions avatar github-actions commented on June 26, 2024

Thank you for your feedback. Tagging and routing to the team member best able to assist.

from azure-sdk-for-net.

sebasviot avatar sebasviot commented on June 26, 2024

I found a workaround by requesting GenericResources :

var genericData = new GenericResourceData(AzureLocation.WestEurope)
        {
            Properties = BinaryData.FromObjectAsJson(new Dictionary<string, object>()
            {
                { "vnetRouteAllEnabled", true }
            })
        };

await _armClient.GetGenericResources().CreateOrUpdateAsync(
            WaitUntil.Completed, myResourceId, genericData, cancellationToken);

from azure-sdk-for-net.

github-actions avatar github-actions commented on June 26, 2024

Hi @sebasviot. Thank you for opening this issue and giving us the opportunity to assist. To help our team better understand your issue and the details of your scenario please provide a response to the question asked above or the information requested above. This will help us more accurately address your issue.

from azure-sdk-for-net.

sebasviot avatar sebasviot commented on June 26, 2024

Hi @mcgallan. Thanks for your reply, it works fine for me !

from azure-sdk-for-net.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.