1. Packages
  2. Azure Native
  3. API Docs
  4. manufacturingplatform
  5. ManufacturingDataService
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native.manufacturingplatform.ManufacturingDataService

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

A ManufacturingPlatformProviderHub resource

Uses Azure REST API version 2025-03-01.

Import

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

$ pulumi import azure-native:manufacturingplatform:ManufacturingDataService -JC180-G53HQ-DV45--2 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManufacturingPlatform/manufacturingDataServices/{mdsResourceName} 
Copy

Create ManufacturingDataService Resource

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

Constructor syntax

new ManufacturingDataService(name: string, args: ManufacturingDataServiceArgs, opts?: CustomResourceOptions);
@overload
def ManufacturingDataService(resource_name: str,
                             args: ManufacturingDataServiceArgs,
                             opts: Optional[ResourceOptions] = None)

@overload
def ManufacturingDataService(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             resource_group_name: Optional[str] = None,
                             identity: Optional[ManagedServiceIdentityArgs] = None,
                             location: Optional[str] = None,
                             mds_resource_name: Optional[str] = None,
                             properties: Optional[MdsResourcePropertiesArgs] = None,
                             sku: Optional[SkuArgs] = None,
                             tags: Optional[Mapping[str, str]] = None)
func NewManufacturingDataService(ctx *Context, name string, args ManufacturingDataServiceArgs, opts ...ResourceOption) (*ManufacturingDataService, error)
public ManufacturingDataService(string name, ManufacturingDataServiceArgs args, CustomResourceOptions? opts = null)
public ManufacturingDataService(String name, ManufacturingDataServiceArgs args)
public ManufacturingDataService(String name, ManufacturingDataServiceArgs args, CustomResourceOptions options)
type: azure-native:manufacturingplatform:ManufacturingDataService
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ManufacturingDataServiceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ManufacturingDataServiceArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ManufacturingDataServiceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ManufacturingDataServiceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ManufacturingDataServiceArgs
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 manufacturingDataServiceResource = new AzureNative.ManufacturingPlatform.ManufacturingDataService("manufacturingDataServiceResource", new()
{
    ResourceGroupName = "string",
    Identity = new AzureNative.ManufacturingPlatform.Inputs.ManagedServiceIdentityArgs
    {
        Type = "string",
        UserAssignedIdentities = new[]
        {
            "string",
        },
    },
    Location = "string",
    MdsResourceName = "string",
    Properties = new AzureNative.ManufacturingPlatform.Inputs.MdsResourcePropertiesArgs
    {
        AadApplicationId = "string",
        AksAdminGroupId = "string",
        CmkProfile = new AzureNative.ManufacturingPlatform.Inputs.CmkProfileArgs
        {
            KeyUri = "string",
        },
        DenyAssignmentExclusions = new[]
        {
            new AzureNative.ManufacturingPlatform.Inputs.DenyAssignmentExclusionArgs
            {
                Id = "string",
                Type = "string",
            },
        },
        EnableCopilot = false,
        EnableDiagnosticSettings = false,
        FabricProfile = new AzureNative.ManufacturingPlatform.Inputs.FabricProfileArgs
        {
            KeyUri = "string",
            OneLakePath = "string",
            OneLakeUri = "string",
        },
        OpenAIProfile = new AzureNative.ManufacturingPlatform.Inputs.OpenAIProfileArgs
        {
            EmbeddingModelCapacity = 0,
            EmbeddingModelName = "string",
            EmbeddingModelSkuName = "string",
            EmbeddingModelVersion = "string",
            GptModelCapacity = 0,
            GptModelName = "string",
            GptModelSkuName = "string",
            GptModelVersion = "string",
        },
        RedundancyState = "string",
        ResourceState = "string",
        UserManagedOpenAIProfile = new AzureNative.ManufacturingPlatform.Inputs.UserManagedOpenAIProfileArgs
        {
            EmbeddingModelDeploymentName = "string",
            GptModelDeploymentName = "string",
            Id = "string",
        },
        Version = "string",
    },
    Sku = new AzureNative.ManufacturingPlatform.Inputs.SkuArgs
    {
        Name = "string",
        Capacity = 0,
        Family = "string",
        Size = "string",
        Tier = AzureNative.ManufacturingPlatform.SkuTier.Free,
    },
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := manufacturingplatform.NewManufacturingDataService(ctx, "manufacturingDataServiceResource", &manufacturingplatform.ManufacturingDataServiceArgs{
	ResourceGroupName: pulumi.String("string"),
	Identity: &manufacturingplatform.ManagedServiceIdentityArgs{
		Type: pulumi.String("string"),
		UserAssignedIdentities: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	Location:        pulumi.String("string"),
	MdsResourceName: pulumi.String("string"),
	Properties: &manufacturingplatform.MdsResourcePropertiesArgs{
		AadApplicationId: pulumi.String("string"),
		AksAdminGroupId:  pulumi.String("string"),
		CmkProfile: &manufacturingplatform.CmkProfileArgs{
			KeyUri: pulumi.String("string"),
		},
		DenyAssignmentExclusions: manufacturingplatform.DenyAssignmentExclusionArray{
			&manufacturingplatform.DenyAssignmentExclusionArgs{
				Id:   pulumi.String("string"),
				Type: pulumi.String("string"),
			},
		},
		EnableCopilot:            pulumi.Bool(false),
		EnableDiagnosticSettings: pulumi.Bool(false),
		FabricProfile: &manufacturingplatform.FabricProfileArgs{
			KeyUri:      pulumi.String("string"),
			OneLakePath: pulumi.String("string"),
			OneLakeUri:  pulumi.String("string"),
		},
		OpenAIProfile: &manufacturingplatform.OpenAIProfileArgs{
			EmbeddingModelCapacity: pulumi.Int(0),
			EmbeddingModelName:     pulumi.String("string"),
			EmbeddingModelSkuName:  pulumi.String("string"),
			EmbeddingModelVersion:  pulumi.String("string"),
			GptModelCapacity:       pulumi.Int(0),
			GptModelName:           pulumi.String("string"),
			GptModelSkuName:        pulumi.String("string"),
			GptModelVersion:        pulumi.String("string"),
		},
		RedundancyState: pulumi.String("string"),
		ResourceState:   pulumi.String("string"),
		UserManagedOpenAIProfile: &manufacturingplatform.UserManagedOpenAIProfileArgs{
			EmbeddingModelDeploymentName: pulumi.String("string"),
			GptModelDeploymentName:       pulumi.String("string"),
			Id:                           pulumi.String("string"),
		},
		Version: pulumi.String("string"),
	},
	Sku: &manufacturingplatform.SkuArgs{
		Name:     pulumi.String("string"),
		Capacity: pulumi.Int(0),
		Family:   pulumi.String("string"),
		Size:     pulumi.String("string"),
		Tier:     manufacturingplatform.SkuTierFree,
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var manufacturingDataServiceResource = new ManufacturingDataService("manufacturingDataServiceResource", ManufacturingDataServiceArgs.builder()
    .resourceGroupName("string")
    .identity(ManagedServiceIdentityArgs.builder()
        .type("string")
        .userAssignedIdentities("string")
        .build())
    .location("string")
    .mdsResourceName("string")
    .properties(MdsResourcePropertiesArgs.builder()
        .aadApplicationId("string")
        .aksAdminGroupId("string")
        .cmkProfile(CmkProfileArgs.builder()
            .keyUri("string")
            .build())
        .denyAssignmentExclusions(DenyAssignmentExclusionArgs.builder()
            .id("string")
            .type("string")
            .build())
        .enableCopilot(false)
        .enableDiagnosticSettings(false)
        .fabricProfile(FabricProfileArgs.builder()
            .keyUri("string")
            .oneLakePath("string")
            .oneLakeUri("string")
            .build())
        .openAIProfile(OpenAIProfileArgs.builder()
            .embeddingModelCapacity(0)
            .embeddingModelName("string")
            .embeddingModelSkuName("string")
            .embeddingModelVersion("string")
            .gptModelCapacity(0)
            .gptModelName("string")
            .gptModelSkuName("string")
            .gptModelVersion("string")
            .build())
        .redundancyState("string")
        .resourceState("string")
        .userManagedOpenAIProfile(UserManagedOpenAIProfileArgs.builder()
            .embeddingModelDeploymentName("string")
            .gptModelDeploymentName("string")
            .id("string")
            .build())
        .version("string")
        .build())
    .sku(SkuArgs.builder()
        .name("string")
        .capacity(0)
        .family("string")
        .size("string")
        .tier("Free")
        .build())
    .tags(Map.of("string", "string"))
    .build());
Copy
manufacturing_data_service_resource = azure_native.manufacturingplatform.ManufacturingDataService("manufacturingDataServiceResource",
    resource_group_name="string",
    identity={
        "type": "string",
        "user_assigned_identities": ["string"],
    },
    location="string",
    mds_resource_name="string",
    properties={
        "aad_application_id": "string",
        "aks_admin_group_id": "string",
        "cmk_profile": {
            "key_uri": "string",
        },
        "deny_assignment_exclusions": [{
            "id": "string",
            "type": "string",
        }],
        "enable_copilot": False,
        "enable_diagnostic_settings": False,
        "fabric_profile": {
            "key_uri": "string",
            "one_lake_path": "string",
            "one_lake_uri": "string",
        },
        "open_ai_profile": {
            "embedding_model_capacity": 0,
            "embedding_model_name": "string",
            "embedding_model_sku_name": "string",
            "embedding_model_version": "string",
            "gpt_model_capacity": 0,
            "gpt_model_name": "string",
            "gpt_model_sku_name": "string",
            "gpt_model_version": "string",
        },
        "redundancy_state": "string",
        "resource_state": "string",
        "user_managed_open_ai_profile": {
            "embedding_model_deployment_name": "string",
            "gpt_model_deployment_name": "string",
            "id": "string",
        },
        "version": "string",
    },
    sku={
        "name": "string",
        "capacity": 0,
        "family": "string",
        "size": "string",
        "tier": azure_native.manufacturingplatform.SkuTier.FREE,
    },
    tags={
        "string": "string",
    })
Copy
const manufacturingDataServiceResource = new azure_native.manufacturingplatform.ManufacturingDataService("manufacturingDataServiceResource", {
    resourceGroupName: "string",
    identity: {
        type: "string",
        userAssignedIdentities: ["string"],
    },
    location: "string",
    mdsResourceName: "string",
    properties: {
        aadApplicationId: "string",
        aksAdminGroupId: "string",
        cmkProfile: {
            keyUri: "string",
        },
        denyAssignmentExclusions: [{
            id: "string",
            type: "string",
        }],
        enableCopilot: false,
        enableDiagnosticSettings: false,
        fabricProfile: {
            keyUri: "string",
            oneLakePath: "string",
            oneLakeUri: "string",
        },
        openAIProfile: {
            embeddingModelCapacity: 0,
            embeddingModelName: "string",
            embeddingModelSkuName: "string",
            embeddingModelVersion: "string",
            gptModelCapacity: 0,
            gptModelName: "string",
            gptModelSkuName: "string",
            gptModelVersion: "string",
        },
        redundancyState: "string",
        resourceState: "string",
        userManagedOpenAIProfile: {
            embeddingModelDeploymentName: "string",
            gptModelDeploymentName: "string",
            id: "string",
        },
        version: "string",
    },
    sku: {
        name: "string",
        capacity: 0,
        family: "string",
        size: "string",
        tier: azure_native.manufacturingplatform.SkuTier.Free,
    },
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:manufacturingplatform:ManufacturingDataService
properties:
    identity:
        type: string
        userAssignedIdentities:
            - string
    location: string
    mdsResourceName: string
    properties:
        aadApplicationId: string
        aksAdminGroupId: string
        cmkProfile:
            keyUri: string
        denyAssignmentExclusions:
            - id: string
              type: string
        enableCopilot: false
        enableDiagnosticSettings: false
        fabricProfile:
            keyUri: string
            oneLakePath: string
            oneLakeUri: string
        openAIProfile:
            embeddingModelCapacity: 0
            embeddingModelName: string
            embeddingModelSkuName: string
            embeddingModelVersion: string
            gptModelCapacity: 0
            gptModelName: string
            gptModelSkuName: string
            gptModelVersion: string
        redundancyState: string
        resourceState: string
        userManagedOpenAIProfile:
            embeddingModelDeploymentName: string
            gptModelDeploymentName: string
            id: string
        version: string
    resourceGroupName: string
    sku:
        capacity: 0
        family: string
        name: string
        size: string
        tier: Free
    tags:
        string: string
Copy

ManufacturingDataService Resource Properties

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

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The ManufacturingDataService resource accepts the following input properties:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Identity Pulumi.AzureNative.ManufacturingPlatform.Inputs.ManagedServiceIdentity
The managed service identities assigned to this resource.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
MdsResourceName Changes to this property will trigger replacement. string
Name.
Properties Pulumi.AzureNative.ManufacturingPlatform.Inputs.MdsResourceProperties
The resource-specific properties for this resource.
Sku Pulumi.AzureNative.ManufacturingPlatform.Inputs.Sku
The SKU (Stock Keeping Unit) assigned to this resource.
Tags Dictionary<string, string>
Resource tags.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Identity ManagedServiceIdentityArgs
The managed service identities assigned to this resource.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
MdsResourceName Changes to this property will trigger replacement. string
Name.
Properties MdsResourcePropertiesArgs
The resource-specific properties for this resource.
Sku SkuArgs
The SKU (Stock Keeping Unit) assigned to this resource.
Tags map[string]string
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
identity ManagedServiceIdentity
The managed service identities assigned to this resource.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
mdsResourceName Changes to this property will trigger replacement. String
Name.
properties MdsResourceProperties
The resource-specific properties for this resource.
sku Sku
The SKU (Stock Keeping Unit) assigned to this resource.
tags Map<String,String>
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
identity ManagedServiceIdentity
The managed service identities assigned to this resource.
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
mdsResourceName Changes to this property will trigger replacement. string
Name.
properties MdsResourceProperties
The resource-specific properties for this resource.
sku Sku
The SKU (Stock Keeping Unit) assigned to this resource.
tags {[key: string]: string}
Resource tags.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
identity ManagedServiceIdentityArgs
The managed service identities assigned to this resource.
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
mds_resource_name Changes to this property will trigger replacement. str
Name.
properties MdsResourcePropertiesArgs
The resource-specific properties for this resource.
sku SkuArgs
The SKU (Stock Keeping Unit) assigned to this resource.
tags Mapping[str, str]
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
identity Property Map
The managed service identities assigned to this resource.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
mdsResourceName Changes to this property will trigger replacement. String
Name.
properties Property Map
The resource-specific properties for this resource.
sku Property Map
The SKU (Stock Keeping Unit) assigned to this resource.
tags Map<String>
Resource tags.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData Pulumi.AzureNative.ManufacturingPlatform.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

AdxProfileResponse
, AdxProfileResponseArgs

DataIngestionUri This property is required. string
Data Ingestion Uri of Adx Resource
Id This property is required. string
Resource Id of Adx Resource
Uri This property is required. string
Uri of Adx Resource
DataIngestionUri This property is required. string
Data Ingestion Uri of Adx Resource
Id This property is required. string
Resource Id of Adx Resource
Uri This property is required. string
Uri of Adx Resource
dataIngestionUri This property is required. String
Data Ingestion Uri of Adx Resource
id This property is required. String
Resource Id of Adx Resource
uri This property is required. String
Uri of Adx Resource
dataIngestionUri This property is required. string
Data Ingestion Uri of Adx Resource
id This property is required. string
Resource Id of Adx Resource
uri This property is required. string
Uri of Adx Resource
data_ingestion_uri This property is required. str
Data Ingestion Uri of Adx Resource
id This property is required. str
Resource Id of Adx Resource
uri This property is required. str
Uri of Adx Resource
dataIngestionUri This property is required. String
Data Ingestion Uri of Adx Resource
id This property is required. String
Resource Id of Adx Resource
uri This property is required. String
Uri of Adx Resource

AksProfileResponse
, AksProfileResponseArgs

Id This property is required. string
Resource Id of AKS Resource
Id This property is required. string
Resource Id of AKS Resource
id This property is required. String
Resource Id of AKS Resource
id This property is required. string
Resource Id of AKS Resource
id This property is required. str
Resource Id of AKS Resource
id This property is required. String
Resource Id of AKS Resource

CmkProfile
, CmkProfileArgs

KeyUri This property is required. string
URI of Key in AKV
KeyUri This property is required. string
URI of Key in AKV
keyUri This property is required. String
URI of Key in AKV
keyUri This property is required. string
URI of Key in AKV
key_uri This property is required. str
URI of Key in AKV
keyUri This property is required. String
URI of Key in AKV

CmkProfileResponse
, CmkProfileResponseArgs

KeyUri This property is required. string
URI of Key in AKV
KeyUri This property is required. string
URI of Key in AKV
keyUri This property is required. String
URI of Key in AKV
keyUri This property is required. string
URI of Key in AKV
key_uri This property is required. str
URI of Key in AKV
keyUri This property is required. String
URI of Key in AKV

DatabaseProfileResponse
, DatabaseProfileResponseArgs

CosmosId This property is required. string
Resource Id of Cosmos Resource
CosmosId This property is required. string
Resource Id of Cosmos Resource
cosmosId This property is required. String
Resource Id of Cosmos Resource
cosmosId This property is required. string
Resource Id of Cosmos Resource
cosmos_id This property is required. str
Resource Id of Cosmos Resource
cosmosId This property is required. String
Resource Id of Cosmos Resource

DenyAssignmentExclusion
, DenyAssignmentExclusionArgs

Id This property is required. string
Object Id of Identity
Type This property is required. string
Type of Identity
Id This property is required. string
Object Id of Identity
Type This property is required. string
Type of Identity
id This property is required. String
Object Id of Identity
type This property is required. String
Type of Identity
id This property is required. string
Object Id of Identity
type This property is required. string
Type of Identity
id This property is required. str
Object Id of Identity
type This property is required. str
Type of Identity
id This property is required. String
Object Id of Identity
type This property is required. String
Type of Identity

DenyAssignmentExclusionResponse
, DenyAssignmentExclusionResponseArgs

Id This property is required. string
Object Id of Identity
Type This property is required. string
Type of Identity
Id This property is required. string
Object Id of Identity
Type This property is required. string
Type of Identity
id This property is required. String
Object Id of Identity
type This property is required. String
Type of Identity
id This property is required. string
Object Id of Identity
type This property is required. string
Type of Identity
id This property is required. str
Object Id of Identity
type This property is required. str
Type of Identity
id This property is required. String
Object Id of Identity
type This property is required. String
Type of Identity

EventHubProfileResponse
, EventHubProfileResponseArgs

AdxInstanceId This property is required. string
Resource Id of Adx Instance
HostName This property is required. string
Host Name
AdxInstanceId This property is required. string
Resource Id of Adx Instance
HostName This property is required. string
Host Name
adxInstanceId This property is required. String
Resource Id of Adx Instance
hostName This property is required. String
Host Name
adxInstanceId This property is required. string
Resource Id of Adx Instance
hostName This property is required. string
Host Name
adx_instance_id This property is required. str
Resource Id of Adx Instance
host_name This property is required. str
Host Name
adxInstanceId This property is required. String
Resource Id of Adx Instance
hostName This property is required. String
Host Name

FabricProfile
, FabricProfileArgs

KeyUri This property is required. string
Azure Key Vault Uri
OneLakePath This property is required. string
One Lake Path
OneLakeUri This property is required. string
URI of One Lake
KeyUri This property is required. string
Azure Key Vault Uri
OneLakePath This property is required. string
One Lake Path
OneLakeUri This property is required. string
URI of One Lake
keyUri This property is required. String
Azure Key Vault Uri
oneLakePath This property is required. String
One Lake Path
oneLakeUri This property is required. String
URI of One Lake
keyUri This property is required. string
Azure Key Vault Uri
oneLakePath This property is required. string
One Lake Path
oneLakeUri This property is required. string
URI of One Lake
key_uri This property is required. str
Azure Key Vault Uri
one_lake_path This property is required. str
One Lake Path
one_lake_uri This property is required. str
URI of One Lake
keyUri This property is required. String
Azure Key Vault Uri
oneLakePath This property is required. String
One Lake Path
oneLakeUri This property is required. String
URI of One Lake

FabricProfileResponse
, FabricProfileResponseArgs

KeyUri This property is required. string
Azure Key Vault Uri
OneLakePath This property is required. string
One Lake Path
OneLakeUri This property is required. string
URI of One Lake
KeyUri This property is required. string
Azure Key Vault Uri
OneLakePath This property is required. string
One Lake Path
OneLakeUri This property is required. string
URI of One Lake
keyUri This property is required. String
Azure Key Vault Uri
oneLakePath This property is required. String
One Lake Path
oneLakeUri This property is required. String
URI of One Lake
keyUri This property is required. string
Azure Key Vault Uri
oneLakePath This property is required. string
One Lake Path
oneLakeUri This property is required. string
URI of One Lake
key_uri This property is required. str
Azure Key Vault Uri
one_lake_path This property is required. str
One Lake Path
one_lake_uri This property is required. str
URI of One Lake
keyUri This property is required. String
Azure Key Vault Uri
oneLakePath This property is required. String
One Lake Path
oneLakeUri This property is required. String
URI of One Lake

FunctionAppProfileResponse
, FunctionAppProfileResponseArgs

Id This property is required. string
Resource Id of Azure Function App Resource
Id This property is required. string
Resource Id of Azure Function App Resource
id This property is required. String
Resource Id of Azure Function App Resource
id This property is required. string
Resource Id of Azure Function App Resource
id This property is required. str
Resource Id of Azure Function App Resource
id This property is required. String
Resource Id of Azure Function App Resource

ManagedOnBehalfOfConfigurationResponse
, ManagedOnBehalfOfConfigurationResponseArgs

MoboBrokerResources This property is required. []MoboBrokerResourceResponse
Associated MoboBrokerResources.
moboBrokerResources This property is required. List<MoboBrokerResourceResponse>
Associated MoboBrokerResources.
moboBrokerResources This property is required. MoboBrokerResourceResponse[]
Associated MoboBrokerResources.
mobo_broker_resources This property is required. Sequence[MoboBrokerResourceResponse]
Associated MoboBrokerResources.
moboBrokerResources This property is required. List<Property Map>
Associated MoboBrokerResources.

ManagedResourceGroupConfigurationResponse
, ManagedResourceGroupConfigurationResponseArgs

Location This property is required. string
The resource group location.
Name This property is required. string
The resource group name.
Location This property is required. string
The resource group location.
Name This property is required. string
The resource group name.
location This property is required. String
The resource group location.
name This property is required. String
The resource group name.
location This property is required. string
The resource group location.
name This property is required. string
The resource group name.
location This property is required. str
The resource group location.
name This property is required. str
The resource group name.
location This property is required. String
The resource group location.
name This property is required. String
The resource group name.

ManagedServiceIdentity
, ManagedServiceIdentityArgs

Type This property is required. string | Pulumi.AzureNative.ManufacturingPlatform.ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities List<string>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
Type This property is required. string | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities []string
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. String | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities List<String>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. string | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities string[]
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. str | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
user_assigned_identities Sequence[str]
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. String | "None" | "SystemAssigned" | "UserAssigned" | "SystemAssigned,UserAssigned"
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities List<String>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

ManagedServiceIdentityResponse
, ManagedServiceIdentityResponseArgs

PrincipalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
TenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
Type This property is required. string
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.ManufacturingPlatform.Inputs.UserAssignedIdentityResponse>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
PrincipalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
TenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
Type This property is required. string
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities map[string]UserAssignedIdentityResponse
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principalId This property is required. String
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. String
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. String
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities Map<String,UserAssignedIdentityResponse>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. string
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principal_id This property is required. str
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenant_id This property is required. str
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. str
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
user_assigned_identities Mapping[str, UserAssignedIdentityResponse]
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principalId This property is required. String
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. String
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. String
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities Map<Property Map>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

ManagedServiceIdentityType
, ManagedServiceIdentityTypeArgs

None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
ManagedServiceIdentityTypeNone
None
ManagedServiceIdentityTypeSystemAssigned
SystemAssigned
ManagedServiceIdentityTypeUserAssigned
UserAssigned
ManagedServiceIdentityType_SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
NONE
None
SYSTEM_ASSIGNED
SystemAssigned
USER_ASSIGNED
UserAssigned
SYSTEM_ASSIGNED_USER_ASSIGNED
SystemAssigned,UserAssigned
"None"
None
"SystemAssigned"
SystemAssigned
"UserAssigned"
UserAssigned
"SystemAssigned,UserAssigned"
SystemAssigned,UserAssigned

MdsResourceProperties
, MdsResourcePropertiesArgs

AadApplicationId This property is required. string
AAD Application Id.
AksAdminGroupId string
AKS Admin Group Id.
CmkProfile Pulumi.AzureNative.ManufacturingPlatform.Inputs.CmkProfile
Profile of CMK Settings.
DenyAssignmentExclusions List<Pulumi.AzureNative.ManufacturingPlatform.Inputs.DenyAssignmentExclusion>
Deny Assignments exclusion list.
EnableCopilot bool
Enable Copilot.
EnableDiagnosticSettings bool
Enable Diagnostic Settings.
FabricProfile Pulumi.AzureNative.ManufacturingPlatform.Inputs.FabricProfile
Profile of Fabric resources.
OpenAIProfile Pulumi.AzureNative.ManufacturingPlatform.Inputs.OpenAIProfile
Profile of OpenAI Resource.
RedundancyState string | Pulumi.AzureNative.ManufacturingPlatform.RedundancyState
Zone redundancy state for resources
ResourceState string | Pulumi.AzureNative.ManufacturingPlatform.ResourceState
State of the resource
UserManagedOpenAIProfile Pulumi.AzureNative.ManufacturingPlatform.Inputs.UserManagedOpenAIProfile
Profile of User Managed OpenAI Resource.
Version string
Mds Resource Version.
AadApplicationId This property is required. string
AAD Application Id.
AksAdminGroupId string
AKS Admin Group Id.
CmkProfile CmkProfile
Profile of CMK Settings.
DenyAssignmentExclusions []DenyAssignmentExclusion
Deny Assignments exclusion list.
EnableCopilot bool
Enable Copilot.
EnableDiagnosticSettings bool
Enable Diagnostic Settings.
FabricProfile FabricProfile
Profile of Fabric resources.
OpenAIProfile OpenAIProfile
Profile of OpenAI Resource.
RedundancyState string | RedundancyState
Zone redundancy state for resources
ResourceState string | ResourceState
State of the resource
UserManagedOpenAIProfile UserManagedOpenAIProfile
Profile of User Managed OpenAI Resource.
Version string
Mds Resource Version.
aadApplicationId This property is required. String
AAD Application Id.
aksAdminGroupId String
AKS Admin Group Id.
cmkProfile CmkProfile
Profile of CMK Settings.
denyAssignmentExclusions List<DenyAssignmentExclusion>
Deny Assignments exclusion list.
enableCopilot Boolean
Enable Copilot.
enableDiagnosticSettings Boolean
Enable Diagnostic Settings.
fabricProfile FabricProfile
Profile of Fabric resources.
openAIProfile OpenAIProfile
Profile of OpenAI Resource.
redundancyState String | RedundancyState
Zone redundancy state for resources
resourceState String | ResourceState
State of the resource
userManagedOpenAIProfile UserManagedOpenAIProfile
Profile of User Managed OpenAI Resource.
version String
Mds Resource Version.
aadApplicationId This property is required. string
AAD Application Id.
aksAdminGroupId string
AKS Admin Group Id.
cmkProfile CmkProfile
Profile of CMK Settings.
denyAssignmentExclusions DenyAssignmentExclusion[]
Deny Assignments exclusion list.
enableCopilot boolean
Enable Copilot.
enableDiagnosticSettings boolean
Enable Diagnostic Settings.
fabricProfile FabricProfile
Profile of Fabric resources.
openAIProfile OpenAIProfile
Profile of OpenAI Resource.
redundancyState string | RedundancyState
Zone redundancy state for resources
resourceState string | ResourceState
State of the resource
userManagedOpenAIProfile UserManagedOpenAIProfile
Profile of User Managed OpenAI Resource.
version string
Mds Resource Version.
aad_application_id This property is required. str
AAD Application Id.
aks_admin_group_id str
AKS Admin Group Id.
cmk_profile CmkProfile
Profile of CMK Settings.
deny_assignment_exclusions Sequence[DenyAssignmentExclusion]
Deny Assignments exclusion list.
enable_copilot bool
Enable Copilot.
enable_diagnostic_settings bool
Enable Diagnostic Settings.
fabric_profile FabricProfile
Profile of Fabric resources.
open_ai_profile OpenAIProfile
Profile of OpenAI Resource.
redundancy_state str | RedundancyState
Zone redundancy state for resources
resource_state str | ResourceState
State of the resource
user_managed_open_ai_profile UserManagedOpenAIProfile
Profile of User Managed OpenAI Resource.
version str
Mds Resource Version.
aadApplicationId This property is required. String
AAD Application Id.
aksAdminGroupId String
AKS Admin Group Id.
cmkProfile Property Map
Profile of CMK Settings.
denyAssignmentExclusions List<Property Map>
Deny Assignments exclusion list.
enableCopilot Boolean
Enable Copilot.
enableDiagnosticSettings Boolean
Enable Diagnostic Settings.
fabricProfile Property Map
Profile of Fabric resources.
openAIProfile Property Map
Profile of OpenAI Resource.
redundancyState String | "Zonal" | "None"
Zone redundancy state for resources
resourceState String | "Active" | "Inactive"
State of the resource
userManagedOpenAIProfile Property Map
Profile of User Managed OpenAI Resource.
version String
Mds Resource Version.

MdsResourcePropertiesResponse
, MdsResourcePropertiesResponseArgs

AadApplicationId This property is required. string
AAD Application Id.
AdxProfile This property is required. Pulumi.AzureNative.ManufacturingPlatform.Inputs.AdxProfileResponse
Profile of Adx Created.
AksProfile This property is required. Pulumi.AzureNative.ManufacturingPlatform.Inputs.AksProfileResponse
Profile of AKS Created.
DatabaseProfile This property is required. Pulumi.AzureNative.ManufacturingPlatform.Inputs.DatabaseProfileResponse
Profile of Database Created.
EventHubProfile This property is required. Pulumi.AzureNative.ManufacturingPlatform.Inputs.EventHubProfileResponse
Profile of EventHub Resource.
FunctionAppProfile This property is required. Pulumi.AzureNative.ManufacturingPlatform.Inputs.FunctionAppProfileResponse
Profile of Function App Resource.
ManagedOnBehalfOfConfiguration This property is required. Pulumi.AzureNative.ManufacturingPlatform.Inputs.ManagedOnBehalfOfConfigurationResponse
Managed On Behalf Of Configuration.
ManagedResourceGroupConfiguration This property is required. Pulumi.AzureNative.ManufacturingPlatform.Inputs.ManagedResourceGroupConfigurationResponse
Configuration of the managed resource group associated with the resource.
MonitoringProfile This property is required. Pulumi.AzureNative.ManufacturingPlatform.Inputs.MonitoringProfileResponse
Profile of Monitoring Resource Created.
ProvisioningState This property is required. string
The status of the last operation.
RedisProfile This property is required. Pulumi.AzureNative.ManufacturingPlatform.Inputs.RedisProfileResponse
Profile of Azure Redis Created.
ServiceUrl This property is required. string
Service Url
StorageProfile This property is required. Pulumi.AzureNative.ManufacturingPlatform.Inputs.StorageProfileResponse
Profile of Storage Created.
AksAdminGroupId string
AKS Admin Group Id.
CmkProfile Pulumi.AzureNative.ManufacturingPlatform.Inputs.CmkProfileResponse
Profile of CMK Settings.
DenyAssignmentExclusions List<Pulumi.AzureNative.ManufacturingPlatform.Inputs.DenyAssignmentExclusionResponse>
Deny Assignments exclusion list.
EnableCopilot bool
Enable Copilot.
EnableDiagnosticSettings bool
Enable Diagnostic Settings.
FabricProfile Pulumi.AzureNative.ManufacturingPlatform.Inputs.FabricProfileResponse
Profile of Fabric resources.
OpenAIProfile Pulumi.AzureNative.ManufacturingPlatform.Inputs.OpenAIProfileResponse
Profile of OpenAI Resource.
RedundancyState string
Zone redundancy state for resources
ResourceState string
State of the resource
UserManagedOpenAIProfile Pulumi.AzureNative.ManufacturingPlatform.Inputs.UserManagedOpenAIProfileResponse
Profile of User Managed OpenAI Resource.
Version string
Mds Resource Version.
AadApplicationId This property is required. string
AAD Application Id.
AdxProfile This property is required. AdxProfileResponse
Profile of Adx Created.
AksProfile This property is required. AksProfileResponse
Profile of AKS Created.
DatabaseProfile This property is required. DatabaseProfileResponse
Profile of Database Created.
EventHubProfile This property is required. EventHubProfileResponse
Profile of EventHub Resource.
FunctionAppProfile This property is required. FunctionAppProfileResponse
Profile of Function App Resource.
ManagedOnBehalfOfConfiguration This property is required. ManagedOnBehalfOfConfigurationResponse
Managed On Behalf Of Configuration.
ManagedResourceGroupConfiguration This property is required. ManagedResourceGroupConfigurationResponse
Configuration of the managed resource group associated with the resource.
MonitoringProfile This property is required. MonitoringProfileResponse
Profile of Monitoring Resource Created.
ProvisioningState This property is required. string
The status of the last operation.
RedisProfile This property is required. RedisProfileResponse
Profile of Azure Redis Created.
ServiceUrl This property is required. string
Service Url
StorageProfile This property is required. StorageProfileResponse
Profile of Storage Created.
AksAdminGroupId string
AKS Admin Group Id.
CmkProfile CmkProfileResponse
Profile of CMK Settings.
DenyAssignmentExclusions []DenyAssignmentExclusionResponse
Deny Assignments exclusion list.
EnableCopilot bool
Enable Copilot.
EnableDiagnosticSettings bool
Enable Diagnostic Settings.
FabricProfile FabricProfileResponse
Profile of Fabric resources.
OpenAIProfile OpenAIProfileResponse
Profile of OpenAI Resource.
RedundancyState string
Zone redundancy state for resources
ResourceState string
State of the resource
UserManagedOpenAIProfile UserManagedOpenAIProfileResponse
Profile of User Managed OpenAI Resource.
Version string
Mds Resource Version.
aadApplicationId This property is required. String
AAD Application Id.
adxProfile This property is required. AdxProfileResponse
Profile of Adx Created.
aksProfile This property is required. AksProfileResponse
Profile of AKS Created.
databaseProfile This property is required. DatabaseProfileResponse
Profile of Database Created.
eventHubProfile This property is required. EventHubProfileResponse
Profile of EventHub Resource.
functionAppProfile This property is required. FunctionAppProfileResponse
Profile of Function App Resource.
managedOnBehalfOfConfiguration This property is required. ManagedOnBehalfOfConfigurationResponse
Managed On Behalf Of Configuration.
managedResourceGroupConfiguration This property is required. ManagedResourceGroupConfigurationResponse
Configuration of the managed resource group associated with the resource.
monitoringProfile This property is required. MonitoringProfileResponse
Profile of Monitoring Resource Created.
provisioningState This property is required. String
The status of the last operation.
redisProfile This property is required. RedisProfileResponse
Profile of Azure Redis Created.
serviceUrl This property is required. String
Service Url
storageProfile This property is required. StorageProfileResponse
Profile of Storage Created.
aksAdminGroupId String
AKS Admin Group Id.
cmkProfile CmkProfileResponse
Profile of CMK Settings.
denyAssignmentExclusions List<DenyAssignmentExclusionResponse>
Deny Assignments exclusion list.
enableCopilot Boolean
Enable Copilot.
enableDiagnosticSettings Boolean
Enable Diagnostic Settings.
fabricProfile FabricProfileResponse
Profile of Fabric resources.
openAIProfile OpenAIProfileResponse
Profile of OpenAI Resource.
redundancyState String
Zone redundancy state for resources
resourceState String
State of the resource
userManagedOpenAIProfile UserManagedOpenAIProfileResponse
Profile of User Managed OpenAI Resource.
version String
Mds Resource Version.
aadApplicationId This property is required. string
AAD Application Id.
adxProfile This property is required. AdxProfileResponse
Profile of Adx Created.
aksProfile This property is required. AksProfileResponse
Profile of AKS Created.
databaseProfile This property is required. DatabaseProfileResponse
Profile of Database Created.
eventHubProfile This property is required. EventHubProfileResponse
Profile of EventHub Resource.
functionAppProfile This property is required. FunctionAppProfileResponse
Profile of Function App Resource.
managedOnBehalfOfConfiguration This property is required. ManagedOnBehalfOfConfigurationResponse
Managed On Behalf Of Configuration.
managedResourceGroupConfiguration This property is required. ManagedResourceGroupConfigurationResponse
Configuration of the managed resource group associated with the resource.
monitoringProfile This property is required. MonitoringProfileResponse
Profile of Monitoring Resource Created.
provisioningState This property is required. string
The status of the last operation.
redisProfile This property is required. RedisProfileResponse
Profile of Azure Redis Created.
serviceUrl This property is required. string
Service Url
storageProfile This property is required. StorageProfileResponse
Profile of Storage Created.
aksAdminGroupId string
AKS Admin Group Id.
cmkProfile CmkProfileResponse
Profile of CMK Settings.
denyAssignmentExclusions DenyAssignmentExclusionResponse[]
Deny Assignments exclusion list.
enableCopilot boolean
Enable Copilot.
enableDiagnosticSettings boolean
Enable Diagnostic Settings.
fabricProfile FabricProfileResponse
Profile of Fabric resources.
openAIProfile OpenAIProfileResponse
Profile of OpenAI Resource.
redundancyState string
Zone redundancy state for resources
resourceState string
State of the resource
userManagedOpenAIProfile UserManagedOpenAIProfileResponse
Profile of User Managed OpenAI Resource.
version string
Mds Resource Version.
aad_application_id This property is required. str
AAD Application Id.
adx_profile This property is required. AdxProfileResponse
Profile of Adx Created.
aks_profile This property is required. AksProfileResponse
Profile of AKS Created.
database_profile This property is required. DatabaseProfileResponse
Profile of Database Created.
event_hub_profile This property is required. EventHubProfileResponse
Profile of EventHub Resource.
function_app_profile This property is required. FunctionAppProfileResponse
Profile of Function App Resource.
managed_on_behalf_of_configuration This property is required. ManagedOnBehalfOfConfigurationResponse
Managed On Behalf Of Configuration.
managed_resource_group_configuration This property is required. ManagedResourceGroupConfigurationResponse
Configuration of the managed resource group associated with the resource.
monitoring_profile This property is required. MonitoringProfileResponse
Profile of Monitoring Resource Created.
provisioning_state This property is required. str
The status of the last operation.
redis_profile This property is required. RedisProfileResponse
Profile of Azure Redis Created.
service_url This property is required. str
Service Url
storage_profile This property is required. StorageProfileResponse
Profile of Storage Created.
aks_admin_group_id str
AKS Admin Group Id.
cmk_profile CmkProfileResponse
Profile of CMK Settings.
deny_assignment_exclusions Sequence[DenyAssignmentExclusionResponse]
Deny Assignments exclusion list.
enable_copilot bool
Enable Copilot.
enable_diagnostic_settings bool
Enable Diagnostic Settings.
fabric_profile FabricProfileResponse
Profile of Fabric resources.
open_ai_profile OpenAIProfileResponse
Profile of OpenAI Resource.
redundancy_state str
Zone redundancy state for resources
resource_state str
State of the resource
user_managed_open_ai_profile UserManagedOpenAIProfileResponse
Profile of User Managed OpenAI Resource.
version str
Mds Resource Version.
aadApplicationId This property is required. String
AAD Application Id.
adxProfile This property is required. Property Map
Profile of Adx Created.
aksProfile This property is required. Property Map
Profile of AKS Created.
databaseProfile This property is required. Property Map
Profile of Database Created.
eventHubProfile This property is required. Property Map
Profile of EventHub Resource.
functionAppProfile This property is required. Property Map
Profile of Function App Resource.
managedOnBehalfOfConfiguration This property is required. Property Map
Managed On Behalf Of Configuration.
managedResourceGroupConfiguration This property is required. Property Map
Configuration of the managed resource group associated with the resource.
monitoringProfile This property is required. Property Map
Profile of Monitoring Resource Created.
provisioningState This property is required. String
The status of the last operation.
redisProfile This property is required. Property Map
Profile of Azure Redis Created.
serviceUrl This property is required. String
Service Url
storageProfile This property is required. Property Map
Profile of Storage Created.
aksAdminGroupId String
AKS Admin Group Id.
cmkProfile Property Map
Profile of CMK Settings.
denyAssignmentExclusions List<Property Map>
Deny Assignments exclusion list.
enableCopilot Boolean
Enable Copilot.
enableDiagnosticSettings Boolean
Enable Diagnostic Settings.
fabricProfile Property Map
Profile of Fabric resources.
openAIProfile Property Map
Profile of OpenAI Resource.
redundancyState String
Zone redundancy state for resources
resourceState String
State of the resource
userManagedOpenAIProfile Property Map
Profile of User Managed OpenAI Resource.
version String
Mds Resource Version.

MoboBrokerResourceResponse
, MoboBrokerResourceResponseArgs

Id This property is required. string
Resource Id of MoboBrokerResource
Id This property is required. string
Resource Id of MoboBrokerResource
id This property is required. String
Resource Id of MoboBrokerResource
id This property is required. string
Resource Id of MoboBrokerResource
id This property is required. str
Resource Id of MoboBrokerResource
id This property is required. String
Resource Id of MoboBrokerResource

MonitoringProfileResponse
, MonitoringProfileResponseArgs

Id This property is required. string
Resource Id of Application Insights Resource
Id This property is required. string
Resource Id of Application Insights Resource
id This property is required. String
Resource Id of Application Insights Resource
id This property is required. string
Resource Id of Application Insights Resource
id This property is required. str
Resource Id of Application Insights Resource
id This property is required. String
Resource Id of Application Insights Resource

OpenAIProfile
, OpenAIProfileArgs

EmbeddingModelCapacity int
Embedding Model Capacity
EmbeddingModelName string
Embedding Model Name
EmbeddingModelSkuName string
Embedding Model SKU Name
EmbeddingModelVersion string
Embedding Model Version
GptModelCapacity int
GPT Model Capacity
GptModelName string
GPT Model Name
GptModelSkuName string
GPT Model SKU Name
GptModelVersion string
GPT Model Version
EmbeddingModelCapacity int
Embedding Model Capacity
EmbeddingModelName string
Embedding Model Name
EmbeddingModelSkuName string
Embedding Model SKU Name
EmbeddingModelVersion string
Embedding Model Version
GptModelCapacity int
GPT Model Capacity
GptModelName string
GPT Model Name
GptModelSkuName string
GPT Model SKU Name
GptModelVersion string
GPT Model Version
embeddingModelCapacity Integer
Embedding Model Capacity
embeddingModelName String
Embedding Model Name
embeddingModelSkuName String
Embedding Model SKU Name
embeddingModelVersion String
Embedding Model Version
gptModelCapacity Integer
GPT Model Capacity
gptModelName String
GPT Model Name
gptModelSkuName String
GPT Model SKU Name
gptModelVersion String
GPT Model Version
embeddingModelCapacity number
Embedding Model Capacity
embeddingModelName string
Embedding Model Name
embeddingModelSkuName string
Embedding Model SKU Name
embeddingModelVersion string
Embedding Model Version
gptModelCapacity number
GPT Model Capacity
gptModelName string
GPT Model Name
gptModelSkuName string
GPT Model SKU Name
gptModelVersion string
GPT Model Version
embedding_model_capacity int
Embedding Model Capacity
embedding_model_name str
Embedding Model Name
embedding_model_sku_name str
Embedding Model SKU Name
embedding_model_version str
Embedding Model Version
gpt_model_capacity int
GPT Model Capacity
gpt_model_name str
GPT Model Name
gpt_model_sku_name str
GPT Model SKU Name
gpt_model_version str
GPT Model Version
embeddingModelCapacity Number
Embedding Model Capacity
embeddingModelName String
Embedding Model Name
embeddingModelSkuName String
Embedding Model SKU Name
embeddingModelVersion String
Embedding Model Version
gptModelCapacity Number
GPT Model Capacity
gptModelName String
GPT Model Name
gptModelSkuName String
GPT Model SKU Name
gptModelVersion String
GPT Model Version

OpenAIProfileResponse
, OpenAIProfileResponseArgs

Id This property is required. string
Resource Id of OpenAI Resource
EmbeddingModelCapacity int
Embedding Model Capacity
EmbeddingModelName string
Embedding Model Name
EmbeddingModelSkuName string
Embedding Model SKU Name
EmbeddingModelVersion string
Embedding Model Version
GptModelCapacity int
GPT Model Capacity
GptModelName string
GPT Model Name
GptModelSkuName string
GPT Model SKU Name
GptModelVersion string
GPT Model Version
Id This property is required. string
Resource Id of OpenAI Resource
EmbeddingModelCapacity int
Embedding Model Capacity
EmbeddingModelName string
Embedding Model Name
EmbeddingModelSkuName string
Embedding Model SKU Name
EmbeddingModelVersion string
Embedding Model Version
GptModelCapacity int
GPT Model Capacity
GptModelName string
GPT Model Name
GptModelSkuName string
GPT Model SKU Name
GptModelVersion string
GPT Model Version
id This property is required. String
Resource Id of OpenAI Resource
embeddingModelCapacity Integer
Embedding Model Capacity
embeddingModelName String
Embedding Model Name
embeddingModelSkuName String
Embedding Model SKU Name
embeddingModelVersion String
Embedding Model Version
gptModelCapacity Integer
GPT Model Capacity
gptModelName String
GPT Model Name
gptModelSkuName String
GPT Model SKU Name
gptModelVersion String
GPT Model Version
id This property is required. string
Resource Id of OpenAI Resource
embeddingModelCapacity number
Embedding Model Capacity
embeddingModelName string
Embedding Model Name
embeddingModelSkuName string
Embedding Model SKU Name
embeddingModelVersion string
Embedding Model Version
gptModelCapacity number
GPT Model Capacity
gptModelName string
GPT Model Name
gptModelSkuName string
GPT Model SKU Name
gptModelVersion string
GPT Model Version
id This property is required. str
Resource Id of OpenAI Resource
embedding_model_capacity int
Embedding Model Capacity
embedding_model_name str
Embedding Model Name
embedding_model_sku_name str
Embedding Model SKU Name
embedding_model_version str
Embedding Model Version
gpt_model_capacity int
GPT Model Capacity
gpt_model_name str
GPT Model Name
gpt_model_sku_name str
GPT Model SKU Name
gpt_model_version str
GPT Model Version
id This property is required. String
Resource Id of OpenAI Resource
embeddingModelCapacity Number
Embedding Model Capacity
embeddingModelName String
Embedding Model Name
embeddingModelSkuName String
Embedding Model SKU Name
embeddingModelVersion String
Embedding Model Version
gptModelCapacity Number
GPT Model Capacity
gptModelName String
GPT Model Name
gptModelSkuName String
GPT Model SKU Name
gptModelVersion String
GPT Model Version

RedisProfileResponse
, RedisProfileResponseArgs

Id This property is required. string
Resource Id of Azure Redis Cache Resource
Id This property is required. string
Resource Id of Azure Redis Cache Resource
id This property is required. String
Resource Id of Azure Redis Cache Resource
id This property is required. string
Resource Id of Azure Redis Cache Resource
id This property is required. str
Resource Id of Azure Redis Cache Resource
id This property is required. String
Resource Id of Azure Redis Cache Resource

RedundancyState
, RedundancyStateArgs

Zonal
ZonalResource is zone redundant
None
NoneResource is not redundant
RedundancyStateZonal
ZonalResource is zone redundant
RedundancyStateNone
NoneResource is not redundant
Zonal
ZonalResource is zone redundant
None
NoneResource is not redundant
Zonal
ZonalResource is zone redundant
None
NoneResource is not redundant
ZONAL
ZonalResource is zone redundant
NONE
NoneResource is not redundant
"Zonal"
ZonalResource is zone redundant
"None"
NoneResource is not redundant

ResourceState
, ResourceStateArgs

Active
ActiveResource is in active state
Inactive
InactiveResource is in inactive state
ResourceStateActive
ActiveResource is in active state
ResourceStateInactive
InactiveResource is in inactive state
Active
ActiveResource is in active state
Inactive
InactiveResource is in inactive state
Active
ActiveResource is in active state
Inactive
InactiveResource is in inactive state
ACTIVE
ActiveResource is in active state
INACTIVE
InactiveResource is in inactive state
"Active"
ActiveResource is in active state
"Inactive"
InactiveResource is in inactive state

Sku
, SkuArgs

Name This property is required. string
The name of the SKU. E.g. P3. It is typically a letter+number code
Capacity int
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
Family string
If the service has different generations of hardware, for the same SKU, then that can be captured here.
Size string
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
Tier Pulumi.AzureNative.ManufacturingPlatform.SkuTier
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
Name This property is required. string
The name of the SKU. E.g. P3. It is typically a letter+number code
Capacity int
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
Family string
If the service has different generations of hardware, for the same SKU, then that can be captured here.
Size string
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
Tier SkuTier
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
name This property is required. String
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity Integer
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
family String
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size String
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier SkuTier
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
name This property is required. string
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity number
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
family string
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size string
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier SkuTier
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
name This property is required. str
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity int
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
family str
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size str
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier SkuTier
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
name This property is required. String
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity Number
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
family String
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size String
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier "Free" | "Basic" | "Standard" | "Premium"
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.

SkuResponse
, SkuResponseArgs

Name This property is required. string
The name of the SKU. E.g. P3. It is typically a letter+number code
Capacity int
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
Family string
If the service has different generations of hardware, for the same SKU, then that can be captured here.
Size string
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
Tier string
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
Name This property is required. string
The name of the SKU. E.g. P3. It is typically a letter+number code
Capacity int
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
Family string
If the service has different generations of hardware, for the same SKU, then that can be captured here.
Size string
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
Tier string
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
name This property is required. String
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity Integer
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
family String
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size String
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier String
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
name This property is required. string
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity number
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
family string
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size string
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier string
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
name This property is required. str
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity int
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
family str
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size str
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier str
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
name This property is required. String
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity Number
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
family String
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size String
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier String
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.

SkuTier
, SkuTierArgs

Free
Free
Basic
Basic
Standard
Standard
Premium
Premium
SkuTierFree
Free
SkuTierBasic
Basic
SkuTierStandard
Standard
SkuTierPremium
Premium
Free
Free
Basic
Basic
Standard
Standard
Premium
Premium
Free
Free
Basic
Basic
Standard
Standard
Premium
Premium
FREE
Free
BASIC
Basic
STANDARD
Standard
PREMIUM
Premium
"Free"
Free
"Basic"
Basic
"Standard"
Standard
"Premium"
Premium

StorageProfileResponse
, StorageProfileResponseArgs

Id This property is required. string
Resource Id of Storage Resource
Id This property is required. string
Resource Id of Storage Resource
id This property is required. String
Resource Id of Storage Resource
id This property is required. string
Resource Id of Storage Resource
id This property is required. str
Resource Id of Storage Resource
id This property is required. String
Resource Id of Storage Resource

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

UserAssignedIdentityResponse
, UserAssignedIdentityResponseArgs

ClientId This property is required. string
The client ID of the assigned identity.
PrincipalId This property is required. string
The principal ID of the assigned identity.
ClientId This property is required. string
The client ID of the assigned identity.
PrincipalId This property is required. string
The principal ID of the assigned identity.
clientId This property is required. String
The client ID of the assigned identity.
principalId This property is required. String
The principal ID of the assigned identity.
clientId This property is required. string
The client ID of the assigned identity.
principalId This property is required. string
The principal ID of the assigned identity.
client_id This property is required. str
The client ID of the assigned identity.
principal_id This property is required. str
The principal ID of the assigned identity.
clientId This property is required. String
The client ID of the assigned identity.
principalId This property is required. String
The principal ID of the assigned identity.

UserManagedOpenAIProfile
, UserManagedOpenAIProfileArgs

EmbeddingModelDeploymentName This property is required. string
Embedding Model Deployment Name
GptModelDeploymentName This property is required. string
GPT Model Deployment Name
Id This property is required. string
Resource Id of OpenAI Resource
EmbeddingModelDeploymentName This property is required. string
Embedding Model Deployment Name
GptModelDeploymentName This property is required. string
GPT Model Deployment Name
Id This property is required. string
Resource Id of OpenAI Resource
embeddingModelDeploymentName This property is required. String
Embedding Model Deployment Name
gptModelDeploymentName This property is required. String
GPT Model Deployment Name
id This property is required. String
Resource Id of OpenAI Resource
embeddingModelDeploymentName This property is required. string
Embedding Model Deployment Name
gptModelDeploymentName This property is required. string
GPT Model Deployment Name
id This property is required. string
Resource Id of OpenAI Resource
embedding_model_deployment_name This property is required. str
Embedding Model Deployment Name
gpt_model_deployment_name This property is required. str
GPT Model Deployment Name
id This property is required. str
Resource Id of OpenAI Resource
embeddingModelDeploymentName This property is required. String
Embedding Model Deployment Name
gptModelDeploymentName This property is required. String
GPT Model Deployment Name
id This property is required. String
Resource Id of OpenAI Resource

UserManagedOpenAIProfileResponse
, UserManagedOpenAIProfileResponseArgs

EmbeddingModelDeploymentName This property is required. string
Embedding Model Deployment Name
EmbeddingModelType This property is required. string
Embedding Model Type
GptModelDeploymentName This property is required. string
GPT Model Deployment Name
Id This property is required. string
Resource Id of OpenAI Resource
EmbeddingModelDeploymentName This property is required. string
Embedding Model Deployment Name
EmbeddingModelType This property is required. string
Embedding Model Type
GptModelDeploymentName This property is required. string
GPT Model Deployment Name
Id This property is required. string
Resource Id of OpenAI Resource
embeddingModelDeploymentName This property is required. String
Embedding Model Deployment Name
embeddingModelType This property is required. String
Embedding Model Type
gptModelDeploymentName This property is required. String
GPT Model Deployment Name
id This property is required. String
Resource Id of OpenAI Resource
embeddingModelDeploymentName This property is required. string
Embedding Model Deployment Name
embeddingModelType This property is required. string
Embedding Model Type
gptModelDeploymentName This property is required. string
GPT Model Deployment Name
id This property is required. string
Resource Id of OpenAI Resource
embedding_model_deployment_name This property is required. str
Embedding Model Deployment Name
embedding_model_type This property is required. str
Embedding Model Type
gpt_model_deployment_name This property is required. str
GPT Model Deployment Name
id This property is required. str
Resource Id of OpenAI Resource
embeddingModelDeploymentName This property is required. String
Embedding Model Deployment Name
embeddingModelType This property is required. String
Embedding Model Type
gptModelDeploymentName This property is required. String
GPT Model Deployment Name
id This property is required. String
Resource Id of OpenAI Resource

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi