Skip to main content

managed_gateways_by_managed_instances

Creates, updates, deletes, gets or lists a managed_gateways_by_managed_instances resource.

Overview

Namemanaged_gateways_by_managed_instances
TypeResource
Idazure.scom.managed_gateways_by_managed_instances

Fields

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
namestringThe name of the resource
propertiesobjectThe properties of a gateway resource.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

NameAccessible byRequired ParamsDescription
listSELECTinstanceName, resourceGroupName, subscriptionIdA comprehensive list of all gateway resources within a SCOM managed instance.

SELECT examples

A comprehensive list of all gateway resources within a SCOM managed instance.

SELECT
id,
name,
properties,
type
FROM azure.scom.managed_gateways_by_managed_instances
WHERE instanceName = '{{ instanceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';