1. Packages
  2. Azure Classic
  3. API Docs
  4. cognitive
  5. AIServices

We recommend using Azure Native.

Azure Classic v6.2.0 published on Friday, Sep 27, 2024 by Pulumi

azure.cognitive.AIServices

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v6.2.0 published on Friday, Sep 27, 2024 by Pulumi

    Manages an AI Services account.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = new azure.core.ResourceGroup("example", {
        name: "example-resources",
        location: "West Europe",
    });
    const exampleAIServices = new azure.cognitive.AIServices("example", {
        name: "example-account",
        location: example.location,
        resourceGroupName: example.name,
        skuName: "S0",
        tags: {
            Acceptance: "Test",
        },
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.core.ResourceGroup("example",
        name="example-resources",
        location="West Europe")
    example_ai_services = azure.cognitive.AIServices("example",
        name="example-account",
        location=example.location,
        resource_group_name=example.name,
        sku_name="S0",
        tags={
            "Acceptance": "Test",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/cognitive"
    	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
    			Name:     pulumi.String("example-resources"),
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = cognitive.NewAIServices(ctx, "example", &cognitive.AIServicesArgs{
    			Name:              pulumi.String("example-account"),
    			Location:          example.Location,
    			ResourceGroupName: example.Name,
    			SkuName:           pulumi.String("S0"),
    			Tags: pulumi.StringMap{
    				"Acceptance": pulumi.String("Test"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Azure.Core.ResourceGroup("example", new()
        {
            Name = "example-resources",
            Location = "West Europe",
        });
    
        var exampleAIServices = new Azure.Cognitive.AIServices("example", new()
        {
            Name = "example-account",
            Location = example.Location,
            ResourceGroupName = example.Name,
            SkuName = "S0",
            Tags = 
            {
                { "Acceptance", "Test" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.cognitive.AIServices;
    import com.pulumi.azure.cognitive.AIServicesArgs;
    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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
                .name("example-resources")
                .location("West Europe")
                .build());
    
            var exampleAIServices = new AIServices("exampleAIServices", AIServicesArgs.builder()
                .name("example-account")
                .location(example.location())
                .resourceGroupName(example.name())
                .skuName("S0")
                .tags(Map.of("Acceptance", "Test"))
                .build());
    
        }
    }
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: example-resources
          location: West Europe
      exampleAIServices:
        type: azure:cognitive:AIServices
        name: example
        properties:
          name: example-account
          location: ${example.location}
          resourceGroupName: ${example.name}
          skuName: S0
          tags:
            Acceptance: Test
    

    Create AIServices Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new AIServices(name: string, args: AIServicesArgs, opts?: CustomResourceOptions);
    @overload
    def AIServices(resource_name: str,
                   args: AIServicesArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def AIServices(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   resource_group_name: Optional[str] = None,
                   sku_name: Optional[str] = None,
                   name: Optional[str] = None,
                   identity: Optional[AIServicesIdentityArgs] = None,
                   local_authentication_enabled: Optional[bool] = None,
                   location: Optional[str] = None,
                   custom_subdomain_name: Optional[str] = None,
                   network_acls: Optional[AIServicesNetworkAclsArgs] = None,
                   outbound_network_access_restricted: Optional[bool] = None,
                   public_network_access: Optional[str] = None,
                   fqdns: Optional[Sequence[str]] = None,
                   customer_managed_key: Optional[AIServicesCustomerManagedKeyArgs] = None,
                   storages: Optional[Sequence[AIServicesStorageArgs]] = None,
                   tags: Optional[Mapping[str, str]] = None)
    func NewAIServices(ctx *Context, name string, args AIServicesArgs, opts ...ResourceOption) (*AIServices, error)
    public AIServices(string name, AIServicesArgs args, CustomResourceOptions? opts = null)
    public AIServices(String name, AIServicesArgs args)
    public AIServices(String name, AIServicesArgs args, CustomResourceOptions options)
    
    type: azure:cognitive:AIServices
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args AIServicesArgs
    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 AIServicesArgs
    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 AIServicesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AIServicesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AIServicesArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var aiservicesResource = new Azure.Cognitive.AIServices("aiservicesResource", new()
    {
        ResourceGroupName = "string",
        SkuName = "string",
        Name = "string",
        Identity = new Azure.Cognitive.Inputs.AIServicesIdentityArgs
        {
            Type = "string",
            IdentityIds = new[]
            {
                "string",
            },
            PrincipalId = "string",
            TenantId = "string",
        },
        LocalAuthenticationEnabled = false,
        Location = "string",
        CustomSubdomainName = "string",
        NetworkAcls = new Azure.Cognitive.Inputs.AIServicesNetworkAclsArgs
        {
            DefaultAction = "string",
            IpRules = new[]
            {
                "string",
            },
            VirtualNetworkRules = new[]
            {
                new Azure.Cognitive.Inputs.AIServicesNetworkAclsVirtualNetworkRuleArgs
                {
                    SubnetId = "string",
                    IgnoreMissingVnetServiceEndpoint = false,
                },
            },
        },
        OutboundNetworkAccessRestricted = false,
        PublicNetworkAccess = "string",
        Fqdns = new[]
        {
            "string",
        },
        CustomerManagedKey = new Azure.Cognitive.Inputs.AIServicesCustomerManagedKeyArgs
        {
            IdentityClientId = "string",
            KeyVaultKeyId = "string",
            ManagedHsmKeyId = "string",
        },
        Storages = new[]
        {
            new Azure.Cognitive.Inputs.AIServicesStorageArgs
            {
                StorageAccountId = "string",
                IdentityClientId = "string",
            },
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := cognitive.NewAIServices(ctx, "aiservicesResource", &cognitive.AIServicesArgs{
    	ResourceGroupName: pulumi.String("string"),
    	SkuName:           pulumi.String("string"),
    	Name:              pulumi.String("string"),
    	Identity: &cognitive.AIServicesIdentityArgs{
    		Type: pulumi.String("string"),
    		IdentityIds: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		PrincipalId: pulumi.String("string"),
    		TenantId:    pulumi.String("string"),
    	},
    	LocalAuthenticationEnabled: pulumi.Bool(false),
    	Location:                   pulumi.String("string"),
    	CustomSubdomainName:        pulumi.String("string"),
    	NetworkAcls: &cognitive.AIServicesNetworkAclsArgs{
    		DefaultAction: pulumi.String("string"),
    		IpRules: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		VirtualNetworkRules: cognitive.AIServicesNetworkAclsVirtualNetworkRuleArray{
    			&cognitive.AIServicesNetworkAclsVirtualNetworkRuleArgs{
    				SubnetId:                         pulumi.String("string"),
    				IgnoreMissingVnetServiceEndpoint: pulumi.Bool(false),
    			},
    		},
    	},
    	OutboundNetworkAccessRestricted: pulumi.Bool(false),
    	PublicNetworkAccess:             pulumi.String("string"),
    	Fqdns: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	CustomerManagedKey: &cognitive.AIServicesCustomerManagedKeyArgs{
    		IdentityClientId: pulumi.String("string"),
    		KeyVaultKeyId:    pulumi.String("string"),
    		ManagedHsmKeyId:  pulumi.String("string"),
    	},
    	Storages: cognitive.AIServicesStorageArray{
    		&cognitive.AIServicesStorageArgs{
    			StorageAccountId: pulumi.String("string"),
    			IdentityClientId: pulumi.String("string"),
    		},
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var aiservicesResource = new AIServices("aiservicesResource", AIServicesArgs.builder()
        .resourceGroupName("string")
        .skuName("string")
        .name("string")
        .identity(AIServicesIdentityArgs.builder()
            .type("string")
            .identityIds("string")
            .principalId("string")
            .tenantId("string")
            .build())
        .localAuthenticationEnabled(false)
        .location("string")
        .customSubdomainName("string")
        .networkAcls(AIServicesNetworkAclsArgs.builder()
            .defaultAction("string")
            .ipRules("string")
            .virtualNetworkRules(AIServicesNetworkAclsVirtualNetworkRuleArgs.builder()
                .subnetId("string")
                .ignoreMissingVnetServiceEndpoint(false)
                .build())
            .build())
        .outboundNetworkAccessRestricted(false)
        .publicNetworkAccess("string")
        .fqdns("string")
        .customerManagedKey(AIServicesCustomerManagedKeyArgs.builder()
            .identityClientId("string")
            .keyVaultKeyId("string")
            .managedHsmKeyId("string")
            .build())
        .storages(AIServicesStorageArgs.builder()
            .storageAccountId("string")
            .identityClientId("string")
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    aiservices_resource = azure.cognitive.AIServices("aiservicesResource",
        resource_group_name="string",
        sku_name="string",
        name="string",
        identity={
            "type": "string",
            "identityIds": ["string"],
            "principalId": "string",
            "tenantId": "string",
        },
        local_authentication_enabled=False,
        location="string",
        custom_subdomain_name="string",
        network_acls={
            "defaultAction": "string",
            "ipRules": ["string"],
            "virtualNetworkRules": [{
                "subnetId": "string",
                "ignoreMissingVnetServiceEndpoint": False,
            }],
        },
        outbound_network_access_restricted=False,
        public_network_access="string",
        fqdns=["string"],
        customer_managed_key={
            "identityClientId": "string",
            "keyVaultKeyId": "string",
            "managedHsmKeyId": "string",
        },
        storages=[{
            "storageAccountId": "string",
            "identityClientId": "string",
        }],
        tags={
            "string": "string",
        })
    
    const aiservicesResource = new azure.cognitive.AIServices("aiservicesResource", {
        resourceGroupName: "string",
        skuName: "string",
        name: "string",
        identity: {
            type: "string",
            identityIds: ["string"],
            principalId: "string",
            tenantId: "string",
        },
        localAuthenticationEnabled: false,
        location: "string",
        customSubdomainName: "string",
        networkAcls: {
            defaultAction: "string",
            ipRules: ["string"],
            virtualNetworkRules: [{
                subnetId: "string",
                ignoreMissingVnetServiceEndpoint: false,
            }],
        },
        outboundNetworkAccessRestricted: false,
        publicNetworkAccess: "string",
        fqdns: ["string"],
        customerManagedKey: {
            identityClientId: "string",
            keyVaultKeyId: "string",
            managedHsmKeyId: "string",
        },
        storages: [{
            storageAccountId: "string",
            identityClientId: "string",
        }],
        tags: {
            string: "string",
        },
    });
    
    type: azure:cognitive:AIServices
    properties:
        customSubdomainName: string
        customerManagedKey:
            identityClientId: string
            keyVaultKeyId: string
            managedHsmKeyId: string
        fqdns:
            - string
        identity:
            identityIds:
                - string
            principalId: string
            tenantId: string
            type: string
        localAuthenticationEnabled: false
        location: string
        name: string
        networkAcls:
            defaultAction: string
            ipRules:
                - string
            virtualNetworkRules:
                - ignoreMissingVnetServiceEndpoint: false
                  subnetId: string
        outboundNetworkAccessRestricted: false
        publicNetworkAccess: string
        resourceGroupName: string
        skuName: string
        storages:
            - identityClientId: string
              storageAccountId: string
        tags:
            string: string
    

    AIServices 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 AIServices resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group in which the AI Services Account is created. Changing this forces a new resource to be created.
    SkuName string

    Specifies the SKU Name for this AI Services Account. Possible values are F0, F1, S0, S, S1, S2, S3, S4, S5, S6, P0, P1, P2, E0 and DC0.

    NOTE: SKU DC0 is the commitment tier for AI Services Account containers running in disconnected environments. You must obtain approval from Microsoft by submitting the request form first, before you can use this SKU. More information on Purchase a commitment plan to use containers in disconnected environments.

    CustomSubdomainName string
    The subdomain name used for token-based authentication. This property is required when network_acls is specified. Changing this forces a new resource to be created.
    CustomerManagedKey AIServicesCustomerManagedKey
    A customer_managed_key block as documented below.
    Fqdns List<string>
    List of FQDNs allowed for the AI Services Account.
    Identity AIServicesIdentity
    An identity block as defined below.
    LocalAuthenticationEnabled bool
    Whether local authentication is enabled for the AI Services Account. Defaults to true.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the AI Services Account. Changing this forces a new resource to be created.
    NetworkAcls AIServicesNetworkAcls
    A network_acls block as defined below. When this property is specified, custom_subdomain_name is also required to be set.
    OutboundNetworkAccessRestricted bool
    Whether outbound network access is restricted for the AI Services Account. Defaults to false.
    PublicNetworkAccess string
    Whether public network access is allowed for the AI Services Account. Possible values are Enabled and Disabled. Defaults to Enabled.
    Storages List<AIServicesStorage>
    A storage block as defined below.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    ResourceGroupName string
    The name of the resource group in which the AI Services Account is created. Changing this forces a new resource to be created.
    SkuName string

    Specifies the SKU Name for this AI Services Account. Possible values are F0, F1, S0, S, S1, S2, S3, S4, S5, S6, P0, P1, P2, E0 and DC0.

    NOTE: SKU DC0 is the commitment tier for AI Services Account containers running in disconnected environments. You must obtain approval from Microsoft by submitting the request form first, before you can use this SKU. More information on Purchase a commitment plan to use containers in disconnected environments.

    CustomSubdomainName string
    The subdomain name used for token-based authentication. This property is required when network_acls is specified. Changing this forces a new resource to be created.
    CustomerManagedKey AIServicesCustomerManagedKeyArgs
    A customer_managed_key block as documented below.
    Fqdns []string
    List of FQDNs allowed for the AI Services Account.
    Identity AIServicesIdentityArgs
    An identity block as defined below.
    LocalAuthenticationEnabled bool
    Whether local authentication is enabled for the AI Services Account. Defaults to true.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the AI Services Account. Changing this forces a new resource to be created.
    NetworkAcls AIServicesNetworkAclsArgs
    A network_acls block as defined below. When this property is specified, custom_subdomain_name is also required to be set.
    OutboundNetworkAccessRestricted bool
    Whether outbound network access is restricted for the AI Services Account. Defaults to false.
    PublicNetworkAccess string
    Whether public network access is allowed for the AI Services Account. Possible values are Enabled and Disabled. Defaults to Enabled.
    Storages []AIServicesStorageArgs
    A storage block as defined below.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    resourceGroupName String
    The name of the resource group in which the AI Services Account is created. Changing this forces a new resource to be created.
    skuName String

    Specifies the SKU Name for this AI Services Account. Possible values are F0, F1, S0, S, S1, S2, S3, S4, S5, S6, P0, P1, P2, E0 and DC0.

    NOTE: SKU DC0 is the commitment tier for AI Services Account containers running in disconnected environments. You must obtain approval from Microsoft by submitting the request form first, before you can use this SKU. More information on Purchase a commitment plan to use containers in disconnected environments.

    customSubdomainName String
    The subdomain name used for token-based authentication. This property is required when network_acls is specified. Changing this forces a new resource to be created.
    customerManagedKey AIServicesCustomerManagedKey
    A customer_managed_key block as documented below.
    fqdns List<String>
    List of FQDNs allowed for the AI Services Account.
    identity AIServicesIdentity
    An identity block as defined below.
    localAuthenticationEnabled Boolean
    Whether local authentication is enabled for the AI Services Account. Defaults to true.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    Specifies the name of the AI Services Account. Changing this forces a new resource to be created.
    networkAcls AIServicesNetworkAcls
    A network_acls block as defined below. When this property is specified, custom_subdomain_name is also required to be set.
    outboundNetworkAccessRestricted Boolean
    Whether outbound network access is restricted for the AI Services Account. Defaults to false.
    publicNetworkAccess String
    Whether public network access is allowed for the AI Services Account. Possible values are Enabled and Disabled. Defaults to Enabled.
    storages List<AIServicesStorage>
    A storage block as defined below.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    resourceGroupName string
    The name of the resource group in which the AI Services Account is created. Changing this forces a new resource to be created.
    skuName string

    Specifies the SKU Name for this AI Services Account. Possible values are F0, F1, S0, S, S1, S2, S3, S4, S5, S6, P0, P1, P2, E0 and DC0.

    NOTE: SKU DC0 is the commitment tier for AI Services Account containers running in disconnected environments. You must obtain approval from Microsoft by submitting the request form first, before you can use this SKU. More information on Purchase a commitment plan to use containers in disconnected environments.

    customSubdomainName string
    The subdomain name used for token-based authentication. This property is required when network_acls is specified. Changing this forces a new resource to be created.
    customerManagedKey AIServicesCustomerManagedKey
    A customer_managed_key block as documented below.
    fqdns string[]
    List of FQDNs allowed for the AI Services Account.
    identity AIServicesIdentity
    An identity block as defined below.
    localAuthenticationEnabled boolean
    Whether local authentication is enabled for the AI Services Account. Defaults to true.
    location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name string
    Specifies the name of the AI Services Account. Changing this forces a new resource to be created.
    networkAcls AIServicesNetworkAcls
    A network_acls block as defined below. When this property is specified, custom_subdomain_name is also required to be set.
    outboundNetworkAccessRestricted boolean
    Whether outbound network access is restricted for the AI Services Account. Defaults to false.
    publicNetworkAccess string
    Whether public network access is allowed for the AI Services Account. Possible values are Enabled and Disabled. Defaults to Enabled.
    storages AIServicesStorage[]
    A storage block as defined below.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    resource_group_name str
    The name of the resource group in which the AI Services Account is created. Changing this forces a new resource to be created.
    sku_name str

    Specifies the SKU Name for this AI Services Account. Possible values are F0, F1, S0, S, S1, S2, S3, S4, S5, S6, P0, P1, P2, E0 and DC0.

    NOTE: SKU DC0 is the commitment tier for AI Services Account containers running in disconnected environments. You must obtain approval from Microsoft by submitting the request form first, before you can use this SKU. More information on Purchase a commitment plan to use containers in disconnected environments.

    custom_subdomain_name str
    The subdomain name used for token-based authentication. This property is required when network_acls is specified. Changing this forces a new resource to be created.
    customer_managed_key AIServicesCustomerManagedKeyArgs
    A customer_managed_key block as documented below.
    fqdns Sequence[str]
    List of FQDNs allowed for the AI Services Account.
    identity AIServicesIdentityArgs
    An identity block as defined below.
    local_authentication_enabled bool
    Whether local authentication is enabled for the AI Services Account. Defaults to true.
    location str
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name str
    Specifies the name of the AI Services Account. Changing this forces a new resource to be created.
    network_acls AIServicesNetworkAclsArgs
    A network_acls block as defined below. When this property is specified, custom_subdomain_name is also required to be set.
    outbound_network_access_restricted bool
    Whether outbound network access is restricted for the AI Services Account. Defaults to false.
    public_network_access str
    Whether public network access is allowed for the AI Services Account. Possible values are Enabled and Disabled. Defaults to Enabled.
    storages Sequence[AIServicesStorageArgs]
    A storage block as defined below.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    resourceGroupName String
    The name of the resource group in which the AI Services Account is created. Changing this forces a new resource to be created.
    skuName String

    Specifies the SKU Name for this AI Services Account. Possible values are F0, F1, S0, S, S1, S2, S3, S4, S5, S6, P0, P1, P2, E0 and DC0.

    NOTE: SKU DC0 is the commitment tier for AI Services Account containers running in disconnected environments. You must obtain approval from Microsoft by submitting the request form first, before you can use this SKU. More information on Purchase a commitment plan to use containers in disconnected environments.

    customSubdomainName String
    The subdomain name used for token-based authentication. This property is required when network_acls is specified. Changing this forces a new resource to be created.
    customerManagedKey Property Map
    A customer_managed_key block as documented below.
    fqdns List<String>
    List of FQDNs allowed for the AI Services Account.
    identity Property Map
    An identity block as defined below.
    localAuthenticationEnabled Boolean
    Whether local authentication is enabled for the AI Services Account. Defaults to true.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    Specifies the name of the AI Services Account. Changing this forces a new resource to be created.
    networkAcls Property Map
    A network_acls block as defined below. When this property is specified, custom_subdomain_name is also required to be set.
    outboundNetworkAccessRestricted Boolean
    Whether outbound network access is restricted for the AI Services Account. Defaults to false.
    publicNetworkAccess String
    Whether public network access is allowed for the AI Services Account. Possible values are Enabled and Disabled. Defaults to Enabled.
    storages List<Property Map>
    A storage block as defined below.
    tags Map<String>
    A mapping of tags to assign to the resource.

    Outputs

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

    Endpoint string
    The endpoint used to connect to the AI Services Account.
    Id string
    The provider-assigned unique ID for this managed resource.
    PrimaryAccessKey string
    A primary access key which can be used to connect to the AI Services Account.
    SecondaryAccessKey string
    The secondary access key which can be used to connect to the AI Services Account.
    Endpoint string
    The endpoint used to connect to the AI Services Account.
    Id string
    The provider-assigned unique ID for this managed resource.
    PrimaryAccessKey string
    A primary access key which can be used to connect to the AI Services Account.
    SecondaryAccessKey string
    The secondary access key which can be used to connect to the AI Services Account.
    endpoint String
    The endpoint used to connect to the AI Services Account.
    id String
    The provider-assigned unique ID for this managed resource.
    primaryAccessKey String
    A primary access key which can be used to connect to the AI Services Account.
    secondaryAccessKey String
    The secondary access key which can be used to connect to the AI Services Account.
    endpoint string
    The endpoint used to connect to the AI Services Account.
    id string
    The provider-assigned unique ID for this managed resource.
    primaryAccessKey string
    A primary access key which can be used to connect to the AI Services Account.
    secondaryAccessKey string
    The secondary access key which can be used to connect to the AI Services Account.
    endpoint str
    The endpoint used to connect to the AI Services Account.
    id str
    The provider-assigned unique ID for this managed resource.
    primary_access_key str
    A primary access key which can be used to connect to the AI Services Account.
    secondary_access_key str
    The secondary access key which can be used to connect to the AI Services Account.
    endpoint String
    The endpoint used to connect to the AI Services Account.
    id String
    The provider-assigned unique ID for this managed resource.
    primaryAccessKey String
    A primary access key which can be used to connect to the AI Services Account.
    secondaryAccessKey String
    The secondary access key which can be used to connect to the AI Services Account.

    Look up Existing AIServices Resource

    Get an existing AIServices resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: AIServicesState, opts?: CustomResourceOptions): AIServices
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            custom_subdomain_name: Optional[str] = None,
            customer_managed_key: Optional[AIServicesCustomerManagedKeyArgs] = None,
            endpoint: Optional[str] = None,
            fqdns: Optional[Sequence[str]] = None,
            identity: Optional[AIServicesIdentityArgs] = None,
            local_authentication_enabled: Optional[bool] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            network_acls: Optional[AIServicesNetworkAclsArgs] = None,
            outbound_network_access_restricted: Optional[bool] = None,
            primary_access_key: Optional[str] = None,
            public_network_access: Optional[str] = None,
            resource_group_name: Optional[str] = None,
            secondary_access_key: Optional[str] = None,
            sku_name: Optional[str] = None,
            storages: Optional[Sequence[AIServicesStorageArgs]] = None,
            tags: Optional[Mapping[str, str]] = None) -> AIServices
    func GetAIServices(ctx *Context, name string, id IDInput, state *AIServicesState, opts ...ResourceOption) (*AIServices, error)
    public static AIServices Get(string name, Input<string> id, AIServicesState? state, CustomResourceOptions? opts = null)
    public static AIServices get(String name, Output<String> id, AIServicesState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CustomSubdomainName string
    The subdomain name used for token-based authentication. This property is required when network_acls is specified. Changing this forces a new resource to be created.
    CustomerManagedKey AIServicesCustomerManagedKey
    A customer_managed_key block as documented below.
    Endpoint string
    The endpoint used to connect to the AI Services Account.
    Fqdns List<string>
    List of FQDNs allowed for the AI Services Account.
    Identity AIServicesIdentity
    An identity block as defined below.
    LocalAuthenticationEnabled bool
    Whether local authentication is enabled for the AI Services Account. Defaults to true.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the AI Services Account. Changing this forces a new resource to be created.
    NetworkAcls AIServicesNetworkAcls
    A network_acls block as defined below. When this property is specified, custom_subdomain_name is also required to be set.
    OutboundNetworkAccessRestricted bool
    Whether outbound network access is restricted for the AI Services Account. Defaults to false.
    PrimaryAccessKey string
    A primary access key which can be used to connect to the AI Services Account.
    PublicNetworkAccess string
    Whether public network access is allowed for the AI Services Account. Possible values are Enabled and Disabled. Defaults to Enabled.
    ResourceGroupName string
    The name of the resource group in which the AI Services Account is created. Changing this forces a new resource to be created.
    SecondaryAccessKey string
    The secondary access key which can be used to connect to the AI Services Account.
    SkuName string

    Specifies the SKU Name for this AI Services Account. Possible values are F0, F1, S0, S, S1, S2, S3, S4, S5, S6, P0, P1, P2, E0 and DC0.

    NOTE: SKU DC0 is the commitment tier for AI Services Account containers running in disconnected environments. You must obtain approval from Microsoft by submitting the request form first, before you can use this SKU. More information on Purchase a commitment plan to use containers in disconnected environments.

    Storages List<AIServicesStorage>
    A storage block as defined below.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    CustomSubdomainName string
    The subdomain name used for token-based authentication. This property is required when network_acls is specified. Changing this forces a new resource to be created.
    CustomerManagedKey AIServicesCustomerManagedKeyArgs
    A customer_managed_key block as documented below.
    Endpoint string
    The endpoint used to connect to the AI Services Account.
    Fqdns []string
    List of FQDNs allowed for the AI Services Account.
    Identity AIServicesIdentityArgs
    An identity block as defined below.
    LocalAuthenticationEnabled bool
    Whether local authentication is enabled for the AI Services Account. Defaults to true.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the AI Services Account. Changing this forces a new resource to be created.
    NetworkAcls AIServicesNetworkAclsArgs
    A network_acls block as defined below. When this property is specified, custom_subdomain_name is also required to be set.
    OutboundNetworkAccessRestricted bool
    Whether outbound network access is restricted for the AI Services Account. Defaults to false.
    PrimaryAccessKey string
    A primary access key which can be used to connect to the AI Services Account.
    PublicNetworkAccess string
    Whether public network access is allowed for the AI Services Account. Possible values are Enabled and Disabled. Defaults to Enabled.
    ResourceGroupName string
    The name of the resource group in which the AI Services Account is created. Changing this forces a new resource to be created.
    SecondaryAccessKey string
    The secondary access key which can be used to connect to the AI Services Account.
    SkuName string

    Specifies the SKU Name for this AI Services Account. Possible values are F0, F1, S0, S, S1, S2, S3, S4, S5, S6, P0, P1, P2, E0 and DC0.

    NOTE: SKU DC0 is the commitment tier for AI Services Account containers running in disconnected environments. You must obtain approval from Microsoft by submitting the request form first, before you can use this SKU. More information on Purchase a commitment plan to use containers in disconnected environments.

    Storages []AIServicesStorageArgs
    A storage block as defined below.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    customSubdomainName String
    The subdomain name used for token-based authentication. This property is required when network_acls is specified. Changing this forces a new resource to be created.
    customerManagedKey AIServicesCustomerManagedKey
    A customer_managed_key block as documented below.
    endpoint String
    The endpoint used to connect to the AI Services Account.
    fqdns List<String>
    List of FQDNs allowed for the AI Services Account.
    identity AIServicesIdentity
    An identity block as defined below.
    localAuthenticationEnabled Boolean
    Whether local authentication is enabled for the AI Services Account. Defaults to true.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    Specifies the name of the AI Services Account. Changing this forces a new resource to be created.
    networkAcls AIServicesNetworkAcls
    A network_acls block as defined below. When this property is specified, custom_subdomain_name is also required to be set.
    outboundNetworkAccessRestricted Boolean
    Whether outbound network access is restricted for the AI Services Account. Defaults to false.
    primaryAccessKey String
    A primary access key which can be used to connect to the AI Services Account.
    publicNetworkAccess String
    Whether public network access is allowed for the AI Services Account. Possible values are Enabled and Disabled. Defaults to Enabled.
    resourceGroupName String
    The name of the resource group in which the AI Services Account is created. Changing this forces a new resource to be created.
    secondaryAccessKey String
    The secondary access key which can be used to connect to the AI Services Account.
    skuName String

    Specifies the SKU Name for this AI Services Account. Possible values are F0, F1, S0, S, S1, S2, S3, S4, S5, S6, P0, P1, P2, E0 and DC0.

    NOTE: SKU DC0 is the commitment tier for AI Services Account containers running in disconnected environments. You must obtain approval from Microsoft by submitting the request form first, before you can use this SKU. More information on Purchase a commitment plan to use containers in disconnected environments.

    storages List<AIServicesStorage>
    A storage block as defined below.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    customSubdomainName string
    The subdomain name used for token-based authentication. This property is required when network_acls is specified. Changing this forces a new resource to be created.
    customerManagedKey AIServicesCustomerManagedKey
    A customer_managed_key block as documented below.
    endpoint string
    The endpoint used to connect to the AI Services Account.
    fqdns string[]
    List of FQDNs allowed for the AI Services Account.
    identity AIServicesIdentity
    An identity block as defined below.
    localAuthenticationEnabled boolean
    Whether local authentication is enabled for the AI Services Account. Defaults to true.
    location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name string
    Specifies the name of the AI Services Account. Changing this forces a new resource to be created.
    networkAcls AIServicesNetworkAcls
    A network_acls block as defined below. When this property is specified, custom_subdomain_name is also required to be set.
    outboundNetworkAccessRestricted boolean
    Whether outbound network access is restricted for the AI Services Account. Defaults to false.
    primaryAccessKey string
    A primary access key which can be used to connect to the AI Services Account.
    publicNetworkAccess string
    Whether public network access is allowed for the AI Services Account. Possible values are Enabled and Disabled. Defaults to Enabled.
    resourceGroupName string
    The name of the resource group in which the AI Services Account is created. Changing this forces a new resource to be created.
    secondaryAccessKey string
    The secondary access key which can be used to connect to the AI Services Account.
    skuName string

    Specifies the SKU Name for this AI Services Account. Possible values are F0, F1, S0, S, S1, S2, S3, S4, S5, S6, P0, P1, P2, E0 and DC0.

    NOTE: SKU DC0 is the commitment tier for AI Services Account containers running in disconnected environments. You must obtain approval from Microsoft by submitting the request form first, before you can use this SKU. More information on Purchase a commitment plan to use containers in disconnected environments.

    storages AIServicesStorage[]
    A storage block as defined below.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    custom_subdomain_name str
    The subdomain name used for token-based authentication. This property is required when network_acls is specified. Changing this forces a new resource to be created.
    customer_managed_key AIServicesCustomerManagedKeyArgs
    A customer_managed_key block as documented below.
    endpoint str
    The endpoint used to connect to the AI Services Account.
    fqdns Sequence[str]
    List of FQDNs allowed for the AI Services Account.
    identity AIServicesIdentityArgs
    An identity block as defined below.
    local_authentication_enabled bool
    Whether local authentication is enabled for the AI Services Account. Defaults to true.
    location str
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name str
    Specifies the name of the AI Services Account. Changing this forces a new resource to be created.
    network_acls AIServicesNetworkAclsArgs
    A network_acls block as defined below. When this property is specified, custom_subdomain_name is also required to be set.
    outbound_network_access_restricted bool
    Whether outbound network access is restricted for the AI Services Account. Defaults to false.
    primary_access_key str
    A primary access key which can be used to connect to the AI Services Account.
    public_network_access str
    Whether public network access is allowed for the AI Services Account. Possible values are Enabled and Disabled. Defaults to Enabled.
    resource_group_name str
    The name of the resource group in which the AI Services Account is created. Changing this forces a new resource to be created.
    secondary_access_key str
    The secondary access key which can be used to connect to the AI Services Account.
    sku_name str

    Specifies the SKU Name for this AI Services Account. Possible values are F0, F1, S0, S, S1, S2, S3, S4, S5, S6, P0, P1, P2, E0 and DC0.

    NOTE: SKU DC0 is the commitment tier for AI Services Account containers running in disconnected environments. You must obtain approval from Microsoft by submitting the request form first, before you can use this SKU. More information on Purchase a commitment plan to use containers in disconnected environments.

    storages Sequence[AIServicesStorageArgs]
    A storage block as defined below.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    customSubdomainName String
    The subdomain name used for token-based authentication. This property is required when network_acls is specified. Changing this forces a new resource to be created.
    customerManagedKey Property Map
    A customer_managed_key block as documented below.
    endpoint String
    The endpoint used to connect to the AI Services Account.
    fqdns List<String>
    List of FQDNs allowed for the AI Services Account.
    identity Property Map
    An identity block as defined below.
    localAuthenticationEnabled Boolean
    Whether local authentication is enabled for the AI Services Account. Defaults to true.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    Specifies the name of the AI Services Account. Changing this forces a new resource to be created.
    networkAcls Property Map
    A network_acls block as defined below. When this property is specified, custom_subdomain_name is also required to be set.
    outboundNetworkAccessRestricted Boolean
    Whether outbound network access is restricted for the AI Services Account. Defaults to false.
    primaryAccessKey String
    A primary access key which can be used to connect to the AI Services Account.
    publicNetworkAccess String
    Whether public network access is allowed for the AI Services Account. Possible values are Enabled and Disabled. Defaults to Enabled.
    resourceGroupName String
    The name of the resource group in which the AI Services Account is created. Changing this forces a new resource to be created.
    secondaryAccessKey String
    The secondary access key which can be used to connect to the AI Services Account.
    skuName String

    Specifies the SKU Name for this AI Services Account. Possible values are F0, F1, S0, S, S1, S2, S3, S4, S5, S6, P0, P1, P2, E0 and DC0.

    NOTE: SKU DC0 is the commitment tier for AI Services Account containers running in disconnected environments. You must obtain approval from Microsoft by submitting the request form first, before you can use this SKU. More information on Purchase a commitment plan to use containers in disconnected environments.

    storages List<Property Map>
    A storage block as defined below.
    tags Map<String>
    A mapping of tags to assign to the resource.

    Supporting Types

    AIServicesCustomerManagedKey, AIServicesCustomerManagedKeyArgs

    IdentityClientId string
    The Client ID of the User Assigned Identity that has access to the key. This property only needs to be specified when there are multiple identities attached to the Azure AI Service.
    KeyVaultKeyId string
    The ID of the Key Vault Key which should be used to encrypt the data in this AI Services Account. Exactly one of key_vault_key_id, managed_hsm_key_id must be specified.
    ManagedHsmKeyId string
    The ID of the managed HSM Key which should be used to encrypt the data in this AI Services Account. Exactly one of key_vault_key_id, managed_hsm_key_id must be specified.
    IdentityClientId string
    The Client ID of the User Assigned Identity that has access to the key. This property only needs to be specified when there are multiple identities attached to the Azure AI Service.
    KeyVaultKeyId string
    The ID of the Key Vault Key which should be used to encrypt the data in this AI Services Account. Exactly one of key_vault_key_id, managed_hsm_key_id must be specified.
    ManagedHsmKeyId string
    The ID of the managed HSM Key which should be used to encrypt the data in this AI Services Account. Exactly one of key_vault_key_id, managed_hsm_key_id must be specified.
    identityClientId String
    The Client ID of the User Assigned Identity that has access to the key. This property only needs to be specified when there are multiple identities attached to the Azure AI Service.
    keyVaultKeyId String
    The ID of the Key Vault Key which should be used to encrypt the data in this AI Services Account. Exactly one of key_vault_key_id, managed_hsm_key_id must be specified.
    managedHsmKeyId String
    The ID of the managed HSM Key which should be used to encrypt the data in this AI Services Account. Exactly one of key_vault_key_id, managed_hsm_key_id must be specified.
    identityClientId string
    The Client ID of the User Assigned Identity that has access to the key. This property only needs to be specified when there are multiple identities attached to the Azure AI Service.
    keyVaultKeyId string
    The ID of the Key Vault Key which should be used to encrypt the data in this AI Services Account. Exactly one of key_vault_key_id, managed_hsm_key_id must be specified.
    managedHsmKeyId string
    The ID of the managed HSM Key which should be used to encrypt the data in this AI Services Account. Exactly one of key_vault_key_id, managed_hsm_key_id must be specified.
    identity_client_id str
    The Client ID of the User Assigned Identity that has access to the key. This property only needs to be specified when there are multiple identities attached to the Azure AI Service.
    key_vault_key_id str
    The ID of the Key Vault Key which should be used to encrypt the data in this AI Services Account. Exactly one of key_vault_key_id, managed_hsm_key_id must be specified.
    managed_hsm_key_id str
    The ID of the managed HSM Key which should be used to encrypt the data in this AI Services Account. Exactly one of key_vault_key_id, managed_hsm_key_id must be specified.
    identityClientId String
    The Client ID of the User Assigned Identity that has access to the key. This property only needs to be specified when there are multiple identities attached to the Azure AI Service.
    keyVaultKeyId String
    The ID of the Key Vault Key which should be used to encrypt the data in this AI Services Account. Exactly one of key_vault_key_id, managed_hsm_key_id must be specified.
    managedHsmKeyId String
    The ID of the managed HSM Key which should be used to encrypt the data in this AI Services Account. Exactly one of key_vault_key_id, managed_hsm_key_id must be specified.

    AIServicesIdentity, AIServicesIdentityArgs

    Type string
    Specifies the type of Managed Service Identity that should be configured on this AI Services Account. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned
    IdentityIds List<string>

    Specifies a list of User Assigned Managed Identity IDs to be assigned to this AI Services Account.

    NOTE: This is required when type is set to UserAssigned or SystemAssigned, UserAssigned.

    PrincipalId string
    The Principal ID associated with this Managed Service Identity.
    TenantId string
    The Tenant ID associated with this Managed Service Identity.
    Type string
    Specifies the type of Managed Service Identity that should be configured on this AI Services Account. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned
    IdentityIds []string

    Specifies a list of User Assigned Managed Identity IDs to be assigned to this AI Services Account.

    NOTE: This is required when type is set to UserAssigned or SystemAssigned, UserAssigned.

    PrincipalId string
    The Principal ID associated with this Managed Service Identity.
    TenantId string
    The Tenant ID associated with this Managed Service Identity.
    type String
    Specifies the type of Managed Service Identity that should be configured on this AI Services Account. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned
    identityIds List<String>

    Specifies a list of User Assigned Managed Identity IDs to be assigned to this AI Services Account.

    NOTE: This is required when type is set to UserAssigned or SystemAssigned, UserAssigned.

    principalId String
    The Principal ID associated with this Managed Service Identity.
    tenantId String
    The Tenant ID associated with this Managed Service Identity.
    type string
    Specifies the type of Managed Service Identity that should be configured on this AI Services Account. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned
    identityIds string[]

    Specifies a list of User Assigned Managed Identity IDs to be assigned to this AI Services Account.

    NOTE: This is required when type is set to UserAssigned or SystemAssigned, UserAssigned.

    principalId string
    The Principal ID associated with this Managed Service Identity.
    tenantId string
    The Tenant ID associated with this Managed Service Identity.
    type str
    Specifies the type of Managed Service Identity that should be configured on this AI Services Account. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned
    identity_ids Sequence[str]

    Specifies a list of User Assigned Managed Identity IDs to be assigned to this AI Services Account.

    NOTE: This is required when type is set to UserAssigned or SystemAssigned, UserAssigned.

    principal_id str
    The Principal ID associated with this Managed Service Identity.
    tenant_id str
    The Tenant ID associated with this Managed Service Identity.
    type String
    Specifies the type of Managed Service Identity that should be configured on this AI Services Account. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned
    identityIds List<String>

    Specifies a list of User Assigned Managed Identity IDs to be assigned to this AI Services Account.

    NOTE: This is required when type is set to UserAssigned or SystemAssigned, UserAssigned.

    principalId String
    The Principal ID associated with this Managed Service Identity.
    tenantId String
    The Tenant ID associated with this Managed Service Identity.

    AIServicesNetworkAcls, AIServicesNetworkAclsArgs

    DefaultAction string
    The Default Action to use when no rules match from ip_rules / virtual_network_rules. Possible values are Allow and Deny.
    IpRules List<string>
    One or more IP Addresses, or CIDR Blocks which should be able to access the AI Services Account.
    VirtualNetworkRules List<AIServicesNetworkAclsVirtualNetworkRule>
    A virtual_network_rules block as defined below.
    DefaultAction string
    The Default Action to use when no rules match from ip_rules / virtual_network_rules. Possible values are Allow and Deny.
    IpRules []string
    One or more IP Addresses, or CIDR Blocks which should be able to access the AI Services Account.
    VirtualNetworkRules []AIServicesNetworkAclsVirtualNetworkRule
    A virtual_network_rules block as defined below.
    defaultAction String
    The Default Action to use when no rules match from ip_rules / virtual_network_rules. Possible values are Allow and Deny.
    ipRules List<String>
    One or more IP Addresses, or CIDR Blocks which should be able to access the AI Services Account.
    virtualNetworkRules List<AIServicesNetworkAclsVirtualNetworkRule>
    A virtual_network_rules block as defined below.
    defaultAction string
    The Default Action to use when no rules match from ip_rules / virtual_network_rules. Possible values are Allow and Deny.
    ipRules string[]
    One or more IP Addresses, or CIDR Blocks which should be able to access the AI Services Account.
    virtualNetworkRules AIServicesNetworkAclsVirtualNetworkRule[]
    A virtual_network_rules block as defined below.
    default_action str
    The Default Action to use when no rules match from ip_rules / virtual_network_rules. Possible values are Allow and Deny.
    ip_rules Sequence[str]
    One or more IP Addresses, or CIDR Blocks which should be able to access the AI Services Account.
    virtual_network_rules Sequence[AIServicesNetworkAclsVirtualNetworkRule]
    A virtual_network_rules block as defined below.
    defaultAction String
    The Default Action to use when no rules match from ip_rules / virtual_network_rules. Possible values are Allow and Deny.
    ipRules List<String>
    One or more IP Addresses, or CIDR Blocks which should be able to access the AI Services Account.
    virtualNetworkRules List<Property Map>
    A virtual_network_rules block as defined below.

    AIServicesNetworkAclsVirtualNetworkRule, AIServicesNetworkAclsVirtualNetworkRuleArgs

    SubnetId string
    The ID of the subnet which should be able to access this AI Services Account.
    IgnoreMissingVnetServiceEndpoint bool
    Whether to ignore a missing Virtual Network Service Endpoint or not. Default to false.
    SubnetId string
    The ID of the subnet which should be able to access this AI Services Account.
    IgnoreMissingVnetServiceEndpoint bool
    Whether to ignore a missing Virtual Network Service Endpoint or not. Default to false.
    subnetId String
    The ID of the subnet which should be able to access this AI Services Account.
    ignoreMissingVnetServiceEndpoint Boolean
    Whether to ignore a missing Virtual Network Service Endpoint or not. Default to false.
    subnetId string
    The ID of the subnet which should be able to access this AI Services Account.
    ignoreMissingVnetServiceEndpoint boolean
    Whether to ignore a missing Virtual Network Service Endpoint or not. Default to false.
    subnet_id str
    The ID of the subnet which should be able to access this AI Services Account.
    ignore_missing_vnet_service_endpoint bool
    Whether to ignore a missing Virtual Network Service Endpoint or not. Default to false.
    subnetId String
    The ID of the subnet which should be able to access this AI Services Account.
    ignoreMissingVnetServiceEndpoint Boolean
    Whether to ignore a missing Virtual Network Service Endpoint or not. Default to false.

    AIServicesStorage, AIServicesStorageArgs

    StorageAccountId string
    The ID of the Storage Account.
    IdentityClientId string
    The client ID of the Managed Identity associated with the Storage Account.
    StorageAccountId string
    The ID of the Storage Account.
    IdentityClientId string
    The client ID of the Managed Identity associated with the Storage Account.
    storageAccountId String
    The ID of the Storage Account.
    identityClientId String
    The client ID of the Managed Identity associated with the Storage Account.
    storageAccountId string
    The ID of the Storage Account.
    identityClientId string
    The client ID of the Managed Identity associated with the Storage Account.
    storage_account_id str
    The ID of the Storage Account.
    identity_client_id str
    The client ID of the Managed Identity associated with the Storage Account.
    storageAccountId String
    The ID of the Storage Account.
    identityClientId String
    The client ID of the Managed Identity associated with the Storage Account.

    Import

    AI Services Account can be imported using the resource id, e.g.

    $ pulumi import azure:cognitive/aIServices:AIServices account1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.CognitiveServices/accounts/account1
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Azure Classic v6.2.0 published on Friday, Sep 27, 2024 by Pulumi