< Back

Import-OMSSavedSearch

Sat Jan 18, 2020 5:49 pm

NAME Import-OMSSavedSearch



SYNOPSIS

Imports saved searches to OMS workspace

from json file.





SYNTAX

Import-OMSSavedSearch [-Token] <String> [-SubscriptionID] <String> [-ResourceGroupName] <String>

[-OMSWorkspaceName] <String> [-FilePath] <String> [[-APIVersion] <String>] [<CommonParameters>]



Import-OMSSavedSearch [-Token] <String> [-OMSConnection] <Object> [-FilePath] <String> [[-APIVersion] <String>]

[<CommonParameters>]





DESCRIPTION

Imports saved searches to OMS workspace

from json file.





PARAMETERS

-Token <String>

Token aquired from Get-AADToken cmdlet.



Required? true

Position? 1

Default value

Accept pipeline input? false

Accept wildcard characters? false



-OMSConnection <Object>

Object that contains all needed parameters for working

with OMSSearch Module. You can create such object in

OMS Automation as connection asset.



Required? true

Position? 2

Default value

Accept pipeline input? false

Accept wildcard characters? false



-SubscriptionID <String>

Azure Subscription ID where the OMS workspace

is located.



Required? true

Position? 2

Default value

Accept pipeline input? false

Accept wildcard characters? false



-ResourceGroupName <String>

Azure Resource Group Name where the OMS

workspace is located.



Required? true

Position? 3

Default value

Accept pipeline input? false

Accept wildcard characters? false



-OMSWorkspaceName <String>

Name of the OMS workspace.



Required? true

Position? 4

Default value

Accept pipeline input? false

Accept wildcard characters? false



-FilePath <String>

Full location to the json file that holds

saved searches.



Required? true

Position? 5

Default value

Accept pipeline input? false

Accept wildcard characters? false



-APIVersion <String>

Api version for microsoft.operationalinsights

Azure Resource provider.



Required? false

Position? 8

Default value 2015-03-20

Accept pipeline input? false

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS



OUTPUTS

System.String. Outputs information for every successfully

imported saved search.





-------------------------- EXAMPLE 1 --------------------------



PS C:\\>Import-OMSSavedSearch -SubscriptionID $subscriptionId -ResourceGroupName $ResourceGroupName

-OMSWorkspaceName $OMSWorkspace -FilePath 'D:\\OMS\\MySavedSearches.json' -Token $Token -APIVersion '2015-03-20'



Description

-----------

Imports saved searches to OMS workspace from json file

Uses specific version of Operational Insights API



Example Variables

-----------------

$Token = Get-AADToken -Credential (Get-Credential) -TenantID 'eeb91fce-4be2-4a30-aad8-39e05fefde0'

$subscriptionId = "3c1d68a5-4064-4522-94e4-e0378165555e"

$ResourceGroupName = "oi-default-east-us"

$OMSWorkspace = "Test"











RELATED LINKS