@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.32 kB
TypeScript
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>;
}