1. Packages
  2. Azure Native
  3. API Docs
  4. enterpriseknowledgegraph
  5. EnterpriseKnowledgeGraph
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.20.1 published on Friday, Dec 1, 2023 by Pulumi

azure-native.enterpriseknowledgegraph.EnterpriseKnowledgeGraph

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.20.1 published on Friday, Dec 1, 2023 by Pulumi

    EnterpriseKnowledgeGraph resource definition Azure REST API version: 2018-12-03. Prior API version in Azure Native 1.x: 2018-12-03.

    Example Usage

    Create EnterpriseKnowledgeGraph

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var enterpriseKnowledgeGraph = new AzureNative.EnterpriseKnowledgeGraph.EnterpriseKnowledgeGraph("enterpriseKnowledgeGraph", new()
        {
            Location = "West US",
            Properties = null,
            ResourceGroupName = "OneResourceGroupName",
            ResourceName = "sampleekgname",
            Tags = 
            {
                { "tag1", "value1" },
                { "tag2", "value2" },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/enterpriseknowledgegraph/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := enterpriseknowledgegraph.NewEnterpriseKnowledgeGraph(ctx, "enterpriseKnowledgeGraph", &enterpriseknowledgegraph.EnterpriseKnowledgeGraphArgs{
    			Location:          pulumi.String("West US"),
    			Properties:        nil,
    			ResourceGroupName: pulumi.String("OneResourceGroupName"),
    			ResourceName:      pulumi.String("sampleekgname"),
    			Tags: pulumi.StringMap{
    				"tag1": pulumi.String("value1"),
    				"tag2": pulumi.String("value2"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.enterpriseknowledgegraph.EnterpriseKnowledgeGraph;
    import com.pulumi.azurenative.enterpriseknowledgegraph.EnterpriseKnowledgeGraphArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var enterpriseKnowledgeGraph = new EnterpriseKnowledgeGraph("enterpriseKnowledgeGraph", EnterpriseKnowledgeGraphArgs.builder()        
                .location("West US")
                .properties()
                .resourceGroupName("OneResourceGroupName")
                .resourceName("sampleekgname")
                .tags(Map.ofEntries(
                    Map.entry("tag1", "value1"),
                    Map.entry("tag2", "value2")
                ))
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    enterprise_knowledge_graph = azure_native.enterpriseknowledgegraph.EnterpriseKnowledgeGraph("enterpriseKnowledgeGraph",
        location="West US",
        properties=azure_native.enterpriseknowledgegraph.EnterpriseKnowledgeGraphPropertiesArgs(),
        resource_group_name="OneResourceGroupName",
        resource_name_="sampleekgname",
        tags={
            "tag1": "value1",
            "tag2": "value2",
        })
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const enterpriseKnowledgeGraph = new azure_native.enterpriseknowledgegraph.EnterpriseKnowledgeGraph("enterpriseKnowledgeGraph", {
        location: "West US",
        properties: {},
        resourceGroupName: "OneResourceGroupName",
        resourceName: "sampleekgname",
        tags: {
            tag1: "value1",
            tag2: "value2",
        },
    });
    
    resources:
      enterpriseKnowledgeGraph:
        type: azure-native:enterpriseknowledgegraph:EnterpriseKnowledgeGraph
        properties:
          location: West US
          properties: {}
          resourceGroupName: OneResourceGroupName
          resourceName: sampleekgname
          tags:
            tag1: value1
            tag2: value2
    

    Create EnterpriseKnowledgeGraph Resource

    new EnterpriseKnowledgeGraph(name: string, args: EnterpriseKnowledgeGraphArgs, opts?: CustomResourceOptions);
    @overload
    def EnterpriseKnowledgeGraph(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 location: Optional[str] = None,
                                 properties: Optional[EnterpriseKnowledgeGraphPropertiesArgs] = None,
                                 resource_group_name: Optional[str] = None,
                                 resource_name_: Optional[str] = None,
                                 sku: Optional[SkuArgs] = None,
                                 tags: Optional[Mapping[str, str]] = None)
    @overload
    def EnterpriseKnowledgeGraph(resource_name: str,
                                 args: EnterpriseKnowledgeGraphArgs,
                                 opts: Optional[ResourceOptions] = None)
    func NewEnterpriseKnowledgeGraph(ctx *Context, name string, args EnterpriseKnowledgeGraphArgs, opts ...ResourceOption) (*EnterpriseKnowledgeGraph, error)
    public EnterpriseKnowledgeGraph(string name, EnterpriseKnowledgeGraphArgs args, CustomResourceOptions? opts = null)
    public EnterpriseKnowledgeGraph(String name, EnterpriseKnowledgeGraphArgs args)
    public EnterpriseKnowledgeGraph(String name, EnterpriseKnowledgeGraphArgs args, CustomResourceOptions options)
    
    type: azure-native:enterpriseknowledgegraph:EnterpriseKnowledgeGraph
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args EnterpriseKnowledgeGraphArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args EnterpriseKnowledgeGraphArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args EnterpriseKnowledgeGraphArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EnterpriseKnowledgeGraphArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EnterpriseKnowledgeGraphArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    EnterpriseKnowledgeGraph Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The EnterpriseKnowledgeGraph resource accepts the following input properties:

    ResourceGroupName string

    The name of the EnterpriseKnowledgeGraph resource group in the user subscription.

    Location string

    Specifies the location of the resource.

    Properties Pulumi.AzureNative.EnterpriseKnowledgeGraph.Inputs.EnterpriseKnowledgeGraphProperties

    The set of properties specific to EnterpriseKnowledgeGraph resource

    ResourceName string

    The name of the EnterpriseKnowledgeGraph resource.

    Sku Pulumi.AzureNative.EnterpriseKnowledgeGraph.Inputs.Sku

    Gets or sets the SKU of the resource.

    Tags Dictionary<string, string>

    Contains resource tags defined as key/value pairs.

    ResourceGroupName string

    The name of the EnterpriseKnowledgeGraph resource group in the user subscription.

    Location string

    Specifies the location of the resource.

    Properties EnterpriseKnowledgeGraphPropertiesArgs

    The set of properties specific to EnterpriseKnowledgeGraph resource

    ResourceName string

    The name of the EnterpriseKnowledgeGraph resource.

    Sku SkuArgs

    Gets or sets the SKU of the resource.

    Tags map[string]string

    Contains resource tags defined as key/value pairs.

    resourceGroupName String

    The name of the EnterpriseKnowledgeGraph resource group in the user subscription.

    location String

    Specifies the location of the resource.

    properties EnterpriseKnowledgeGraphProperties

    The set of properties specific to EnterpriseKnowledgeGraph resource

    resourceName String

    The name of the EnterpriseKnowledgeGraph resource.

    sku Sku

    Gets or sets the SKU of the resource.

    tags Map<String,String>

    Contains resource tags defined as key/value pairs.

    resourceGroupName string

    The name of the EnterpriseKnowledgeGraph resource group in the user subscription.

    location string

    Specifies the location of the resource.

    properties EnterpriseKnowledgeGraphProperties

    The set of properties specific to EnterpriseKnowledgeGraph resource

    resourceName string

    The name of the EnterpriseKnowledgeGraph resource.

    sku Sku

    Gets or sets the SKU of the resource.

    tags {[key: string]: string}

    Contains resource tags defined as key/value pairs.

    resource_group_name str

    The name of the EnterpriseKnowledgeGraph resource group in the user subscription.

    location str

    Specifies the location of the resource.

    properties EnterpriseKnowledgeGraphPropertiesArgs

    The set of properties specific to EnterpriseKnowledgeGraph resource

    resource_name str

    The name of the EnterpriseKnowledgeGraph resource.

    sku SkuArgs

    Gets or sets the SKU of the resource.

    tags Mapping[str, str]

    Contains resource tags defined as key/value pairs.

    resourceGroupName String

    The name of the EnterpriseKnowledgeGraph resource group in the user subscription.

    location String

    Specifies the location of the resource.

    properties Property Map

    The set of properties specific to EnterpriseKnowledgeGraph resource

    resourceName String

    The name of the EnterpriseKnowledgeGraph resource.

    sku Property Map

    Gets or sets the SKU of the resource.

    tags Map<String>

    Contains resource tags defined as key/value pairs.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the EnterpriseKnowledgeGraph resource produces the following output properties:

    Id string

    The provider-assigned unique ID for this managed resource.

    Name string

    Specifies the name of the resource.

    Type string

    Specifies the type of the resource.

    Id string

    The provider-assigned unique ID for this managed resource.

    Name string

    Specifies the name of the resource.

    Type string

    Specifies the type of the resource.

    id String

    The provider-assigned unique ID for this managed resource.

    name String

    Specifies the name of the resource.

    type String

    Specifies the type of the resource.

    id string

    The provider-assigned unique ID for this managed resource.

    name string

    Specifies the name of the resource.

    type string

    Specifies the type of the resource.

    id str

    The provider-assigned unique ID for this managed resource.

    name str

    Specifies the name of the resource.

    type str

    Specifies the type of the resource.

    id String

    The provider-assigned unique ID for this managed resource.

    name String

    Specifies the name of the resource.

    type String

    Specifies the type of the resource.

    Supporting Types

    EnterpriseKnowledgeGraphProperties, EnterpriseKnowledgeGraphPropertiesArgs

    Description string

    The description of the EnterpriseKnowledgeGraph

    Metadata object

    Specifies the metadata of the resource.

    ProvisioningState string

    The state of EnterpriseKnowledgeGraph provisioning

    Description string

    The description of the EnterpriseKnowledgeGraph

    Metadata interface{}

    Specifies the metadata of the resource.

    ProvisioningState string

    The state of EnterpriseKnowledgeGraph provisioning

    description String

    The description of the EnterpriseKnowledgeGraph

    metadata Object

    Specifies the metadata of the resource.

    provisioningState String

    The state of EnterpriseKnowledgeGraph provisioning

    description string

    The description of the EnterpriseKnowledgeGraph

    metadata any

    Specifies the metadata of the resource.

    provisioningState string

    The state of EnterpriseKnowledgeGraph provisioning

    description str

    The description of the EnterpriseKnowledgeGraph

    metadata Any

    Specifies the metadata of the resource.

    provisioning_state str

    The state of EnterpriseKnowledgeGraph provisioning

    description String

    The description of the EnterpriseKnowledgeGraph

    metadata Any

    Specifies the metadata of the resource.

    provisioningState String

    The state of EnterpriseKnowledgeGraph provisioning

    EnterpriseKnowledgeGraphPropertiesResponse, EnterpriseKnowledgeGraphPropertiesResponseArgs

    Description string

    The description of the EnterpriseKnowledgeGraph

    Metadata object

    Specifies the metadata of the resource.

    ProvisioningState string

    The state of EnterpriseKnowledgeGraph provisioning

    Description string

    The description of the EnterpriseKnowledgeGraph

    Metadata interface{}

    Specifies the metadata of the resource.

    ProvisioningState string

    The state of EnterpriseKnowledgeGraph provisioning

    description String

    The description of the EnterpriseKnowledgeGraph

    metadata Object

    Specifies the metadata of the resource.

    provisioningState String

    The state of EnterpriseKnowledgeGraph provisioning

    description string

    The description of the EnterpriseKnowledgeGraph

    metadata any

    Specifies the metadata of the resource.

    provisioningState string

    The state of EnterpriseKnowledgeGraph provisioning

    description str

    The description of the EnterpriseKnowledgeGraph

    metadata Any

    Specifies the metadata of the resource.

    provisioning_state str

    The state of EnterpriseKnowledgeGraph provisioning

    description String

    The description of the EnterpriseKnowledgeGraph

    metadata Any

    Specifies the metadata of the resource.

    provisioningState String

    The state of EnterpriseKnowledgeGraph provisioning

    Sku, SkuArgs

    Name string | SkuName

    The sku name

    name String | SkuName

    The sku name

    name string | SkuName

    The sku name

    name str | SkuName

    The sku name

    name String | "F0" | "S1"

    The sku name

    SkuName, SkuNameArgs

    F0
    F0
    S1
    S1
    SkuNameF0
    F0
    SkuNameS1
    S1
    F0
    F0
    S1
    S1
    F0
    F0
    S1
    S1
    F0
    F0
    S1
    S1
    "F0"
    F0
    "S1"
    S1

    SkuResponse, SkuResponseArgs

    Name string

    The sku name

    Name string

    The sku name

    name String

    The sku name

    name string

    The sku name

    name str

    The sku name

    name String

    The sku name

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:enterpriseknowledgegraph:EnterpriseKnowledgeGraph samplename /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EnterpriseKnowledgeGraph/services/{resourceName} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.20.1 published on Friday, Dec 1, 2023 by Pulumi