1. Packages
  2. Azure Native
  3. API Docs
  4. autonomousdevelopmentplatform
  5. DataPool
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.8.0 published on Monday, Sep 18, 2023 by Pulumi

azure-native.autonomousdevelopmentplatform.DataPool

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.8.0 published on Monday, Sep 18, 2023 by Pulumi

    ADP Data Pool Azure REST API version: 2021-11-01-preview. Prior API version in Azure Native 1.x: 2021-02-01-preview

    Example Usage

    Put Data Pool

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var dataPool = new AzureNative.AutonomousDevelopmentPlatform.DataPool("dataPool", new()
        {
            AccountName = "sampleacct",
            DataPoolName = "sampledp",
            Locations = new[]
            {
                new AzureNative.AutonomousDevelopmentPlatform.Inputs.DataPoolLocationArgs
                {
                    Encryption = new AzureNative.AutonomousDevelopmentPlatform.Inputs.DataPoolEncryptionArgs
                    {
                        KeyName = "key1",
                        KeyVaultUri = "https://vaulturi",
                        KeyVersion = "123",
                        UserAssignedIdentity = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1",
                    },
                    Name = "westus",
                },
            },
            ResourceGroupName = "adpClient",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/autonomousdevelopmentplatform/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := autonomousdevelopmentplatform.NewDataPool(ctx, "dataPool", &autonomousdevelopmentplatform.DataPoolArgs{
    			AccountName:  pulumi.String("sampleacct"),
    			DataPoolName: pulumi.String("sampledp"),
    			Locations: []autonomousdevelopmentplatform.DataPoolLocationArgs{
    				{
    					Encryption: {
    						KeyName:              pulumi.String("key1"),
    						KeyVaultUri:          pulumi.String("https://vaulturi"),
    						KeyVersion:           pulumi.String("123"),
    						UserAssignedIdentity: pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1"),
    					},
    					Name: pulumi.String("westus"),
    				},
    			},
    			ResourceGroupName: pulumi.String("adpClient"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.autonomousdevelopmentplatform.DataPool;
    import com.pulumi.azurenative.autonomousdevelopmentplatform.DataPoolArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var dataPool = new DataPool("dataPool", DataPoolArgs.builder()        
                .accountName("sampleacct")
                .dataPoolName("sampledp")
                .locations(Map.ofEntries(
                    Map.entry("encryption", Map.ofEntries(
                        Map.entry("keyName", "key1"),
                        Map.entry("keyVaultUri", "https://vaulturi"),
                        Map.entry("keyVersion", "123"),
                        Map.entry("userAssignedIdentity", "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1")
                    )),
                    Map.entry("name", "westus")
                ))
                .resourceGroupName("adpClient")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    data_pool = azure_native.autonomousdevelopmentplatform.DataPool("dataPool",
        account_name="sampleacct",
        data_pool_name="sampledp",
        locations=[{
            "encryption": azure_native.autonomousdevelopmentplatform.DataPoolEncryptionArgs(
                key_name="key1",
                key_vault_uri="https://vaulturi",
                key_version="123",
                user_assigned_identity="/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1",
            ),
            "name": "westus",
        }],
        resource_group_name="adpClient")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const dataPool = new azure_native.autonomousdevelopmentplatform.DataPool("dataPool", {
        accountName: "sampleacct",
        dataPoolName: "sampledp",
        locations: [{
            encryption: {
                keyName: "key1",
                keyVaultUri: "https://vaulturi",
                keyVersion: "123",
                userAssignedIdentity: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1",
            },
            name: "westus",
        }],
        resourceGroupName: "adpClient",
    });
    
    resources:
      dataPool:
        type: azure-native:autonomousdevelopmentplatform:DataPool
        properties:
          accountName: sampleacct
          dataPoolName: sampledp
          locations:
            - encryption:
                keyName: key1
                keyVaultUri: https://vaulturi
                keyVersion: '123'
                userAssignedIdentity: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1
              name: westus
          resourceGroupName: adpClient
    

    Create DataPool Resource

    new DataPool(name: string, args: DataPoolArgs, opts?: CustomResourceOptions);
    @overload
    def DataPool(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 account_name: Optional[str] = None,
                 data_pool_name: Optional[str] = None,
                 locations: Optional[Sequence[DataPoolLocationArgs]] = None,
                 resource_group_name: Optional[str] = None,
                 tags: Optional[Mapping[str, str]] = None)
    @overload
    def DataPool(resource_name: str,
                 args: DataPoolArgs,
                 opts: Optional[ResourceOptions] = None)
    func NewDataPool(ctx *Context, name string, args DataPoolArgs, opts ...ResourceOption) (*DataPool, error)
    public DataPool(string name, DataPoolArgs args, CustomResourceOptions? opts = null)
    public DataPool(String name, DataPoolArgs args)
    public DataPool(String name, DataPoolArgs args, CustomResourceOptions options)
    
    type: azure-native:autonomousdevelopmentplatform:DataPool
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args DataPoolArgs
    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 DataPoolArgs
    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 DataPoolArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DataPoolArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DataPoolArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    DataPool Resource Properties

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

    Inputs

    The DataPool resource accepts the following input properties:

    AccountName string

    The name of the ADP account

    Locations List<Pulumi.AzureNative.AutonomousDevelopmentPlatform.Inputs.DataPoolLocation>

    Gets or sets the collection of locations where Data Pool resources should be created

    ResourceGroupName string

    The name of the resource group. The name is case insensitive.

    DataPoolName string

    The name of the Data Pool

    Tags Dictionary<string, string>

    Resource tags

    AccountName string

    The name of the ADP account

    Locations []DataPoolLocationArgs

    Gets or sets the collection of locations where Data Pool resources should be created

    ResourceGroupName string

    The name of the resource group. The name is case insensitive.

    DataPoolName string

    The name of the Data Pool

    Tags map[string]string

    Resource tags

    accountName String

    The name of the ADP account

    locations List<DataPoolLocation>

    Gets or sets the collection of locations where Data Pool resources should be created

    resourceGroupName String

    The name of the resource group. The name is case insensitive.

    dataPoolName String

    The name of the Data Pool

    tags Map<String,String>

    Resource tags

    accountName string

    The name of the ADP account

    locations DataPoolLocation[]

    Gets or sets the collection of locations where Data Pool resources should be created

    resourceGroupName string

    The name of the resource group. The name is case insensitive.

    dataPoolName string

    The name of the Data Pool

    tags {[key: string]: string}

    Resource tags

    account_name str

    The name of the ADP account

    locations Sequence[DataPoolLocationArgs]

    Gets or sets the collection of locations where Data Pool resources should be created

    resource_group_name str

    The name of the resource group. The name is case insensitive.

    data_pool_name str

    The name of the Data Pool

    tags Mapping[str, str]

    Resource tags

    accountName String

    The name of the ADP account

    locations List<Property Map>

    Gets or sets the collection of locations where Data Pool resources should be created

    resourceGroupName String

    The name of the resource group. The name is case insensitive.

    dataPoolName String

    The name of the Data Pool

    tags Map<String>

    Resource tags

    Outputs

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

    DataPoolId string

    The Data Pool's data-plane ID

    Id string

    The provider-assigned unique ID for this managed resource.

    Name string

    The name of the resource

    ProvisioningState string

    Gets the status of the data pool at the time the operation was called

    SystemData Pulumi.AzureNative.AutonomousDevelopmentPlatform.Outputs.SystemDataResponse

    The system meta data relating to this resource

    Type string

    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    DataPoolId string

    The Data Pool's data-plane ID

    Id string

    The provider-assigned unique ID for this managed resource.

    Name string

    The name of the resource

    ProvisioningState string

    Gets the status of the data pool at the time the operation was called

    SystemData SystemDataResponse

    The system meta data relating to this resource

    Type string

    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    dataPoolId String

    The Data Pool's data-plane ID

    id String

    The provider-assigned unique ID for this managed resource.

    name String

    The name of the resource

    provisioningState String

    Gets the status of the data pool at the time the operation was called

    systemData SystemDataResponse

    The system meta data relating to this resource

    type String

    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    dataPoolId string

    The Data Pool's data-plane ID

    id string

    The provider-assigned unique ID for this managed resource.

    name string

    The name of the resource

    provisioningState string

    Gets the status of the data pool at the time the operation was called

    systemData SystemDataResponse

    The system meta data relating to this resource

    type string

    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    data_pool_id str

    The Data Pool's data-plane ID

    id str

    The provider-assigned unique ID for this managed resource.

    name str

    The name of the resource

    provisioning_state str

    Gets the status of the data pool at the time the operation was called

    system_data SystemDataResponse

    The system meta data relating to this resource

    type str

    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    dataPoolId String

    The Data Pool's data-plane ID

    id String

    The provider-assigned unique ID for this managed resource.

    name String

    The name of the resource

    provisioningState String

    Gets the status of the data pool at the time the operation was called

    systemData Property Map

    The system meta data relating to this resource

    type String

    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    DataPoolEncryption, DataPoolEncryptionArgs

    KeyName string

    The name of Key Vault key

    KeyVaultUri string

    The URI of a soft delete-enabled Key Vault that is in the same location as the Data Pool location

    UserAssignedIdentity string

    The resource ID of a user-assigned Managed Identity used to access the encryption key in the Key Vault. Requires access to the key operations get, wrap, unwrap, and recover

    KeyVersion string

    The version of Key Vault key

    KeyName string

    The name of Key Vault key

    KeyVaultUri string

    The URI of a soft delete-enabled Key Vault that is in the same location as the Data Pool location

    UserAssignedIdentity string

    The resource ID of a user-assigned Managed Identity used to access the encryption key in the Key Vault. Requires access to the key operations get, wrap, unwrap, and recover

    KeyVersion string

    The version of Key Vault key

    keyName String

    The name of Key Vault key

    keyVaultUri String

    The URI of a soft delete-enabled Key Vault that is in the same location as the Data Pool location

    userAssignedIdentity String

    The resource ID of a user-assigned Managed Identity used to access the encryption key in the Key Vault. Requires access to the key operations get, wrap, unwrap, and recover

    keyVersion String

    The version of Key Vault key

    keyName string

    The name of Key Vault key

    keyVaultUri string

    The URI of a soft delete-enabled Key Vault that is in the same location as the Data Pool location

    userAssignedIdentity string

    The resource ID of a user-assigned Managed Identity used to access the encryption key in the Key Vault. Requires access to the key operations get, wrap, unwrap, and recover

    keyVersion string

    The version of Key Vault key

    key_name str

    The name of Key Vault key

    key_vault_uri str

    The URI of a soft delete-enabled Key Vault that is in the same location as the Data Pool location

    user_assigned_identity str

    The resource ID of a user-assigned Managed Identity used to access the encryption key in the Key Vault. Requires access to the key operations get, wrap, unwrap, and recover

    key_version str

    The version of Key Vault key

    keyName String

    The name of Key Vault key

    keyVaultUri String

    The URI of a soft delete-enabled Key Vault that is in the same location as the Data Pool location

    userAssignedIdentity String

    The resource ID of a user-assigned Managed Identity used to access the encryption key in the Key Vault. Requires access to the key operations get, wrap, unwrap, and recover

    keyVersion String

    The version of Key Vault key

    DataPoolEncryptionResponse, DataPoolEncryptionResponseArgs

    KeyName string

    The name of Key Vault key

    KeyVaultUri string

    The URI of a soft delete-enabled Key Vault that is in the same location as the Data Pool location

    UserAssignedIdentity string

    The resource ID of a user-assigned Managed Identity used to access the encryption key in the Key Vault. Requires access to the key operations get, wrap, unwrap, and recover

    KeyVersion string

    The version of Key Vault key

    KeyName string

    The name of Key Vault key

    KeyVaultUri string

    The URI of a soft delete-enabled Key Vault that is in the same location as the Data Pool location

    UserAssignedIdentity string

    The resource ID of a user-assigned Managed Identity used to access the encryption key in the Key Vault. Requires access to the key operations get, wrap, unwrap, and recover

    KeyVersion string

    The version of Key Vault key

    keyName String

    The name of Key Vault key

    keyVaultUri String

    The URI of a soft delete-enabled Key Vault that is in the same location as the Data Pool location

    userAssignedIdentity String

    The resource ID of a user-assigned Managed Identity used to access the encryption key in the Key Vault. Requires access to the key operations get, wrap, unwrap, and recover

    keyVersion String

    The version of Key Vault key

    keyName string

    The name of Key Vault key

    keyVaultUri string

    The URI of a soft delete-enabled Key Vault that is in the same location as the Data Pool location

    userAssignedIdentity string

    The resource ID of a user-assigned Managed Identity used to access the encryption key in the Key Vault. Requires access to the key operations get, wrap, unwrap, and recover

    keyVersion string

    The version of Key Vault key

    key_name str

    The name of Key Vault key

    key_vault_uri str

    The URI of a soft delete-enabled Key Vault that is in the same location as the Data Pool location

    user_assigned_identity str

    The resource ID of a user-assigned Managed Identity used to access the encryption key in the Key Vault. Requires access to the key operations get, wrap, unwrap, and recover

    key_version str

    The version of Key Vault key

    keyName String

    The name of Key Vault key

    keyVaultUri String

    The URI of a soft delete-enabled Key Vault that is in the same location as the Data Pool location

    userAssignedIdentity String

    The resource ID of a user-assigned Managed Identity used to access the encryption key in the Key Vault. Requires access to the key operations get, wrap, unwrap, and recover

    keyVersion String

    The version of Key Vault key

    DataPoolLocation, DataPoolLocationArgs

    Name string

    The location name

    Encryption Pulumi.AzureNative.AutonomousDevelopmentPlatform.Inputs.DataPoolEncryption

    Encryption properties of a Data Pool location

    StorageAccountCount int

    The amount of storage accounts provisioned per Data Pool. Default: 5

    StorageSku Pulumi.AzureNative.AutonomousDevelopmentPlatform.Inputs.StorageSku

    The Storage SKU. Default: Standard_ZRS.

    Name string

    The location name

    Encryption DataPoolEncryption

    Encryption properties of a Data Pool location

    StorageAccountCount int

    The amount of storage accounts provisioned per Data Pool. Default: 5

    StorageSku StorageSku

    The Storage SKU. Default: Standard_ZRS.

    name String

    The location name

    encryption DataPoolEncryption

    Encryption properties of a Data Pool location

    storageAccountCount Integer

    The amount of storage accounts provisioned per Data Pool. Default: 5

    storageSku StorageSku

    The Storage SKU. Default: Standard_ZRS.

    name string

    The location name

    encryption DataPoolEncryption

    Encryption properties of a Data Pool location

    storageAccountCount number

    The amount of storage accounts provisioned per Data Pool. Default: 5

    storageSku StorageSku

    The Storage SKU. Default: Standard_ZRS.

    name str

    The location name

    encryption DataPoolEncryption

    Encryption properties of a Data Pool location

    storage_account_count int

    The amount of storage accounts provisioned per Data Pool. Default: 5

    storage_sku StorageSku

    The Storage SKU. Default: Standard_ZRS.

    name String

    The location name

    encryption Property Map

    Encryption properties of a Data Pool location

    storageAccountCount Number

    The amount of storage accounts provisioned per Data Pool. Default: 5

    storageSku Property Map

    The Storage SKU. Default: Standard_ZRS.

    DataPoolLocationResponse, DataPoolLocationResponseArgs

    Name string

    The location name

    Encryption Pulumi.AzureNative.AutonomousDevelopmentPlatform.Inputs.DataPoolEncryptionResponse

    Encryption properties of a Data Pool location

    StorageAccountCount int

    The amount of storage accounts provisioned per Data Pool. Default: 5

    StorageSku Pulumi.AzureNative.AutonomousDevelopmentPlatform.Inputs.StorageSkuResponse

    The Storage SKU. Default: Standard_ZRS.

    Name string

    The location name

    Encryption DataPoolEncryptionResponse

    Encryption properties of a Data Pool location

    StorageAccountCount int

    The amount of storage accounts provisioned per Data Pool. Default: 5

    StorageSku StorageSkuResponse

    The Storage SKU. Default: Standard_ZRS.

    name String

    The location name

    encryption DataPoolEncryptionResponse

    Encryption properties of a Data Pool location

    storageAccountCount Integer

    The amount of storage accounts provisioned per Data Pool. Default: 5

    storageSku StorageSkuResponse

    The Storage SKU. Default: Standard_ZRS.

    name string

    The location name

    encryption DataPoolEncryptionResponse

    Encryption properties of a Data Pool location

    storageAccountCount number

    The amount of storage accounts provisioned per Data Pool. Default: 5

    storageSku StorageSkuResponse

    The Storage SKU. Default: Standard_ZRS.

    name str

    The location name

    encryption DataPoolEncryptionResponse

    Encryption properties of a Data Pool location

    storage_account_count int

    The amount of storage accounts provisioned per Data Pool. Default: 5

    storage_sku StorageSkuResponse

    The Storage SKU. Default: Standard_ZRS.

    name String

    The location name

    encryption Property Map

    Encryption properties of a Data Pool location

    storageAccountCount Number

    The amount of storage accounts provisioned per Data Pool. Default: 5

    storageSku Property Map

    The Storage SKU. Default: Standard_ZRS.

    StorageSku, StorageSkuArgs

    Name string | StorageSkuName

    The SKU name

    name String | StorageSkuName

    The SKU name

    name string | StorageSkuName

    The SKU name

    name str | StorageSkuName

    The SKU name

    StorageSkuName, StorageSkuNameArgs

    Standard_LRS
    Standard_LRS
    Standard_GRS
    Standard_GRS
    Standard_Ragrs
    Standard_Ragrs
    Standard_ZRS
    Standard_ZRS
    Premium_LRS
    Premium_LRS
    Premium_ZRS
    Premium_ZRS
    Standard_Gzrs
    Standard_Gzrs
    Standard_Ragzrs
    Standard_Ragzrs
    StorageSkuName_Standard_LRS
    Standard_LRS
    StorageSkuName_Standard_GRS
    Standard_GRS
    StorageSkuName_Standard_Ragrs
    Standard_Ragrs
    StorageSkuName_Standard_ZRS
    Standard_ZRS
    StorageSkuName_Premium_LRS
    Premium_LRS
    StorageSkuName_Premium_ZRS
    Premium_ZRS
    StorageSkuName_Standard_Gzrs
    Standard_Gzrs
    StorageSkuName_Standard_Ragzrs
    Standard_Ragzrs
    Standard_LRS
    Standard_LRS
    Standard_GRS
    Standard_GRS
    Standard_Ragrs
    Standard_Ragrs
    Standard_ZRS
    Standard_ZRS
    Premium_LRS
    Premium_LRS
    Premium_ZRS
    Premium_ZRS
    Standard_Gzrs
    Standard_Gzrs
    Standard_Ragzrs
    Standard_Ragzrs
    Standard_LRS
    Standard_LRS
    Standard_GRS
    Standard_GRS
    Standard_Ragrs
    Standard_Ragrs
    Standard_ZRS
    Standard_ZRS
    Premium_LRS
    Premium_LRS
    Premium_ZRS
    Premium_ZRS
    Standard_Gzrs
    Standard_Gzrs
    Standard_Ragzrs
    Standard_Ragzrs
    STANDARD_LRS
    Standard_LRS
    STANDARD_GRS
    Standard_GRS
    STANDARD_RAGRS
    Standard_Ragrs
    STANDARD_ZRS
    Standard_ZRS
    PREMIUM_LRS
    Premium_LRS
    PREMIUM_ZRS
    Premium_ZRS
    STANDARD_GZRS
    Standard_Gzrs
    STANDARD_RAGZRS
    Standard_Ragzrs
    "Standard_LRS"
    Standard_LRS
    "Standard_GRS"
    Standard_GRS
    "Standard_Ragrs"
    Standard_Ragrs
    "Standard_ZRS"
    Standard_ZRS
    "Premium_LRS"
    Premium_LRS
    "Premium_ZRS"
    Premium_ZRS
    "Standard_Gzrs"
    Standard_Gzrs
    "Standard_Ragzrs"
    Standard_Ragzrs

    StorageSkuResponse, StorageSkuResponseArgs

    Name string

    The SKU name

    Name string

    The SKU name

    name String

    The SKU name

    name string

    The SKU name

    name str

    The SKU name

    name String

    The SKU name

    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.

    Import

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

    $ pulumi import azure-native:autonomousdevelopmentplatform:DataPool dp1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AutonomousDevelopmentPlatform/accounts/{accountName}/dataPools/{dataPoolName} 
    

    Package Details

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