PowervRLICloud 1.0 Documentation

Syntax

Connect-vRLI-Cloud [-APIToken] <SecureString> [[-Region] <String>] [<CommonParameters>]

Parameters

Name Alias Description Required? Pipeline Input Default Value
-APIToken vRLI Cloud API Token true false
-Region Deployment Name false false us

Note

============================================================================================================================================== Created by: Munishpal Makhija Version: 1.0 Date: 10/12/2022 Organization: VMware Blog: https://munishpalmakhija.com ==============================================================================================================================================

Examples

EXAMPLE 1
Connect-vRLI-Cloud -APIToken $APIToken
Input APIToken as Secure String by using Read-Host "$APIToken = Read-Host -AsSecureString"

Top of page

Syntax

Create-AccessKey [[-Connection] <PSObject>] [-KeyName] <String> [<CommonParameters>]

Parameters

Name Alias Description Required? Pipeline Input Default Value
-Connection vRLIC Connection object false false $defaultvRLICConnection
-KeyName Key Name true false

Note

============================================================================================================================================== Created by: Munishpal Makhija Version: 1.0 Date: 10/12/2022 Organization: VMware Blog: https://munishpalmakhija.com ==============================================================================================================================================

Examples

EXAMPLE 1
Create-AccessKey -KeyName "MMTest"

Top of page

Syntax

Disconnect-vRLI-Cloud [<CommonParameters>]

Note

============================================================================================================================================== Created by: Munishpal Makhija Version: 1.0 Date: 10/12/2022 Organization: VMware Blog: https://munishpalmakhija.com ==============================================================================================================================================

Examples

EXAMPLE 1
Disconnect-vRLI-Cloud

Top of page

Syntax

Get-AccessKey [[-Connection] <PSObject>] [-KeyName] <String> [<CommonParameters>]

Parameters

Name Alias Description Required? Pipeline Input Default Value
-Connection vRLIC Connection object false false $defaultvRLICConnection
-KeyName Name true false

Note

============================================================================================================================================== Created by: Munishpal Makhija Version: 1.0 Date: 10/12/2022 Organization: VMware Blog: https://munishpalmakhija.com ==============================================================================================================================================

Examples

EXAMPLE 1
Get-AccessKey -KeyName "MMTest"

Top of page

Syntax

Get-AlertDefinitions [[-Connection] <PSObject>] [<CommonParameters>]

Parameters

Name Alias Description Required? Pipeline Input Default Value
-Connection vRLIC Connection object false false $defaultvRLICConnection

Note

============================================================================================================================================== Created by: Munishpal Makhija Version: 1.0 Date: 10/12/2022 Organization: VMware Blog: https://munishpalmakhija.com ==============================================================================================================================================

Examples

EXAMPLE 1
Get-AlertDefinitions | where{$_.name -match "Test"}

Top of page

Syntax

Get-AlertInstanceById [[-Connection] <PSObject>] [-Id] <String> [<CommonParameters>]

Parameters

Name Alias Description Required? Pipeline Input Default Value
-Connection vRLIC Connection object false false $defaultvRLICConnection
-Id Alert Instance ID true false

Note

============================================================================================================================================== Created by: Munishpal Makhija Version: 1.0 Date: 10/12/2022 Organization: VMware Blog: https://munishpalmakhija.com ==============================================================================================================================================

Examples

EXAMPLE 1
Get-AlertInstanceById -Id "xxx444"

Top of page

Syntax

Get-AlertInstances [[-Connection] <PSObject>] [-Duration] <String> [<CommonParameters>]

Parameters

Name Alias Description Required? Pipeline Input Default Value
-Connection vRLIC Connection object false false $defaultvRLICConnection
-Duration Duration in Mins true false

Note

============================================================================================================================================== Created by: Munishpal Makhija Version: 1.0 Date: 10/12/2022 Organization: VMware Blog: https://munishpalmakhija.com ==============================================================================================================================================

Examples

