Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,25 @@
<arg type="ResourceGroupName" var="$Path.resourceGroupName" options="resource-group g" idPart="resource_group"/>
<arg type="SubscriptionId" var="$Path.subscriptionId" options="subscription" required="True" idPart="subscription"/>
</argGroup>
<condition var="$Condition_VirtualNetworks_ListAll">
<condition var="$Condition_VirtualNetworks_List">
<operator type="and">
<operator type="hasValue" arg="$Path.resourceGroupName"/>
<operator type="hasValue" arg="$Path.subscriptionId"/>
<operator type="not">
<operator type="hasValue" arg="$Path.resourceGroupName"/>
</operator>
</operator>
</condition>
<condition var="$Condition_VirtualNetworks_List">
<condition var="$Condition_VirtualNetworks_ListAll">
<operator type="and">
<operator type="hasValue" arg="$Path.resourceGroupName"/>
<operator type="hasValue" arg="$Path.subscriptionId"/>
<operator type="not">
<operator type="hasValue" arg="$Path.resourceGroupName"/>
</operator>
</operator>
</condition>
<operation when="$Condition_VirtualNetworks_ListAll" operationId="VirtualNetworks_ListAll">
<http path="/subscriptions/{subscriptionId}/providers/Microsoft.Network/virtualNetworks">
<operation when="$Condition_VirtualNetworks_List" operationId="VirtualNetworks_List">
<http path="/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks">
<request method="get">
<path>
<param type="string" name="resourceGroupName" arg="$Path.resourceGroupName" required="True"/>
<param type="string" name="subscriptionId" arg="$Path.subscriptionId" required="True"/>
</path>
<query>
Expand Down Expand Up @@ -1466,11 +1467,10 @@
</response>
</http>
</operation>
<operation when="$Condition_VirtualNetworks_List" operationId="VirtualNetworks_List">
<http path="/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks">
<operation when="$Condition_VirtualNetworks_ListAll" operationId="VirtualNetworks_ListAll">
<http path="/subscriptions/{subscriptionId}/providers/Microsoft.Network/virtualNetworks">
<request method="get">
<path>
<param type="string" name="resourceGroupName" arg="$Path.resourceGroupName" required="True"/>
<param type="string" name="subscriptionId" arg="$Path.subscriptionId" required="True"/>
</path>
<query>
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -1568,7 +1568,7 @@
</argGroup>
<argGroup name="AddressSpace">
<arg type="array<object>" var="$parameters.properties.addressSpace.ipamPoolPrefixAllocations" options="ipam-pool-prefix-allocations ipam-allocations" group="AddressSpace">
<help short="A list of IPAM Pools allocating IP address prefixes. If provided, --address-prefixes would be empty and should not be specified."/>
<help short="A list of IPAM Pools allocating IP address prefixes. If provided, --address-prefixes would be ignored and should not be specified."/>
<item type="object" cls="IpamPoolPrefixAllocation_create">
<arg type="string" var="@IpamPoolPrefixAllocation_create.numberOfIpAddresses" options="number-of-ip-addresses">
<help short="Number of IP addresses to allocate."/>
Expand Down Expand Up @@ -3853,7 +3853,7 @@
</argGroup>
<argGroup name="AddressSpace">
<arg nullable="True" type="array<object>" var="$parameters.properties.addressSpace.ipamPoolPrefixAllocations" options="ipam-pool-prefix-allocations ipam-allocations" group="AddressSpace">
<help short="A list of IPAM Pools allocating IP address prefixes. If provided, --address-prefixes would be empty and should not be specified."/>
<help short="A list of IPAM Pools allocating IP address prefixes. If a non-empty value is provided, --address-prefixes would be ignored."/>
<item nullable="True" type="object" cls="IpamPoolPrefixAllocation_update">
<arg nullable="True" type="string" var="@IpamPoolPrefixAllocation_update.numberOfIpAddresses" options="number-of-ip-addresses">
<help short="Number of IP addresses to allocate."/>
Expand Down