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
2 changes: 1 addition & 1 deletion Commands/networkfabric/bootstrapdevice/_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ List all the Network Bootstrap Device resources in a given subscription.

- List the Bootstrap Device for Resource Group
```bash
networkfabric bootstrapdevice list -resource-group example-rg
networkfabric bootstrapdevice list --resource-group example-rg
```
9 changes: 2 additions & 7 deletions Commands/networkfabric/bootstrapinterface/_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,7 @@ List all the Network Bootstrap Interface resources in a given resource group.

#### examples

- List the Bootstrap Interfaces by Subscription
- List the Bootstrap Interfaces in a Resource Group for a specific Subscription
```bash
networkfabric bootstrapinterface list --subscription <subscriptionId> --bootstrap-device example-device
```

- List the Bootstrap Interfaces by Resource Group
```bash
networkfabric bootstrapinterface list --resource-group example-rg --bootstrap-device example-device
networkfabric bootstrapinterface list --subscription <subscriptionId> --resource-group example-rg --bootstrap-device example-device
```

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -192,64 +192,64 @@
<arg type="ResourceGroupName" var="$Path.resourceGroupName" options="resource-group g" required="True" idPart="resource_group"/>
<arg type="SubscriptionId" var="$Path.subscriptionId" options="subscription" required="True" idPart="subscription"/>
</argGroup>
<argGroup name="Body">
<arg type="ResourceLocation" var="$body.location" options="location l" required="True" group="Body">
<help short="The geo-location where the resource lives"/>
</arg>
<arg type="object" var="$body.tags" options="tags" group="Body">
<help short="Resource tags."/>
<additionalProp>
<item type="string"/>
</additionalProp>
</arg>
</argGroup>
<argGroup name="Properties">
<arg type="string" var="$resource.properties.annotation" options="annotation" group="Properties">
<arg type="string" var="$body.properties.annotation" options="annotation" group="Properties">
<help short="Switch configuration description."/>
</arg>
<arg type="object" var="$resource.properties.ruleProperties" options="rule-properties" required="True" group="Properties">
<arg type="object" var="$body.properties.ruleProperties" options="rule-properties" required="True" group="Properties">
<help short="Rules for the InternetGateways"/>
<arg type="string" var="$resource.properties.ruleProperties.action" options="action" required="True">
<arg type="string" var="$body.properties.ruleProperties.action" options="action" required="True">
<help short="Specify action."/>
<enum>
<item name="Allow" value="&quot;Allow&quot;"/>
<item name="Deny" value="&quot;Deny&quot;"/>
</enum>
</arg>
<arg type="array<string>" var="$resource.properties.ruleProperties.addressList" options="address-list">
<arg type="array<string>" var="$body.properties.ruleProperties.addressList" options="address-list">
<help short="List of Addresses to be allowed or denied."/>
<item type="string"/>
</arg>
<arg type="string" var="$resource.properties.ruleProperties.condition" options="condition">
<arg type="string" var="$body.properties.ruleProperties.condition" options="condition">
<help short="Specify rule condition."/>
<enum>
<item name="And" value="&quot;And&quot;"/>
<item name="Or" value="&quot;Or&quot;"/>
</enum>
</arg>
<arg type="array<string>" var="$resource.properties.ruleProperties.destinationAddressList" options="destination-address-list">
<arg type="array<string>" var="$body.properties.ruleProperties.destinationAddressList" options="destination-address-list">
<help short="List of Addresses to be allowed or denied."/>
<item type="string"/>
</arg>
<arg type="array<object>" var="$resource.properties.ruleProperties.headerAddressList" options="header-address-list">
<arg type="array<object>" var="$body.properties.ruleProperties.headerAddressList" options="header-address-list">
<help short="List of header Name and source addresses associated with the header."/>
<item type="object">
<arg type="array<string>" var="$resource.properties.ruleProperties.headerAddressList[].addressList" options="address-list">
<arg type="array<string>" var="$body.properties.ruleProperties.headerAddressList[].addressList" options="address-list">
<help short="List of source remote IP to be allowed or denied."/>
<format minLength="1"/>
<item type="string"/>
</arg>
<arg type="string" var="$resource.properties.ruleProperties.headerAddressList[].headerName" options="header-name">
<arg type="string" var="$body.properties.ruleProperties.headerAddressList[].headerName" options="header-name">
<help short="Name of the header."/>
</arg>
</item>
</arg>
<arg type="array<string>" var="$resource.properties.ruleProperties.sourceAddressList" options="source-address-list">
<arg type="array<string>" var="$body.properties.ruleProperties.sourceAddressList" options="source-address-list">
<help short="List of source IPv4 and IPv6 address to be allowed or denied."/>
<item type="string"/>
</arg>
</arg>
</argGroup>
<argGroup name="Resource">
<arg type="ResourceLocation" var="$resource.location" options="location l" required="True" group="Resource">
<help short="The geo-location where the resource lives"/>
</arg>
<arg type="object" var="$resource.tags" options="tags" group="Resource">
<help short="Resource tags."/>
<additionalProp>
<item type="string"/>
</additionalProp>
</arg>
</argGroup>
<operation operationId="InternetGatewayRules_Create">
<longRunning finalStateVia="azure-async-operation"/>
<http path="/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedNetworkFabric/internetGatewayRules/{internetGatewayRuleName}">
Expand All @@ -271,44 +271,44 @@
</query>
<body>
<json>
<schema type="object" name="resource" required="True" clientFlatten="True">
<prop type="ResourceLocation" name="location" arg="$resource.location" required="True"/>
<schema type="object" name="body" required="True" clientFlatten="True">
<prop type="ResourceLocation" name="location" arg="$body.location" required="True"/>
<prop type="object" name="properties" required="True" clientFlatten="True">
<prop type="string" name="annotation" arg="$resource.properties.annotation"/>
<prop type="object" name="ruleProperties" arg="$resource.properties.ruleProperties" required="True">
<prop type="string" name="action" arg="$resource.properties.ruleProperties.action" required="True">
<prop type="string" name="annotation" arg="$body.properties.annotation"/>
<prop type="object" name="ruleProperties" arg="$body.properties.ruleProperties" required="True">
<prop type="string" name="action" arg="$body.properties.ruleProperties.action" required="True">
<enum>
<item value="&quot;Allow&quot;"/>
<item value="&quot;Deny&quot;"/>
</enum>
</prop>
<prop type="array<string>" name="addressList" arg="$resource.properties.ruleProperties.addressList">
<prop type="array<string>" name="addressList" arg="$body.properties.ruleProperties.addressList">
<item type="string"/>
</prop>
<prop type="string" name="condition" arg="$resource.properties.ruleProperties.condition">
<prop type="string" name="condition" arg="$body.properties.ruleProperties.condition">
<enum>
<item value="&quot;And&quot;"/>
<item value="&quot;Or&quot;"/>
</enum>
</prop>
<prop type="array<string>" name="destinationAddressList" arg="$resource.properties.ruleProperties.destinationAddressList">
<prop type="array<string>" name="destinationAddressList" arg="$body.properties.ruleProperties.destinationAddressList">
<item type="string"/>
</prop>
<prop type="array<object>" name="headerAddressList" arg="$resource.properties.ruleProperties.headerAddressList">
<prop type="array<object>" name="headerAddressList" arg="$body.properties.ruleProperties.headerAddressList">
<item type="object">
<prop type="array<string>" name="addressList" arg="$resource.properties.ruleProperties.headerAddressList[].addressList">
<prop type="array<string>" name="addressList" arg="$body.properties.ruleProperties.headerAddressList[].addressList">
<format minLength="1"/>
<item type="string"/>
</prop>
<prop type="string" name="headerName" arg="$resource.properties.ruleProperties.headerAddressList[].headerName"/>
<prop type="string" name="headerName" arg="$body.properties.ruleProperties.headerAddressList[].headerName"/>
</item>
</prop>
<prop type="array<string>" name="sourceAddressList" arg="$resource.properties.ruleProperties.sourceAddressList">
<prop type="array<string>" name="sourceAddressList" arg="$body.properties.ruleProperties.sourceAddressList">
<item type="string"/>
</prop>
</prop>
</prop>
<prop type="object" name="tags" arg="$resource.tags">
<prop type="object" name="tags" arg="$body.tags">
<additionalProp>
<item type="string"/>
</additionalProp>
Expand Down Expand Up @@ -430,8 +430,8 @@
<arg type="ResourceGroupName" var="$Path.resourceGroupName" options="resource-group g" required="True" idPart="resource_group"/>
<arg type="SubscriptionId" var="$Path.subscriptionId" options="subscription" required="True" idPart="subscription"/>
</argGroup>
<argGroup name="Properties">
<arg type="object" var="$properties.tags" options="tags" group="Properties">
<argGroup name="Body">
<arg type="object" var="$body.tags" options="tags" group="Body">
<help short="Resource tags."/>
<additionalProp>
<item type="string"/>
Expand Down Expand Up @@ -459,8 +459,8 @@
</query>
<body>
<json>
<schema type="object" name="properties" required="True" clientFlatten="True">
<prop type="object" name="tags" arg="$properties.tags">
<schema type="object" name="body" required="True" clientFlatten="True">
<prop type="object" name="tags" arg="$body.tags">
<additionalProp>
<item type="string"/>
</additionalProp>
Expand Down

Large diffs are not rendered by default.

Loading
Loading