EXAMPLE 1
Get-AlertInstances -Duration 60

Top of page

Syntax

Get-ContentPack-Dashboards [[-Connection] <PSObject>] [<CommonParameters>]

Parameters

Name Alias Description Required? Pipeline Input Default Value
-Connection vRLIC Connection object false false $defaultvRLICConnection

Note

============================================================================================================================================== Created by: Munishpal Makhija Version: 1.0 Date: 10/12/2022 Organization: VMware Blog: https://munishpalmakhija.com ==============================================================================================================================================

Examples

EXAMPLE 1
Get-ContentPack-Dashboards | where{$_.name -match "Test"}

Top of page

Syntax

Get-CurrentDataset [[-Connection] <PSObject>] [<CommonParameters>]

Parameters

Name Alias Description Required? Pipeline Input Default Value
-Connection vRLIC Connection object false false $defaultvRLICConnection

Note

============================================================================================================================================== Created by: Munishpal Makhija Version: 1.0 Date: 10/12/2022 Organization: VMware Blog: https://munishpalmakhija.com ==============================================================================================================================================

Examples

EXAMPLE 1
Get-CurrentDataset

Top of page

Syntax

Get-CurrentRole [[-Connection] <PSObject>] [<CommonParameters>]

Parameters

Name Alias Description Required? Pipeline Input Default Value
-Connection vRLIC Connection object false false $defaultvRLICConnection

Note

============================================================================================================================================== Created by: Munishpal Makhija Version: 1.0 Date: 10/12/2022 Organization: VMware Blog: https://munishpalmakhija.com ==============================================================================================================================================

Examples

EXAMPLE 1
Get-CurrentRole

Top of page

Syntax

Get-Datasets [[-Connection] <PSObject>] [<CommonParameters>]

Parameters

Name Alias Description Required? Pipeline Input Default Value
-Connection vRLIC Connection object false false $defaultvRLICConnection

Note

============================================================================================================================================== Created by: Munishpal Makhija Version: 1.0 Date: 10/12/2022 Organization: VMware Blog: https://munishpalmakhija.com ==============================================================================================================================================

Examples

EXAMPLE 1
Get-Datasets | where{$_.name -match "Test"}

Top of page

Syntax

Get-Favourite-Dashboards [[-Connection] <PSObject>] [<CommonParameters>]

Parameters

Name Alias Description Required? Pipeline Input Default Value
-Connection vRLIC Connection object false false $defaultvRLICConnection

Note

============================================================================================================================================== Created by: Munishpal Makhija Version: 1.0 Date: 10/12/2022 Organization: VMware Blog: https://munishpalmakhija.com ==============================================================================================================================================

Examples

EXAMPLE 1
Get-ContentPack-Dashboards | where{$_.name -match "Test"}

Top of page

Syntax

Get-QueryResponse [[-Connection] <PSObject>] [-QueryId] <String> [<CommonParameters>]

Parameters

Name Alias Description Required? Pipeline Input Default Value
-Connection vRLIC Connection object false false $defaultvRLICConnection
-QueryId Query ID true false

Note

============================================================================================================================================== Created by: Munishpal Makhija Version: 1.0 Date: 10/12/2022 Organization: VMware Blog: https://munishpalmakhija.com ==============================================================================================================================================

Examples

EXAMPLE 1
Get-QueryResponse

Top of page

Syntax

Get-Roles [[-Connection] <PSObject>] [<CommonParameters>]

Parameters

Name Alias Description Required? Pipeline Input Default Value
-Connection vRLIC Connection object false false $defaultvRLICConnection

Note

============================================================================================================================================== Created by: Munishpal Makhija Version: 1.0 Date: 10/12/2022 Organization: VMware Blog: https://munishpalmakhija.com ==============================================================================================================================================

Examples

EXAMPLE 1
Get-Roles | where{$_.name -match "Test"}

Top of page

Syntax

Get-SubscriptionStatus [[-Connection] <PSObject>] [<CommonParameters>]

Parameters

