diff --git a/docs/Send-NanoLeaf.md b/docs/Send-NanoLeaf.md index 8ebddb0..b42f2fd 100644 --- a/docs/Send-NanoLeaf.md +++ b/docs/Send-NanoLeaf.md @@ -12,6 +12,9 @@ Sends HTTP messages to a NanoLeaf --- ### Related Links * [Get-NanoLeaf](Get-NanoLeaf.md) + + + --- ### Examples #### EXAMPLE 1 @@ -27,9 +30,16 @@ The IP Address of the NanoLeaf. -|Type |Requried|Postion|PipelineInput | -|-----------------|--------|-------|---------------------| -|```[IPAddress]```|true |1 |true (ByPropertyName)| +> **Type**: ```[IPAddress]``` + +> **Required**: true + +> **Position**: 1 + +> **PipelineInput**:true (ByPropertyName) + + + --- #### **Command** @@ -37,9 +47,16 @@ The URI fragment to send to the nanoleaf. -|Type |Requried|Postion|PipelineInput| -|--------------|--------|-------|-------------| -|```[String]```|false |2 |false | +> **Type**: ```[String]``` + +> **Required**: false + +> **Position**: 2 + +> **PipelineInput**:false + + + --- #### **Method** @@ -47,9 +64,16 @@ The HTTP method to send. -|Type |Requried|Postion|PipelineInput | -|--------------|--------|-------|---------------------| -|```[String]```|false |3 |true (ByPropertyName)| +> **Type**: ```[String]``` + +> **Required**: false + +> **Position**: 3 + +> **PipelineInput**:true (ByPropertyName) + + + --- #### **Data** @@ -57,9 +81,16 @@ The data to send. This will be converted into JSON if it is not a string. -|Type |Requried|Postion|PipelineInput | -|----------------|--------|-------|---------------------| -|```[PSObject]```|false |4 |true (ByPropertyName)| +> **Type**: ```[PSObject]``` + +> **Required**: false + +> **Position**: 4 + +> **PipelineInput**:true (ByPropertyName) + + + --- #### **Property** @@ -67,9 +98,16 @@ A set of additional properties to add to an object -|Type |Requried|Postion|PipelineInput | -|-------------------|--------|-------|---------------------| -|```[IDictionary]```|false |5 |true (ByPropertyName)| +> **Type**: ```[IDictionary]``` + +> **Required**: false + +> **Position**: 5 + +> **PipelineInput**:true (ByPropertyName) + + + --- #### **RemoveProperty** @@ -77,9 +115,16 @@ A list of property names to remove from an object -|Type |Requried|Postion|PipelineInput| -|----------------|--------|-------|-------------| -|```[String[]]```|false |6 |false | +> **Type**: ```[String[]]``` + +> **Required**: false + +> **Position**: 6 + +> **PipelineInput**:false + + + --- #### **ExpandProperty** @@ -87,9 +132,16 @@ If provided, will expand a given property returned from the REST api. -|Type |Requried|Postion|PipelineInput| -|--------------|--------|-------|-------------| -|```[String]```|false |7 |false | +> **Type**: ```[String]``` + +> **Required**: false + +> **Position**: 7 + +> **PipelineInput**:false + + + --- #### **PSTypeName** @@ -97,9 +149,16 @@ The typename of the results. -|Type |Requried|Postion|PipelineInput | -|----------------|--------|-------|---------------------| -|```[String[]]```|false |8 |true (ByPropertyName)| +> **Type**: ```[String[]]``` + +> **Required**: false + +> **Position**: 8 + +> **PipelineInput**:true (ByPropertyName) + + + --- #### **NanoLeafToken** @@ -107,9 +166,16 @@ The nanoleaf token -|Type |Requried|Postion|PipelineInput | -|--------------|--------|-------|---------------------| -|```[String]```|false |9 |true (ByPropertyName)| +> **Type**: ```[String]``` + +> **Required**: false + +> **Position**: 9 + +> **PipelineInput**:true (ByPropertyName) + + + --- #### **WhatIf** -WhatIf is an automatic variable that is created when a command has ```[CmdletBinding(SupportsShouldProcess)]```. @@ -125,7 +191,9 @@ If the command sets a ```[ConfirmImpact("Medium")]``` which is lower than ```$co --- ### Outputs -System.Management.Automation.PSObject +* [Management.Automation.PSObject](https://learn.microsoft.com/en-us/dotnet/api/System.Management.Automation.PSObject) + + ---