azure-native.onlineexperimentation.OnlineExperimentWorkspace
Explore with Pulumi AI
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:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Identity
Pulumi.
Azure Native. Online Experimentation. Inputs. Managed Service Identity - The managed service identities assigned to this resource.
- Location string
- The geo-location where the resource lives
- Properties
Pulumi.
Azure Native. Online Experimentation. Inputs. Online Experiment Workspace Properties - The resource-specific properties for this resource.
- Sku
Pulumi.
Azure Native. Online Experimentation. Inputs. Online Experimentation Workspace Sku - The SKU (Stock Keeping Unit) assigned to this resource.
- Dictionary<string, string>
- Resource tags.
- Workspace
Name string - The name of the OnlineExperimentWorkspace
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Identity
Managed
Service Identity Args - The managed service identities assigned to this resource.
- Location string
- The geo-location where the resource lives
- Properties
Online
Experiment Workspace Properties Args - The resource-specific properties for this resource.
- Sku
Online
Experimentation Workspace Sku Args - The SKU (Stock Keeping Unit) assigned to this resource.
- map[string]string
- Resource tags.
- Workspace
Name string - The name of the OnlineExperimentWorkspace
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- identity
Managed
Service Identity - The managed service identities assigned to this resource.
- location String
- The geo-location where the resource lives
- properties
Online
Experiment Workspace Properties - The resource-specific properties for this resource.
- sku
Online
Experimentation Workspace Sku - The SKU (Stock Keeping Unit) assigned to this resource.
- Map<String,String>
- Resource tags.
- workspace
Name String - The name of the OnlineExperimentWorkspace
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- identity
Managed
Service Identity - The managed service identities assigned to this resource.
- location string
- The geo-location where the resource lives
- properties
Online
Experiment Workspace Properties - The resource-specific properties for this resource.
- sku
Online
Experimentation Workspace Sku - The SKU (Stock Keeping Unit) assigned to this resource.
- {[key: string]: string}
- Resource tags.
- workspace
Name string - The name of the OnlineExperimentWorkspace
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- identity
Managed
Service Identity Args - The managed service identities assigned to this resource.
- location str
- The geo-location where the resource lives
- properties
Online
Experiment Workspace Properties Args - The resource-specific properties for this resource.
- sku
Online
Experimentation Workspace Sku Args - The SKU (Stock Keeping Unit) assigned to this resource.
- Mapping[str, str]
- Resource tags.
- workspace_
name str - The name of the OnlineExperimentWorkspace
- resource
Group StringName - 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.
- Map<String>
- Resource tags.
- workspace
Name 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:
- Azure
Api stringVersion - 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
- System
Data Pulumi.Azure Native. Online Experimentation. Outputs. System Data Response - 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 stringVersion - 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
- System
Data SystemData Response - 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 StringVersion - 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
- system
Data SystemData Response - 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 stringVersion - 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
- system
Data SystemData Response - 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_ strversion - 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 SystemData Response - 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"
- azure
Api StringVersion - 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
- system
Data 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
- Key
Encryption Pulumi.Key Identity Azure Native. Online Experimentation. Inputs. Key Encryption Key Identity - All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- Key
Encryption stringKey Url - 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 KeyKey Identity Encryption Key Identity - All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- Key
Encryption stringKey Url - 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 KeyKey Identity Encryption Key Identity - All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- key
Encryption StringKey Url - 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 KeyKey Identity Encryption Key Identity - All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- key
Encryption stringKey Url - 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_ Keykey_ identity Encryption Key Identity - All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- key_
encryption_ strkey_ url - 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 Property MapKey Identity - All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- key
Encryption StringKey Url - 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
- Key
Encryption Pulumi.Key Identity Azure Native. Online Experimentation. Inputs. Key Encryption Key Identity Response - All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- Key
Encryption stringKey Url - 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 KeyKey Identity Encryption Key Identity Response - All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- Key
Encryption stringKey Url - 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 KeyKey Identity Encryption Key Identity Response - All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- key
Encryption StringKey Url - 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 KeyKey Identity Encryption Key Identity Response - All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- key
Encryption stringKey Url - 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_ Keykey_ identity Encryption Key Identity Response - All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- key_
encryption_ strkey_ url - 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 Property MapKey Identity - All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- key
Encryption StringKey Url - 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
- Federated
Client stringId - application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
- Identity
Type string | Pulumi.Azure Native. Online Experimentation. Key Encryption Key Identity Type - The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
- User
Assigned stringIdentity Resource Id - 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 stringId - application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
- Identity
Type string | KeyEncryption Key Identity Type - The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
- User
Assigned stringIdentity Resource Id - 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 StringId - application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
- identity
Type String | KeyEncryption Key Identity Type - The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
- user
Assigned StringIdentity Resource Id - 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 stringId - application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
- identity
Type string | KeyEncryption Key Identity Type - The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
- user
Assigned stringIdentity Resource Id - 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_ strid - application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
- identity_
type str | KeyEncryption Key Identity Type - The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
- user_
assigned_ stridentity_ resource_ id - 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 StringId - application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
- identity
Type String | "SystemAssigned Identity" | "User Assigned Identity" - The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
- user
Assigned StringIdentity Resource Id - 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
- Federated
Client stringId - application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
- Identity
Type string - The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
- User
Assigned stringIdentity Resource Id - 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 stringId - application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
- Identity
Type string - The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
- User
Assigned stringIdentity Resource Id - 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 StringId - application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
- identity
Type String - The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
- user
Assigned StringIdentity Resource Id - 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 stringId - application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
- identity
Type string - The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
- user
Assigned stringIdentity Resource Id - 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_ strid - 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_ stridentity_ resource_ id - 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 StringId - application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
- identity
Type String - The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
- user
Assigned StringIdentity Resource Id - 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
- System
Assigned Identity - SystemAssignedIdentitySystem assigned identity
- User
Assigned Identity - UserAssignedIdentityUser assigned identity
- Key
Encryption Key Identity Type System Assigned Identity - SystemAssignedIdentitySystem assigned identity
- Key
Encryption Key Identity Type User Assigned Identity - UserAssignedIdentityUser assigned identity
- System
Assigned Identity - SystemAssignedIdentitySystem assigned identity
- User
Assigned Identity - UserAssignedIdentityUser assigned identity
- System
Assigned Identity - SystemAssignedIdentitySystem assigned identity
- User
Assigned Identity - UserAssignedIdentityUser assigned identity
- SYSTEM_ASSIGNED_IDENTITY
- SystemAssignedIdentitySystem assigned identity
- USER_ASSIGNED_IDENTITY
- UserAssignedIdentityUser assigned identity
- "System
Assigned Identity" - SystemAssignedIdentitySystem assigned identity
- "User
Assigned Identity" - UserAssignedIdentityUser assigned identity
ManagedServiceIdentity, ManagedServiceIdentityArgs
- Type
string | Pulumi.
Azure Native. Online Experimentation. Managed Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned List<string>Identities - 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 | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned []stringIdentities - 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 | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned List<String>Identities - 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 | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned string[]Identities - 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 | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ Sequence[str]identities - 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" | "System
Assigned" | "User Assigned" | "System Assigned,User Assigned" - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned List<String>Identities - 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
- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id 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).
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Online Experimentation. Inputs. User Assigned Identity Response> - 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 string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id 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).
- User
Assigned map[string]UserIdentities Assigned Identity Response - 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 String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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).
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - 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 string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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).
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - 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_ Mapping[str, Useridentities Assigned Identity Response] - 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 String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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).
- user
Assigned Map<Property Map>Identities - 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
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- Managed
Service Identity Type None - None
- Managed
Service Identity Type System Assigned - SystemAssigned
- Managed
Service Identity Type User Assigned - UserAssigned
- Managed
Service Identity Type_System Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned,UserAssigned
- "None"
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned,User Assigned" - SystemAssigned,UserAssigned
OnlineExperimentWorkspaceProperties, OnlineExperimentWorkspacePropertiesArgs
- App
Configuration stringResource Id - 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 stringWorkspace Resource Id - The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
- Logs
Exporter stringStorage Account Resource Id - 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.
Azure Native. Online Experimentation. Inputs. Resource Encryption Configuration - The encryption configuration for the online experiment workspace resource.
- App
Configuration stringResource Id - 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 stringWorkspace Resource Id - The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
- Logs
Exporter stringStorage Account Resource Id - The resource identifier of storage account where logs are exported from Log Analytics workspace. Online Experiment workspace uses it generating experiment analysis results.
- Encryption
Resource
Encryption Configuration - The encryption configuration for the online experiment workspace resource.
- app
Configuration StringResource Id - 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 StringWorkspace Resource Id - The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
- logs
Exporter StringStorage Account Resource Id - The resource identifier of storage account where logs are exported from Log Analytics workspace. Online Experiment workspace uses it generating experiment analysis results.
- encryption
Resource
Encryption Configuration - The encryption configuration for the online experiment workspace resource.
- app
Configuration stringResource Id - 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 stringWorkspace Resource Id - The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
- logs
Exporter stringStorage Account Resource Id - The resource identifier of storage account where logs are exported from Log Analytics workspace. Online Experiment workspace uses it generating experiment analysis results.
- encryption
Resource
Encryption Configuration - The encryption configuration for the online experiment workspace resource.
- app_
configuration_ strresource_ id - 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_ strworkspace_ resource_ id - The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
- logs_
exporter_ strstorage_ account_ resource_ id - The resource identifier of storage account where logs are exported from Log Analytics workspace. Online Experiment workspace uses it generating experiment analysis results.
- encryption
Resource
Encryption Configuration - The encryption configuration for the online experiment workspace resource.
- app
Configuration StringResource Id - 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 StringWorkspace Resource Id - The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
- logs
Exporter StringStorage Account Resource Id - 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
- App
Configuration stringResource Id - 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.
- Log
Analytics stringWorkspace Resource Id - The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
- Logs
Exporter stringStorage Account Resource Id - 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 string - The provisioning state for the resource
- Workspace
Id string - The Id of the workspace.
- Encryption
Pulumi.
Azure Native. Online Experimentation. Inputs. Resource Encryption Configuration Response - The encryption configuration for the online experiment workspace resource.
- App
Configuration stringResource Id - 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.
- Log
Analytics stringWorkspace Resource Id - The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
- Logs
Exporter stringStorage Account Resource Id - 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 string - The provisioning state for the resource
- Workspace
Id string - The Id of the workspace.
- Encryption
Resource
Encryption Configuration Response - The encryption configuration for the online experiment workspace resource.
- app
Configuration StringResource Id - 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.
- log
Analytics StringWorkspace Resource Id - The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
- logs
Exporter StringStorage Account Resource Id - 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 String - The provisioning state for the resource
- workspace
Id String - The Id of the workspace.
- encryption
Resource
Encryption Configuration Response - The encryption configuration for the online experiment workspace resource.
- app
Configuration stringResource Id - 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.
- log
Analytics stringWorkspace Resource Id - The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
- logs
Exporter stringStorage Account Resource Id - 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 string - The provisioning state for the resource
- workspace
Id string - The Id of the workspace.
- encryption
Resource
Encryption Configuration Response - The encryption configuration for the online experiment workspace resource.
- app_
configuration_ strresource_ id - 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_ strworkspace_ resource_ id - The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
- logs_
exporter_ strstorage_ account_ resource_ id - 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
Resource
Encryption Configuration Response - The encryption configuration for the online experiment workspace resource.
- app
Configuration StringResource Id - 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.
- log
Analytics StringWorkspace Resource Id - The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
- logs
Exporter StringStorage Account Resource Id - 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 String - The provisioning state for the resource
- workspace
Id String - The Id of the workspace.
- encryption Property Map
- The encryption configuration for the online experiment workspace resource.
OnlineExperimentationWorkspaceSku, OnlineExperimentationWorkspaceSkuArgs
- Name
string | Pulumi.
Azure Native. Online Experimentation. Online Experimentation Workspace Sku Name - The name of the SKU. Ex - F0, P0. It is typically a letter+number code
- Name
string | Online
Experimentation Workspace Sku Name - The name of the SKU. Ex - F0, P0. It is typically a letter+number code
- name
String | Online
Experimentation Workspace Sku Name - The name of the SKU. Ex - F0, P0. It is typically a letter+number code
- name
string | Online
Experimentation Workspace Sku Name - The name of the SKU. Ex - F0, P0. It is typically a letter+number code
- name
str | Online
Experimentation Workspace Sku Name - 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.
- Online
Experimentation Workspace Sku Name F0 - F0The Free service sku name.
- Online
Experimentation Workspace Sku Name S0 - S0The Standard service sku name.
- Online
Experimentation Workspace Sku Name P0 - P0The Premium service sku name.
- Online
Experimentation Workspace 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.
- "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
ResourceEncryptionConfiguration, ResourceEncryptionConfigurationArgs
- Customer
Managed Pulumi.Key Encryption Azure Native. Online Experimentation. Inputs. Customer Managed Key Encryption - All Customer-managed key encryption properties for the resource.
- Customer
Managed CustomerKey Encryption Managed Key Encryption - All Customer-managed key encryption properties for the resource.
- customer
Managed CustomerKey Encryption Managed Key Encryption - All Customer-managed key encryption properties for the resource.
- customer
Managed CustomerKey Encryption Managed Key Encryption - All Customer-managed key encryption properties for the resource.
- customer_
managed_ Customerkey_ encryption Managed Key Encryption - All Customer-managed key encryption properties for the resource.
- customer
Managed Property MapKey Encryption - All Customer-managed key encryption properties for the resource.
ResourceEncryptionConfigurationResponse, ResourceEncryptionConfigurationResponseArgs
- Customer
Managed Pulumi.Key Encryption Azure Native. Online Experimentation. Inputs. Customer Managed Key Encryption Response - All Customer-managed key encryption properties for the resource.
- Customer
Managed CustomerKey Encryption Managed Key Encryption Response - All Customer-managed key encryption properties for the resource.
- customer
Managed CustomerKey Encryption Managed Key Encryption Response - All Customer-managed key encryption properties for the resource.
- customer
Managed CustomerKey Encryption Managed Key Encryption Response - All Customer-managed key encryption properties for the resource.
- customer_
managed_ Customerkey_ encryption Managed Key Encryption Response - All Customer-managed key encryption properties for the resource.
- customer
Managed Property MapKey Encryption - All Customer-managed key encryption properties for the resource.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
- client
Id string - The client ID of the assigned identity.
- principal
Id 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.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0