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

74 lines (73 loc) 2.32 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Returns a EnterpriseKnowledgeGraph service specified by the parameters. * * Uses Azure REST API version 2018-12-03. */ export declare function getEnterpriseKnowledgeGraph(args: GetEnterpriseKnowledgeGraphArgs, opts?: pulumi.InvokeOptions): Promise<GetEnterpriseKnowledgeGraphResult>; export interface GetEnterpriseKnowledgeGraphArgs { /** * The name of the EnterpriseKnowledgeGraph resource group in the user subscription. */ resourceGroupName: string; /** * The name of the EnterpriseKnowledgeGraph resource. */ resourceName: string; } /** * EnterpriseKnowledgeGraph resource definition */ export interface GetEnterpriseKnowledgeGraphResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Specifies the resource ID. */ readonly id: string; /** * Specifies the location of the resource. */ readonly location?: string; /** * Specifies the name of the resource. */ readonly name: string; /** * The set of properties specific to EnterpriseKnowledgeGraph resource */ readonly properties: outputs.enterpriseknowledgegraph.EnterpriseKnowledgeGraphPropertiesResponse; /** * Gets or sets the SKU of the resource. */ readonly sku?: outputs.enterpriseknowledgegraph.SkuResponse; /** * Contains resource tags defined as key/value pairs. */ readonly tags?: { [key: string]: string; }; /** * Specifies the type of the resource. */ readonly type: string; } /** * Returns a EnterpriseKnowledgeGraph service specified by the parameters. * * Uses Azure REST API version 2018-12-03. */ export declare function getEnterpriseKnowledgeGraphOutput(args: GetEnterpriseKnowledgeGraphOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetEnterpriseKnowledgeGraphResult>; export interface GetEnterpriseKnowledgeGraphOutputArgs { /** * The name of the EnterpriseKnowledgeGraph resource group in the user subscription. */ resourceGroupName: pulumi.Input<string>; /** * The name of the EnterpriseKnowledgeGraph resource. */ resourceName: pulumi.Input<string>; }