I am creating Application gateway using ARM templete now I want to check after select the virtual network subnet should not be allocated any other resource if allocated then show the message like Subnet must have only have Application Gateway.
How to check is subnet allocated with another resource in azure using Fluent API or management API?
2k views Asked by DnyaneshSurya At
1
There are 1 answers
Related Questions in AZURE-VIRTUAL-NETWORK
- bicep template to inject an azure app into vnet
- Why Terraform tries to delete subnet from function app if it exists in state, code and resource?
- Connect to Azure function app with private endpoint over VPN point to site
- azure terraform linux aci connector CrashLoopBackOff
- Using private endpoint to access a blob storage account in Azure returns 403
- Connecting a Azure Function app to Azure Managed Instance for Database Manipulation
- GRPC connectivity issue with Azure App Service from local post man?
- Azure powershell provision sftp storage with Basic Firewall
- Why fails my internet request to Azure VM?
- Issue with bicep template for subnet
- Issue with deploying Azure API Management instance to a virtual network - internal mode
- What can I achieve with Azure Firewall networking rule that cannot be done by Azure Virtual Manager security admin rules
- Does a packer image builder creates or uses a network interface and public ip if yes why and when?
- Azure SQL server from development to production
- Azure cloud - Container App - 403 Forbidden problem
Related Questions in SUBNET
- Map list of IPs to list of subnets (cidr)
- Fixing this CIDR range for AWS VPC
- Regular Expression for IPv4 subnet
- IP/25, can it be begin from xx.xx.xx.128, rather than xx.xx.xx.1?
- Unhealthy instances for load balancer
- Deploy Flask Microblog in private ec2 with private RDS
- AWS invisible special character while creating subnet group
- Unable to connect to ACI with a Private IP (in a subnet of a vnet) from Azure
- Exposing an RDS instance to only a few specific ip addresses
- openvpn doesn't route traffic to client subnet
- Unable to Add a Subnet from Secondary CIDR Block to Existing EKS Cluster
- need to combine two queries to set up an alert for private endpoint creation or modification in subnets with disabled privateEndpointNetworkPolicies
- Why is Azure NAT not affecting my effective routes from my Azure routing table?
- Unable to retrieve subnet ids in the terraform output block - giving multiple errors at a time
- Extract subnet id's based on subnet name in virgina region
Related Questions in AZURE-APPLICATION-GATEWAY
- Azure Analysis Service, with an on prem gateway, in vnet
- Azure Application Gateway http/2 not working
- Azure Application Gateway ByPass
- App gateway closing connection after 100 requests
- Connect Azure front door with APIM and Azure Web App
- How to set AzureIngressProhibitedTarget without hostname?
- How to change from AGIC Addon to AGIC via helm?
- Azure App Gateway Session Affinity - Third-party Cookie
- How to prevent AKS Ingress from overwriting Application Gateway's existing services?
- Azure - Configuring authentication to a blob storage in an Azure Storage Account from an Application Gateway
- Connection failure when using SignalR with Azure APIM and an Application Gateway
- Allow access to robots.txt in Azure Web application Firewall
- Azure B2C SSO to protect Azure Application Gateway
- How to setup ingress for Azure Kubernetes cluster using AGIC?
- Azure Application Gateway backendpool to Azure Container Apps internal load balancer
Related Questions in AZURE-MANAGEMENT-API
- Why does System Assigned Managed Identity not have access to Azure management API?
- Azure CostManagement Export Api createOrUpdate returns 401
- Creating a Microsoft Graph subscription for notification to security/alerts_v2 fails
- How to Delete a Role Assignment in Azure using REST API
- Using C# to bind a new certificate for Custom Domains from Azure Api Management Service
- Get remaining characters for Azure Translator Service via API
- Issue Retrieving Transactions with Microsoft.Azure.Management.Billing for Multiple Subscriptions
- Azure Management API - Special characters (/) in path parameter
- Can't get headers from Azure Durable API
- Azure SQL Database ExportOperationResults is always InProgress
- Azure Management API, when grouping daily costs, what timezone is used?
- AttributeError: 'MonitorManagementClient' object has no attribute 'location' Microsoft Azure
- Interrogate capabilities of a Logic App connector (actions, triggers)
- Azure WebsiteManagementClient for Python: how to get web app by ID?
- How to get the role assignments of a resource through Resource Graph API?
Related Questions in AZURE-FLUENT-API
- Microsoft.Azure.OperationalInsights returns 'Forbidden' message for service principle
- How to change existing azure virtual machine size using ARM template or Azure.NetSDK
- How to resize disk of virtual machine using Azure.Net SDK/ Fluent API
- How to create Azure Monitor - Alerts for virtual machine using Azure .Net SDK or Powershell scripts
- How to get Azure Storage Account Key (connectionString) using azure .net sdk or fluent API?
- List all file share from storage account using azure .net SDK or Fluent API?
- Restrict access to Azure KeyVault using Fluent
- How to check is subnet allocated with another resource in azure using Fluent API or management API?
- Powershell code executed every time after allocating an Azure VM
- Using Microsoft Graph to obtain Access Token for Azure Web App Continuous Integration Deployment
- conflict between Azure.Fluent.Management and Azure.Storage.Blobs packages?
- Does Azure have a sandbox for App Service Domain and SSL testing?
- How to Autheticate Azure Api from an Asp.Net Core app using Current logged in User
- Run powershell script on Azure VM with Azure Fluent API
- Azure Fluent Api for AzureADB2C Creation
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)

According to my understanding, you want to list all resources that are connected to the virtual network. If so, you can use the rest API
Get Virtual Networks.If one subnet has been allocated any other resource, it will return these configurations in
subnetproperty. For more details, please refer to here.For example