1. Packages
  2. Azure Native
  3. API Docs
  4. onlineexperimentation
  5. OnlineExperimentWorkspace
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

azure-native.onlineexperimentation.OnlineExperimentWorkspace

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

    An online experiment workspace resource.

    Uses Azure REST API version 2025-05-31-preview.

    Import

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

    $ pulumi import azure-native:onlineexperimentation:OnlineExperimentWorkspace expworkspace7 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.OnlineExperimentation/workspaces/{workspaceName} 
    

    Create OnlineExperimentWorkspace Resource

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

    Constructor syntax

    new OnlineExperimentWorkspace(name: string, args: OnlineExperimentWorkspaceArgs, opts?: CustomResourceOptions);
    @overload
    def OnlineExperimentWorkspace(resource_name: str,
                                  args: OnlineExperimentWorkspaceArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def OnlineExperimentWorkspace(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  resource_group_name: Optional[str] = None,
                                  identity: Optional[ManagedServiceIdentityArgs] = None,
                                  location: Optional[str] = None,
                                  properties: Optional[OnlineExperimentWorkspacePropertiesArgs] = None,
                                  sku: Optional[OnlineExperimentationWorkspaceSkuArgs] = None,
                                  tags: Optional[Mapping[str, str]] = None,
                                  workspace_name: Optional[str] = None)
    func NewOnlineExperimentWorkspace(ctx *Context, name string, args OnlineExperimentWorkspaceArgs, opts ...ResourceOption) (*OnlineExperimentWorkspace, error)
    public OnlineExperimentWorkspace(string name, OnlineExperimentWorkspaceArgs args, CustomResourceOptions? opts = null)
    public OnlineExperimentWorkspace(String name, OnlineExperimentWorkspaceArgs args)
    public OnlineExperimentWorkspace(String name, OnlineExperimentWorkspaceArgs args, CustomResourceOptions options)
    
    type: azure-native:onlineexperimentation:OnlineExperimentWorkspace
    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 OnlineExperimentWorkspaceArgs
    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 OnlineExperimentWorkspaceArgs
    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 OnlineExperimentWorkspaceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args OnlineExperimentWorkspaceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args OnlineExperimentWorkspaceArgs
    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 onlineExperimentWorkspaceResource = new AzureNative.OnlineExperimentation.OnlineExperimentWorkspace("onlineExperimentWorkspaceResource", new()
    {
        ResourceGroupName = "string",
        Identity = new AzureNative.OnlineExperimentation.Inputs.ManagedServiceIdentityArgs
        {
            Type = "string",
            UserAssignedIdentities = new[]
            {
                "string",
            },
        },
        Location = "string",
        Properties = new AzureNative.OnlineExperimentation.Inputs.OnlineExperimentWorkspacePropertiesArgs
        {
            AppConfigurationResourceId = "string",
            LogAnalyticsWorkspaceResourceId = "string",
            LogsExporterStorageAccountResourceId = "string",
            Encryption = new AzureNative.OnlineExperimentation.Inputs.ResourceEncryptionConfigurationArgs
            {
                CustomerManagedKeyEncryption = new AzureNative.OnlineExperimentation.Inputs.CustomerManagedKeyEncryptionArgs
                {
                    KeyEncryptionKeyIdentity = new AzureNative.OnlineExperimentation.Inputs.KeyEncryptionKeyIdentityArgs
                    {
                        FederatedClientId = "string",
                        IdentityType = "string",
                        UserAssignedIdentityResourceId = "string",
                    },
                    KeyEncryptionKeyUrl = "string",
                },
            },
        },
        Sku = new AzureNative.OnlineExperimentation.Inputs.OnlineExperimentationWorkspaceSkuArgs
        {
            Name = "string",
        },
        Tags = 
        {
            { "string", "string" },
        },
        WorkspaceName = "string",
    });
    
    example, err := onlineexperimentation.NewOnlineExperimentWorkspace(ctx, "onlineExperimentWorkspaceResource", &onlineexperimentation.OnlineExperimentWorkspaceArgs{
    	ResourceGroupName: pulumi.String("string"),
    	Identity: &onlineexperimentation.ManagedServiceIdentityArgs{
    		Type: pulumi.String("string"),
    		UserAssignedIdentities: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	Location: pulumi.String("string"),
    	Properties: &onlineexperimentation.OnlineExperimentWorkspacePropertiesArgs{
    		AppConfigurationResourceId:           pulumi.String("string"),
    		LogAnalyticsWorkspaceResourceId:      pulumi.String("string"),
    		LogsExporterStorageAccountResourceId: pulumi.String("string"),
    		Encryption: &onlineexperimentation.ResourceEncryptionConfigurationArgs{
    			CustomerManagedKeyEncryption: &onlineexperimentation.CustomerManagedKeyEncryptionArgs{
    				KeyEncryptionKeyIdentity: &onlineexperimentation.KeyEncryptionKeyIdentityArgs{
    					FederatedClientId:              pulumi.String("string"),
    					IdentityType:                   pulumi.String("string"),
    					UserAssignedIdentityResourceId: pulumi.String("string"),
    				},
    				KeyEncryptionKeyUrl: pulumi.String("string"),
    			},
    		},
    	},
    	Sku: &onlineexperimentation.OnlineExperimentationWorkspaceSkuArgs{
    		Name: pulumi.String("string"),
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	WorkspaceName: pulumi.String("string"),
    })
    
    var onlineExperimentWorkspaceResource = new OnlineExperimentWorkspace("onlineExperimentWorkspaceResource", OnlineExperimentWorkspaceArgs.builder()
        .resourceGroupName("string")
        .identity(ManagedServiceIdentityArgs.builder()
            .type("string")
            .userAssignedIdentities("string")
            .build())
        .location("string")
        .properties(OnlineExperimentWorkspacePropertiesArgs.builder()
            .appConfigurationResourceId("string")
            .logAnalyticsWorkspaceResourceId("string")
            .logsExporterStorageAccountResourceId("string")
            .encryption(ResourceEncryptionConfigurationArgs.builder()
                .customerManagedKeyEncryption(CustomerManagedKeyEncryptionArgs.builder()
                    .keyEncryptionKeyIdentity(KeyEncryptionKeyIdentityArgs.builder()
                        .federatedClientId("string")
                        .identityType("string")
                        .userAssignedIdentityResourceId("string")
                        .build())
                    .keyEncryptionKeyUrl("string")
                    .build())
                .build())
            .build())
        .sku(OnlineExperimentationWorkspaceSkuArgs.builder()
            .name("string")
            .build())
        .tags(Map.of("string", "string"))
        .workspaceName("string")
        .build());
    
    online_experiment_workspace_resource = azure_native.onlineexperimentation.OnlineExperimentWorkspace("onlineExperimentWorkspaceResource",
        resource_group_name="string",
        identity={
            "type": "string",
            "user_assigned_identities": ["string"],
        },
        location="string",
        properties={
            "app_configuration_resource_id": "string",
            "log_analytics_workspace_resource_id": "string",
            "logs_exporter_storage_account_resource_id": "string",
            "encryption": {
                "customer_managed_key_encryption": {
                    "key_encryption_key_identity": {
                        "federated_client_id": "string",
                        "identity_type": "string",
                        "user_assigned_identity_resource_id": "string",
                    },
                    "key_encryption_key_url": "string",
                },
            },
        },
        sku={
            "name": "string",
        },
        tags={
            "string": "string",
        },
        workspace_name="string")
    
    const onlineExperimentWorkspaceResource = new azure_native.onlineexperimentation.OnlineExperimentWorkspace("onlineExperimentWorkspaceResource", {
        resourceGroupName: "string",
        identity: {
            type: "string",
            userAssignedIdentities: ["string"],
        },
        location: "string",
        properties: {
            appConfigurationResourceId: "string",
            logAnalyticsWorkspaceResourceId: "string",
            logsExporterStorageAccountResourceId: "string",
            encryption: {
                customerManagedKeyEncryption: {
                    keyEncryptionKeyIdentity: {
                        federatedClientId: "string",
                        identityType: "string",
                        userAssignedIdentityResourceId: "string",
                    },
                    keyEncryptionKeyUrl: "string",
                },
            },
        },
        sku: {
            name: "string",
        },
        tags: {
            string: "string",
        },
        workspaceName: "string",
    });
    
    type: azure-native:onlineexperimentation:OnlineExperimentWorkspace
    properties:
        identity:
            type: string
            userAssignedIdentities:
                - string
        location: string
        properties:
            appConfigurationResourceId: string
            encryption:
                customerManagedKeyEncryption:
                    keyEncryptionKeyIdentity:
                        federatedClientId: string
                        identityType: string
                        userAssignedIdentityResourceId: string
                    keyEncryptionKeyUrl: string
            logAnalyticsWorkspaceResourceId: string
            logsExporterStorageAccountResourceId: string
        resourceGroupName: string
        sku:
            name: string
        tags:
            string: string
        workspaceName: string
    

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

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Identity Pulumi.AzureNative.OnlineExperimentation.Inputs.ManagedServiceIdentity
    The managed service identities assigned to this resource.
    Location string
    The geo-location where the resource lives
    Properties Pulumi.AzureNative.OnlineExperimentation.Inputs.OnlineExperimentWorkspaceProperties
    The resource-specific properties for this resource.
    Sku Pulumi.AzureNative.OnlineExperimentation.Inputs.OnlineExperimentationWorkspaceSku
    The SKU (Stock Keeping Unit) assigned to this resource.
    Tags Dictionary<string, string>
    Resource tags.
    WorkspaceName string
    The name of the OnlineExperimentWorkspace
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Identity ManagedServiceIdentityArgs
    The managed service identities assigned to this resource.
    Location string
    The geo-location where the resource lives
    Properties OnlineExperimentWorkspacePropertiesArgs
    The resource-specific properties for this resource.
    Sku OnlineExperimentationWorkspaceSkuArgs
    The SKU (Stock Keeping Unit) assigned to this resource.
    Tags map[string]string
    Resource tags.
    WorkspaceName string
    The name of the OnlineExperimentWorkspace
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    identity ManagedServiceIdentity
    The managed service identities assigned to this resource.
    location String
    The geo-location where the resource lives
    properties OnlineExperimentWorkspaceProperties
    The resource-specific properties for this resource.
    sku OnlineExperimentationWorkspaceSku
    The SKU (Stock Keeping Unit) assigned to this resource.
    tags Map<String,String>
    Resource tags.
    workspaceName String
    The name of the OnlineExperimentWorkspace
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    identity ManagedServiceIdentity
    The managed service identities assigned to this resource.
    location string
    The geo-location where the resource lives
    properties OnlineExperimentWorkspaceProperties
    The resource-specific properties for this resource.
    sku OnlineExperimentationWorkspaceSku
    The SKU (Stock Keeping Unit) assigned to this resource.
    tags {[key: string]: string}
    Resource tags.
    workspaceName string
    The name of the OnlineExperimentWorkspace
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    identity ManagedServiceIdentityArgs
    The managed service identities assigned to this resource.
    location str
    The geo-location where the resource lives
    properties OnlineExperimentWorkspacePropertiesArgs
    The resource-specific properties for this resource.
    sku OnlineExperimentationWorkspaceSkuArgs
    The SKU (Stock Keeping Unit) assigned to this resource.
    tags Mapping[str, str]
    Resource tags.
    workspace_name str
    The name of the OnlineExperimentWorkspace
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    identity Property Map
    The managed service identities assigned to this resource.
    location String
    The geo-location where the resource lives
    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.
    workspaceName String
    The name of the OnlineExperimentWorkspace

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.OnlineExperimentation.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"
    AzureApiVersion string
    The Azure API version of the resource.
    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"
    azureApiVersion String
    The Azure API version of the resource.
    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"
    azureApiVersion string
    The Azure API version of the resource.
    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"
    azure_api_version str
    The Azure API version of the resource.
    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"
    azureApiVersion String
    The Azure API version of the resource.
    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

    CustomerManagedKeyEncryption, CustomerManagedKeyEncryptionArgs

    KeyEncryptionKeyIdentity Pulumi.AzureNative.OnlineExperimentation.Inputs.KeyEncryptionKeyIdentity
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    KeyEncryptionKeyUrl string
    key encryption key Url, versioned or non-versioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.
    KeyEncryptionKeyIdentity KeyEncryptionKeyIdentity
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    KeyEncryptionKeyUrl string
    key encryption key Url, versioned or non-versioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.
    keyEncryptionKeyIdentity KeyEncryptionKeyIdentity
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    keyEncryptionKeyUrl String
    key encryption key Url, versioned or non-versioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.
    keyEncryptionKeyIdentity KeyEncryptionKeyIdentity
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    keyEncryptionKeyUrl string
    key encryption key Url, versioned or non-versioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.
    key_encryption_key_identity KeyEncryptionKeyIdentity
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    key_encryption_key_url str
    key encryption key Url, versioned or non-versioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.
    keyEncryptionKeyIdentity Property Map
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    keyEncryptionKeyUrl String
    key encryption key Url, versioned or non-versioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.

    CustomerManagedKeyEncryptionResponse, CustomerManagedKeyEncryptionResponseArgs

    KeyEncryptionKeyIdentity Pulumi.AzureNative.OnlineExperimentation.Inputs.KeyEncryptionKeyIdentityResponse
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    KeyEncryptionKeyUrl string
    key encryption key Url, versioned or non-versioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.
    KeyEncryptionKeyIdentity KeyEncryptionKeyIdentityResponse
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    KeyEncryptionKeyUrl string
    key encryption key Url, versioned or non-versioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.
    keyEncryptionKeyIdentity KeyEncryptionKeyIdentityResponse
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    keyEncryptionKeyUrl String
    key encryption key Url, versioned or non-versioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.
    keyEncryptionKeyIdentity KeyEncryptionKeyIdentityResponse
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    keyEncryptionKeyUrl string
    key encryption key Url, versioned or non-versioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.
    key_encryption_key_identity KeyEncryptionKeyIdentityResponse
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    key_encryption_key_url str
    key encryption key Url, versioned or non-versioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.
    keyEncryptionKeyIdentity Property Map
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    keyEncryptionKeyUrl String
    key encryption key Url, versioned or non-versioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.

    KeyEncryptionKeyIdentity, KeyEncryptionKeyIdentityArgs

    FederatedClientId string
    application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
    IdentityType string | Pulumi.AzureNative.OnlineExperimentation.KeyEncryptionKeyIdentityType
    The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
    UserAssignedIdentityResourceId string
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
    FederatedClientId string
    application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
    IdentityType string | KeyEncryptionKeyIdentityType
    The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
    UserAssignedIdentityResourceId string
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
    federatedClientId String
    application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
    identityType String | KeyEncryptionKeyIdentityType
    The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
    userAssignedIdentityResourceId String
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
    federatedClientId string
    application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
    identityType string | KeyEncryptionKeyIdentityType
    The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
    userAssignedIdentityResourceId string
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
    federated_client_id str
    application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
    identity_type str | KeyEncryptionKeyIdentityType
    The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
    user_assigned_identity_resource_id str
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
    federatedClientId String
    application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
    identityType String | "SystemAssignedIdentity" | "UserAssignedIdentity"
    The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
    userAssignedIdentityResourceId String
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.

    KeyEncryptionKeyIdentityResponse, KeyEncryptionKeyIdentityResponseArgs

    FederatedClientId string
    application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
    IdentityType string
    The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
    UserAssignedIdentityResourceId string
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
    FederatedClientId string
    application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
    IdentityType string
    The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
    UserAssignedIdentityResourceId string
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
    federatedClientId String
    application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
    identityType String
    The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
    userAssignedIdentityResourceId String
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
    federatedClientId string
    application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
    identityType string
    The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
    userAssignedIdentityResourceId string
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
    federated_client_id str
    application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
    identity_type str
    The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
    user_assigned_identity_resource_id str
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
    federatedClientId String
    application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
    identityType String
    The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
    userAssignedIdentityResourceId String
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.

    KeyEncryptionKeyIdentityType, KeyEncryptionKeyIdentityTypeArgs

    SystemAssignedIdentity
    SystemAssignedIdentitySystem assigned identity
    UserAssignedIdentity
    UserAssignedIdentityUser assigned identity
    KeyEncryptionKeyIdentityTypeSystemAssignedIdentity
    SystemAssignedIdentitySystem assigned identity
    KeyEncryptionKeyIdentityTypeUserAssignedIdentity
    UserAssignedIdentityUser assigned identity
    SystemAssignedIdentity
    SystemAssignedIdentitySystem assigned identity
    UserAssignedIdentity
    UserAssignedIdentityUser assigned identity
    SystemAssignedIdentity
    SystemAssignedIdentitySystem assigned identity
    UserAssignedIdentity
    UserAssignedIdentityUser assigned identity
    SYSTEM_ASSIGNED_IDENTITY
    SystemAssignedIdentitySystem assigned identity
    USER_ASSIGNED_IDENTITY
    UserAssignedIdentityUser assigned identity
    "SystemAssignedIdentity"
    SystemAssignedIdentitySystem assigned identity
    "UserAssignedIdentity"
    UserAssignedIdentityUser assigned identity

    ManagedServiceIdentity, ManagedServiceIdentityArgs

    Type string | Pulumi.AzureNative.OnlineExperimentation.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 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 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 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 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 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 string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    TenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    Type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.OnlineExperimentation.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 string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    TenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    Type 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 String
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId String
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type 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 string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type 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 str
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenant_id str
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type 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 String
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId String
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type 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

    OnlineExperimentWorkspaceProperties, OnlineExperimentWorkspacePropertiesArgs

    AppConfigurationResourceId string
    The resource identifier of App Configuration with which this online experiment workspace is tied for experimentation. This is a required field for creating an online experiment workspace.
    LogAnalyticsWorkspaceResourceId string
    The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
    LogsExporterStorageAccountResourceId string
    The resource identifier of storage account where logs are exported from Log Analytics workspace. Online Experiment workspace uses it generating experiment analysis results.
    Encryption Pulumi.AzureNative.OnlineExperimentation.Inputs.ResourceEncryptionConfiguration
    The encryption configuration for the online experiment workspace resource.
    AppConfigurationResourceId string
    The resource identifier of App Configuration with which this online experiment workspace is tied for experimentation. This is a required field for creating an online experiment workspace.
    LogAnalyticsWorkspaceResourceId string
    The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
    LogsExporterStorageAccountResourceId string
    The resource identifier of storage account where logs are exported from Log Analytics workspace. Online Experiment workspace uses it generating experiment analysis results.
    Encryption ResourceEncryptionConfiguration
    The encryption configuration for the online experiment workspace resource.
    appConfigurationResourceId String
    The resource identifier of App Configuration with which this online experiment workspace is tied for experimentation. This is a required field for creating an online experiment workspace.
    logAnalyticsWorkspaceResourceId String
    The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
    logsExporterStorageAccountResourceId String
    The resource identifier of storage account where logs are exported from Log Analytics workspace. Online Experiment workspace uses it generating experiment analysis results.
    encryption ResourceEncryptionConfiguration
    The encryption configuration for the online experiment workspace resource.
    appConfigurationResourceId string
    The resource identifier of App Configuration with which this online experiment workspace is tied for experimentation. This is a required field for creating an online experiment workspace.
    logAnalyticsWorkspaceResourceId string
    The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
    logsExporterStorageAccountResourceId string
    The resource identifier of storage account where logs are exported from Log Analytics workspace. Online Experiment workspace uses it generating experiment analysis results.
    encryption ResourceEncryptionConfiguration
    The encryption configuration for the online experiment workspace resource.
    app_configuration_resource_id str
    The resource identifier of App Configuration with which this online experiment workspace is tied for experimentation. This is a required field for creating an online experiment workspace.
    log_analytics_workspace_resource_id str
    The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
    logs_exporter_storage_account_resource_id str
    The resource identifier of storage account where logs are exported from Log Analytics workspace. Online Experiment workspace uses it generating experiment analysis results.
    encryption ResourceEncryptionConfiguration
    The encryption configuration for the online experiment workspace resource.
    appConfigurationResourceId String
    The resource identifier of App Configuration with which this online experiment workspace is tied for experimentation. This is a required field for creating an online experiment workspace.
    logAnalyticsWorkspaceResourceId String
    The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
    logsExporterStorageAccountResourceId String
    The resource identifier of storage account where logs are exported from Log Analytics workspace. Online Experiment workspace uses it generating experiment analysis results.
    encryption Property Map
    The encryption configuration for the online experiment workspace resource.

    OnlineExperimentWorkspacePropertiesResponse, OnlineExperimentWorkspacePropertiesResponseArgs

    AppConfigurationResourceId string
    The resource identifier of App Configuration with which this online experiment workspace is tied for experimentation. This is a required field for creating an online experiment workspace.
    Endpoint string
    The data plane endpoint for the online experiment workspace resource.
    LogAnalyticsWorkspaceResourceId string
    The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
    LogsExporterStorageAccountResourceId string
    The resource identifier of storage account where logs are exported from Log Analytics workspace. Online Experiment workspace uses it generating experiment analysis results.
    ProvisioningState string
    The provisioning state for the resource
    WorkspaceId string
    The Id of the workspace.
    Encryption Pulumi.AzureNative.OnlineExperimentation.Inputs.ResourceEncryptionConfigurationResponse
    The encryption configuration for the online experiment workspace resource.
    AppConfigurationResourceId string
    The resource identifier of App Configuration with which this online experiment workspace is tied for experimentation. This is a required field for creating an online experiment workspace.
    Endpoint string
    The data plane endpoint for the online experiment workspace resource.
    LogAnalyticsWorkspaceResourceId string
    The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
    LogsExporterStorageAccountResourceId string
    The resource identifier of storage account where logs are exported from Log Analytics workspace. Online Experiment workspace uses it generating experiment analysis results.
    ProvisioningState string
    The provisioning state for the resource
    WorkspaceId string
    The Id of the workspace.
    Encryption ResourceEncryptionConfigurationResponse
    The encryption configuration for the online experiment workspace resource.
    appConfigurationResourceId String
    The resource identifier of App Configuration with which this online experiment workspace is tied for experimentation. This is a required field for creating an online experiment workspace.
    endpoint String
    The data plane endpoint for the online experiment workspace resource.
    logAnalyticsWorkspaceResourceId String
    The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
    logsExporterStorageAccountResourceId String
    The resource identifier of storage account where logs are exported from Log Analytics workspace. Online Experiment workspace uses it generating experiment analysis results.
    provisioningState String
    The provisioning state for the resource
    workspaceId String
    The Id of the workspace.
    encryption ResourceEncryptionConfigurationResponse
    The encryption configuration for the online experiment workspace resource.
    appConfigurationResourceId string
    The resource identifier of App Configuration with which this online experiment workspace is tied for experimentation. This is a required field for creating an online experiment workspace.
    endpoint string
    The data plane endpoint for the online experiment workspace resource.
    logAnalyticsWorkspaceResourceId string
    The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
    logsExporterStorageAccountResourceId string
    The resource identifier of storage account where logs are exported from Log Analytics workspace. Online Experiment workspace uses it generating experiment analysis results.
    provisioningState string
    The provisioning state for the resource
    workspaceId string
    The Id of the workspace.
    encryption ResourceEncryptionConfigurationResponse
    The encryption configuration for the online experiment workspace resource.
    app_configuration_resource_id str
    The resource identifier of App Configuration with which this online experiment workspace is tied for experimentation. This is a required field for creating an online experiment workspace.
    endpoint str
    The data plane endpoint for the online experiment workspace resource.
    log_analytics_workspace_resource_id str
    The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
    logs_exporter_storage_account_resource_id str
    The resource identifier of storage account where logs are exported from Log Analytics workspace. Online Experiment workspace uses it generating experiment analysis results.
    provisioning_state str
    The provisioning state for the resource
    workspace_id str
    The Id of the workspace.
    encryption ResourceEncryptionConfigurationResponse
    The encryption configuration for the online experiment workspace resource.
    appConfigurationResourceId String
    The resource identifier of App Configuration with which this online experiment workspace is tied for experimentation. This is a required field for creating an online experiment workspace.
    endpoint String
    The data plane endpoint for the online experiment workspace resource.
    logAnalyticsWorkspaceResourceId String
    The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
    logsExporterStorageAccountResourceId String
    The resource identifier of storage account where logs are exported from Log Analytics workspace. Online Experiment workspace uses it generating experiment analysis results.
    provisioningState String
    The provisioning state for the resource
    workspaceId String
    The Id of the workspace.
    encryption Property Map
    The encryption configuration for the online experiment workspace resource.

    OnlineExperimentationWorkspaceSku, OnlineExperimentationWorkspaceSkuArgs

    Name string | Pulumi.AzureNative.OnlineExperimentation.OnlineExperimentationWorkspaceSkuName
    The name of the SKU. Ex - F0, P0. It is typically a letter+number code
    Name string | OnlineExperimentationWorkspaceSkuName
    The name of the SKU. Ex - F0, P0. It is typically a letter+number code
    name String | OnlineExperimentationWorkspaceSkuName
    The name of the SKU. Ex - F0, P0. It is typically a letter+number code
    name string | OnlineExperimentationWorkspaceSkuName
    The name of the SKU. Ex - F0, P0. It is typically a letter+number code
    name str | OnlineExperimentationWorkspaceSkuName
    The name of the SKU. Ex - F0, P0. It is typically a letter+number code
    name String | "F0" | "S0" | "P0" | "D0"
    The name of the SKU. Ex - F0, P0. It is typically a letter+number code

    OnlineExperimentationWorkspaceSkuName, OnlineExperimentationWorkspaceSkuNameArgs

    F0
    F0The Free service sku name.
    S0
    S0The Standard service sku name.
    P0
    P0The Premium service sku name.
    D0
    D0The Developer service sku name.
    OnlineExperimentationWorkspaceSkuNameF0
    F0The Free service sku name.
    OnlineExperimentationWorkspaceSkuNameS0
    S0The Standard service sku name.
    OnlineExperimentationWorkspaceSkuNameP0
    P0The Premium service sku name.
    OnlineExperimentationWorkspaceSkuNameD0
    D0The Developer service sku name.
    F0
    F0The Free service sku name.
    S0
    S0The Standard service sku name.
    P0
    P0The Premium service sku name.
    D0
    D0The Developer service sku name.
    F0
    F0The Free service sku name.
    S0
    S0The Standard service sku name.
    P0
    P0The Premium service sku name.
    D0
    D0The Developer service sku name.
    F0
    F0The Free service sku name.
    S0
    S0The Standard service sku name.
    P0
    P0The Premium service sku name.
    D0
    D0The Developer service sku name.
    "F0"
    F0The Free service sku name.
    "S0"
    S0The Standard service sku name.
    "P0"
    P0The Premium service sku name.
    "D0"
    D0The Developer service sku name.

    OnlineExperimentationWorkspaceSkuResponse, OnlineExperimentationWorkspaceSkuResponseArgs

    Name string
    The name of the SKU. Ex - F0, P0. It is typically a letter+number code
    Tier string
    The name of the SKU tier
    Name string
    The name of the SKU. Ex - F0, P0. It is typically a letter+number code
    Tier string
    The name of the SKU tier
    name String
    The name of the SKU. Ex - F0, P0. It is typically a letter+number code
    tier String
    The name of the SKU tier
    name string
    The name of the SKU. Ex - F0, P0. It is typically a letter+number code
    tier string
    The name of the SKU tier
    name str
    The name of the SKU. Ex - F0, P0. It is typically a letter+number code
    tier str
    The name of the SKU tier
    name String
    The name of the SKU. Ex - F0, P0. It is typically a letter+number code
    tier String
    The name of the SKU tier

    ResourceEncryptionConfiguration, ResourceEncryptionConfigurationArgs

    CustomerManagedKeyEncryption CustomerManagedKeyEncryption
    All Customer-managed key encryption properties for the resource.
    customerManagedKeyEncryption CustomerManagedKeyEncryption
    All Customer-managed key encryption properties for the resource.
    customerManagedKeyEncryption CustomerManagedKeyEncryption
    All Customer-managed key encryption properties for the resource.
    customer_managed_key_encryption CustomerManagedKeyEncryption
    All Customer-managed key encryption properties for the resource.
    customerManagedKeyEncryption Property Map
    All Customer-managed key encryption properties for the resource.

    ResourceEncryptionConfigurationResponse, ResourceEncryptionConfigurationResponseArgs

    CustomerManagedKeyEncryption CustomerManagedKeyEncryptionResponse
    All Customer-managed key encryption properties for the resource.
    customerManagedKeyEncryption CustomerManagedKeyEncryptionResponse
    All Customer-managed key encryption properties for the resource.
    customerManagedKeyEncryption CustomerManagedKeyEncryptionResponse
    All Customer-managed key encryption properties for the resource.
    customer_managed_key_encryption CustomerManagedKeyEncryptionResponse
    All Customer-managed key encryption properties for the resource.
    customerManagedKeyEncryption Property Map
    All Customer-managed key encryption properties for the 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 string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.
    clientId string
    The client ID of the assigned identity.
    principalId string
    The principal ID of the assigned identity.
    client_id str
    The client ID of the assigned identity.
    principal_id str
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi