UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

72 lines (71 loc) 2.24 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Retrieve the details of the gateway resource. * * Uses Azure REST API version 2023-07-07-preview. */ export declare function getManagedGateway(args: GetManagedGatewayArgs, opts?: pulumi.InvokeOptions): Promise<GetManagedGatewayResult>; export interface GetManagedGatewayArgs { /** * Name of the SCOM managed instance. */ instanceName: string; /** * The gateway resource name. */ managedGatewayName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; } /** * A gateway resource. */ export interface GetManagedGatewayResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" */ readonly id: string; /** * The name of the resource */ readonly name: string; /** * The properties of a gateway resource. */ readonly properties: outputs.scom.ManagedGatewayPropertiesResponse; /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ readonly systemData: outputs.scom.SystemDataResponse; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: string; } /** * Retrieve the details of the gateway resource. * * Uses Azure REST API version 2023-07-07-preview. */ export declare function getManagedGatewayOutput(args: GetManagedGatewayOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetManagedGatewayResult>; export interface GetManagedGatewayOutputArgs { /** * Name of the SCOM managed instance. */ instanceName: pulumi.Input<string>; /** * The gateway resource name. */ managedGatewayName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; }