Name Alias Description Required? Pipeline Input Default Value
-Connection vRLIC Connection object false false $defaultvRLICConnection

Note

============================================================================================================================================== Created by: Munishpal Makhija Version: 1.0 Date: 10/12/2022 Organization: VMware Blog: https://munishpalmakhija.com ==============================================================================================================================================

Examples

EXAMPLE 1
Get-SubscriptionStatus | where{$_.name -match "Test"}

Top of page

Syntax

Get-UsageReport [[-Connection] <PSObject>] [-UsageType] <String> [<CommonParameters>]

Parameters

Name Alias Description Required? Pipeline Input Default Value
-Connection vRLIC Connection object false false $defaultvRLICConnection
-UsageType Usage Type true false

Note

============================================================================================================================================== Created by: Munishpal Makhija Version: 1.0 Date: 10/12/2022 Organization: VMware Blog: https://munishpalmakhija.com ==============================================================================================================================================

Examples

EXAMPLE 1
Get-UsageReport -UsageType "usageType=DATA_INGESTED_NON_BILLABLE_V2&usageType=DATA_INGESTED_BILLABLE_V2"

Top of page

Syntax

Get-Userdefined-Dashboards [[-Connection] <PSObject>] [<CommonParameters>]

Parameters

Name Alias Description Required? Pipeline Input Default Value
-Connection vRLIC Connection object false false $defaultvRLICConnection

Note

============================================================================================================================================== Created by: Munishpal Makhija Version: 1.0 Date: 10/12/2022 Organization: VMware Blog: https://munishpalmakhija.com ==============================================================================================================================================

Examples

EXAMPLE 1
Get-Userdefined-Dashboards | where{$_.name -match "Test"}

Top of page

Syntax

Get-vRLI-CloudCommands [<CommonParameters>]

Note

You can either use this cmdlet or the Get-Command cmdlet as seen in Example 2

Examples

EXAMPLE 1
Get-vRLI-CloudCommands
EXAMPLE 2
Get-Command -Module PowervRLICloud

Top of page

Syntax

Post-Query-Request [[-Connection] <PSObject>] [-SQLQuery] <String> [-Duration] <String> [<CommonParameters>]

Parameters

Name Alias Description Required? Pipeline Input Default Value
-Connection vRLIC Connection object false false $defaultvRLICConnection
-SQLQuery SQL Query true false
-Duration Duration in Mins true false

Note

============================================================================================================================================== Created by: Munishpal Makhija Version: 1.0 Date: 10/12/2022 Organization: VMware Blog: https://munishpalmakhija.com ==============================================================================================================================================

Examples

EXAMPLE 1
Post-Query-Request -SQlQuery "SELECT * FROM logs ORDER BY ingest_timestamp DESC" -Duration 60

Top of page

Syntax

Remove-AccessKey [[-Connection] <PSObject>] [-KeyName] <String> [<CommonParameters>]

Parameters

Name Alias Description Required? Pipeline Input Default Value
-Connection vRLIC Connection object false false $defaultvRLICConnection
-KeyName Key Name true false

Note

============================================================================================================================================== Created by: Munishpal Makhija Version: 1.0 Date: 10/12/2022 Organization: VMware Blog: https://munishpalmakhija.com ==============================================================================================================================================

Examples

EXAMPLE 1
Remove-AccessKey -Name "MMTest"

Top of page

Syntax

Remove-AlertDefinition [[-Connection] <PSObject>] [-AlertName] <String> [<CommonParameters>]

Parameters

Name Alias Description Required? Pipeline Input Default Value
-Connection vRLIC Connection object false false $defaultvRLICConnection
-AlertName Alert Definition Name true false

Note

============================================================================================================================================== Created by: Munishpal Makhija Version: 1.0 Date: 10/12/2022 Organization: VMware Blog: https://munishpalmakhija.com ==============================================================================================================================================

Examples

EXAMPLE 1
Remove-AlertDefinition -Name "Test"}

Top of page