azure-native.databox.Job
Explore with Pulumi AI
Job Resource. Azure REST API version: 2022-12-01. Prior API version in Azure Native 1.x: 2020-11-01.
Other available API versions: 2023-03-01, 2023-12-01, 2024-02-01-preview, 2024-03-01-preview.
Example Usage
JobsCreate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var job = new AzureNative.DataBox.Job("job", new()
    {
        Details = new AzureNative.DataBox.Inputs.DataBoxJobDetailsArgs
        {
            ContactDetails = new AzureNative.DataBox.Inputs.ContactDetailsArgs
            {
                ContactName = "XXXX XXXX",
                EmailList = new[]
                {
                    "xxxx@xxxx.xxx",
                },
                Phone = "0000000000",
                PhoneExtension = "",
            },
            DataImportDetails = new[]
            {
                new AzureNative.DataBox.Inputs.DataImportDetailsArgs
                {
                    AccountDetails = new AzureNative.DataBox.Inputs.StorageAccountDetailsArgs
                    {
                        DataAccountType = "StorageAccount",
                        StorageAccountId = "/subscriptions/YourSubscriptionId/resourcegroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
                    },
                },
            },
            JobDetailsType = "DataBox",
            ShippingAddress = new AzureNative.DataBox.Inputs.ShippingAddressArgs
            {
                AddressType = AzureNative.DataBox.AddressType.Commercial,
                City = "XXXX XXXX",
                CompanyName = "XXXX XXXX",
                Country = "XX",
                PostalCode = "00000",
                StateOrProvince = "XX",
                StreetAddress1 = "XXXX XXXX",
                StreetAddress2 = "XXXX XXXX",
            },
        },
        JobName = "TestJobName1",
        Location = "westus",
        ResourceGroupName = "YourResourceGroupName",
        Sku = new AzureNative.DataBox.Inputs.SkuArgs
        {
            Name = AzureNative.DataBox.SkuName.DataBox,
        },
        TransferType = AzureNative.DataBox.TransferType.ImportToAzure,
    });
});
package main
import (
	databox "github.com/pulumi/pulumi-azure-native-sdk/databox/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := databox.NewJob(ctx, "job", &databox.JobArgs{
			Details: &databox.DataBoxJobDetailsArgs{
				ContactDetails: &databox.ContactDetailsArgs{
					ContactName: pulumi.String("XXXX XXXX"),
					EmailList: pulumi.StringArray{
						pulumi.String("xxxx@xxxx.xxx"),
					},
					Phone:          pulumi.String("0000000000"),
					PhoneExtension: pulumi.String(""),
				},
				DataImportDetails: databox.DataImportDetailsArray{
					&databox.DataImportDetailsArgs{
						AccountDetails: databox.StorageAccountDetails{
							DataAccountType:  "StorageAccount",
							StorageAccountId: "/subscriptions/YourSubscriptionId/resourcegroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
						},
					},
				},
				JobDetailsType: pulumi.String("DataBox"),
				ShippingAddress: &databox.ShippingAddressArgs{
					AddressType:     pulumi.String(databox.AddressTypeCommercial),
					City:            pulumi.String("XXXX XXXX"),
					CompanyName:     pulumi.String("XXXX XXXX"),
					Country:         pulumi.String("XX"),
					PostalCode:      pulumi.String("00000"),
					StateOrProvince: pulumi.String("XX"),
					StreetAddress1:  pulumi.String("XXXX XXXX"),
					StreetAddress2:  pulumi.String("XXXX XXXX"),
				},
			},
			JobName:           pulumi.String("TestJobName1"),
			Location:          pulumi.String("westus"),
			ResourceGroupName: pulumi.String("YourResourceGroupName"),
			Sku: &databox.SkuArgs{
				Name: pulumi.String(databox.SkuNameDataBox),
			},
			TransferType: pulumi.String(databox.TransferTypeImportToAzure),
		})
		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.databox.Job;
import com.pulumi.azurenative.databox.JobArgs;
import com.pulumi.azurenative.databox.inputs.SkuArgs;
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 job = new Job("job", JobArgs.builder()
            .details(DataBoxCustomerDiskJobDetailsArgs.builder()
                .contactDetails(ContactDetailsArgs.builder()
                    .contactName("XXXX XXXX")
                    .emailList("xxxx@xxxx.xxx")
                    .phone("0000000000")
                    .phoneExtension("")
                    .build())
                .dataImportDetails(DataImportDetailsArgs.builder()
                    .accountDetails(StorageAccountDetailsArgs.builder()
                        .dataAccountType("StorageAccount")
                        .storageAccountId("/subscriptions/YourSubscriptionId/resourcegroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName")
                        .build())
                    .build())
                .jobDetailsType("DataBox")
                .shippingAddress(ShippingAddressArgs.builder()
                    .addressType("Commercial")
                    .city("XXXX XXXX")
                    .companyName("XXXX XXXX")
                    .country("XX")
                    .postalCode("00000")
                    .stateOrProvince("XX")
                    .streetAddress1("XXXX XXXX")
                    .streetAddress2("XXXX XXXX")
                    .build())
                .build())
            .jobName("TestJobName1")
            .location("westus")
            .resourceGroupName("YourResourceGroupName")
            .sku(SkuArgs.builder()
                .name("DataBox")
                .build())
            .transferType("ImportToAzure")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const job = new azure_native.databox.Job("job", {
    details: {
        contactDetails: {
            contactName: "XXXX XXXX",
            emailList: ["xxxx@xxxx.xxx"],
            phone: "0000000000",
            phoneExtension: "",
        },
        dataImportDetails: [{
            accountDetails: {
                dataAccountType: "StorageAccount",
                storageAccountId: "/subscriptions/YourSubscriptionId/resourcegroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
            },
        }],
        jobDetailsType: "DataBox",
        shippingAddress: {
            addressType: azure_native.databox.AddressType.Commercial,
            city: "XXXX XXXX",
            companyName: "XXXX XXXX",
            country: "XX",
            postalCode: "00000",
            stateOrProvince: "XX",
            streetAddress1: "XXXX XXXX",
            streetAddress2: "XXXX XXXX",
        },
    },
    jobName: "TestJobName1",
    location: "westus",
    resourceGroupName: "YourResourceGroupName",
    sku: {
        name: azure_native.databox.SkuName.DataBox,
    },
    transferType: azure_native.databox.TransferType.ImportToAzure,
});
import pulumi
import pulumi_azure_native as azure_native
job = azure_native.databox.Job("job",
    details={
        "contact_details": {
            "contact_name": "XXXX XXXX",
            "email_list": ["xxxx@xxxx.xxx"],
            "phone": "0000000000",
            "phone_extension": "",
        },
        "data_import_details": [{
            "account_details": {
                "data_account_type": "StorageAccount",
                "storage_account_id": "/subscriptions/YourSubscriptionId/resourcegroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
            },
        }],
        "job_details_type": "DataBox",
        "shipping_address": {
            "address_type": azure_native.databox.AddressType.COMMERCIAL,
            "city": "XXXX XXXX",
            "company_name": "XXXX XXXX",
            "country": "XX",
            "postal_code": "00000",
            "state_or_province": "XX",
            "street_address1": "XXXX XXXX",
            "street_address2": "XXXX XXXX",
        },
    },
    job_name="TestJobName1",
    location="westus",
    resource_group_name="YourResourceGroupName",
    sku={
        "name": azure_native.databox.SkuName.DATA_BOX,
    },
    transfer_type=azure_native.databox.TransferType.IMPORT_TO_AZURE)
resources:
  job:
    type: azure-native:databox:Job
    properties:
      details:
        contactDetails:
          contactName: XXXX XXXX
          emailList:
            - xxxx@xxxx.xxx
          phone: '0000000000'
          phoneExtension: ""
        dataImportDetails:
          - accountDetails:
              dataAccountType: StorageAccount
              storageAccountId: /subscriptions/YourSubscriptionId/resourcegroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName
        jobDetailsType: DataBox
        shippingAddress:
          addressType: Commercial
          city: XXXX XXXX
          companyName: XXXX XXXX
          country: XX
          postalCode: '00000'
          stateOrProvince: XX
          streetAddress1: XXXX XXXX
          streetAddress2: XXXX XXXX
      jobName: TestJobName1
      location: westus
      resourceGroupName: YourResourceGroupName
      sku:
        name: DataBox
      transferType: ImportToAzure
JobsCreateDevicePassword
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var job = new AzureNative.DataBox.Job("job", new()
    {
        Details = new AzureNative.DataBox.Inputs.DataBoxJobDetailsArgs
        {
            ContactDetails = new AzureNative.DataBox.Inputs.ContactDetailsArgs
            {
                ContactName = "XXXX XXXX",
                EmailList = new[]
                {
                    "xxxx@xxxx.xxx",
                },
                Phone = "0000000000",
                PhoneExtension = "",
            },
            DataImportDetails = new[]
            {
                new AzureNative.DataBox.Inputs.DataImportDetailsArgs
                {
                    AccountDetails = new AzureNative.DataBox.Inputs.StorageAccountDetailsArgs
                    {
                        DataAccountType = "StorageAccount",
                        SharePassword = "<sharePassword>",
                        StorageAccountId = "/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
                    },
                },
            },
            DevicePassword = "<devicePassword>",
            JobDetailsType = "DataBox",
            ShippingAddress = new AzureNative.DataBox.Inputs.ShippingAddressArgs
            {
                AddressType = AzureNative.DataBox.AddressType.Commercial,
                City = "XXXX XXXX",
                CompanyName = "XXXX XXXX",
                Country = "XX",
                PostalCode = "00000",
                StateOrProvince = "XX",
                StreetAddress1 = "XXXX XXXX",
                StreetAddress2 = "XXXX XXXX",
            },
        },
        JobName = "TestJobName1",
        Location = "westus",
        ResourceGroupName = "YourResourceGroupName",
        Sku = new AzureNative.DataBox.Inputs.SkuArgs
        {
            Name = AzureNative.DataBox.SkuName.DataBox,
        },
        TransferType = AzureNative.DataBox.TransferType.ImportToAzure,
    });
});
package main
import (
	databox "github.com/pulumi/pulumi-azure-native-sdk/databox/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := databox.NewJob(ctx, "job", &databox.JobArgs{
			Details: &databox.DataBoxJobDetailsArgs{
				ContactDetails: &databox.ContactDetailsArgs{
					ContactName: pulumi.String("XXXX XXXX"),
					EmailList: pulumi.StringArray{
						pulumi.String("xxxx@xxxx.xxx"),
					},
					Phone:          pulumi.String("0000000000"),
					PhoneExtension: pulumi.String(""),
				},
				DataImportDetails: databox.DataImportDetailsArray{
					&databox.DataImportDetailsArgs{
						AccountDetails: databox.StorageAccountDetails{
							DataAccountType:  "StorageAccount",
							SharePassword:    "<sharePassword>",
							StorageAccountId: "/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
						},
					},
				},
				DevicePassword: pulumi.String("<devicePassword>"),
				JobDetailsType: pulumi.String("DataBox"),
				ShippingAddress: &databox.ShippingAddressArgs{
					AddressType:     pulumi.String(databox.AddressTypeCommercial),
					City:            pulumi.String("XXXX XXXX"),
					CompanyName:     pulumi.String("XXXX XXXX"),
					Country:         pulumi.String("XX"),
					PostalCode:      pulumi.String("00000"),
					StateOrProvince: pulumi.String("XX"),
					StreetAddress1:  pulumi.String("XXXX XXXX"),
					StreetAddress2:  pulumi.String("XXXX XXXX"),
				},
			},
			JobName:           pulumi.String("TestJobName1"),
			Location:          pulumi.String("westus"),
			ResourceGroupName: pulumi.String("YourResourceGroupName"),
			Sku: &databox.SkuArgs{
				Name: pulumi.String(databox.SkuNameDataBox),
			},
			TransferType: pulumi.String(databox.TransferTypeImportToAzure),
		})
		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.databox.Job;
import com.pulumi.azurenative.databox.JobArgs;
import com.pulumi.azurenative.databox.inputs.SkuArgs;
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 job = new Job("job", JobArgs.builder()
            .details(DataBoxCustomerDiskJobDetailsArgs.builder()
                .contactDetails(ContactDetailsArgs.builder()
                    .contactName("XXXX XXXX")
                    .emailList("xxxx@xxxx.xxx")
                    .phone("0000000000")
                    .phoneExtension("")
                    .build())
                .dataImportDetails(DataImportDetailsArgs.builder()
                    .accountDetails(StorageAccountDetailsArgs.builder()
                        .dataAccountType("StorageAccount")
                        .sharePassword("<sharePassword>")
                        .storageAccountId("/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName")
                        .build())
                    .build())
                .devicePassword("<devicePassword>")
                .jobDetailsType("DataBox")
                .shippingAddress(ShippingAddressArgs.builder()
                    .addressType("Commercial")
                    .city("XXXX XXXX")
                    .companyName("XXXX XXXX")
                    .country("XX")
                    .postalCode("00000")
                    .stateOrProvince("XX")
                    .streetAddress1("XXXX XXXX")
                    .streetAddress2("XXXX XXXX")
                    .build())
                .build())
            .jobName("TestJobName1")
            .location("westus")
            .resourceGroupName("YourResourceGroupName")
            .sku(SkuArgs.builder()
                .name("DataBox")
                .build())
            .transferType("ImportToAzure")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const job = new azure_native.databox.Job("job", {
    details: {
        contactDetails: {
            contactName: "XXXX XXXX",
            emailList: ["xxxx@xxxx.xxx"],
            phone: "0000000000",
            phoneExtension: "",
        },
        dataImportDetails: [{
            accountDetails: {
                dataAccountType: "StorageAccount",
                sharePassword: "<sharePassword>",
                storageAccountId: "/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
            },
        }],
        devicePassword: "<devicePassword>",
        jobDetailsType: "DataBox",
        shippingAddress: {
            addressType: azure_native.databox.AddressType.Commercial,
            city: "XXXX XXXX",
            companyName: "XXXX XXXX",
            country: "XX",
            postalCode: "00000",
            stateOrProvince: "XX",
            streetAddress1: "XXXX XXXX",
            streetAddress2: "XXXX XXXX",
        },
    },
    jobName: "TestJobName1",
    location: "westus",
    resourceGroupName: "YourResourceGroupName",
    sku: {
        name: azure_native.databox.SkuName.DataBox,
    },
    transferType: azure_native.databox.TransferType.ImportToAzure,
});
import pulumi
import pulumi_azure_native as azure_native
job = azure_native.databox.Job("job",
    details={
        "contact_details": {
            "contact_name": "XXXX XXXX",
            "email_list": ["xxxx@xxxx.xxx"],
            "phone": "0000000000",
            "phone_extension": "",
        },
        "data_import_details": [{
            "account_details": {
                "data_account_type": "StorageAccount",
                "share_password": "<sharePassword>",
                "storage_account_id": "/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
            },
        }],
        "device_password": "<devicePassword>",
        "job_details_type": "DataBox",
        "shipping_address": {
            "address_type": azure_native.databox.AddressType.COMMERCIAL,
            "city": "XXXX XXXX",
            "company_name": "XXXX XXXX",
            "country": "XX",
            "postal_code": "00000",
            "state_or_province": "XX",
            "street_address1": "XXXX XXXX",
            "street_address2": "XXXX XXXX",
        },
    },
    job_name="TestJobName1",
    location="westus",
    resource_group_name="YourResourceGroupName",
    sku={
        "name": azure_native.databox.SkuName.DATA_BOX,
    },
    transfer_type=azure_native.databox.TransferType.IMPORT_TO_AZURE)
resources:
  job:
    type: azure-native:databox:Job
    properties:
      details:
        contactDetails:
          contactName: XXXX XXXX
          emailList:
            - xxxx@xxxx.xxx
          phone: '0000000000'
          phoneExtension: ""
        dataImportDetails:
          - accountDetails:
              dataAccountType: StorageAccount
              sharePassword: <sharePassword>
              storageAccountId: /subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName
        devicePassword: <devicePassword>
        jobDetailsType: DataBox
        shippingAddress:
          addressType: Commercial
          city: XXXX XXXX
          companyName: XXXX XXXX
          country: XX
          postalCode: '00000'
          stateOrProvince: XX
          streetAddress1: XXXX XXXX
          streetAddress2: XXXX XXXX
      jobName: TestJobName1
      location: westus
      resourceGroupName: YourResourceGroupName
      sku:
        name: DataBox
      transferType: ImportToAzure
JobsCreateDoubleEncryption
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var job = new AzureNative.DataBox.Job("job", new()
    {
        Details = new AzureNative.DataBox.Inputs.DataBoxJobDetailsArgs
        {
            ContactDetails = new AzureNative.DataBox.Inputs.ContactDetailsArgs
            {
                ContactName = "XXXX XXXX",
                EmailList = new[]
                {
                    "xxxx@xxxx.xxx",
                },
                Phone = "0000000000",
                PhoneExtension = "",
            },
            DataImportDetails = new[]
            {
                new AzureNative.DataBox.Inputs.DataImportDetailsArgs
                {
                    AccountDetails = new AzureNative.DataBox.Inputs.StorageAccountDetailsArgs
                    {
                        DataAccountType = "StorageAccount",
                        StorageAccountId = "/subscriptions/YourSubscriptionId/resourcegroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
                    },
                },
            },
            JobDetailsType = "DataBox",
            Preferences = new AzureNative.DataBox.Inputs.PreferencesArgs
            {
                EncryptionPreferences = new AzureNative.DataBox.Inputs.EncryptionPreferencesArgs
                {
                    DoubleEncryption = AzureNative.DataBox.DoubleEncryption.Enabled,
                },
            },
            ShippingAddress = new AzureNative.DataBox.Inputs.ShippingAddressArgs
            {
                AddressType = AzureNative.DataBox.AddressType.Commercial,
                City = "XXXX XXXX",
                CompanyName = "XXXX XXXX",
                Country = "XX",
                PostalCode = "00000",
                StateOrProvince = "XX",
                StreetAddress1 = "XXXX XXXX",
                StreetAddress2 = "XXXX XXXX",
            },
        },
        JobName = "TestJobName1",
        Location = "westus",
        ResourceGroupName = "YourResourceGroupName",
        Sku = new AzureNative.DataBox.Inputs.SkuArgs
        {
            Name = AzureNative.DataBox.SkuName.DataBox,
        },
        TransferType = AzureNative.DataBox.TransferType.ImportToAzure,
    });
});
package main
import (
	databox "github.com/pulumi/pulumi-azure-native-sdk/databox/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := databox.NewJob(ctx, "job", &databox.JobArgs{
			Details: &databox.DataBoxJobDetailsArgs{
				ContactDetails: &databox.ContactDetailsArgs{
					ContactName: pulumi.String("XXXX XXXX"),
					EmailList: pulumi.StringArray{
						pulumi.String("xxxx@xxxx.xxx"),
					},
					Phone:          pulumi.String("0000000000"),
					PhoneExtension: pulumi.String(""),
				},
				DataImportDetails: databox.DataImportDetailsArray{
					&databox.DataImportDetailsArgs{
						AccountDetails: databox.StorageAccountDetails{
							DataAccountType:  "StorageAccount",
							StorageAccountId: "/subscriptions/YourSubscriptionId/resourcegroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
						},
					},
				},
				JobDetailsType: pulumi.String("DataBox"),
				Preferences: &databox.PreferencesArgs{
					EncryptionPreferences: &databox.EncryptionPreferencesArgs{
						DoubleEncryption: pulumi.String(databox.DoubleEncryptionEnabled),
					},
				},
				ShippingAddress: &databox.ShippingAddressArgs{
					AddressType:     pulumi.String(databox.AddressTypeCommercial),
					City:            pulumi.String("XXXX XXXX"),
					CompanyName:     pulumi.String("XXXX XXXX"),
					Country:         pulumi.String("XX"),
					PostalCode:      pulumi.String("00000"),
					StateOrProvince: pulumi.String("XX"),
					StreetAddress1:  pulumi.String("XXXX XXXX"),
					StreetAddress2:  pulumi.String("XXXX XXXX"),
				},
			},
			JobName:           pulumi.String("TestJobName1"),
			Location:          pulumi.String("westus"),
			ResourceGroupName: pulumi.String("YourResourceGroupName"),
			Sku: &databox.SkuArgs{
				Name: pulumi.String(databox.SkuNameDataBox),
			},
			TransferType: pulumi.String(databox.TransferTypeImportToAzure),
		})
		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.databox.Job;
import com.pulumi.azurenative.databox.JobArgs;
import com.pulumi.azurenative.databox.inputs.SkuArgs;
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 job = new Job("job", JobArgs.builder()
            .details(DataBoxCustomerDiskJobDetailsArgs.builder()
                .contactDetails(ContactDetailsArgs.builder()
                    .contactName("XXXX XXXX")
                    .emailList("xxxx@xxxx.xxx")
                    .phone("0000000000")
                    .phoneExtension("")
                    .build())
                .dataImportDetails(DataImportDetailsArgs.builder()
                    .accountDetails(StorageAccountDetailsArgs.builder()
                        .dataAccountType("StorageAccount")
                        .storageAccountId("/subscriptions/YourSubscriptionId/resourcegroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName")
                        .build())
                    .build())
                .jobDetailsType("DataBox")
                .preferences(PreferencesArgs.builder()
                    .encryptionPreferences(EncryptionPreferencesArgs.builder()
                        .doubleEncryption("Enabled")
                        .build())
                    .build())
                .shippingAddress(ShippingAddressArgs.builder()
                    .addressType("Commercial")
                    .city("XXXX XXXX")
                    .companyName("XXXX XXXX")
                    .country("XX")
                    .postalCode("00000")
                    .stateOrProvince("XX")
                    .streetAddress1("XXXX XXXX")
                    .streetAddress2("XXXX XXXX")
                    .build())
                .build())
            .jobName("TestJobName1")
            .location("westus")
            .resourceGroupName("YourResourceGroupName")
            .sku(SkuArgs.builder()
                .name("DataBox")
                .build())
            .transferType("ImportToAzure")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const job = new azure_native.databox.Job("job", {
    details: {
        contactDetails: {
            contactName: "XXXX XXXX",
            emailList: ["xxxx@xxxx.xxx"],
            phone: "0000000000",
            phoneExtension: "",
        },
        dataImportDetails: [{
            accountDetails: {
                dataAccountType: "StorageAccount",
                storageAccountId: "/subscriptions/YourSubscriptionId/resourcegroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
            },
        }],
        jobDetailsType: "DataBox",
        preferences: {
            encryptionPreferences: {
                doubleEncryption: azure_native.databox.DoubleEncryption.Enabled,
            },
        },
        shippingAddress: {
            addressType: azure_native.databox.AddressType.Commercial,
            city: "XXXX XXXX",
            companyName: "XXXX XXXX",
            country: "XX",
            postalCode: "00000",
            stateOrProvince: "XX",
            streetAddress1: "XXXX XXXX",
            streetAddress2: "XXXX XXXX",
        },
    },
    jobName: "TestJobName1",
    location: "westus",
    resourceGroupName: "YourResourceGroupName",
    sku: {
        name: azure_native.databox.SkuName.DataBox,
    },
    transferType: azure_native.databox.TransferType.ImportToAzure,
});
import pulumi
import pulumi_azure_native as azure_native
job = azure_native.databox.Job("job",
    details={
        "contact_details": {
            "contact_name": "XXXX XXXX",
            "email_list": ["xxxx@xxxx.xxx"],
            "phone": "0000000000",
            "phone_extension": "",
        },
        "data_import_details": [{
            "account_details": {
                "data_account_type": "StorageAccount",
                "storage_account_id": "/subscriptions/YourSubscriptionId/resourcegroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
            },
        }],
        "job_details_type": "DataBox",
        "preferences": {
            "encryption_preferences": {
                "double_encryption": azure_native.databox.DoubleEncryption.ENABLED,
            },
        },
        "shipping_address": {
            "address_type": azure_native.databox.AddressType.COMMERCIAL,
            "city": "XXXX XXXX",
            "company_name": "XXXX XXXX",
            "country": "XX",
            "postal_code": "00000",
            "state_or_province": "XX",
            "street_address1": "XXXX XXXX",
            "street_address2": "XXXX XXXX",
        },
    },
    job_name="TestJobName1",
    location="westus",
    resource_group_name="YourResourceGroupName",
    sku={
        "name": azure_native.databox.SkuName.DATA_BOX,
    },
    transfer_type=azure_native.databox.TransferType.IMPORT_TO_AZURE)
resources:
  job:
    type: azure-native:databox:Job
    properties:
      details:
        contactDetails:
          contactName: XXXX XXXX
          emailList:
            - xxxx@xxxx.xxx
          phone: '0000000000'
          phoneExtension: ""
        dataImportDetails:
          - accountDetails:
              dataAccountType: StorageAccount
              storageAccountId: /subscriptions/YourSubscriptionId/resourcegroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName
        jobDetailsType: DataBox
        preferences:
          encryptionPreferences:
            doubleEncryption: Enabled
        shippingAddress:
          addressType: Commercial
          city: XXXX XXXX
          companyName: XXXX XXXX
          country: XX
          postalCode: '00000'
          stateOrProvince: XX
          streetAddress1: XXXX XXXX
          streetAddress2: XXXX XXXX
      jobName: TestJobName1
      location: westus
      resourceGroupName: YourResourceGroupName
      sku:
        name: DataBox
      transferType: ImportToAzure
JobsCreateExport
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var job = new AzureNative.DataBox.Job("job", new()
    {
        Details = new AzureNative.DataBox.Inputs.DataBoxJobDetailsArgs
        {
            ContactDetails = new AzureNative.DataBox.Inputs.ContactDetailsArgs
            {
                ContactName = "XXXX XXXX",
                EmailList = new[]
                {
                    "xxxx@xxxx.xxx",
                },
                Phone = "0000000000",
                PhoneExtension = "",
            },
            DataExportDetails = new[]
            {
                new AzureNative.DataBox.Inputs.DataExportDetailsArgs
                {
                    AccountDetails = new AzureNative.DataBox.Inputs.StorageAccountDetailsArgs
                    {
                        DataAccountType = "StorageAccount",
                        StorageAccountId = "/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
                    },
                    TransferConfiguration = new AzureNative.DataBox.Inputs.TransferConfigurationArgs
                    {
                        TransferAllDetails = new AzureNative.DataBox.Inputs.TransferConfigurationTransferAllDetailsArgs
                        {
                            Include = new AzureNative.DataBox.Inputs.TransferAllDetailsArgs
                            {
                                DataAccountType = AzureNative.DataBox.DataAccountType.StorageAccount,
                                TransferAllBlobs = true,
                                TransferAllFiles = true,
                            },
                        },
                        TransferConfigurationType = AzureNative.DataBox.TransferConfigurationType.TransferAll,
                    },
                },
            },
            JobDetailsType = "DataBox",
            ShippingAddress = new AzureNative.DataBox.Inputs.ShippingAddressArgs
            {
                AddressType = AzureNative.DataBox.AddressType.Commercial,
                City = "XXXX XXXX",
                CompanyName = "XXXX XXXX",
                Country = "XX",
                PostalCode = "00000",
                StateOrProvince = "XX",
                StreetAddress1 = "XXXX XXXX",
                StreetAddress2 = "XXXX XXXX",
            },
        },
        JobName = "TestJobName1",
        Location = "westus",
        ResourceGroupName = "YourResourceGroupName",
        Sku = new AzureNative.DataBox.Inputs.SkuArgs
        {
            Name = AzureNative.DataBox.SkuName.DataBox,
        },
        TransferType = AzureNative.DataBox.TransferType.ExportFromAzure,
    });
});
package main
import (
	databox "github.com/pulumi/pulumi-azure-native-sdk/databox/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := databox.NewJob(ctx, "job", &databox.JobArgs{
			Details: &databox.DataBoxJobDetailsArgs{
				ContactDetails: &databox.ContactDetailsArgs{
					ContactName: pulumi.String("XXXX XXXX"),
					EmailList: pulumi.StringArray{
						pulumi.String("xxxx@xxxx.xxx"),
					},
					Phone:          pulumi.String("0000000000"),
					PhoneExtension: pulumi.String(""),
				},
				DataExportDetails: databox.DataExportDetailsArray{
					&databox.DataExportDetailsArgs{
						AccountDetails: databox.StorageAccountDetails{
							DataAccountType:  "StorageAccount",
							StorageAccountId: "/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
						},
						TransferConfiguration: &databox.TransferConfigurationArgs{
							TransferAllDetails: &databox.TransferConfigurationTransferAllDetailsArgs{
								Include: &databox.TransferAllDetailsArgs{
									DataAccountType:  pulumi.String(databox.DataAccountTypeStorageAccount),
									TransferAllBlobs: pulumi.Bool(true),
									TransferAllFiles: pulumi.Bool(true),
								},
							},
							TransferConfigurationType: pulumi.String(databox.TransferConfigurationTypeTransferAll),
						},
					},
				},
				JobDetailsType: pulumi.String("DataBox"),
				ShippingAddress: &databox.ShippingAddressArgs{
					AddressType:     pulumi.String(databox.AddressTypeCommercial),
					City:            pulumi.String("XXXX XXXX"),
					CompanyName:     pulumi.String("XXXX XXXX"),
					Country:         pulumi.String("XX"),
					PostalCode:      pulumi.String("00000"),
					StateOrProvince: pulumi.String("XX"),
					StreetAddress1:  pulumi.String("XXXX XXXX"),
					StreetAddress2:  pulumi.String("XXXX XXXX"),
				},
			},
			JobName:           pulumi.String("TestJobName1"),
			Location:          pulumi.String("westus"),
			ResourceGroupName: pulumi.String("YourResourceGroupName"),
			Sku: &databox.SkuArgs{
				Name: pulumi.String(databox.SkuNameDataBox),
			},
			TransferType: pulumi.String(databox.TransferTypeExportFromAzure),
		})
		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.databox.Job;
import com.pulumi.azurenative.databox.JobArgs;
import com.pulumi.azurenative.databox.inputs.SkuArgs;
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 job = new Job("job", JobArgs.builder()
            .details(DataBoxCustomerDiskJobDetailsArgs.builder()
                .contactDetails(ContactDetailsArgs.builder()
                    .contactName("XXXX XXXX")
                    .emailList("xxxx@xxxx.xxx")
                    .phone("0000000000")
                    .phoneExtension("")
                    .build())
                .dataExportDetails(DataExportDetailsArgs.builder()
                    .accountDetails(StorageAccountDetailsArgs.builder()
                        .dataAccountType("StorageAccount")
                        .storageAccountId("/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName")
                        .build())
                    .transferConfiguration(TransferConfigurationArgs.builder()
                        .transferAllDetails(TransferConfigurationTransferAllDetailsArgs.builder()
                            .include(TransferAllDetailsArgs.builder()
                                .dataAccountType("StorageAccount")
                                .transferAllBlobs(true)
                                .transferAllFiles(true)
                                .build())
                            .build())
                        .transferConfigurationType("TransferAll")
                        .build())
                    .build())
                .jobDetailsType("DataBox")
                .shippingAddress(ShippingAddressArgs.builder()
                    .addressType("Commercial")
                    .city("XXXX XXXX")
                    .companyName("XXXX XXXX")
                    .country("XX")
                    .postalCode("00000")
                    .stateOrProvince("XX")
                    .streetAddress1("XXXX XXXX")
                    .streetAddress2("XXXX XXXX")
                    .build())
                .build())
            .jobName("TestJobName1")
            .location("westus")
            .resourceGroupName("YourResourceGroupName")
            .sku(SkuArgs.builder()
                .name("DataBox")
                .build())
            .transferType("ExportFromAzure")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const job = new azure_native.databox.Job("job", {
    details: {
        contactDetails: {
            contactName: "XXXX XXXX",
            emailList: ["xxxx@xxxx.xxx"],
            phone: "0000000000",
            phoneExtension: "",
        },
        dataExportDetails: [{
            accountDetails: {
                dataAccountType: "StorageAccount",
                storageAccountId: "/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
            },
            transferConfiguration: {
                transferAllDetails: {
                    include: {
                        dataAccountType: azure_native.databox.DataAccountType.StorageAccount,
                        transferAllBlobs: true,
                        transferAllFiles: true,
                    },
                },
                transferConfigurationType: azure_native.databox.TransferConfigurationType.TransferAll,
            },
        }],
        jobDetailsType: "DataBox",
        shippingAddress: {
            addressType: azure_native.databox.AddressType.Commercial,
            city: "XXXX XXXX",
            companyName: "XXXX XXXX",
            country: "XX",
            postalCode: "00000",
            stateOrProvince: "XX",
            streetAddress1: "XXXX XXXX",
            streetAddress2: "XXXX XXXX",
        },
    },
    jobName: "TestJobName1",
    location: "westus",
    resourceGroupName: "YourResourceGroupName",
    sku: {
        name: azure_native.databox.SkuName.DataBox,
    },
    transferType: azure_native.databox.TransferType.ExportFromAzure,
});
import pulumi
import pulumi_azure_native as azure_native
job = azure_native.databox.Job("job",
    details={
        "contact_details": {
            "contact_name": "XXXX XXXX",
            "email_list": ["xxxx@xxxx.xxx"],
            "phone": "0000000000",
            "phone_extension": "",
        },
        "data_export_details": [{
            "account_details": {
                "data_account_type": "StorageAccount",
                "storage_account_id": "/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
            },
            "transfer_configuration": {
                "transfer_all_details": {
                    "include": {
                        "data_account_type": azure_native.databox.DataAccountType.STORAGE_ACCOUNT,
                        "transfer_all_blobs": True,
                        "transfer_all_files": True,
                    },
                },
                "transfer_configuration_type": azure_native.databox.TransferConfigurationType.TRANSFER_ALL,
            },
        }],
        "job_details_type": "DataBox",
        "shipping_address": {
            "address_type": azure_native.databox.AddressType.COMMERCIAL,
            "city": "XXXX XXXX",
            "company_name": "XXXX XXXX",
            "country": "XX",
            "postal_code": "00000",
            "state_or_province": "XX",
            "street_address1": "XXXX XXXX",
            "street_address2": "XXXX XXXX",
        },
    },
    job_name="TestJobName1",
    location="westus",
    resource_group_name="YourResourceGroupName",
    sku={
        "name": azure_native.databox.SkuName.DATA_BOX,
    },
    transfer_type=azure_native.databox.TransferType.EXPORT_FROM_AZURE)
resources:
  job:
    type: azure-native:databox:Job
    properties:
      details:
        contactDetails:
          contactName: XXXX XXXX
          emailList:
            - xxxx@xxxx.xxx
          phone: '0000000000'
          phoneExtension: ""
        dataExportDetails:
          - accountDetails:
              dataAccountType: StorageAccount
              storageAccountId: /subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName
            transferConfiguration:
              transferAllDetails:
                include:
                  dataAccountType: StorageAccount
                  transferAllBlobs: true
                  transferAllFiles: true
              transferConfigurationType: TransferAll
        jobDetailsType: DataBox
        shippingAddress:
          addressType: Commercial
          city: XXXX XXXX
          companyName: XXXX XXXX
          country: XX
          postalCode: '00000'
          stateOrProvince: XX
          streetAddress1: XXXX XXXX
          streetAddress2: XXXX XXXX
      jobName: TestJobName1
      location: westus
      resourceGroupName: YourResourceGroupName
      sku:
        name: DataBox
      transferType: ExportFromAzure
Create Job Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Job(name: string, args: JobArgs, opts?: CustomResourceOptions);@overload
def Job(resource_name: str,
        args: JobArgs,
        opts: Optional[ResourceOptions] = None)
@overload
def Job(resource_name: str,
        opts: Optional[ResourceOptions] = None,
        resource_group_name: Optional[str] = None,
        sku: Optional[SkuArgs] = None,
        transfer_type: Optional[Union[str, TransferType]] = None,
        delivery_info: Optional[JobDeliveryInfoArgs] = None,
        delivery_type: Optional[Union[str, JobDeliveryType]] = None,
        details: Optional[Union[DataBoxCustomerDiskJobDetailsArgs, DataBoxDiskJobDetailsArgs, DataBoxHeavyJobDetailsArgs, DataBoxJobDetailsArgs]] = None,
        identity: Optional[ResourceIdentityArgs] = None,
        job_name: Optional[str] = None,
        location: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None)func NewJob(ctx *Context, name string, args JobArgs, opts ...ResourceOption) (*Job, error)public Job(string name, JobArgs args, CustomResourceOptions? opts = null)type: azure-native:databox:Job
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 JobArgs
- 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 JobArgs
- 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 JobArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args JobArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args JobArgs
- 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 examplejobResourceResourceFromDatabox = new AzureNative.DataBox.Job("examplejobResourceResourceFromDatabox", new()
{
    ResourceGroupName = "string",
    Sku = new AzureNative.DataBox.Inputs.SkuArgs
    {
        Name = "string",
        DisplayName = "string",
        Family = "string",
    },
    TransferType = "string",
    DeliveryInfo = new AzureNative.DataBox.Inputs.JobDeliveryInfoArgs
    {
        ScheduledDateTime = "string",
    },
    DeliveryType = "string",
    Details = new AzureNative.DataBox.Inputs.DataBoxCustomerDiskJobDetailsArgs
    {
        ContactDetails = new AzureNative.DataBox.Inputs.ContactDetailsArgs
        {
            ContactName = "string",
            EmailList = new[]
            {
                "string",
            },
            Phone = "string",
            Mobile = "string",
            NotificationPreference = new[]
            {
                new AzureNative.DataBox.Inputs.NotificationPreferenceArgs
                {
                    SendNotification = false,
                    StageName = "string",
                },
            },
            PhoneExtension = "string",
        },
        JobDetailsType = "DataBoxCustomerDisk",
        ReturnToCustomerPackageDetails = new AzureNative.DataBox.Inputs.PackageCarrierDetailsArgs
        {
            CarrierAccountNumber = "string",
            CarrierName = "string",
            TrackingId = "string",
        },
        DataExportDetails = new[]
        {
            new AzureNative.DataBox.Inputs.DataExportDetailsArgs
            {
                AccountDetails = new AzureNative.DataBox.Inputs.ManagedDiskDetailsArgs
                {
                    DataAccountType = "ManagedDisk",
                    ResourceGroupId = "string",
                    StagingStorageAccountId = "string",
                    SharePassword = "string",
                },
                TransferConfiguration = new AzureNative.DataBox.Inputs.TransferConfigurationArgs
                {
                    TransferConfigurationType = "string",
                    TransferAllDetails = new AzureNative.DataBox.Inputs.TransferConfigurationTransferAllDetailsArgs
                    {
                        Include = new AzureNative.DataBox.Inputs.TransferAllDetailsArgs
                        {
                            DataAccountType = "string",
                            TransferAllBlobs = false,
                            TransferAllFiles = false,
                        },
                    },
                    TransferFilterDetails = new AzureNative.DataBox.Inputs.TransferConfigurationTransferFilterDetailsArgs
                    {
                        Include = new AzureNative.DataBox.Inputs.TransferFilterDetailsArgs
                        {
                            DataAccountType = "string",
                            AzureFileFilterDetails = new AzureNative.DataBox.Inputs.AzureFileFilterDetailsArgs
                            {
                                FilePathList = new[]
                                {
                                    "string",
                                },
                                FilePrefixList = new[]
                                {
                                    "string",
                                },
                                FileShareList = new[]
                                {
                                    "string",
                                },
                            },
                            BlobFilterDetails = new AzureNative.DataBox.Inputs.BlobFilterDetailsArgs
                            {
                                BlobPathList = new[]
                                {
                                    "string",
                                },
                                BlobPrefixList = new[]
                                {
                                    "string",
                                },
                                ContainerList = new[]
                                {
                                    "string",
                                },
                            },
                            FilterFileDetails = new[]
                            {
                                new AzureNative.DataBox.Inputs.FilterFileDetailsArgs
                                {
                                    FilterFilePath = "string",
                                    FilterFileType = "string",
                                },
                            },
                        },
                    },
                },
                LogCollectionLevel = "string",
            },
        },
        DataImportDetails = new[]
        {
            new AzureNative.DataBox.Inputs.DataImportDetailsArgs
            {
                AccountDetails = new AzureNative.DataBox.Inputs.ManagedDiskDetailsArgs
                {
                    DataAccountType = "ManagedDisk",
                    ResourceGroupId = "string",
                    StagingStorageAccountId = "string",
                    SharePassword = "string",
                },
                LogCollectionLevel = "string",
            },
        },
        EnableManifestBackup = false,
        ExpectedDataSizeInTeraBytes = 0,
        ImportDiskDetailsCollection = 
        {
            { "string", new AzureNative.DataBox.Inputs.ImportDiskDetailsArgs
            {
                BitLockerKey = "string",
                ManifestFile = "string",
                ManifestHash = "string",
            } },
        },
        KeyEncryptionKey = new AzureNative.DataBox.Inputs.KeyEncryptionKeyArgs
        {
            KekType = "string",
            IdentityProperties = new AzureNative.DataBox.Inputs.IdentityPropertiesArgs
            {
                Type = "string",
                UserAssigned = new AzureNative.DataBox.Inputs.UserAssignedPropertiesArgs
                {
                    ResourceId = "string",
                },
            },
            KekUrl = "string",
            KekVaultResourceID = "string",
        },
        Preferences = new AzureNative.DataBox.Inputs.PreferencesArgs
        {
            EncryptionPreferences = new AzureNative.DataBox.Inputs.EncryptionPreferencesArgs
            {
                DoubleEncryption = "string",
                HardwareEncryption = "string",
            },
            PreferredDataCenterRegion = new[]
            {
                "string",
            },
            ReverseTransportPreferences = new AzureNative.DataBox.Inputs.TransportPreferencesArgs
            {
                PreferredShipmentType = "string",
            },
            StorageAccountAccessTierPreferences = new[]
            {
                "string",
            },
            TransportPreferences = new AzureNative.DataBox.Inputs.TransportPreferencesArgs
            {
                PreferredShipmentType = "string",
            },
        },
        ReverseShippingDetails = new AzureNative.DataBox.Inputs.ReverseShippingDetailsArgs
        {
            ContactDetails = new AzureNative.DataBox.Inputs.ContactInfoArgs
            {
                ContactName = "string",
                Phone = "string",
                Mobile = "string",
                PhoneExtension = "string",
            },
            ShippingAddress = new AzureNative.DataBox.Inputs.ShippingAddressArgs
            {
                Country = "string",
                StreetAddress1 = "string",
                AddressType = "string",
                City = "string",
                CompanyName = "string",
                PostalCode = "string",
                SkipAddressValidation = false,
                StateOrProvince = "string",
                StreetAddress2 = "string",
                StreetAddress3 = "string",
                TaxIdentificationNumber = "string",
                ZipExtendedCode = "string",
            },
        },
        ShippingAddress = new AzureNative.DataBox.Inputs.ShippingAddressArgs
        {
            Country = "string",
            StreetAddress1 = "string",
            AddressType = "string",
            City = "string",
            CompanyName = "string",
            PostalCode = "string",
            SkipAddressValidation = false,
            StateOrProvince = "string",
            StreetAddress2 = "string",
            StreetAddress3 = "string",
            TaxIdentificationNumber = "string",
            ZipExtendedCode = "string",
        },
    },
    Identity = new AzureNative.DataBox.Inputs.ResourceIdentityArgs
    {
        Type = "string",
        UserAssignedIdentities = new[]
        {
            "string",
        },
    },
    JobName = "string",
    Location = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := databox.NewJob(ctx, "examplejobResourceResourceFromDatabox", &databox.JobArgs{
	ResourceGroupName: pulumi.String("string"),
	Sku: &databox.SkuArgs{
		Name:        pulumi.String("string"),
		DisplayName: pulumi.String("string"),
		Family:      pulumi.String("string"),
	},
	TransferType: pulumi.String("string"),
	DeliveryInfo: &databox.JobDeliveryInfoArgs{
		ScheduledDateTime: pulumi.String("string"),
	},
	DeliveryType: pulumi.String("string"),
	Details: &databox.DataBoxCustomerDiskJobDetailsArgs{
		ContactDetails: &databox.ContactDetailsArgs{
			ContactName: pulumi.String("string"),
			EmailList: pulumi.StringArray{
				pulumi.String("string"),
			},
			Phone:  pulumi.String("string"),
			Mobile: pulumi.String("string"),
			NotificationPreference: databox.NotificationPreferenceArray{
				&databox.NotificationPreferenceArgs{
					SendNotification: pulumi.Bool(false),
					StageName:        pulumi.String("string"),
				},
			},
			PhoneExtension: pulumi.String("string"),
		},
		JobDetailsType: pulumi.String("DataBoxCustomerDisk"),
		ReturnToCustomerPackageDetails: &databox.PackageCarrierDetailsArgs{
			CarrierAccountNumber: pulumi.String("string"),
			CarrierName:          pulumi.String("string"),
			TrackingId:           pulumi.String("string"),
		},
		DataExportDetails: databox.DataExportDetailsArray{
			&databox.DataExportDetailsArgs{
				AccountDetails: databox.ManagedDiskDetails{
					DataAccountType:         "ManagedDisk",
					ResourceGroupId:         "string",
					StagingStorageAccountId: "string",
					SharePassword:           "string",
				},
				TransferConfiguration: &databox.TransferConfigurationArgs{
					TransferConfigurationType: pulumi.String("string"),
					TransferAllDetails: &databox.TransferConfigurationTransferAllDetailsArgs{
						Include: &databox.TransferAllDetailsArgs{
							DataAccountType:  pulumi.String("string"),
							TransferAllBlobs: pulumi.Bool(false),
							TransferAllFiles: pulumi.Bool(false),
						},
					},
					TransferFilterDetails: &databox.TransferConfigurationTransferFilterDetailsArgs{
						Include: &databox.TransferFilterDetailsArgs{
							DataAccountType: pulumi.String("string"),
							AzureFileFilterDetails: &databox.AzureFileFilterDetailsArgs{
								FilePathList: pulumi.StringArray{
									pulumi.String("string"),
								},
								FilePrefixList: pulumi.StringArray{
									pulumi.String("string"),
								},
								FileShareList: pulumi.StringArray{
									pulumi.String("string"),
								},
							},
							BlobFilterDetails: &databox.BlobFilterDetailsArgs{
								BlobPathList: pulumi.StringArray{
									pulumi.String("string"),
								},
								BlobPrefixList: pulumi.StringArray{
									pulumi.String("string"),
								},
								ContainerList: pulumi.StringArray{
									pulumi.String("string"),
								},
							},
							FilterFileDetails: databox.FilterFileDetailsArray{
								&databox.FilterFileDetailsArgs{
									FilterFilePath: pulumi.String("string"),
									FilterFileType: pulumi.String("string"),
								},
							},
						},
					},
				},
				LogCollectionLevel: pulumi.String("string"),
			},
		},
		DataImportDetails: databox.DataImportDetailsArray{
			&databox.DataImportDetailsArgs{
				AccountDetails: databox.ManagedDiskDetails{
					DataAccountType:         "ManagedDisk",
					ResourceGroupId:         "string",
					StagingStorageAccountId: "string",
					SharePassword:           "string",
				},
				LogCollectionLevel: pulumi.String("string"),
			},
		},
		EnableManifestBackup:        pulumi.Bool(false),
		ExpectedDataSizeInTeraBytes: pulumi.Int(0),
		ImportDiskDetailsCollection: databox.ImportDiskDetailsMap{
			"string": &databox.ImportDiskDetailsArgs{
				BitLockerKey: pulumi.String("string"),
				ManifestFile: pulumi.String("string"),
				ManifestHash: pulumi.String("string"),
			},
		},
		KeyEncryptionKey: &databox.KeyEncryptionKeyArgs{
			KekType: pulumi.String("string"),
			IdentityProperties: &databox.IdentityPropertiesArgs{
				Type: pulumi.String("string"),
				UserAssigned: &databox.UserAssignedPropertiesArgs{
					ResourceId: pulumi.String("string"),
				},
			},
			KekUrl:             pulumi.String("string"),
			KekVaultResourceID: pulumi.String("string"),
		},
		Preferences: &databox.PreferencesArgs{
			EncryptionPreferences: &databox.EncryptionPreferencesArgs{
				DoubleEncryption:   pulumi.String("string"),
				HardwareEncryption: pulumi.String("string"),
			},
			PreferredDataCenterRegion: pulumi.StringArray{
				pulumi.String("string"),
			},
			ReverseTransportPreferences: &databox.TransportPreferencesArgs{
				PreferredShipmentType: pulumi.String("string"),
			},
			StorageAccountAccessTierPreferences: pulumi.StringArray{
				pulumi.String("string"),
			},
			TransportPreferences: &databox.TransportPreferencesArgs{
				PreferredShipmentType: pulumi.String("string"),
			},
		},
		ReverseShippingDetails: &databox.ReverseShippingDetailsArgs{
			ContactDetails: &databox.ContactInfoArgs{
				ContactName:    pulumi.String("string"),
				Phone:          pulumi.String("string"),
				Mobile:         pulumi.String("string"),
				PhoneExtension: pulumi.String("string"),
			},
			ShippingAddress: &databox.ShippingAddressArgs{
				Country:                 pulumi.String("string"),
				StreetAddress1:          pulumi.String("string"),
				AddressType:             pulumi.String("string"),
				City:                    pulumi.String("string"),
				CompanyName:             pulumi.String("string"),
				PostalCode:              pulumi.String("string"),
				SkipAddressValidation:   pulumi.Bool(false),
				StateOrProvince:         pulumi.String("string"),
				StreetAddress2:          pulumi.String("string"),
				StreetAddress3:          pulumi.String("string"),
				TaxIdentificationNumber: pulumi.String("string"),
				ZipExtendedCode:         pulumi.String("string"),
			},
		},
		ShippingAddress: &databox.ShippingAddressArgs{
			Country:                 pulumi.String("string"),
			StreetAddress1:          pulumi.String("string"),
			AddressType:             pulumi.String("string"),
			City:                    pulumi.String("string"),
			CompanyName:             pulumi.String("string"),
			PostalCode:              pulumi.String("string"),
			SkipAddressValidation:   pulumi.Bool(false),
			StateOrProvince:         pulumi.String("string"),
			StreetAddress2:          pulumi.String("string"),
			StreetAddress3:          pulumi.String("string"),
			TaxIdentificationNumber: pulumi.String("string"),
			ZipExtendedCode:         pulumi.String("string"),
		},
	},
	Identity: &databox.ResourceIdentityArgs{
		Type: pulumi.String("string"),
		UserAssignedIdentities: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	JobName:  pulumi.String("string"),
	Location: pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var examplejobResourceResourceFromDatabox = new Job("examplejobResourceResourceFromDatabox", JobArgs.builder()
    .resourceGroupName("string")
    .sku(SkuArgs.builder()
        .name("string")
        .displayName("string")
        .family("string")
        .build())
    .transferType("string")
    .deliveryInfo(JobDeliveryInfoArgs.builder()
        .scheduledDateTime("string")
        .build())
    .deliveryType("string")
    .details(DataBoxCustomerDiskJobDetailsArgs.builder()
        .contactDetails(ContactDetailsArgs.builder()
            .contactName("string")
            .emailList("string")
            .phone("string")
            .mobile("string")
            .notificationPreference(NotificationPreferenceArgs.builder()
                .sendNotification(false)
                .stageName("string")
                .build())
            .phoneExtension("string")
            .build())
        .jobDetailsType("DataBoxCustomerDisk")
        .returnToCustomerPackageDetails(PackageCarrierDetailsArgs.builder()
            .carrierAccountNumber("string")
            .carrierName("string")
            .trackingId("string")
            .build())
        .dataExportDetails(DataExportDetailsArgs.builder()
            .accountDetails(ManagedDiskDetailsArgs.builder()
                .dataAccountType("ManagedDisk")
                .resourceGroupId("string")
                .stagingStorageAccountId("string")
                .sharePassword("string")
                .build())
            .transferConfiguration(TransferConfigurationArgs.builder()
                .transferConfigurationType("string")
                .transferAllDetails(TransferConfigurationTransferAllDetailsArgs.builder()
                    .include(TransferAllDetailsArgs.builder()
                        .dataAccountType("string")
                        .transferAllBlobs(false)
                        .transferAllFiles(false)
                        .build())
                    .build())
                .transferFilterDetails(TransferConfigurationTransferFilterDetailsArgs.builder()
                    .include(TransferFilterDetailsArgs.builder()
                        .dataAccountType("string")
                        .azureFileFilterDetails(AzureFileFilterDetailsArgs.builder()
                            .filePathList("string")
                            .filePrefixList("string")
                            .fileShareList("string")
                            .build())
                        .blobFilterDetails(BlobFilterDetailsArgs.builder()
                            .blobPathList("string")
                            .blobPrefixList("string")
                            .containerList("string")
                            .build())
                        .filterFileDetails(FilterFileDetailsArgs.builder()
                            .filterFilePath("string")
                            .filterFileType("string")
                            .build())
                        .build())
                    .build())
                .build())
            .logCollectionLevel("string")
            .build())
        .dataImportDetails(DataImportDetailsArgs.builder()
            .accountDetails(ManagedDiskDetailsArgs.builder()
                .dataAccountType("ManagedDisk")
                .resourceGroupId("string")
                .stagingStorageAccountId("string")
                .sharePassword("string")
                .build())
            .logCollectionLevel("string")
            .build())
        .enableManifestBackup(false)
        .expectedDataSizeInTeraBytes(0)
        .importDiskDetailsCollection(Map.of("string", Map.ofEntries(
            Map.entry("bitLockerKey", "string"),
            Map.entry("manifestFile", "string"),
            Map.entry("manifestHash", "string")
        )))
        .keyEncryptionKey(KeyEncryptionKeyArgs.builder()
            .kekType("string")
            .identityProperties(IdentityPropertiesArgs.builder()
                .type("string")
                .userAssigned(UserAssignedPropertiesArgs.builder()
                    .resourceId("string")
                    .build())
                .build())
            .kekUrl("string")
            .kekVaultResourceID("string")
            .build())
        .preferences(PreferencesArgs.builder()
            .encryptionPreferences(EncryptionPreferencesArgs.builder()
                .doubleEncryption("string")
                .hardwareEncryption("string")
                .build())
            .preferredDataCenterRegion("string")
            .reverseTransportPreferences(TransportPreferencesArgs.builder()
                .preferredShipmentType("string")
                .build())
            .storageAccountAccessTierPreferences("string")
            .transportPreferences(TransportPreferencesArgs.builder()
                .preferredShipmentType("string")
                .build())
            .build())
        .reverseShippingDetails(ReverseShippingDetailsArgs.builder()
            .contactDetails(ContactInfoArgs.builder()
                .contactName("string")
                .phone("string")
                .mobile("string")
                .phoneExtension("string")
                .build())
            .shippingAddress(ShippingAddressArgs.builder()
                .country("string")
                .streetAddress1("string")
                .addressType("string")
                .city("string")
                .companyName("string")
                .postalCode("string")
                .skipAddressValidation(false)
                .stateOrProvince("string")
                .streetAddress2("string")
                .streetAddress3("string")
                .taxIdentificationNumber("string")
                .zipExtendedCode("string")
                .build())
            .build())
        .shippingAddress(ShippingAddressArgs.builder()
            .country("string")
            .streetAddress1("string")
            .addressType("string")
            .city("string")
            .companyName("string")
            .postalCode("string")
            .skipAddressValidation(false)
            .stateOrProvince("string")
            .streetAddress2("string")
            .streetAddress3("string")
            .taxIdentificationNumber("string")
            .zipExtendedCode("string")
            .build())
        .build())
    .identity(ResourceIdentityArgs.builder()
        .type("string")
        .userAssignedIdentities("string")
        .build())
    .jobName("string")
    .location("string")
    .tags(Map.of("string", "string"))
    .build());
examplejob_resource_resource_from_databox = azure_native.databox.Job("examplejobResourceResourceFromDatabox",
    resource_group_name="string",
    sku={
        "name": "string",
        "display_name": "string",
        "family": "string",
    },
    transfer_type="string",
    delivery_info={
        "scheduled_date_time": "string",
    },
    delivery_type="string",
    details={
        "contact_details": {
            "contact_name": "string",
            "email_list": ["string"],
            "phone": "string",
            "mobile": "string",
            "notification_preference": [{
                "send_notification": False,
                "stage_name": "string",
            }],
            "phone_extension": "string",
        },
        "job_details_type": "DataBoxCustomerDisk",
        "return_to_customer_package_details": {
            "carrier_account_number": "string",
            "carrier_name": "string",
            "tracking_id": "string",
        },
        "data_export_details": [{
            "account_details": {
                "data_account_type": "ManagedDisk",
                "resource_group_id": "string",
                "staging_storage_account_id": "string",
                "share_password": "string",
            },
            "transfer_configuration": {
                "transfer_configuration_type": "string",
                "transfer_all_details": {
                    "include": {
                        "data_account_type": "string",
                        "transfer_all_blobs": False,
                        "transfer_all_files": False,
                    },
                },
                "transfer_filter_details": {
                    "include": {
                        "data_account_type": "string",
                        "azure_file_filter_details": {
                            "file_path_list": ["string"],
                            "file_prefix_list": ["string"],
                            "file_share_list": ["string"],
                        },
                        "blob_filter_details": {
                            "blob_path_list": ["string"],
                            "blob_prefix_list": ["string"],
                            "container_list": ["string"],
                        },
                        "filter_file_details": [{
                            "filter_file_path": "string",
                            "filter_file_type": "string",
                        }],
                    },
                },
            },
            "log_collection_level": "string",
        }],
        "data_import_details": [{
            "account_details": {
                "data_account_type": "ManagedDisk",
                "resource_group_id": "string",
                "staging_storage_account_id": "string",
                "share_password": "string",
            },
            "log_collection_level": "string",
        }],
        "enable_manifest_backup": False,
        "expected_data_size_in_tera_bytes": 0,
        "import_disk_details_collection": {
            "string": {
                "bit_locker_key": "string",
                "manifest_file": "string",
                "manifest_hash": "string",
            },
        },
        "key_encryption_key": {
            "kek_type": "string",
            "identity_properties": {
                "type": "string",
                "user_assigned": {
                    "resource_id": "string",
                },
            },
            "kek_url": "string",
            "kek_vault_resource_id": "string",
        },
        "preferences": {
            "encryption_preferences": {
                "double_encryption": "string",
                "hardware_encryption": "string",
            },
            "preferred_data_center_region": ["string"],
            "reverse_transport_preferences": {
                "preferred_shipment_type": "string",
            },
            "storage_account_access_tier_preferences": ["string"],
            "transport_preferences": {
                "preferred_shipment_type": "string",
            },
        },
        "reverse_shipping_details": {
            "contact_details": {
                "contact_name": "string",
                "phone": "string",
                "mobile": "string",
                "phone_extension": "string",
            },
            "shipping_address": {
                "country": "string",
                "street_address1": "string",
                "address_type": "string",
                "city": "string",
                "company_name": "string",
                "postal_code": "string",
                "skip_address_validation": False,
                "state_or_province": "string",
                "street_address2": "string",
                "street_address3": "string",
                "tax_identification_number": "string",
                "zip_extended_code": "string",
            },
        },
        "shipping_address": {
            "country": "string",
            "street_address1": "string",
            "address_type": "string",
            "city": "string",
            "company_name": "string",
            "postal_code": "string",
            "skip_address_validation": False,
            "state_or_province": "string",
            "street_address2": "string",
            "street_address3": "string",
            "tax_identification_number": "string",
            "zip_extended_code": "string",
        },
    },
    identity={
        "type": "string",
        "user_assigned_identities": ["string"],
    },
    job_name="string",
    location="string",
    tags={
        "string": "string",
    })
const examplejobResourceResourceFromDatabox = new azure_native.databox.Job("examplejobResourceResourceFromDatabox", {
    resourceGroupName: "string",
    sku: {
        name: "string",
        displayName: "string",
        family: "string",
    },
    transferType: "string",
    deliveryInfo: {
        scheduledDateTime: "string",
    },
    deliveryType: "string",
    details: {
        contactDetails: {
            contactName: "string",
            emailList: ["string"],
            phone: "string",
            mobile: "string",
            notificationPreference: [{
                sendNotification: false,
                stageName: "string",
            }],
            phoneExtension: "string",
        },
        jobDetailsType: "DataBoxCustomerDisk",
        returnToCustomerPackageDetails: {
            carrierAccountNumber: "string",
            carrierName: "string",
            trackingId: "string",
        },
        dataExportDetails: [{
            accountDetails: {
                dataAccountType: "ManagedDisk",
                resourceGroupId: "string",
                stagingStorageAccountId: "string",
                sharePassword: "string",
            },
            transferConfiguration: {
                transferConfigurationType: "string",
                transferAllDetails: {
                    include: {
                        dataAccountType: "string",
                        transferAllBlobs: false,
                        transferAllFiles: false,
                    },
                },
                transferFilterDetails: {
                    include: {
                        dataAccountType: "string",
                        azureFileFilterDetails: {
                            filePathList: ["string"],
                            filePrefixList: ["string"],
                            fileShareList: ["string"],
                        },
                        blobFilterDetails: {
                            blobPathList: ["string"],
                            blobPrefixList: ["string"],
                            containerList: ["string"],
                        },
                        filterFileDetails: [{
                            filterFilePath: "string",
                            filterFileType: "string",
                        }],
                    },
                },
            },
            logCollectionLevel: "string",
        }],
        dataImportDetails: [{
            accountDetails: {
                dataAccountType: "ManagedDisk",
                resourceGroupId: "string",
                stagingStorageAccountId: "string",
                sharePassword: "string",
            },
            logCollectionLevel: "string",
        }],
        enableManifestBackup: false,
        expectedDataSizeInTeraBytes: 0,
        importDiskDetailsCollection: {
            string: {
                bitLockerKey: "string",
                manifestFile: "string",
                manifestHash: "string",
            },
        },
        keyEncryptionKey: {
            kekType: "string",
            identityProperties: {
                type: "string",
                userAssigned: {
                    resourceId: "string",
                },
            },
            kekUrl: "string",
            kekVaultResourceID: "string",
        },
        preferences: {
            encryptionPreferences: {
                doubleEncryption: "string",
                hardwareEncryption: "string",
            },
            preferredDataCenterRegion: ["string"],
            reverseTransportPreferences: {
                preferredShipmentType: "string",
            },
            storageAccountAccessTierPreferences: ["string"],
            transportPreferences: {
                preferredShipmentType: "string",
            },
        },
        reverseShippingDetails: {
            contactDetails: {
                contactName: "string",
                phone: "string",
                mobile: "string",
                phoneExtension: "string",
            },
            shippingAddress: {
                country: "string",
                streetAddress1: "string",
                addressType: "string",
                city: "string",
                companyName: "string",
                postalCode: "string",
                skipAddressValidation: false,
                stateOrProvince: "string",
                streetAddress2: "string",
                streetAddress3: "string",
                taxIdentificationNumber: "string",
                zipExtendedCode: "string",
            },
        },
        shippingAddress: {
            country: "string",
            streetAddress1: "string",
            addressType: "string",
            city: "string",
            companyName: "string",
            postalCode: "string",
            skipAddressValidation: false,
            stateOrProvince: "string",
            streetAddress2: "string",
            streetAddress3: "string",
            taxIdentificationNumber: "string",
            zipExtendedCode: "string",
        },
    },
    identity: {
        type: "string",
        userAssignedIdentities: ["string"],
    },
    jobName: "string",
    location: "string",
    tags: {
        string: "string",
    },
});
type: azure-native:databox:Job
properties:
    deliveryInfo:
        scheduledDateTime: string
    deliveryType: string
    details:
        contactDetails:
            contactName: string
            emailList:
                - string
            mobile: string
            notificationPreference:
                - sendNotification: false
                  stageName: string
            phone: string
            phoneExtension: string
        dataExportDetails:
            - accountDetails:
                dataAccountType: ManagedDisk
                resourceGroupId: string
                sharePassword: string
                stagingStorageAccountId: string
              logCollectionLevel: string
              transferConfiguration:
                transferAllDetails:
                    include:
                        dataAccountType: string
                        transferAllBlobs: false
                        transferAllFiles: false
                transferConfigurationType: string
                transferFilterDetails:
                    include:
                        azureFileFilterDetails:
                            filePathList:
                                - string
                            filePrefixList:
                                - string
                            fileShareList:
                                - string
                        blobFilterDetails:
                            blobPathList:
                                - string
                            blobPrefixList:
                                - string
                            containerList:
                                - string
                        dataAccountType: string
                        filterFileDetails:
                            - filterFilePath: string
                              filterFileType: string
        dataImportDetails:
            - accountDetails:
                dataAccountType: ManagedDisk
                resourceGroupId: string
                sharePassword: string
                stagingStorageAccountId: string
              logCollectionLevel: string
        enableManifestBackup: false
        expectedDataSizeInTeraBytes: 0
        importDiskDetailsCollection:
            string:
                bitLockerKey: string
                manifestFile: string
                manifestHash: string
        jobDetailsType: DataBoxCustomerDisk
        keyEncryptionKey:
            identityProperties:
                type: string
                userAssigned:
                    resourceId: string
            kekType: string
            kekUrl: string
            kekVaultResourceID: string
        preferences:
            encryptionPreferences:
                doubleEncryption: string
                hardwareEncryption: string
            preferredDataCenterRegion:
                - string
            reverseTransportPreferences:
                preferredShipmentType: string
            storageAccountAccessTierPreferences:
                - string
            transportPreferences:
                preferredShipmentType: string
        returnToCustomerPackageDetails:
            carrierAccountNumber: string
            carrierName: string
            trackingId: string
        reverseShippingDetails:
            contactDetails:
                contactName: string
                mobile: string
                phone: string
                phoneExtension: string
            shippingAddress:
                addressType: string
                city: string
                companyName: string
                country: string
                postalCode: string
                skipAddressValidation: false
                stateOrProvince: string
                streetAddress1: string
                streetAddress2: string
                streetAddress3: string
                taxIdentificationNumber: string
                zipExtendedCode: string
        shippingAddress:
            addressType: string
            city: string
            companyName: string
            country: string
            postalCode: string
            skipAddressValidation: false
            stateOrProvince: string
            streetAddress1: string
            streetAddress2: string
            streetAddress3: string
            taxIdentificationNumber: string
            zipExtendedCode: string
    identity:
        type: string
        userAssignedIdentities:
            - string
    jobName: string
    location: string
    resourceGroupName: string
    sku:
        displayName: string
        family: string
        name: string
    tags:
        string: string
    transferType: string
Job 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 Job resource accepts the following input properties:
- ResourceGroup stringName 
- The Resource Group Name
- Sku
Pulumi.Azure Native. Data Box. Inputs. Sku 
- The sku type.
- TransferType string | Pulumi.Azure Native. Data Box. Transfer Type 
- Type of the data transfer.
- DeliveryInfo Pulumi.Azure Native. Data Box. Inputs. Job Delivery Info 
- Delivery Info of Job.
- DeliveryType string | Pulumi.Azure Native. Data Box. Job Delivery Type 
- Delivery type of Job.
- Details
Pulumi.Azure | Pulumi.Native. Data Box. Inputs. Data Box Customer Disk Job Details Azure | Pulumi.Native. Data Box. Inputs. Data Box Disk Job Details Azure | Pulumi.Native. Data Box. Inputs. Data Box Heavy Job Details Azure Native. Data Box. Inputs. Data Box Job Details 
- Details of a job run. This field will only be sent for expand details filter.
- Identity
Pulumi.Azure Native. Data Box. Inputs. Resource Identity 
- Msi identity of the resource
- JobName string
- The name of the job Resource within the specified resource group. job names must be between 3 and 24 characters in length and use any alphanumeric and underscore only
- Location string
- The location of the resource. This will be one of the supported and registered Azure Regions (e.g. West US, East US, Southeast Asia, etc.). The region of a resource cannot be changed once it is created, but if an identical region is specified on update the request will succeed.
- Dictionary<string, string>
- The list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups).
- ResourceGroup stringName 
- The Resource Group Name
- Sku
SkuArgs 
- The sku type.
- TransferType string | TransferType 
- Type of the data transfer.
- DeliveryInfo JobDelivery Info Args 
- Delivery Info of Job.
- DeliveryType string | JobDelivery Type 
- Delivery type of Job.
- Details
DataBox | DataCustomer Disk Job Details Args Box | DataDisk Job Details Args Box | DataHeavy Job Details Args Box Job Details Args 
- Details of a job run. This field will only be sent for expand details filter.
- Identity
ResourceIdentity Args 
- Msi identity of the resource
- JobName string
- The name of the job Resource within the specified resource group. job names must be between 3 and 24 characters in length and use any alphanumeric and underscore only
- Location string
- The location of the resource. This will be one of the supported and registered Azure Regions (e.g. West US, East US, Southeast Asia, etc.). The region of a resource cannot be changed once it is created, but if an identical region is specified on update the request will succeed.
- map[string]string
- The list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups).
- resourceGroup StringName 
- The Resource Group Name
- sku Sku
- The sku type.
- transferType String | TransferType 
- Type of the data transfer.
- deliveryInfo JobDelivery Info 
- Delivery Info of Job.
- deliveryType String | JobDelivery Type 
- Delivery type of Job.
- details
DataBox | DataCustomer Disk Job Details Box | DataDisk Job Details Box | DataHeavy Job Details Box Job Details 
- Details of a job run. This field will only be sent for expand details filter.
- identity
ResourceIdentity 
- Msi identity of the resource
- jobName String
- The name of the job Resource within the specified resource group. job names must be between 3 and 24 characters in length and use any alphanumeric and underscore only
- location String
- The location of the resource. This will be one of the supported and registered Azure Regions (e.g. West US, East US, Southeast Asia, etc.). The region of a resource cannot be changed once it is created, but if an identical region is specified on update the request will succeed.
- Map<String,String>
- The list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups).
- resourceGroup stringName 
- The Resource Group Name
- sku Sku
- The sku type.
- transferType string | TransferType 
- Type of the data transfer.
- deliveryInfo JobDelivery Info 
- Delivery Info of Job.
- deliveryType string | JobDelivery Type 
- Delivery type of Job.
- details
DataBox | DataCustomer Disk Job Details Box | DataDisk Job Details Box | DataHeavy Job Details Box Job Details 
- Details of a job run. This field will only be sent for expand details filter.
- identity
ResourceIdentity 
- Msi identity of the resource
- jobName string
- The name of the job Resource within the specified resource group. job names must be between 3 and 24 characters in length and use any alphanumeric and underscore only
- location string
- The location of the resource. This will be one of the supported and registered Azure Regions (e.g. West US, East US, Southeast Asia, etc.). The region of a resource cannot be changed once it is created, but if an identical region is specified on update the request will succeed.
- {[key: string]: string}
- The list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups).
- resource_group_ strname 
- The Resource Group Name
- sku
SkuArgs 
- The sku type.
- transfer_type str | TransferType 
- Type of the data transfer.
- delivery_info JobDelivery Info Args 
- Delivery Info of Job.
- delivery_type str | JobDelivery Type 
- Delivery type of Job.
- details
DataBox | DataCustomer Disk Job Details Args Box | DataDisk Job Details Args Box | DataHeavy Job Details Args Box Job Details Args 
- Details of a job run. This field will only be sent for expand details filter.
- identity
ResourceIdentity Args 
- Msi identity of the resource
- job_name str
- The name of the job Resource within the specified resource group. job names must be between 3 and 24 characters in length and use any alphanumeric and underscore only
- location str
- The location of the resource. This will be one of the supported and registered Azure Regions (e.g. West US, East US, Southeast Asia, etc.). The region of a resource cannot be changed once it is created, but if an identical region is specified on update the request will succeed.
- Mapping[str, str]
- The list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups).
- resourceGroup StringName 
- The Resource Group Name
- sku Property Map
- The sku type.
- transferType String | "ImportTo Azure" | "Export From Azure" 
- Type of the data transfer.
- deliveryInfo Property Map
- Delivery Info of Job.
- deliveryType String | "NonScheduled" | "Scheduled" 
- Delivery type of Job.
- details Property Map | Property Map | Property Map | Property Map
- Details of a job run. This field will only be sent for expand details filter.
- identity Property Map
- Msi identity of the resource
- jobName String
- The name of the job Resource within the specified resource group. job names must be between 3 and 24 characters in length and use any alphanumeric and underscore only
- location String
- The location of the resource. This will be one of the supported and registered Azure Regions (e.g. West US, East US, Southeast Asia, etc.). The region of a resource cannot be changed once it is created, but if an identical region is specified on update the request will succeed.
- Map<String>
- The list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups).
Outputs
All input properties are implicitly available as output properties. Additionally, the Job resource produces the following output properties:
- CancellationReason string
- Reason for cancellation.
- Error
Pulumi.Azure Native. Data Box. Outputs. Cloud Error Response 
- Top level error for the job.
- Id string
- The provider-assigned unique ID for this managed resource.
- IsCancellable bool
- Describes whether the job is cancellable or not.
- IsCancellable boolWithout Fee 
- Flag to indicate cancellation of scheduled job.
- IsDeletable bool
- Describes whether the job is deletable or not.
- IsPrepare boolTo Ship Enabled 
- Is Prepare To Ship Enabled on this job
- IsShipping boolAddress Editable 
- Describes whether the shipping address is editable or not.
- Name string
- Name of the object.
- ReverseShipping stringDetails Update 
- The Editable status for Reverse Shipping Address and Contact Info
- ReverseTransport stringPreference Update 
- The Editable status for Reverse Transport preferences
- StartTime string
- Time at which the job was started in UTC ISO 8601 format.
- Status string
- Name of the stage which is in progress.
- SystemData Pulumi.Azure Native. Data Box. Outputs. System Data Response 
- Metadata pertaining to creation and last modification of the resource.
- Type string
- Type of the object.
- CancellationReason string
- Reason for cancellation.
- Error
CloudError Response 
- Top level error for the job.
- Id string
- The provider-assigned unique ID for this managed resource.
- IsCancellable bool
- Describes whether the job is cancellable or not.
- IsCancellable boolWithout Fee 
- Flag to indicate cancellation of scheduled job.
- IsDeletable bool
- Describes whether the job is deletable or not.
- IsPrepare boolTo Ship Enabled 
- Is Prepare To Ship Enabled on this job
- IsShipping boolAddress Editable 
- Describes whether the shipping address is editable or not.
- Name string
- Name of the object.
- ReverseShipping stringDetails Update 
- The Editable status for Reverse Shipping Address and Contact Info
- ReverseTransport stringPreference Update 
- The Editable status for Reverse Transport preferences
- StartTime string
- Time at which the job was started in UTC ISO 8601 format.
- Status string
- Name of the stage which is in progress.
- SystemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- Type string
- Type of the object.
- cancellationReason String
- Reason for cancellation.
- error
CloudError Response 
- Top level error for the job.
- id String
- The provider-assigned unique ID for this managed resource.
- isCancellable Boolean
- Describes whether the job is cancellable or not.
- isCancellable BooleanWithout Fee 
- Flag to indicate cancellation of scheduled job.
- isDeletable Boolean
- Describes whether the job is deletable or not.
- isPrepare BooleanTo Ship Enabled 
- Is Prepare To Ship Enabled on this job
- isShipping BooleanAddress Editable 
- Describes whether the shipping address is editable or not.
- name String
- Name of the object.
- reverseShipping StringDetails Update 
- The Editable status for Reverse Shipping Address and Contact Info
- reverseTransport StringPreference Update 
- The Editable status for Reverse Transport preferences
- startTime String
- Time at which the job was started in UTC ISO 8601 format.
- status String
- Name of the stage which is in progress.
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type String
- Type of the object.
- cancellationReason string
- Reason for cancellation.
- error
CloudError Response 
- Top level error for the job.
- id string
- The provider-assigned unique ID for this managed resource.
- isCancellable boolean
- Describes whether the job is cancellable or not.
- isCancellable booleanWithout Fee 
- Flag to indicate cancellation of scheduled job.
- isDeletable boolean
- Describes whether the job is deletable or not.
- isPrepare booleanTo Ship Enabled 
- Is Prepare To Ship Enabled on this job
- isShipping booleanAddress Editable 
- Describes whether the shipping address is editable or not.
- name string
- Name of the object.
- reverseShipping stringDetails Update 
- The Editable status for Reverse Shipping Address and Contact Info
- reverseTransport stringPreference Update 
- The Editable status for Reverse Transport preferences
- startTime string
- Time at which the job was started in UTC ISO 8601 format.
- status string
- Name of the stage which is in progress.
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type string
- Type of the object.
- cancellation_reason str
- Reason for cancellation.
- error
CloudError Response 
- Top level error for the job.
- id str
- The provider-assigned unique ID for this managed resource.
- is_cancellable bool
- Describes whether the job is cancellable or not.
- is_cancellable_ boolwithout_ fee 
- Flag to indicate cancellation of scheduled job.
- is_deletable bool
- Describes whether the job is deletable or not.
- is_prepare_ boolto_ ship_ enabled 
- Is Prepare To Ship Enabled on this job
- is_shipping_ booladdress_ editable 
- Describes whether the shipping address is editable or not.
- name str
- Name of the object.
- reverse_shipping_ strdetails_ update 
- The Editable status for Reverse Shipping Address and Contact Info
- reverse_transport_ strpreference_ update 
- The Editable status for Reverse Transport preferences
- start_time str
- Time at which the job was started in UTC ISO 8601 format.
- status str
- Name of the stage which is in progress.
- system_data SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type str
- Type of the object.
- cancellationReason String
- Reason for cancellation.
- error Property Map
- Top level error for the job.
- id String
- The provider-assigned unique ID for this managed resource.
- isCancellable Boolean
- Describes whether the job is cancellable or not.
- isCancellable BooleanWithout Fee 
- Flag to indicate cancellation of scheduled job.
- isDeletable Boolean
- Describes whether the job is deletable or not.
- isPrepare BooleanTo Ship Enabled 
- Is Prepare To Ship Enabled on this job
- isShipping BooleanAddress Editable 
- Describes whether the shipping address is editable or not.
- name String
- Name of the object.
- reverseShipping StringDetails Update 
- The Editable status for Reverse Shipping Address and Contact Info
- reverseTransport StringPreference Update 
- The Editable status for Reverse Transport preferences
- startTime String
- Time at which the job was started in UTC ISO 8601 format.
- status String
- Name of the stage which is in progress.
- systemData Property Map
- Metadata pertaining to creation and last modification of the resource.
- type String
- Type of the object.
Supporting Types
AdditionalErrorInfoResponse, AdditionalErrorInfoResponseArgs        
AddressType, AddressTypeArgs    
- None
- NoneAddress type not known.
- Residential
- ResidentialResidential Address.
- Commercial
- CommercialCommercial Address.
- AddressType None 
- NoneAddress type not known.
- AddressType Residential 
- ResidentialResidential Address.
- AddressType Commercial 
- CommercialCommercial Address.
- None
- NoneAddress type not known.
- Residential
- ResidentialResidential Address.
- Commercial
- CommercialCommercial Address.
- None
- NoneAddress type not known.
- Residential
- ResidentialResidential Address.
- Commercial
- CommercialCommercial Address.
- NONE
- NoneAddress type not known.
- RESIDENTIAL
- ResidentialResidential Address.
- COMMERCIAL
- CommercialCommercial Address.
- "None"
- NoneAddress type not known.
- "Residential"
- ResidentialResidential Address.
- "Commercial"
- CommercialCommercial Address.
AzureFileFilterDetails, AzureFileFilterDetailsArgs        
- FilePath List<string>List 
- List of full path of the files to be transferred.
- FilePrefix List<string>List 
- Prefix list of the Azure files to be transferred.
- List<string>
- List of file shares to be transferred.
- FilePath []stringList 
- List of full path of the files to be transferred.
- FilePrefix []stringList 
- Prefix list of the Azure files to be transferred.
- []string
- List of file shares to be transferred.
- filePath List<String>List 
- List of full path of the files to be transferred.
- filePrefix List<String>List 
- Prefix list of the Azure files to be transferred.
- List<String>
- List of file shares to be transferred.
- filePath string[]List 
- List of full path of the files to be transferred.
- filePrefix string[]List 
- Prefix list of the Azure files to be transferred.
- string[]
- List of file shares to be transferred.
- file_path_ Sequence[str]list 
- List of full path of the files to be transferred.
- file_prefix_ Sequence[str]list 
- Prefix list of the Azure files to be transferred.
- Sequence[str]
- List of file shares to be transferred.
- filePath List<String>List 
- List of full path of the files to be transferred.
- filePrefix List<String>List 
- Prefix list of the Azure files to be transferred.
- List<String>
- List of file shares to be transferred.
AzureFileFilterDetailsResponse, AzureFileFilterDetailsResponseArgs          
- FilePath List<string>List 
- List of full path of the files to be transferred.
- FilePrefix List<string>List 
- Prefix list of the Azure files to be transferred.
- List<string>
- List of file shares to be transferred.
- FilePath []stringList 
- List of full path of the files to be transferred.
- FilePrefix []stringList 
- Prefix list of the Azure files to be transferred.
- []string
- List of file shares to be transferred.
- filePath List<String>List 
- List of full path of the files to be transferred.
- filePrefix List<String>List 
- Prefix list of the Azure files to be transferred.
- List<String>
- List of file shares to be transferred.
- filePath string[]List 
- List of full path of the files to be transferred.
- filePrefix string[]List 
- Prefix list of the Azure files to be transferred.
- string[]
- List of file shares to be transferred.
- file_path_ Sequence[str]list 
- List of full path of the files to be transferred.
- file_prefix_ Sequence[str]list 
- Prefix list of the Azure files to be transferred.
- Sequence[str]
- List of file shares to be transferred.
- filePath List<String>List 
- List of full path of the files to be transferred.
- filePrefix List<String>List 
- Prefix list of the Azure files to be transferred.
- List<String>
- List of file shares to be transferred.
BlobFilterDetails, BlobFilterDetailsArgs      
- BlobPath List<string>List 
- List of full path of the blobs to be transferred.
- BlobPrefix List<string>List 
- Prefix list of the Azure blobs to be transferred.
- ContainerList List<string>
- List of blob containers to be transferred.
- BlobPath []stringList 
- List of full path of the blobs to be transferred.
- BlobPrefix []stringList 
- Prefix list of the Azure blobs to be transferred.
- ContainerList []string
- List of blob containers to be transferred.
- blobPath List<String>List 
- List of full path of the blobs to be transferred.
- blobPrefix List<String>List 
- Prefix list of the Azure blobs to be transferred.
- containerList List<String>
- List of blob containers to be transferred.
- blobPath string[]List 
- List of full path of the blobs to be transferred.
- blobPrefix string[]List 
- Prefix list of the Azure blobs to be transferred.
- containerList string[]
- List of blob containers to be transferred.
- blob_path_ Sequence[str]list 
- List of full path of the blobs to be transferred.
- blob_prefix_ Sequence[str]list 
- Prefix list of the Azure blobs to be transferred.
- container_list Sequence[str]
- List of blob containers to be transferred.
- blobPath List<String>List 
- List of full path of the blobs to be transferred.
- blobPrefix List<String>List 
- Prefix list of the Azure blobs to be transferred.
- containerList List<String>
- List of blob containers to be transferred.
BlobFilterDetailsResponse, BlobFilterDetailsResponseArgs        
- BlobPath List<string>List 
- List of full path of the blobs to be transferred.
- BlobPrefix List<string>List 
- Prefix list of the Azure blobs to be transferred.
- ContainerList List<string>
- List of blob containers to be transferred.
- BlobPath []stringList 
- List of full path of the blobs to be transferred.
- BlobPrefix []stringList 
- Prefix list of the Azure blobs to be transferred.
- ContainerList []string
- List of blob containers to be transferred.
- blobPath List<String>List 
- List of full path of the blobs to be transferred.
- blobPrefix List<String>List 
- Prefix list of the Azure blobs to be transferred.
- containerList List<String>
- List of blob containers to be transferred.
- blobPath string[]List 
- List of full path of the blobs to be transferred.
- blobPrefix string[]List 
- Prefix list of the Azure blobs to be transferred.
- containerList string[]
- List of blob containers to be transferred.
- blob_path_ Sequence[str]list 
- List of full path of the blobs to be transferred.
- blob_prefix_ Sequence[str]list 
- Prefix list of the Azure blobs to be transferred.
- container_list Sequence[str]
- List of blob containers to be transferred.
- blobPath List<String>List 
- List of full path of the blobs to be transferred.
- blobPrefix List<String>List 
- Prefix list of the Azure blobs to be transferred.
- containerList List<String>
- List of blob containers to be transferred.
CloudErrorResponse, CloudErrorResponseArgs      
- AdditionalInfo List<Pulumi.Azure Native. Data Box. Inputs. Additional Error Info Response> 
- Gets or sets additional error info.
- Details
List<Pulumi.Azure Native. Data Box. Inputs. Cloud Error Response> 
- Gets or sets details for the error.
- Code string
- Error code.
- Message string
- The error message parsed from the body of the http error response.
- Target string
- Gets or sets the target of the error.
- AdditionalInfo []AdditionalError Info Response 
- Gets or sets additional error info.
- Details
[]CloudError Response 
- Gets or sets details for the error.
- Code string
- Error code.
- Message string
- The error message parsed from the body of the http error response.
- Target string
- Gets or sets the target of the error.
- additionalInfo List<AdditionalError Info Response> 
- Gets or sets additional error info.
- details
List<CloudError Response> 
- Gets or sets details for the error.
- code String
- Error code.
- message String
- The error message parsed from the body of the http error response.
- target String
- Gets or sets the target of the error.
- additionalInfo AdditionalError Info Response[] 
- Gets or sets additional error info.
- details
CloudError Response[] 
- Gets or sets details for the error.
- code string
- Error code.
- message string
- The error message parsed from the body of the http error response.
- target string
- Gets or sets the target of the error.
- additional_info Sequence[AdditionalError Info Response] 
- Gets or sets additional error info.
- details
Sequence[CloudError Response] 
- Gets or sets details for the error.
- code str
- Error code.
- message str
- The error message parsed from the body of the http error response.
- target str
- Gets or sets the target of the error.
- additionalInfo List<Property Map>
- Gets or sets additional error info.
- details List<Property Map>
- Gets or sets details for the error.
- code String
- Error code.
- message String
- The error message parsed from the body of the http error response.
- target String
- Gets or sets the target of the error.
ContactDetails, ContactDetailsArgs    
- ContactName string
- Contact name of the person.
- EmailList List<string>
- List of Email-ids to be notified about job progress.
- Phone string
- Phone number of the contact person.
- Mobile string
- Mobile number of the contact person.
- NotificationPreference List<Pulumi.Azure Native. Data Box. Inputs. Notification Preference> 
- Notification preference for a job stage.
- PhoneExtension string
- Phone extension number of the contact person.
- ContactName string
- Contact name of the person.
- EmailList []string
- List of Email-ids to be notified about job progress.
- Phone string
- Phone number of the contact person.
- Mobile string
- Mobile number of the contact person.
- NotificationPreference []NotificationPreference 
- Notification preference for a job stage.
- PhoneExtension string
- Phone extension number of the contact person.
- contactName String
- Contact name of the person.
- emailList List<String>
- List of Email-ids to be notified about job progress.
- phone String
- Phone number of the contact person.
- mobile String
- Mobile number of the contact person.
- notificationPreference List<NotificationPreference> 
- Notification preference for a job stage.
- phoneExtension String
- Phone extension number of the contact person.
- contactName string
- Contact name of the person.
- emailList string[]
- List of Email-ids to be notified about job progress.
- phone string
- Phone number of the contact person.
- mobile string
- Mobile number of the contact person.
- notificationPreference NotificationPreference[] 
- Notification preference for a job stage.
- phoneExtension string
- Phone extension number of the contact person.
- contact_name str
- Contact name of the person.
- email_list Sequence[str]
- List of Email-ids to be notified about job progress.
- phone str
- Phone number of the contact person.
- mobile str
- Mobile number of the contact person.
- notification_preference Sequence[NotificationPreference] 
- Notification preference for a job stage.
- phone_extension str
- Phone extension number of the contact person.
- contactName String
- Contact name of the person.
- emailList List<String>
- List of Email-ids to be notified about job progress.
- phone String
- Phone number of the contact person.
- mobile String
- Mobile number of the contact person.
- notificationPreference List<Property Map>
- Notification preference for a job stage.
- phoneExtension String
- Phone extension number of the contact person.
ContactDetailsResponse, ContactDetailsResponseArgs      
- ContactName string
- Contact name of the person.
- EmailList List<string>
- List of Email-ids to be notified about job progress.
- Phone string
- Phone number of the contact person.
- Mobile string
- Mobile number of the contact person.
- NotificationPreference List<Pulumi.Azure Native. Data Box. Inputs. Notification Preference Response> 
- Notification preference for a job stage.
- PhoneExtension string
- Phone extension number of the contact person.
- ContactName string
- Contact name of the person.
- EmailList []string
- List of Email-ids to be notified about job progress.
- Phone string
- Phone number of the contact person.
- Mobile string
- Mobile number of the contact person.
- NotificationPreference []NotificationPreference Response 
- Notification preference for a job stage.
- PhoneExtension string
- Phone extension number of the contact person.
- contactName String
- Contact name of the person.
- emailList List<String>
- List of Email-ids to be notified about job progress.
- phone String
- Phone number of the contact person.
- mobile String
- Mobile number of the contact person.
- notificationPreference List<NotificationPreference Response> 
- Notification preference for a job stage.
- phoneExtension String
- Phone extension number of the contact person.
- contactName string
- Contact name of the person.
- emailList string[]
- List of Email-ids to be notified about job progress.
- phone string
- Phone number of the contact person.
- mobile string
- Mobile number of the contact person.
- notificationPreference NotificationPreference Response[] 
- Notification preference for a job stage.
- phoneExtension string
- Phone extension number of the contact person.
- contact_name str
- Contact name of the person.
- email_list Sequence[str]
- List of Email-ids to be notified about job progress.
- phone str
- Phone number of the contact person.
- mobile str
- Mobile number of the contact person.
- notification_preference Sequence[NotificationPreference Response] 
- Notification preference for a job stage.
- phone_extension str
- Phone extension number of the contact person.
- contactName String
- Contact name of the person.
- emailList List<String>
- List of Email-ids to be notified about job progress.
- phone String
- Phone number of the contact person.
- mobile String
- Mobile number of the contact person.
- notificationPreference List<Property Map>
- Notification preference for a job stage.
- phoneExtension String
- Phone extension number of the contact person.
ContactInfo, ContactInfoArgs    
- ContactName string
- Contact name of the person.
- Phone string
- Phone number of the contact person.
- Mobile string
- Mobile number of the contact person.
- PhoneExtension string
- Phone extension number of the contact person.
- ContactName string
- Contact name of the person.
- Phone string
- Phone number of the contact person.
- Mobile string
- Mobile number of the contact person.
- PhoneExtension string
- Phone extension number of the contact person.
- contactName String
- Contact name of the person.
- phone String
- Phone number of the contact person.
- mobile String
- Mobile number of the contact person.
- phoneExtension String
- Phone extension number of the contact person.
- contactName string
- Contact name of the person.
- phone string
- Phone number of the contact person.
- mobile string
- Mobile number of the contact person.
- phoneExtension string
- Phone extension number of the contact person.
- contact_name str
- Contact name of the person.
- phone str
- Phone number of the contact person.
- mobile str
- Mobile number of the contact person.
- phone_extension str
- Phone extension number of the contact person.
- contactName String
- Contact name of the person.
- phone String
- Phone number of the contact person.
- mobile String
- Mobile number of the contact person.
- phoneExtension String
- Phone extension number of the contact person.
ContactInfoResponse, ContactInfoResponseArgs      
- ContactName string
- Contact name of the person.
- Phone string
- Phone number of the contact person.
- Mobile string
- Mobile number of the contact person.
- PhoneExtension string
- Phone extension number of the contact person.
- ContactName string
- Contact name of the person.
- Phone string
- Phone number of the contact person.
- Mobile string
- Mobile number of the contact person.
- PhoneExtension string
- Phone extension number of the contact person.
- contactName String
- Contact name of the person.
- phone String
- Phone number of the contact person.
- mobile String
- Mobile number of the contact person.
- phoneExtension String
- Phone extension number of the contact person.
- contactName string
- Contact name of the person.
- phone string
- Phone number of the contact person.
- mobile string
- Mobile number of the contact person.
- phoneExtension string
- Phone extension number of the contact person.
- contact_name str
- Contact name of the person.
- phone str
- Phone number of the contact person.
- mobile str
- Mobile number of the contact person.
- phone_extension str
- Phone extension number of the contact person.
- contactName String
- Contact name of the person.
- phone String
- Phone number of the contact person.
- mobile String
- Mobile number of the contact person.
- phoneExtension String
- Phone extension number of the contact person.
CopyProgressResponse, CopyProgressResponseArgs      
- AccountId string
- Id of the account where the data needs to be uploaded.
- Actions List<string>
- Available actions on the job.
- BytesProcessed double
- To indicate bytes transferred.
- DataAccount stringType 
- Data Account Type.
- DirectoriesErrored doubleOut 
- To indicate directories errored out in the job.
- Error
Pulumi.Azure Native. Data Box. Inputs. Cloud Error Response 
- Error, if any, in the stage
- FilesErrored doubleOut 
- Number of files which could not be copied
- FilesProcessed double
- Number of files processed
- InvalidDirectories doubleProcessed 
- To indicate directories renamed
- InvalidFile doubleBytes Uploaded 
- Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- InvalidFiles doubleProcessed 
- Number of files not adhering to azure naming conventions which were processed by automatic renaming
- IsEnumeration boolIn Progress 
- To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- RenamedContainer doubleCount 
- Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- StorageAccount stringName 
- Name of the storage account. This will be empty for data account types other than storage account.
- TotalBytes doubleTo Process 
- Total amount of data to be processed by the job.
- TotalFiles doubleTo Process 
- Total files to process
- TransferType string
- Transfer type of data
- AccountId string
- Id of the account where the data needs to be uploaded.
- Actions []string
- Available actions on the job.
- BytesProcessed float64
- To indicate bytes transferred.
- DataAccount stringType 
- Data Account Type.
- DirectoriesErrored float64Out 
- To indicate directories errored out in the job.
- Error
CloudError Response 
- Error, if any, in the stage
- FilesErrored float64Out 
- Number of files which could not be copied
- FilesProcessed float64
- Number of files processed
- InvalidDirectories float64Processed 
- To indicate directories renamed
- InvalidFile float64Bytes Uploaded 
- Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- InvalidFiles float64Processed 
- Number of files not adhering to azure naming conventions which were processed by automatic renaming
- IsEnumeration boolIn Progress 
- To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- RenamedContainer float64Count 
- Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- StorageAccount stringName 
- Name of the storage account. This will be empty for data account types other than storage account.
- TotalBytes float64To Process 
- Total amount of data to be processed by the job.
- TotalFiles float64To Process 
- Total files to process
- TransferType string
- Transfer type of data
- accountId String
- Id of the account where the data needs to be uploaded.
- actions List<String>
- Available actions on the job.
- bytesProcessed Double
- To indicate bytes transferred.
- dataAccount StringType 
- Data Account Type.
- directoriesErrored DoubleOut 
- To indicate directories errored out in the job.
- error
CloudError Response 
- Error, if any, in the stage
- filesErrored DoubleOut 
- Number of files which could not be copied
- filesProcessed Double
- Number of files processed
- invalidDirectories DoubleProcessed 
- To indicate directories renamed
- invalidFile DoubleBytes Uploaded 
- Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalidFiles DoubleProcessed 
- Number of files not adhering to azure naming conventions which were processed by automatic renaming
- isEnumeration BooleanIn Progress 
- To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamedContainer DoubleCount 
- Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- storageAccount StringName 
- Name of the storage account. This will be empty for data account types other than storage account.
- totalBytes DoubleTo Process 
- Total amount of data to be processed by the job.
- totalFiles DoubleTo Process 
- Total files to process
- transferType String
- Transfer type of data
- accountId string
- Id of the account where the data needs to be uploaded.
- actions string[]
- Available actions on the job.
- bytesProcessed number
- To indicate bytes transferred.
- dataAccount stringType 
- Data Account Type.
- directoriesErrored numberOut 
- To indicate directories errored out in the job.
- error
CloudError Response 
- Error, if any, in the stage
- filesErrored numberOut 
- Number of files which could not be copied
- filesProcessed number
- Number of files processed
- invalidDirectories numberProcessed 
- To indicate directories renamed
- invalidFile numberBytes Uploaded 
- Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalidFiles numberProcessed 
- Number of files not adhering to azure naming conventions which were processed by automatic renaming
- isEnumeration booleanIn Progress 
- To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamedContainer numberCount 
- Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- storageAccount stringName 
- Name of the storage account. This will be empty for data account types other than storage account.
- totalBytes numberTo Process 
- Total amount of data to be processed by the job.
- totalFiles numberTo Process 
- Total files to process
- transferType string
- Transfer type of data
- account_id str
- Id of the account where the data needs to be uploaded.
- actions Sequence[str]
- Available actions on the job.
- bytes_processed float
- To indicate bytes transferred.
- data_account_ strtype 
- Data Account Type.
- directories_errored_ floatout 
- To indicate directories errored out in the job.
- error
CloudError Response 
- Error, if any, in the stage
- files_errored_ floatout 
- Number of files which could not be copied
- files_processed float
- Number of files processed
- invalid_directories_ floatprocessed 
- To indicate directories renamed
- invalid_file_ floatbytes_ uploaded 
- Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalid_files_ floatprocessed 
- Number of files not adhering to azure naming conventions which were processed by automatic renaming
- is_enumeration_ boolin_ progress 
- To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamed_container_ floatcount 
- Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- storage_account_ strname 
- Name of the storage account. This will be empty for data account types other than storage account.
- total_bytes_ floatto_ process 
- Total amount of data to be processed by the job.
- total_files_ floatto_ process 
- Total files to process
- transfer_type str
- Transfer type of data
- accountId String
- Id of the account where the data needs to be uploaded.
- actions List<String>
- Available actions on the job.
- bytesProcessed Number
- To indicate bytes transferred.
- dataAccount StringType 
- Data Account Type.
- directoriesErrored NumberOut 
- To indicate directories errored out in the job.
- error Property Map
- Error, if any, in the stage
- filesErrored NumberOut 
- Number of files which could not be copied
- filesProcessed Number
- Number of files processed
- invalidDirectories NumberProcessed 
- To indicate directories renamed
- invalidFile NumberBytes Uploaded 
- Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalidFiles NumberProcessed 
- Number of files not adhering to azure naming conventions which were processed by automatic renaming
- isEnumeration BooleanIn Progress 
- To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamedContainer NumberCount 
- Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- storageAccount StringName 
- Name of the storage account. This will be empty for data account types other than storage account.
- totalBytes NumberTo Process 
- Total amount of data to be processed by the job.
- totalFiles NumberTo Process 
- Total files to process
- transferType String
- Transfer type of data
DataAccountType, DataAccountTypeArgs      
- StorageAccount 
- StorageAccountStorage Accounts .
- ManagedDisk 
- ManagedDiskAzure Managed disk storage.
- DataAccount Type Storage Account 
- StorageAccountStorage Accounts .
- DataAccount Type Managed Disk 
- ManagedDiskAzure Managed disk storage.
- StorageAccount 
- StorageAccountStorage Accounts .
- ManagedDisk 
- ManagedDiskAzure Managed disk storage.
- StorageAccount 
- StorageAccountStorage Accounts .
- ManagedDisk 
- ManagedDiskAzure Managed disk storage.
- STORAGE_ACCOUNT
- StorageAccountStorage Accounts .
- MANAGED_DISK
- ManagedDiskAzure Managed disk storage.
- "StorageAccount" 
- StorageAccountStorage Accounts .
- "ManagedDisk" 
- ManagedDiskAzure Managed disk storage.
DataBoxAccountCopyLogDetailsResponse, DataBoxAccountCopyLogDetailsResponseArgs              
- AccountName string
- Account name.
- CopyLog stringLink 
- Link for copy logs.
- CopyVerbose stringLog Link 
- Link for copy verbose logs. This will be set only when LogCollectionLevel is set to Verbose.
- AccountName string
- Account name.
- CopyLog stringLink 
- Link for copy logs.
- CopyVerbose stringLog Link 
- Link for copy verbose logs. This will be set only when LogCollectionLevel is set to Verbose.
- accountName String
- Account name.
- copyLog StringLink 
- Link for copy logs.
- copyVerbose StringLog Link 
- Link for copy verbose logs. This will be set only when LogCollectionLevel is set to Verbose.
- accountName string
- Account name.
- copyLog stringLink 
- Link for copy logs.
- copyVerbose stringLog Link 
- Link for copy verbose logs. This will be set only when LogCollectionLevel is set to Verbose.
- account_name str
- Account name.
- copy_log_ strlink 
- Link for copy logs.
- copy_verbose_ strlog_ link 
- Link for copy verbose logs. This will be set only when LogCollectionLevel is set to Verbose.
- accountName String
- Account name.
- copyLog StringLink 
- Link for copy logs.
- copyVerbose StringLog Link 
- Link for copy verbose logs. This will be set only when LogCollectionLevel is set to Verbose.
DataBoxCustomerDiskCopyLogDetailsResponse, DataBoxCustomerDiskCopyLogDetailsResponseArgs                
- ErrorLog stringLink 
- Link for copy error logs.
- SerialNumber string
- Disk Serial Number.
- VerboseLog stringLink 
- Link for copy verbose logs.
- ErrorLog stringLink 
- Link for copy error logs.
- SerialNumber string
- Disk Serial Number.
- VerboseLog stringLink 
- Link for copy verbose logs.
- errorLog StringLink 
- Link for copy error logs.
- serialNumber String
- Disk Serial Number.
- verboseLog StringLink 
- Link for copy verbose logs.
- errorLog stringLink 
- Link for copy error logs.
- serialNumber string
- Disk Serial Number.
- verboseLog stringLink 
- Link for copy verbose logs.
- error_log_ strlink 
- Link for copy error logs.
- serial_number str
- Disk Serial Number.
- verbose_log_ strlink 
- Link for copy verbose logs.
- errorLog StringLink 
- Link for copy error logs.
- serialNumber String
- Disk Serial Number.
- verboseLog StringLink 
- Link for copy verbose logs.
DataBoxCustomerDiskCopyProgressResponse, DataBoxCustomerDiskCopyProgressResponseArgs              
- AccountId string
- Id of the account where the data needs to be uploaded.
- Actions List<string>
- Available actions on the job.
- BytesProcessed double
- To indicate bytes transferred.
- CopyStatus string
- The Status of the copy
- DataAccount stringType 
- Data Account Type.
- DirectoriesErrored doubleOut 
- To indicate directories errored out in the job.
- Error
Pulumi.Azure Native. Data Box. Inputs. Cloud Error Response 
- Error, if any, in the stage
- FilesErrored doubleOut 
- Number of files which could not be copied
- FilesProcessed double
- Number of files processed
- InvalidDirectories doubleProcessed 
- To indicate directories renamed
- InvalidFile doubleBytes Uploaded 
- Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- InvalidFiles doubleProcessed 
- Number of files not adhering to azure naming conventions which were processed by automatic renaming
- IsEnumeration boolIn Progress 
- To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- RenamedContainer doubleCount 
- Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- SerialNumber string
- Disk Serial Number.
- StorageAccount stringName 
- Name of the storage account. This will be empty for data account types other than storage account.
- TotalBytes doubleTo Process 
- Total amount of data to be processed by the job.
- TotalFiles doubleTo Process 
- Total files to process
- TransferType string
- Transfer type of data
- AccountId string
- Id of the account where the data needs to be uploaded.
- Actions []string
- Available actions on the job.
- BytesProcessed float64
- To indicate bytes transferred.
- CopyStatus string
- The Status of the copy
- DataAccount stringType 
- Data Account Type.
- DirectoriesErrored float64Out 
- To indicate directories errored out in the job.
- Error
CloudError Response 
- Error, if any, in the stage
- FilesErrored float64Out 
- Number of files which could not be copied
- FilesProcessed float64
- Number of files processed
- InvalidDirectories float64Processed 
- To indicate directories renamed
- InvalidFile float64Bytes Uploaded 
- Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- InvalidFiles float64Processed 
- Number of files not adhering to azure naming conventions which were processed by automatic renaming
- IsEnumeration boolIn Progress 
- To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- RenamedContainer float64Count 
- Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- SerialNumber string
- Disk Serial Number.
- StorageAccount stringName 
- Name of the storage account. This will be empty for data account types other than storage account.
- TotalBytes float64To Process 
- Total amount of data to be processed by the job.
- TotalFiles float64To Process 
- Total files to process
- TransferType string
- Transfer type of data
- accountId String
- Id of the account where the data needs to be uploaded.
- actions List<String>
- Available actions on the job.
- bytesProcessed Double
- To indicate bytes transferred.
- copyStatus String
- The Status of the copy
- dataAccount StringType 
- Data Account Type.
- directoriesErrored DoubleOut 
- To indicate directories errored out in the job.
- error
CloudError Response 
- Error, if any, in the stage
- filesErrored DoubleOut 
- Number of files which could not be copied
- filesProcessed Double
- Number of files processed
- invalidDirectories DoubleProcessed 
- To indicate directories renamed
- invalidFile DoubleBytes Uploaded 
- Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalidFiles DoubleProcessed 
- Number of files not adhering to azure naming conventions which were processed by automatic renaming
- isEnumeration BooleanIn Progress 
- To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamedContainer DoubleCount 
- Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- serialNumber String
- Disk Serial Number.
- storageAccount StringName 
- Name of the storage account. This will be empty for data account types other than storage account.
- totalBytes DoubleTo Process 
- Total amount of data to be processed by the job.
- totalFiles DoubleTo Process 
- Total files to process
- transferType String
- Transfer type of data
- accountId string
- Id of the account where the data needs to be uploaded.
- actions string[]
- Available actions on the job.
- bytesProcessed number
- To indicate bytes transferred.
- copyStatus string
- The Status of the copy
- dataAccount stringType 
- Data Account Type.
- directoriesErrored numberOut 
- To indicate directories errored out in the job.
- error
CloudError Response 
- Error, if any, in the stage
- filesErrored numberOut 
- Number of files which could not be copied
- filesProcessed number
- Number of files processed
- invalidDirectories numberProcessed 
- To indicate directories renamed
- invalidFile numberBytes Uploaded 
- Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalidFiles numberProcessed 
- Number of files not adhering to azure naming conventions which were processed by automatic renaming
- isEnumeration booleanIn Progress 
- To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamedContainer numberCount 
- Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- serialNumber string
- Disk Serial Number.
- storageAccount stringName 
- Name of the storage account. This will be empty for data account types other than storage account.
- totalBytes numberTo Process 
- Total amount of data to be processed by the job.
- totalFiles numberTo Process 
- Total files to process
- transferType string
- Transfer type of data
- account_id str
- Id of the account where the data needs to be uploaded.
- actions Sequence[str]
- Available actions on the job.
- bytes_processed float
- To indicate bytes transferred.
- copy_status str
- The Status of the copy
- data_account_ strtype 
- Data Account Type.
- directories_errored_ floatout 
- To indicate directories errored out in the job.
- error
CloudError Response 
- Error, if any, in the stage
- files_errored_ floatout 
- Number of files which could not be copied
- files_processed float
- Number of files processed
- invalid_directories_ floatprocessed 
- To indicate directories renamed
- invalid_file_ floatbytes_ uploaded 
- Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalid_files_ floatprocessed 
- Number of files not adhering to azure naming conventions which were processed by automatic renaming
- is_enumeration_ boolin_ progress 
- To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamed_container_ floatcount 
- Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- serial_number str
- Disk Serial Number.
- storage_account_ strname 
- Name of the storage account. This will be empty for data account types other than storage account.
- total_bytes_ floatto_ process 
- Total amount of data to be processed by the job.
- total_files_ floatto_ process 
- Total files to process
- transfer_type str
- Transfer type of data
- accountId String
- Id of the account where the data needs to be uploaded.
- actions List<String>
- Available actions on the job.
- bytesProcessed Number
- To indicate bytes transferred.
- copyStatus String
- The Status of the copy
- dataAccount StringType 
- Data Account Type.
- directoriesErrored NumberOut 
- To indicate directories errored out in the job.
- error Property Map
- Error, if any, in the stage
- filesErrored NumberOut 
- Number of files which could not be copied
- filesProcessed Number
- Number of files processed
- invalidDirectories NumberProcessed 
- To indicate directories renamed
- invalidFile NumberBytes Uploaded 
- Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalidFiles NumberProcessed 
- Number of files not adhering to azure naming conventions which were processed by automatic renaming
- isEnumeration BooleanIn Progress 
- To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamedContainer NumberCount 
- Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- serialNumber String
- Disk Serial Number.
- storageAccount StringName 
- Name of the storage account. This will be empty for data account types other than storage account.
- totalBytes NumberTo Process 
- Total amount of data to be processed by the job.
- totalFiles NumberTo Process 
- Total files to process
- transferType String
- Transfer type of data
DataBoxCustomerDiskJobDetails, DataBoxCustomerDiskJobDetailsArgs            
- ContactDetails Pulumi.Azure Native. Data Box. Inputs. Contact Details 
- Contact details for notification and shipping.
- ReturnTo Pulumi.Customer Package Details Azure Native. Data Box. Inputs. Package Carrier Details 
- Return package shipping details.
- DataExport List<Pulumi.Details Azure Native. Data Box. Inputs. Data Export Details> 
- Details of the data to be exported from azure.
- DataImport List<Pulumi.Details Azure Native. Data Box. Inputs. Data Import Details> 
- Details of the data to be imported into azure.
- EnableManifest boolBackup 
- Flag to indicate if disk manifest should be backed-up in the Storage Account.
- ExpectedData intSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- ImportDisk Dictionary<string, Pulumi.Details Collection Azure Native. Data Box. Inputs. Import Disk Details> 
- Contains the map of disk serial number to the disk details for import jobs.
- KeyEncryption Pulumi.Key Azure Native. Data Box. Inputs. Key Encryption Key 
- Details about which key encryption type is being used.
- Preferences
Pulumi.Azure Native. Data Box. Inputs. Preferences 
- Preferences for the order.
- ReverseShipping Pulumi.Details Azure Native. Data Box. Inputs. Reverse Shipping Details 
- Optional Reverse Shipping details for order.
- ShippingAddress Pulumi.Azure Native. Data Box. Inputs. Shipping Address 
- Shipping address of the customer.
- ContactDetails ContactDetails 
- Contact details for notification and shipping.
- ReturnTo PackageCustomer Package Details Carrier Details 
- Return package shipping details.
- DataExport []DataDetails Export Details 
- Details of the data to be exported from azure.
- DataImport []DataDetails Import Details 
- Details of the data to be imported into azure.
- EnableManifest boolBackup 
- Flag to indicate if disk manifest should be backed-up in the Storage Account.
- ExpectedData intSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- ImportDisk map[string]ImportDetails Collection Disk Details 
- Contains the map of disk serial number to the disk details for import jobs.
- KeyEncryption KeyKey Encryption Key 
- Details about which key encryption type is being used.
- Preferences Preferences
- Preferences for the order.
- ReverseShipping ReverseDetails Shipping Details 
- Optional Reverse Shipping details for order.
- ShippingAddress ShippingAddress 
- Shipping address of the customer.
- contactDetails ContactDetails 
- Contact details for notification and shipping.
- returnTo PackageCustomer Package Details Carrier Details 
- Return package shipping details.
- dataExport List<DataDetails Export Details> 
- Details of the data to be exported from azure.
- dataImport List<DataDetails Import Details> 
- Details of the data to be imported into azure.
- enableManifest BooleanBackup 
- Flag to indicate if disk manifest should be backed-up in the Storage Account.
- expectedData IntegerSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- importDisk Map<String,ImportDetails Collection Disk Details> 
- Contains the map of disk serial number to the disk details for import jobs.
- keyEncryption KeyKey Encryption Key 
- Details about which key encryption type is being used.
- preferences Preferences
- Preferences for the order.
- reverseShipping ReverseDetails Shipping Details 
- Optional Reverse Shipping details for order.
- shippingAddress ShippingAddress 
- Shipping address of the customer.
- contactDetails ContactDetails 
- Contact details for notification and shipping.
- returnTo PackageCustomer Package Details Carrier Details 
- Return package shipping details.
- dataExport DataDetails Export Details[] 
- Details of the data to be exported from azure.
- dataImport DataDetails Import Details[] 
- Details of the data to be imported into azure.
- enableManifest booleanBackup 
- Flag to indicate if disk manifest should be backed-up in the Storage Account.
- expectedData numberSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- importDisk {[key: string]: ImportDetails Collection Disk Details} 
- Contains the map of disk serial number to the disk details for import jobs.
- keyEncryption KeyKey Encryption Key 
- Details about which key encryption type is being used.
- preferences Preferences
- Preferences for the order.
- reverseShipping ReverseDetails Shipping Details 
- Optional Reverse Shipping details for order.
- shippingAddress ShippingAddress 
- Shipping address of the customer.
- contact_details ContactDetails 
- Contact details for notification and shipping.
- return_to_ Packagecustomer_ package_ details Carrier Details 
- Return package shipping details.
- data_export_ Sequence[Datadetails Export Details] 
- Details of the data to be exported from azure.
- data_import_ Sequence[Datadetails Import Details] 
- Details of the data to be imported into azure.
- enable_manifest_ boolbackup 
- Flag to indicate if disk manifest should be backed-up in the Storage Account.
- expected_data_ intsize_ in_ tera_ bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- import_disk_ Mapping[str, Importdetails_ collection Disk Details] 
- Contains the map of disk serial number to the disk details for import jobs.
- key_encryption_ Keykey Encryption Key 
- Details about which key encryption type is being used.
- preferences Preferences
- Preferences for the order.
- reverse_shipping_ Reversedetails Shipping Details 
- Optional Reverse Shipping details for order.
- shipping_address ShippingAddress 
- Shipping address of the customer.
- contactDetails Property Map
- Contact details for notification and shipping.
- returnTo Property MapCustomer Package Details 
- Return package shipping details.
- dataExport List<Property Map>Details 
- Details of the data to be exported from azure.
- dataImport List<Property Map>Details 
- Details of the data to be imported into azure.
- enableManifest BooleanBackup 
- Flag to indicate if disk manifest should be backed-up in the Storage Account.
- expectedData NumberSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- importDisk Map<Property Map>Details Collection 
- Contains the map of disk serial number to the disk details for import jobs.
- keyEncryption Property MapKey 
- Details about which key encryption type is being used.
- preferences Property Map
- Preferences for the order.
- reverseShipping Property MapDetails 
- Optional Reverse Shipping details for order.
- shippingAddress Property Map
- Shipping address of the customer.
DataBoxCustomerDiskJobDetailsResponse, DataBoxCustomerDiskJobDetailsResponseArgs              
- Actions List<string>
- Available actions on the job.
- ChainOf stringCustody Sas Key 
- Shared access key to download the chain of custody logs
- ContactDetails Pulumi.Azure Native. Data Box. Inputs. Contact Details Response 
- Contact details for notification and shipping.
- CopyLog List<object>Details 
- List of copy log details.
- CopyProgress List<Pulumi.Azure Native. Data Box. Inputs. Data Box Customer Disk Copy Progress Response> 
- Copy progress per disk.
- DataCenter stringCode 
- DataCenter code.
- DatacenterAddress Pulumi.Azure | Pulumi.Native. Data Box. Inputs. Datacenter Address Instruction Response Response Azure Native. Data Box. Inputs. Datacenter Address Location Response Response 
- Datacenter address to ship to, for the given sku and storage location.
- DeliverTo Pulumi.Dc Package Details Azure Native. Data Box. Inputs. Package Carrier Info Response 
- Delivery package shipping details.
- DeliveryPackage Pulumi.Azure Native. Data Box. Inputs. Package Shipping Details Response 
- Delivery package shipping details.
- DeviceErasure Pulumi.Details Azure Native. Data Box. Inputs. Device Erasure Details Response 
- Holds device data erasure details
- ExportDisk Dictionary<string, Pulumi.Details Collection Azure Native. Data Box. Inputs. Export Disk Details Response> 
- Contains the map of disk serial number to the disk details for export jobs.
- JobStages List<Pulumi.Azure Native. Data Box. Inputs. Job Stages Response> 
- List of stages that run in the job.
- LastMitigation Pulumi.Action On Job Azure Native. Data Box. Inputs. Last Mitigation Action On Job Response 
- Last mitigation action performed on the job.
- ReturnPackage Pulumi.Azure Native. Data Box. Inputs. Package Shipping Details Response 
- Return package shipping details.
- ReturnTo Pulumi.Customer Package Details Azure Native. Data Box. Inputs. Package Carrier Details Response 
- Return package shipping details.
- ReverseShipment stringLabel Sas Key 
- Shared access key to download the return shipment label
- DataExport List<Pulumi.Details Azure Native. Data Box. Inputs. Data Export Details Response> 
- Details of the data to be exported from azure.
- DataImport List<Pulumi.Details Azure Native. Data Box. Inputs. Data Import Details Response> 
- Details of the data to be imported into azure.
- EnableManifest boolBackup 
- Flag to indicate if disk manifest should be backed-up in the Storage Account.
- ExpectedData intSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- ImportDisk Dictionary<string, Pulumi.Details Collection Azure Native. Data Box. Inputs. Import Disk Details Response> 
- Contains the map of disk serial number to the disk details for import jobs.
- KeyEncryption Pulumi.Key Azure Native. Data Box. Inputs. Key Encryption Key Response 
- Details about which key encryption type is being used.
- Preferences
Pulumi.Azure Native. Data Box. Inputs. Preferences Response 
- Preferences for the order.
- ReverseShipping Pulumi.Details Azure Native. Data Box. Inputs. Reverse Shipping Details Response 
- Optional Reverse Shipping details for order.
- ShippingAddress Pulumi.Azure Native. Data Box. Inputs. Shipping Address Response 
- Shipping address of the customer.
- Actions []string
- Available actions on the job.
- ChainOf stringCustody Sas Key 
- Shared access key to download the chain of custody logs
- ContactDetails ContactDetails Response 
- Contact details for notification and shipping.
- CopyLog []interface{}Details 
- List of copy log details.
- CopyProgress []DataBox Customer Disk Copy Progress Response 
- Copy progress per disk.
- DataCenter stringCode 
- DataCenter code.
- DatacenterAddress DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response 
- Datacenter address to ship to, for the given sku and storage location.
- DeliverTo PackageDc Package Details Carrier Info Response 
- Delivery package shipping details.
- DeliveryPackage PackageShipping Details Response 
- Delivery package shipping details.
- DeviceErasure DeviceDetails Erasure Details Response 
- Holds device data erasure details
- ExportDisk map[string]ExportDetails Collection Disk Details Response 
- Contains the map of disk serial number to the disk details for export jobs.
- JobStages []JobStages Response 
- List of stages that run in the job.
- LastMitigation LastAction On Job Mitigation Action On Job Response 
- Last mitigation action performed on the job.
- ReturnPackage PackageShipping Details Response 
- Return package shipping details.
- ReturnTo PackageCustomer Package Details Carrier Details Response 
- Return package shipping details.
- ReverseShipment stringLabel Sas Key 
- Shared access key to download the return shipment label
- DataExport []DataDetails Export Details Response 
- Details of the data to be exported from azure.
- DataImport []DataDetails Import Details Response 
- Details of the data to be imported into azure.
- EnableManifest boolBackup 
- Flag to indicate if disk manifest should be backed-up in the Storage Account.
- ExpectedData intSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- ImportDisk map[string]ImportDetails Collection Disk Details Response 
- Contains the map of disk serial number to the disk details for import jobs.
- KeyEncryption KeyKey Encryption Key Response 
- Details about which key encryption type is being used.
- Preferences
PreferencesResponse 
- Preferences for the order.
- ReverseShipping ReverseDetails Shipping Details Response 
- Optional Reverse Shipping details for order.
- ShippingAddress ShippingAddress Response 
- Shipping address of the customer.
- actions List<String>
- Available actions on the job.
- chainOf StringCustody Sas Key 
- Shared access key to download the chain of custody logs
- contactDetails ContactDetails Response 
- Contact details for notification and shipping.
- copyLog List<Object>Details 
- List of copy log details.
- copyProgress List<DataBox Customer Disk Copy Progress Response> 
- Copy progress per disk.
- dataCenter StringCode 
- DataCenter code.
- datacenterAddress DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response 
- Datacenter address to ship to, for the given sku and storage location.
- deliverTo PackageDc Package Details Carrier Info Response 
- Delivery package shipping details.
- deliveryPackage PackageShipping Details Response 
- Delivery package shipping details.
- deviceErasure DeviceDetails Erasure Details Response 
- Holds device data erasure details
- exportDisk Map<String,ExportDetails Collection Disk Details Response> 
- Contains the map of disk serial number to the disk details for export jobs.
- jobStages List<JobStages Response> 
- List of stages that run in the job.
- lastMitigation LastAction On Job Mitigation Action On Job Response 
- Last mitigation action performed on the job.
- returnPackage PackageShipping Details Response 
- Return package shipping details.
- returnTo PackageCustomer Package Details Carrier Details Response 
- Return package shipping details.
- reverseShipment StringLabel Sas Key 
- Shared access key to download the return shipment label
- dataExport List<DataDetails Export Details Response> 
- Details of the data to be exported from azure.
- dataImport List<DataDetails Import Details Response> 
- Details of the data to be imported into azure.
- enableManifest BooleanBackup 
- Flag to indicate if disk manifest should be backed-up in the Storage Account.
- expectedData IntegerSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- importDisk Map<String,ImportDetails Collection Disk Details Response> 
- Contains the map of disk serial number to the disk details for import jobs.
- keyEncryption KeyKey Encryption Key Response 
- Details about which key encryption type is being used.
- preferences
PreferencesResponse 
- Preferences for the order.
- reverseShipping ReverseDetails Shipping Details Response 
- Optional Reverse Shipping details for order.
- shippingAddress ShippingAddress Response 
- Shipping address of the customer.
- actions string[]
- Available actions on the job.
- chainOf stringCustody Sas Key 
- Shared access key to download the chain of custody logs
- contactDetails ContactDetails Response 
- Contact details for notification and shipping.
- copyLog (DataDetails Box Account Copy Log Details Response | Data Box Customer Disk Copy Log Details Response | Data Box Disk Copy Log Details Response | Data Box Heavy Account Copy Log Details Response)[] 
- List of copy log details.
- copyProgress DataBox Customer Disk Copy Progress Response[] 
- Copy progress per disk.
- dataCenter stringCode 
- DataCenter code.
- datacenterAddress DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response 
- Datacenter address to ship to, for the given sku and storage location.
- deliverTo PackageDc Package Details Carrier Info Response 
- Delivery package shipping details.
- deliveryPackage PackageShipping Details Response 
- Delivery package shipping details.
- deviceErasure DeviceDetails Erasure Details Response 
- Holds device data erasure details
- exportDisk {[key: string]: ExportDetails Collection Disk Details Response} 
- Contains the map of disk serial number to the disk details for export jobs.
- jobStages JobStages Response[] 
- List of stages that run in the job.
- lastMitigation LastAction On Job Mitigation Action On Job Response 
- Last mitigation action performed on the job.
- returnPackage PackageShipping Details Response 
- Return package shipping details.
- returnTo PackageCustomer Package Details Carrier Details Response 
- Return package shipping details.
- reverseShipment stringLabel Sas Key 
- Shared access key to download the return shipment label
- dataExport DataDetails Export Details Response[] 
- Details of the data to be exported from azure.
- dataImport DataDetails Import Details Response[] 
- Details of the data to be imported into azure.
- enableManifest booleanBackup 
- Flag to indicate if disk manifest should be backed-up in the Storage Account.
- expectedData numberSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- importDisk {[key: string]: ImportDetails Collection Disk Details Response} 
- Contains the map of disk serial number to the disk details for import jobs.
- keyEncryption KeyKey Encryption Key Response 
- Details about which key encryption type is being used.
- preferences
PreferencesResponse 
- Preferences for the order.
- reverseShipping ReverseDetails Shipping Details Response 
- Optional Reverse Shipping details for order.
- shippingAddress ShippingAddress Response 
- Shipping address of the customer.
- actions Sequence[str]
- Available actions on the job.
- chain_of_ strcustody_ sas_ key 
- Shared access key to download the chain of custody logs
- contact_details ContactDetails Response 
- Contact details for notification and shipping.
- copy_log_ Sequence[Union[Datadetails Box Account Copy Log Details Response, Data Box Customer Disk Copy Log Details Response, Data Box Disk Copy Log Details Response, Data Box Heavy Account Copy Log Details Response]] 
- List of copy log details.
- copy_progress Sequence[DataBox Customer Disk Copy Progress Response] 
- Copy progress per disk.
- data_center_ strcode 
- DataCenter code.
- datacenter_address DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response 
- Datacenter address to ship to, for the given sku and storage location.
- deliver_to_ Packagedc_ package_ details Carrier Info Response 
- Delivery package shipping details.
- delivery_package PackageShipping Details Response 
- Delivery package shipping details.
- device_erasure_ Devicedetails Erasure Details Response 
- Holds device data erasure details
- export_disk_ Mapping[str, Exportdetails_ collection Disk Details Response] 
- Contains the map of disk serial number to the disk details for export jobs.
- job_stages Sequence[JobStages Response] 
- List of stages that run in the job.
- last_mitigation_ Lastaction_ on_ job Mitigation Action On Job Response 
- Last mitigation action performed on the job.
- return_package PackageShipping Details Response 
- Return package shipping details.
- return_to_ Packagecustomer_ package_ details Carrier Details Response 
- Return package shipping details.
- reverse_shipment_ strlabel_ sas_ key 
- Shared access key to download the return shipment label
- data_export_ Sequence[Datadetails Export Details Response] 
- Details of the data to be exported from azure.
- data_import_ Sequence[Datadetails Import Details Response] 
- Details of the data to be imported into azure.
- enable_manifest_ boolbackup 
- Flag to indicate if disk manifest should be backed-up in the Storage Account.
- expected_data_ intsize_ in_ tera_ bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- import_disk_ Mapping[str, Importdetails_ collection Disk Details Response] 
- Contains the map of disk serial number to the disk details for import jobs.
- key_encryption_ Keykey Encryption Key Response 
- Details about which key encryption type is being used.
- preferences
PreferencesResponse 
- Preferences for the order.
- reverse_shipping_ Reversedetails Shipping Details Response 
- Optional Reverse Shipping details for order.
- shipping_address ShippingAddress Response 
- Shipping address of the customer.
- actions List<String>
- Available actions on the job.
- chainOf StringCustody Sas Key 
- Shared access key to download the chain of custody logs
- contactDetails Property Map
- Contact details for notification and shipping.
- copyLog List<Property Map | Property Map | Property Map | Property Map>Details 
- List of copy log details.
- copyProgress List<Property Map>
- Copy progress per disk.
- dataCenter StringCode 
- DataCenter code.
- datacenterAddress Property Map | Property Map
- Datacenter address to ship to, for the given sku and storage location.
- deliverTo Property MapDc Package Details 
- Delivery package shipping details.
- deliveryPackage Property Map
- Delivery package shipping details.
- deviceErasure Property MapDetails 
- Holds device data erasure details
- exportDisk Map<Property Map>Details Collection 
- Contains the map of disk serial number to the disk details for export jobs.
- jobStages List<Property Map>
- List of stages that run in the job.
- lastMitigation Property MapAction On Job 
- Last mitigation action performed on the job.
- returnPackage Property Map
- Return package shipping details.
- returnTo Property MapCustomer Package Details 
- Return package shipping details.
- reverseShipment StringLabel Sas Key 
- Shared access key to download the return shipment label
- dataExport List<Property Map>Details 
- Details of the data to be exported from azure.
- dataImport List<Property Map>Details 
- Details of the data to be imported into azure.
- enableManifest BooleanBackup 
- Flag to indicate if disk manifest should be backed-up in the Storage Account.
- expectedData NumberSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- importDisk Map<Property Map>Details Collection 
- Contains the map of disk serial number to the disk details for import jobs.
- keyEncryption Property MapKey 
- Details about which key encryption type is being used.
- preferences Property Map
- Preferences for the order.
- reverseShipping Property MapDetails 
- Optional Reverse Shipping details for order.
- shippingAddress Property Map
- Shipping address of the customer.
DataBoxDiskCopyLogDetailsResponse, DataBoxDiskCopyLogDetailsResponseArgs              
- DiskSerial stringNumber 
- Disk Serial Number.
- ErrorLog stringLink 
- Link for copy error logs.
- VerboseLog stringLink 
- Link for copy verbose logs.
- DiskSerial stringNumber 
- Disk Serial Number.
- ErrorLog stringLink 
- Link for copy error logs.
- VerboseLog stringLink 
- Link for copy verbose logs.
- diskSerial StringNumber 
- Disk Serial Number.
- errorLog StringLink 
- Link for copy error logs.
- verboseLog StringLink 
- Link for copy verbose logs.
- diskSerial stringNumber 
- Disk Serial Number.
- errorLog stringLink 
- Link for copy error logs.
- verboseLog stringLink 
- Link for copy verbose logs.
- disk_serial_ strnumber 
- Disk Serial Number.
- error_log_ strlink 
- Link for copy error logs.
- verbose_log_ strlink 
- Link for copy verbose logs.
- diskSerial StringNumber 
- Disk Serial Number.
- errorLog StringLink 
- Link for copy error logs.
- verboseLog StringLink 
- Link for copy verbose logs.
DataBoxDiskCopyProgressResponse, DataBoxDiskCopyProgressResponseArgs            
- Actions List<string>
- Available actions on the job.
- BytesCopied double
- Bytes copied during the copy of disk.
- Error
Pulumi.Azure Native. Data Box. Inputs. Cloud Error Response 
- Error, if any, in the stage
- PercentComplete int
- Indicates the percentage completed for the copy of the disk.
- SerialNumber string
- The serial number of the disk
- Status string
- The Status of the copy
- Actions []string
- Available actions on the job.
- BytesCopied float64
- Bytes copied during the copy of disk.
- Error
CloudError Response 
- Error, if any, in the stage
- PercentComplete int
- Indicates the percentage completed for the copy of the disk.
- SerialNumber string
- The serial number of the disk
- Status string
- The Status of the copy
- actions List<String>
- Available actions on the job.
- bytesCopied Double
- Bytes copied during the copy of disk.
- error
CloudError Response 
- Error, if any, in the stage
- percentComplete Integer
- Indicates the percentage completed for the copy of the disk.
- serialNumber String
- The serial number of the disk
- status String
- The Status of the copy
- actions string[]
- Available actions on the job.
- bytesCopied number
- Bytes copied during the copy of disk.
- error
CloudError Response 
- Error, if any, in the stage
- percentComplete number
- Indicates the percentage completed for the copy of the disk.
- serialNumber string
- The serial number of the disk
- status string
- The Status of the copy
- actions Sequence[str]
- Available actions on the job.
- bytes_copied float
- Bytes copied during the copy of disk.
- error
CloudError Response 
- Error, if any, in the stage
- percent_complete int
- Indicates the percentage completed for the copy of the disk.
- serial_number str
- The serial number of the disk
- status str
- The Status of the copy
- actions List<String>
- Available actions on the job.
- bytesCopied Number
- Bytes copied during the copy of disk.
- error Property Map
- Error, if any, in the stage
- percentComplete Number
- Indicates the percentage completed for the copy of the disk.
- serialNumber String
- The serial number of the disk
- status String
- The Status of the copy
DataBoxDiskGranularCopyLogDetailsResponse, DataBoxDiskGranularCopyLogDetailsResponseArgs                
- AccountId string
- Account id.
- ErrorLog stringLink 
- Link for copy error logs.
- SerialNumber string
- Disk Serial Number.
- VerboseLog stringLink 
- Link for copy verbose logs.
- AccountId string
- Account id.
- ErrorLog stringLink 
- Link for copy error logs.
- SerialNumber string
- Disk Serial Number.
- VerboseLog stringLink 
- Link for copy verbose logs.
- accountId String
- Account id.
- errorLog StringLink 
- Link for copy error logs.
- serialNumber String
- Disk Serial Number.
- verboseLog StringLink 
- Link for copy verbose logs.
- accountId string
- Account id.
- errorLog stringLink 
- Link for copy error logs.
- serialNumber string
- Disk Serial Number.
- verboseLog stringLink 
- Link for copy verbose logs.
- account_id str
- Account id.
- error_log_ strlink 
- Link for copy error logs.
- serial_number str
- Disk Serial Number.
- verbose_log_ strlink 
- Link for copy verbose logs.
- accountId String
- Account id.
- errorLog StringLink 
- Link for copy error logs.
- serialNumber String
- Disk Serial Number.
- verboseLog StringLink 
- Link for copy verbose logs.
DataBoxDiskGranularCopyProgressResponse, DataBoxDiskGranularCopyProgressResponseArgs              
- AccountId string
- Id of the account where the data needs to be uploaded.
- Actions List<string>
- Available actions on the job.
- BytesProcessed double
- To indicate bytes transferred.
- CopyStatus string
- The Status of the copy
- DataAccount stringType 
- Data Account Type.
- DirectoriesErrored doubleOut 
- To indicate directories errored out in the job.
- Error
Pulumi.Azure Native. Data Box. Inputs. Cloud Error Response 
- Error, if any, in the stage
- FilesErrored doubleOut 
- Number of files which could not be copied
- FilesProcessed double
- Number of files processed
- InvalidDirectories doubleProcessed 
- To indicate directories renamed
- InvalidFile doubleBytes Uploaded 
- Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- InvalidFiles doubleProcessed 
- Number of files not adhering to azure naming conventions which were processed by automatic renaming
- IsEnumeration boolIn Progress 
- To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- RenamedContainer doubleCount 
- Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- SerialNumber string
- Disk Serial Number.
- StorageAccount stringName 
- Name of the storage account. This will be empty for data account types other than storage account.
- TotalBytes doubleTo Process 
- Total amount of data to be processed by the job.
- TotalFiles doubleTo Process 
- Total files to process
- TransferType string
- Transfer type of data
- AccountId string
- Id of the account where the data needs to be uploaded.
- Actions []string
- Available actions on the job.
- BytesProcessed float64
- To indicate bytes transferred.
- CopyStatus string
- The Status of the copy
- DataAccount stringType 
- Data Account Type.
- DirectoriesErrored float64Out 
- To indicate directories errored out in the job.
- Error
CloudError Response 
- Error, if any, in the stage
- FilesErrored float64Out 
- Number of files which could not be copied
- FilesProcessed float64
- Number of files processed
- InvalidDirectories float64Processed 
- To indicate directories renamed
- InvalidFile float64Bytes Uploaded 
- Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- InvalidFiles float64Processed 
- Number of files not adhering to azure naming conventions which were processed by automatic renaming
- IsEnumeration boolIn Progress 
- To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- RenamedContainer float64Count 
- Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- SerialNumber string
- Disk Serial Number.
- StorageAccount stringName 
- Name of the storage account. This will be empty for data account types other than storage account.
- TotalBytes float64To Process 
- Total amount of data to be processed by the job.
- TotalFiles float64To Process 
- Total files to process
- TransferType string
- Transfer type of data
- accountId String
- Id of the account where the data needs to be uploaded.
- actions List<String>
- Available actions on the job.
- bytesProcessed Double
- To indicate bytes transferred.
- copyStatus String
- The Status of the copy
- dataAccount StringType 
- Data Account Type.
- directoriesErrored DoubleOut 
- To indicate directories errored out in the job.
- error
CloudError Response 
- Error, if any, in the stage
- filesErrored DoubleOut 
- Number of files which could not be copied
- filesProcessed Double
- Number of files processed
- invalidDirectories DoubleProcessed 
- To indicate directories renamed
- invalidFile DoubleBytes Uploaded 
- Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalidFiles DoubleProcessed 
- Number of files not adhering to azure naming conventions which were processed by automatic renaming
- isEnumeration BooleanIn Progress 
- To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamedContainer DoubleCount 
- Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- serialNumber String
- Disk Serial Number.
- storageAccount StringName 
- Name of the storage account. This will be empty for data account types other than storage account.
- totalBytes DoubleTo Process 
- Total amount of data to be processed by the job.
- totalFiles DoubleTo Process 
- Total files to process
- transferType String
- Transfer type of data
- accountId string
- Id of the account where the data needs to be uploaded.
- actions string[]
- Available actions on the job.
- bytesProcessed number
- To indicate bytes transferred.
- copyStatus string
- The Status of the copy
- dataAccount stringType 
- Data Account Type.
- directoriesErrored numberOut 
- To indicate directories errored out in the job.
- error
CloudError Response 
- Error, if any, in the stage
- filesErrored numberOut 
- Number of files which could not be copied
- filesProcessed number
- Number of files processed
- invalidDirectories numberProcessed 
- To indicate directories renamed
- invalidFile numberBytes Uploaded 
- Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalidFiles numberProcessed 
- Number of files not adhering to azure naming conventions which were processed by automatic renaming
- isEnumeration booleanIn Progress 
- To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamedContainer numberCount 
- Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- serialNumber string
- Disk Serial Number.
- storageAccount stringName 
- Name of the storage account. This will be empty for data account types other than storage account.
- totalBytes numberTo Process 
- Total amount of data to be processed by the job.
- totalFiles numberTo Process 
- Total files to process
- transferType string
- Transfer type of data
- account_id str
- Id of the account where the data needs to be uploaded.
- actions Sequence[str]
- Available actions on the job.
- bytes_processed float
- To indicate bytes transferred.
- copy_status str
- The Status of the copy
- data_account_ strtype 
- Data Account Type.
- directories_errored_ floatout 
- To indicate directories errored out in the job.
- error
CloudError Response 
- Error, if any, in the stage
- files_errored_ floatout 
- Number of files which could not be copied
- files_processed float
- Number of files processed
- invalid_directories_ floatprocessed 
- To indicate directories renamed
- invalid_file_ floatbytes_ uploaded 
- Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalid_files_ floatprocessed 
- Number of files not adhering to azure naming conventions which were processed by automatic renaming
- is_enumeration_ boolin_ progress 
- To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamed_container_ floatcount 
- Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- serial_number str
- Disk Serial Number.
- storage_account_ strname 
- Name of the storage account. This will be empty for data account types other than storage account.
- total_bytes_ floatto_ process 
- Total amount of data to be processed by the job.
- total_files_ floatto_ process 
- Total files to process
- transfer_type str
- Transfer type of data
- accountId String
- Id of the account where the data needs to be uploaded.
- actions List<String>
- Available actions on the job.
- bytesProcessed Number
- To indicate bytes transferred.
- copyStatus String
- The Status of the copy
- dataAccount StringType 
- Data Account Type.
- directoriesErrored NumberOut 
- To indicate directories errored out in the job.
- error Property Map
- Error, if any, in the stage
- filesErrored NumberOut 
- Number of files which could not be copied
- filesProcessed Number
- Number of files processed
- invalidDirectories NumberProcessed 
- To indicate directories renamed
- invalidFile NumberBytes Uploaded 
- Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalidFiles NumberProcessed 
- Number of files not adhering to azure naming conventions which were processed by automatic renaming
- isEnumeration BooleanIn Progress 
- To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamedContainer NumberCount 
- Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- serialNumber String
- Disk Serial Number.
- storageAccount StringName 
- Name of the storage account. This will be empty for data account types other than storage account.
- totalBytes NumberTo Process 
- Total amount of data to be processed by the job.
- totalFiles NumberTo Process 
- Total files to process
- transferType String
- Transfer type of data
DataBoxDiskJobDetails, DataBoxDiskJobDetailsArgs          
- ContactDetails Pulumi.Azure Native. Data Box. Inputs. Contact Details 
- Contact details for notification and shipping.
- DataExport List<Pulumi.Details Azure Native. Data Box. Inputs. Data Export Details> 
- Details of the data to be exported from azure.
- DataImport List<Pulumi.Details Azure Native. Data Box. Inputs. Data Import Details> 
- Details of the data to be imported into azure.
- ExpectedData intSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- KeyEncryption Pulumi.Key Azure Native. Data Box. Inputs. Key Encryption Key 
- Details about which key encryption type is being used.
- Passkey string
- User entered passkey for DataBox Disk job.
- Preferences
Pulumi.Azure Native. Data Box. Inputs. Preferences 
- Preferences for the order.
- PreferredDisks Dictionary<string, int>
- User preference on what size disks are needed for the job. The map is from the disk size in TB to the count. Eg. {2,5} means 5 disks of 2 TB size. Key is string but will be checked against an int.
- ReverseShipping Pulumi.Details Azure Native. Data Box. Inputs. Reverse Shipping Details 
- Optional Reverse Shipping details for order.
- ShippingAddress Pulumi.Azure Native. Data Box. Inputs. Shipping Address 
- Shipping address of the customer.
- ContactDetails ContactDetails 
- Contact details for notification and shipping.
- DataExport []DataDetails Export Details 
- Details of the data to be exported from azure.
- DataImport []DataDetails Import Details 
- Details of the data to be imported into azure.
- ExpectedData intSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- KeyEncryption KeyKey Encryption Key 
- Details about which key encryption type is being used.
- Passkey string
- User entered passkey for DataBox Disk job.
- Preferences Preferences
- Preferences for the order.
- PreferredDisks map[string]int
- User preference on what size disks are needed for the job. The map is from the disk size in TB to the count. Eg. {2,5} means 5 disks of 2 TB size. Key is string but will be checked against an int.
- ReverseShipping ReverseDetails Shipping Details 
- Optional Reverse Shipping details for order.
- ShippingAddress ShippingAddress 
- Shipping address of the customer.
- contactDetails ContactDetails 
- Contact details for notification and shipping.
- dataExport List<DataDetails Export Details> 
- Details of the data to be exported from azure.
- dataImport List<DataDetails Import Details> 
- Details of the data to be imported into azure.
- expectedData IntegerSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- keyEncryption KeyKey Encryption Key 
- Details about which key encryption type is being used.
- passkey String
- User entered passkey for DataBox Disk job.
- preferences Preferences
- Preferences for the order.
- preferredDisks Map<String,Integer>
- User preference on what size disks are needed for the job. The map is from the disk size in TB to the count. Eg. {2,5} means 5 disks of 2 TB size. Key is string but will be checked against an int.
- reverseShipping ReverseDetails Shipping Details 
- Optional Reverse Shipping details for order.
- shippingAddress ShippingAddress 
- Shipping address of the customer.
- contactDetails ContactDetails 
- Contact details for notification and shipping.
- dataExport DataDetails Export Details[] 
- Details of the data to be exported from azure.
- dataImport DataDetails Import Details[] 
- Details of the data to be imported into azure.
- expectedData numberSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- keyEncryption KeyKey Encryption Key 
- Details about which key encryption type is being used.
- passkey string
- User entered passkey for DataBox Disk job.
- preferences Preferences
- Preferences for the order.
- preferredDisks {[key: string]: number}
- User preference on what size disks are needed for the job. The map is from the disk size in TB to the count. Eg. {2,5} means 5 disks of 2 TB size. Key is string but will be checked against an int.
- reverseShipping ReverseDetails Shipping Details 
- Optional Reverse Shipping details for order.
- shippingAddress ShippingAddress 
- Shipping address of the customer.
- contact_details ContactDetails 
- Contact details for notification and shipping.
- data_export_ Sequence[Datadetails Export Details] 
- Details of the data to be exported from azure.
- data_import_ Sequence[Datadetails Import Details] 
- Details of the data to be imported into azure.
- expected_data_ intsize_ in_ tera_ bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- key_encryption_ Keykey Encryption Key 
- Details about which key encryption type is being used.
- passkey str
- User entered passkey for DataBox Disk job.
- preferences Preferences
- Preferences for the order.
- preferred_disks Mapping[str, int]
- User preference on what size disks are needed for the job. The map is from the disk size in TB to the count. Eg. {2,5} means 5 disks of 2 TB size. Key is string but will be checked against an int.
- reverse_shipping_ Reversedetails Shipping Details 
- Optional Reverse Shipping details for order.
- shipping_address ShippingAddress 
- Shipping address of the customer.
- contactDetails Property Map
- Contact details for notification and shipping.
- dataExport List<Property Map>Details 
- Details of the data to be exported from azure.
- dataImport List<Property Map>Details 
- Details of the data to be imported into azure.
- expectedData NumberSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- keyEncryption Property MapKey 
- Details about which key encryption type is being used.
- passkey String
- User entered passkey for DataBox Disk job.
- preferences Property Map
- Preferences for the order.
- preferredDisks Map<Number>
- User preference on what size disks are needed for the job. The map is from the disk size in TB to the count. Eg. {2,5} means 5 disks of 2 TB size. Key is string but will be checked against an int.
- reverseShipping Property MapDetails 
- Optional Reverse Shipping details for order.
- shippingAddress Property Map
- Shipping address of the customer.
DataBoxDiskJobDetailsResponse, DataBoxDiskJobDetailsResponseArgs            
- Actions List<string>
- Available actions on the job.
- ChainOf stringCustody Sas Key 
- Shared access key to download the chain of custody logs
- ContactDetails Pulumi.Azure Native. Data Box. Inputs. Contact Details Response 
- Contact details for notification and shipping.
- CopyLog List<object>Details 
- List of copy log details.
- CopyProgress List<Pulumi.Azure Native. Data Box. Inputs. Data Box Disk Copy Progress Response> 
- Copy progress per disk.
- DataCenter stringCode 
- DataCenter code.
- DatacenterAddress Pulumi.Azure | Pulumi.Native. Data Box. Inputs. Datacenter Address Instruction Response Response Azure Native. Data Box. Inputs. Datacenter Address Location Response Response 
- Datacenter address to ship to, for the given sku and storage location.
- DeliveryPackage Pulumi.Azure Native. Data Box. Inputs. Package Shipping Details Response 
- Delivery package shipping details.
- DeviceErasure Pulumi.Details Azure Native. Data Box. Inputs. Device Erasure Details Response 
- Holds device data erasure details
- DisksAnd Dictionary<string, int>Size Details 
- Contains the map of disk serial number to the disk size being used for the job. Is returned only after the disks are shipped to the customer.
- GranularCopy List<Pulumi.Log Details Azure Native. Data Box. Inputs. Data Box Disk Granular Copy Log Details Response> 
- Copy progress per disk.
- GranularCopy List<Pulumi.Progress Azure Native. Data Box. Inputs. Data Box Disk Granular Copy Progress Response> 
- Copy progress per disk.
- JobStages List<Pulumi.Azure Native. Data Box. Inputs. Job Stages Response> 
- List of stages that run in the job.
- LastMitigation Pulumi.Action On Job Azure Native. Data Box. Inputs. Last Mitigation Action On Job Response 
- Last mitigation action performed on the job.
- ReturnPackage Pulumi.Azure Native. Data Box. Inputs. Package Shipping Details Response 
- Return package shipping details.
- ReverseShipment stringLabel Sas Key 
- Shared access key to download the return shipment label
- DataExport List<Pulumi.Details Azure Native. Data Box. Inputs. Data Export Details Response> 
- Details of the data to be exported from azure.
- DataImport List<Pulumi.Details Azure Native. Data Box. Inputs. Data Import Details Response> 
- Details of the data to be imported into azure.
- ExpectedData intSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- KeyEncryption Pulumi.Key Azure Native. Data Box. Inputs. Key Encryption Key Response 
- Details about which key encryption type is being used.
- Passkey string
- User entered passkey for DataBox Disk job.
- Preferences
Pulumi.Azure Native. Data Box. Inputs. Preferences Response 
- Preferences for the order.
- PreferredDisks Dictionary<string, int>
- User preference on what size disks are needed for the job. The map is from the disk size in TB to the count. Eg. {2,5} means 5 disks of 2 TB size. Key is string but will be checked against an int.
- ReverseShipping Pulumi.Details Azure Native. Data Box. Inputs. Reverse Shipping Details Response 
- Optional Reverse Shipping details for order.
- ShippingAddress Pulumi.Azure Native. Data Box. Inputs. Shipping Address Response 
- Shipping address of the customer.
- Actions []string
- Available actions on the job.
- ChainOf stringCustody Sas Key 
- Shared access key to download the chain of custody logs
- ContactDetails ContactDetails Response 
- Contact details for notification and shipping.
- CopyLog []interface{}Details 
- List of copy log details.
- CopyProgress []DataBox Disk Copy Progress Response 
- Copy progress per disk.
- DataCenter stringCode 
- DataCenter code.
- DatacenterAddress DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response 
- Datacenter address to ship to, for the given sku and storage location.
- DeliveryPackage PackageShipping Details Response 
- Delivery package shipping details.
- DeviceErasure DeviceDetails Erasure Details Response 
- Holds device data erasure details
- DisksAnd map[string]intSize Details 
- Contains the map of disk serial number to the disk size being used for the job. Is returned only after the disks are shipped to the customer.
- GranularCopy []DataLog Details Box Disk Granular Copy Log Details Response 
- Copy progress per disk.
- GranularCopy []DataProgress Box Disk Granular Copy Progress Response 
- Copy progress per disk.
- JobStages []JobStages Response 
- List of stages that run in the job.
- LastMitigation LastAction On Job Mitigation Action On Job Response 
- Last mitigation action performed on the job.
- ReturnPackage PackageShipping Details Response 
- Return package shipping details.
- ReverseShipment stringLabel Sas Key 
- Shared access key to download the return shipment label
- DataExport []DataDetails Export Details Response 
- Details of the data to be exported from azure.
- DataImport []DataDetails Import Details Response 
- Details of the data to be imported into azure.
- ExpectedData intSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- KeyEncryption KeyKey Encryption Key Response 
- Details about which key encryption type is being used.
- Passkey string
- User entered passkey for DataBox Disk job.
- Preferences
PreferencesResponse 
- Preferences for the order.
- PreferredDisks map[string]int
- User preference on what size disks are needed for the job. The map is from the disk size in TB to the count. Eg. {2,5} means 5 disks of 2 TB size. Key is string but will be checked against an int.
- ReverseShipping ReverseDetails Shipping Details Response 
- Optional Reverse Shipping details for order.
- ShippingAddress ShippingAddress Response 
- Shipping address of the customer.
- actions List<String>
- Available actions on the job.
- chainOf StringCustody Sas Key 
- Shared access key to download the chain of custody logs
- contactDetails ContactDetails Response 
- Contact details for notification and shipping.
- copyLog List<Object>Details 
- List of copy log details.
- copyProgress List<DataBox Disk Copy Progress Response> 
- Copy progress per disk.
- dataCenter StringCode 
- DataCenter code.
- datacenterAddress DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response 
- Datacenter address to ship to, for the given sku and storage location.
- deliveryPackage PackageShipping Details Response 
- Delivery package shipping details.
- deviceErasure DeviceDetails Erasure Details Response 
- Holds device data erasure details
- disksAnd Map<String,Integer>Size Details 
- Contains the map of disk serial number to the disk size being used for the job. Is returned only after the disks are shipped to the customer.
- granularCopy List<DataLog Details Box Disk Granular Copy Log Details Response> 
- Copy progress per disk.
- granularCopy List<DataProgress Box Disk Granular Copy Progress Response> 
- Copy progress per disk.
- jobStages List<JobStages Response> 
- List of stages that run in the job.
- lastMitigation LastAction On Job Mitigation Action On Job Response 
- Last mitigation action performed on the job.
- returnPackage PackageShipping Details Response 
- Return package shipping details.
- reverseShipment StringLabel Sas Key 
- Shared access key to download the return shipment label
- dataExport List<DataDetails Export Details Response> 
- Details of the data to be exported from azure.
- dataImport List<DataDetails Import Details Response> 
- Details of the data to be imported into azure.
- expectedData IntegerSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- keyEncryption KeyKey Encryption Key Response 
- Details about which key encryption type is being used.
- passkey String
- User entered passkey for DataBox Disk job.
- preferences
PreferencesResponse 
- Preferences for the order.
- preferredDisks Map<String,Integer>
- User preference on what size disks are needed for the job. The map is from the disk size in TB to the count. Eg. {2,5} means 5 disks of 2 TB size. Key is string but will be checked against an int.
- reverseShipping ReverseDetails Shipping Details Response 
- Optional Reverse Shipping details for order.
- shippingAddress ShippingAddress Response 
- Shipping address of the customer.
- actions string[]
- Available actions on the job.
- chainOf stringCustody Sas Key 
- Shared access key to download the chain of custody logs
- contactDetails ContactDetails Response 
- Contact details for notification and shipping.
- copyLog (DataDetails Box Account Copy Log Details Response | Data Box Customer Disk Copy Log Details Response | Data Box Disk Copy Log Details Response | Data Box Heavy Account Copy Log Details Response)[] 
- List of copy log details.
- copyProgress DataBox Disk Copy Progress Response[] 
- Copy progress per disk.
- dataCenter stringCode 
- DataCenter code.
- datacenterAddress DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response 
- Datacenter address to ship to, for the given sku and storage location.
- deliveryPackage PackageShipping Details Response 
- Delivery package shipping details.
- deviceErasure DeviceDetails Erasure Details Response 
- Holds device data erasure details
- disksAnd {[key: string]: number}Size Details 
- Contains the map of disk serial number to the disk size being used for the job. Is returned only after the disks are shipped to the customer.
- granularCopy DataLog Details Box Disk Granular Copy Log Details Response[] 
- Copy progress per disk.
- granularCopy DataProgress Box Disk Granular Copy Progress Response[] 
- Copy progress per disk.
- jobStages JobStages Response[] 
- List of stages that run in the job.
- lastMitigation LastAction On Job Mitigation Action On Job Response 
- Last mitigation action performed on the job.
- returnPackage PackageShipping Details Response 
- Return package shipping details.
- reverseShipment stringLabel Sas Key 
- Shared access key to download the return shipment label
- dataExport DataDetails Export Details Response[] 
- Details of the data to be exported from azure.
- dataImport DataDetails Import Details Response[] 
- Details of the data to be imported into azure.
- expectedData numberSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- keyEncryption KeyKey Encryption Key Response 
- Details about which key encryption type is being used.
- passkey string
- User entered passkey for DataBox Disk job.
- preferences
PreferencesResponse 
- Preferences for the order.
- preferredDisks {[key: string]: number}
- User preference on what size disks are needed for the job. The map is from the disk size in TB to the count. Eg. {2,5} means 5 disks of 2 TB size. Key is string but will be checked against an int.
- reverseShipping ReverseDetails Shipping Details Response 
- Optional Reverse Shipping details for order.
- shippingAddress ShippingAddress Response 
- Shipping address of the customer.
- actions Sequence[str]
- Available actions on the job.
- chain_of_ strcustody_ sas_ key 
- Shared access key to download the chain of custody logs
- contact_details ContactDetails Response 
- Contact details for notification and shipping.
- copy_log_ Sequence[Union[Datadetails Box Account Copy Log Details Response, Data Box Customer Disk Copy Log Details Response, Data Box Disk Copy Log Details Response, Data Box Heavy Account Copy Log Details Response]] 
- List of copy log details.
- copy_progress Sequence[DataBox Disk Copy Progress Response] 
- Copy progress per disk.
- data_center_ strcode 
- DataCenter code.
- datacenter_address DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response 
- Datacenter address to ship to, for the given sku and storage location.
- delivery_package PackageShipping Details Response 
- Delivery package shipping details.
- device_erasure_ Devicedetails Erasure Details Response 
- Holds device data erasure details
- disks_and_ Mapping[str, int]size_ details 
- Contains the map of disk serial number to the disk size being used for the job. Is returned only after the disks are shipped to the customer.
- granular_copy_ Sequence[Datalog_ details Box Disk Granular Copy Log Details Response] 
- Copy progress per disk.
- granular_copy_ Sequence[Dataprogress Box Disk Granular Copy Progress Response] 
- Copy progress per disk.
- job_stages Sequence[JobStages Response] 
- List of stages that run in the job.
- last_mitigation_ Lastaction_ on_ job Mitigation Action On Job Response 
- Last mitigation action performed on the job.
- return_package PackageShipping Details Response 
- Return package shipping details.
- reverse_shipment_ strlabel_ sas_ key 
- Shared access key to download the return shipment label
- data_export_ Sequence[Datadetails Export Details Response] 
- Details of the data to be exported from azure.
- data_import_ Sequence[Datadetails Import Details Response] 
- Details of the data to be imported into azure.
- expected_data_ intsize_ in_ tera_ bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- key_encryption_ Keykey Encryption Key Response 
- Details about which key encryption type is being used.
- passkey str
- User entered passkey for DataBox Disk job.
- preferences
PreferencesResponse 
- Preferences for the order.
- preferred_disks Mapping[str, int]
- User preference on what size disks are needed for the job. The map is from the disk size in TB to the count. Eg. {2,5} means 5 disks of 2 TB size. Key is string but will be checked against an int.
- reverse_shipping_ Reversedetails Shipping Details Response 
- Optional Reverse Shipping details for order.
- shipping_address ShippingAddress Response 
- Shipping address of the customer.
- actions List<String>
- Available actions on the job.
- chainOf StringCustody Sas Key 
- Shared access key to download the chain of custody logs
- contactDetails Property Map
- Contact details for notification and shipping.
- copyLog List<Property Map | Property Map | Property Map | Property Map>Details 
- List of copy log details.
- copyProgress List<Property Map>
- Copy progress per disk.
- dataCenter StringCode 
- DataCenter code.
- datacenterAddress Property Map | Property Map
- Datacenter address to ship to, for the given sku and storage location.
- deliveryPackage Property Map
- Delivery package shipping details.
- deviceErasure Property MapDetails 
- Holds device data erasure details
- disksAnd Map<Number>Size Details 
- Contains the map of disk serial number to the disk size being used for the job. Is returned only after the disks are shipped to the customer.
- granularCopy List<Property Map>Log Details 
- Copy progress per disk.
- granularCopy List<Property Map>Progress 
- Copy progress per disk.
- jobStages List<Property Map>
- List of stages that run in the job.
- lastMitigation Property MapAction On Job 
- Last mitigation action performed on the job.
- returnPackage Property Map
- Return package shipping details.
- reverseShipment StringLabel Sas Key 
- Shared access key to download the return shipment label
- dataExport List<Property Map>Details 
- Details of the data to be exported from azure.
- dataImport List<Property Map>Details 
- Details of the data to be imported into azure.
- expectedData NumberSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- keyEncryption Property MapKey 
- Details about which key encryption type is being used.
- passkey String
- User entered passkey for DataBox Disk job.
- preferences Property Map
- Preferences for the order.
- preferredDisks Map<Number>
- User preference on what size disks are needed for the job. The map is from the disk size in TB to the count. Eg. {2,5} means 5 disks of 2 TB size. Key is string but will be checked against an int.
- reverseShipping Property MapDetails 
- Optional Reverse Shipping details for order.
- shippingAddress Property Map
- Shipping address of the customer.
DataBoxHeavyAccountCopyLogDetailsResponse, DataBoxHeavyAccountCopyLogDetailsResponseArgs                
- AccountName string
- Account name.
- CopyLog List<string>Link 
- Link for copy logs.
- CopyVerbose List<string>Log Link 
- Link for copy verbose logs. This will be set only when the LogCollectionLevel is set to verbose.
- AccountName string
- Account name.
- CopyLog []stringLink 
- Link for copy logs.
- CopyVerbose []stringLog Link 
- Link for copy verbose logs. This will be set only when the LogCollectionLevel is set to verbose.
- accountName String
- Account name.
- copyLog List<String>Link 
- Link for copy logs.
- copyVerbose List<String>Log Link 
- Link for copy verbose logs. This will be set only when the LogCollectionLevel is set to verbose.
- accountName string
- Account name.
- copyLog string[]Link 
- Link for copy logs.
- copyVerbose string[]Log Link 
- Link for copy verbose logs. This will be set only when the LogCollectionLevel is set to verbose.
- account_name str
- Account name.
- copy_log_ Sequence[str]link 
- Link for copy logs.
- copy_verbose_ Sequence[str]log_ link 
- Link for copy verbose logs. This will be set only when the LogCollectionLevel is set to verbose.
- accountName String
- Account name.
- copyLog List<String>Link 
- Link for copy logs.
- copyVerbose List<String>Log Link 
- Link for copy verbose logs. This will be set only when the LogCollectionLevel is set to verbose.
DataBoxHeavyJobDetails, DataBoxHeavyJobDetailsArgs          
- ContactDetails Pulumi.Azure Native. Data Box. Inputs. Contact Details 
- Contact details for notification and shipping.
- DataExport List<Pulumi.Details Azure Native. Data Box. Inputs. Data Export Details> 
- Details of the data to be exported from azure.
- DataImport List<Pulumi.Details Azure Native. Data Box. Inputs. Data Import Details> 
- Details of the data to be imported into azure.
- DevicePassword string
- Set Device password for unlocking Databox Heavy. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- ExpectedData intSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- KeyEncryption Pulumi.Key Azure Native. Data Box. Inputs. Key Encryption Key 
- Details about which key encryption type is being used.
- Preferences
Pulumi.Azure Native. Data Box. Inputs. Preferences 
- Preferences for the order.
- ReverseShipping Pulumi.Details Azure Native. Data Box. Inputs. Reverse Shipping Details 
- Optional Reverse Shipping details for order.
- ShippingAddress Pulumi.Azure Native. Data Box. Inputs. Shipping Address 
- Shipping address of the customer.
- ContactDetails ContactDetails 
- Contact details for notification and shipping.
- DataExport []DataDetails Export Details 
- Details of the data to be exported from azure.
- DataImport []DataDetails Import Details 
- Details of the data to be imported into azure.
- DevicePassword string
- Set Device password for unlocking Databox Heavy. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- ExpectedData intSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- KeyEncryption KeyKey Encryption Key 
- Details about which key encryption type is being used.
- Preferences Preferences
- Preferences for the order.
- ReverseShipping ReverseDetails Shipping Details 
- Optional Reverse Shipping details for order.
- ShippingAddress ShippingAddress 
- Shipping address of the customer.
- contactDetails ContactDetails 
- Contact details for notification and shipping.
- dataExport List<DataDetails Export Details> 
- Details of the data to be exported from azure.
- dataImport List<DataDetails Import Details> 
- Details of the data to be imported into azure.
- devicePassword String
- Set Device password for unlocking Databox Heavy. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- expectedData IntegerSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- keyEncryption KeyKey Encryption Key 
- Details about which key encryption type is being used.
- preferences Preferences
- Preferences for the order.
- reverseShipping ReverseDetails Shipping Details 
- Optional Reverse Shipping details for order.
- shippingAddress ShippingAddress 
- Shipping address of the customer.
- contactDetails ContactDetails 
- Contact details for notification and shipping.
- dataExport DataDetails Export Details[] 
- Details of the data to be exported from azure.
- dataImport DataDetails Import Details[] 
- Details of the data to be imported into azure.
- devicePassword string
- Set Device password for unlocking Databox Heavy. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- expectedData numberSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- keyEncryption KeyKey Encryption Key 
- Details about which key encryption type is being used.
- preferences Preferences
- Preferences for the order.
- reverseShipping ReverseDetails Shipping Details 
- Optional Reverse Shipping details for order.
- shippingAddress ShippingAddress 
- Shipping address of the customer.
- contact_details ContactDetails 
- Contact details for notification and shipping.
- data_export_ Sequence[Datadetails Export Details] 
- Details of the data to be exported from azure.
- data_import_ Sequence[Datadetails Import Details] 
- Details of the data to be imported into azure.
- device_password str
- Set Device password for unlocking Databox Heavy. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- expected_data_ intsize_ in_ tera_ bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- key_encryption_ Keykey Encryption Key 
- Details about which key encryption type is being used.
- preferences Preferences
- Preferences for the order.
- reverse_shipping_ Reversedetails Shipping Details 
- Optional Reverse Shipping details for order.
- shipping_address ShippingAddress 
- Shipping address of the customer.
- contactDetails Property Map
- Contact details for notification and shipping.
- dataExport List<Property Map>Details 
- Details of the data to be exported from azure.
- dataImport List<Property Map>Details 
- Details of the data to be imported into azure.
- devicePassword String
- Set Device password for unlocking Databox Heavy. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- expectedData NumberSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- keyEncryption Property MapKey 
- Details about which key encryption type is being used.
- preferences Property Map
- Preferences for the order.
- reverseShipping Property MapDetails 
- Optional Reverse Shipping details for order.
- shippingAddress Property Map
- Shipping address of the customer.
DataBoxHeavyJobDetailsResponse, DataBoxHeavyJobDetailsResponseArgs            
- Actions List<string>
- Available actions on the job.
- ChainOf stringCustody Sas Key 
- Shared access key to download the chain of custody logs
- ContactDetails Pulumi.Azure Native. Data Box. Inputs. Contact Details Response 
- Contact details for notification and shipping.
- CopyLog List<object>Details 
- List of copy log details.
- CopyProgress List<Pulumi.Azure Native. Data Box. Inputs. Copy Progress Response> 
- Copy progress per account.
- DataCenter stringCode 
- DataCenter code.
- DatacenterAddress Pulumi.Azure | Pulumi.Native. Data Box. Inputs. Datacenter Address Instruction Response Response Azure Native. Data Box. Inputs. Datacenter Address Location Response Response 
- Datacenter address to ship to, for the given sku and storage location.
- DeliveryPackage Pulumi.Azure Native. Data Box. Inputs. Package Shipping Details Response 
- Delivery package shipping details.
- DeviceErasure Pulumi.Details Azure Native. Data Box. Inputs. Device Erasure Details Response 
- Holds device data erasure details
- JobStages List<Pulumi.Azure Native. Data Box. Inputs. Job Stages Response> 
- List of stages that run in the job.
- LastMitigation Pulumi.Action On Job Azure Native. Data Box. Inputs. Last Mitigation Action On Job Response 
- Last mitigation action performed on the job.
- ReturnPackage Pulumi.Azure Native. Data Box. Inputs. Package Shipping Details Response 
- Return package shipping details.
- ReverseShipment stringLabel Sas Key 
- Shared access key to download the return shipment label
- DataExport List<Pulumi.Details Azure Native. Data Box. Inputs. Data Export Details Response> 
- Details of the data to be exported from azure.
- DataImport List<Pulumi.Details Azure Native. Data Box. Inputs. Data Import Details Response> 
- Details of the data to be imported into azure.
- DevicePassword string
- Set Device password for unlocking Databox Heavy. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- ExpectedData intSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- KeyEncryption Pulumi.Key Azure Native. Data Box. Inputs. Key Encryption Key Response 
- Details about which key encryption type is being used.
- Preferences
Pulumi.Azure Native. Data Box. Inputs. Preferences Response 
- Preferences for the order.
- ReverseShipping Pulumi.Details Azure Native. Data Box. Inputs. Reverse Shipping Details Response 
- Optional Reverse Shipping details for order.
- ShippingAddress Pulumi.Azure Native. Data Box. Inputs. Shipping Address Response 
- Shipping address of the customer.
- Actions []string
- Available actions on the job.
- ChainOf stringCustody Sas Key 
- Shared access key to download the chain of custody logs
- ContactDetails ContactDetails Response 
- Contact details for notification and shipping.
- CopyLog []interface{}Details 
- List of copy log details.
- CopyProgress []CopyProgress Response 
- Copy progress per account.
- DataCenter stringCode 
- DataCenter code.
- DatacenterAddress DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response 
- Datacenter address to ship to, for the given sku and storage location.
- DeliveryPackage PackageShipping Details Response 
- Delivery package shipping details.
- DeviceErasure DeviceDetails Erasure Details Response 
- Holds device data erasure details
- JobStages []JobStages Response 
- List of stages that run in the job.
- LastMitigation LastAction On Job Mitigation Action On Job Response 
- Last mitigation action performed on the job.
- ReturnPackage PackageShipping Details Response 
- Return package shipping details.
- ReverseShipment stringLabel Sas Key 
- Shared access key to download the return shipment label
- DataExport []DataDetails Export Details Response 
- Details of the data to be exported from azure.
- DataImport []DataDetails Import Details Response 
- Details of the data to be imported into azure.
- DevicePassword string
- Set Device password for unlocking Databox Heavy. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- ExpectedData intSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- KeyEncryption KeyKey Encryption Key Response 
- Details about which key encryption type is being used.
- Preferences
PreferencesResponse 
- Preferences for the order.
- ReverseShipping ReverseDetails Shipping Details Response 
- Optional Reverse Shipping details for order.
- ShippingAddress ShippingAddress Response 
- Shipping address of the customer.
- actions List<String>
- Available actions on the job.
- chainOf StringCustody Sas Key 
- Shared access key to download the chain of custody logs
- contactDetails ContactDetails Response 
- Contact details for notification and shipping.
- copyLog List<Object>Details 
- List of copy log details.
- copyProgress List<CopyProgress Response> 
- Copy progress per account.
- dataCenter StringCode 
- DataCenter code.
- datacenterAddress DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response 
- Datacenter address to ship to, for the given sku and storage location.
- deliveryPackage PackageShipping Details Response 
- Delivery package shipping details.
- deviceErasure DeviceDetails Erasure Details Response 
- Holds device data erasure details
- jobStages List<JobStages Response> 
- List of stages that run in the job.
- lastMitigation LastAction On Job Mitigation Action On Job Response 
- Last mitigation action performed on the job.
- returnPackage PackageShipping Details Response 
- Return package shipping details.
- reverseShipment StringLabel Sas Key 
- Shared access key to download the return shipment label
- dataExport List<DataDetails Export Details Response> 
- Details of the data to be exported from azure.
- dataImport List<DataDetails Import Details Response> 
- Details of the data to be imported into azure.
- devicePassword String
- Set Device password for unlocking Databox Heavy. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- expectedData IntegerSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- keyEncryption KeyKey Encryption Key Response 
- Details about which key encryption type is being used.
- preferences
PreferencesResponse 
- Preferences for the order.
- reverseShipping ReverseDetails Shipping Details Response 
- Optional Reverse Shipping details for order.
- shippingAddress ShippingAddress Response 
- Shipping address of the customer.
- actions string[]
- Available actions on the job.
- chainOf stringCustody Sas Key 
- Shared access key to download the chain of custody logs
- contactDetails ContactDetails Response 
- Contact details for notification and shipping.
- copyLog (DataDetails Box Account Copy Log Details Response | Data Box Customer Disk Copy Log Details Response | Data Box Disk Copy Log Details Response | Data Box Heavy Account Copy Log Details Response)[] 
- List of copy log details.
- copyProgress CopyProgress Response[] 
- Copy progress per account.
- dataCenter stringCode 
- DataCenter code.
- datacenterAddress DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response 
- Datacenter address to ship to, for the given sku and storage location.
- deliveryPackage PackageShipping Details Response 
- Delivery package shipping details.
- deviceErasure DeviceDetails Erasure Details Response 
- Holds device data erasure details
- jobStages JobStages Response[] 
- List of stages that run in the job.
- lastMitigation LastAction On Job Mitigation Action On Job Response 
- Last mitigation action performed on the job.
- returnPackage PackageShipping Details Response 
- Return package shipping details.
- reverseShipment stringLabel Sas Key 
- Shared access key to download the return shipment label
- dataExport DataDetails Export Details Response[] 
- Details of the data to be exported from azure.
- dataImport DataDetails Import Details Response[] 
- Details of the data to be imported into azure.
- devicePassword string
- Set Device password for unlocking Databox Heavy. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- expectedData numberSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- keyEncryption KeyKey Encryption Key Response 
- Details about which key encryption type is being used.
- preferences
PreferencesResponse 
- Preferences for the order.
- reverseShipping ReverseDetails Shipping Details Response 
- Optional Reverse Shipping details for order.
- shippingAddress ShippingAddress Response 
- Shipping address of the customer.
- actions Sequence[str]
- Available actions on the job.
- chain_of_ strcustody_ sas_ key 
- Shared access key to download the chain of custody logs
- contact_details ContactDetails Response 
- Contact details for notification and shipping.
- copy_log_ Sequence[Union[Datadetails Box Account Copy Log Details Response, Data Box Customer Disk Copy Log Details Response, Data Box Disk Copy Log Details Response, Data Box Heavy Account Copy Log Details Response]] 
- List of copy log details.
- copy_progress Sequence[CopyProgress Response] 
- Copy progress per account.
- data_center_ strcode 
- DataCenter code.
- datacenter_address DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response 
- Datacenter address to ship to, for the given sku and storage location.
- delivery_package PackageShipping Details Response 
- Delivery package shipping details.
- device_erasure_ Devicedetails Erasure Details Response 
- Holds device data erasure details
- job_stages Sequence[JobStages Response] 
- List of stages that run in the job.
- last_mitigation_ Lastaction_ on_ job Mitigation Action On Job Response 
- Last mitigation action performed on the job.
- return_package PackageShipping Details Response 
- Return package shipping details.
- reverse_shipment_ strlabel_ sas_ key 
- Shared access key to download the return shipment label
- data_export_ Sequence[Datadetails Export Details Response] 
- Details of the data to be exported from azure.
- data_import_ Sequence[Datadetails Import Details Response] 
- Details of the data to be imported into azure.
- device_password str
- Set Device password for unlocking Databox Heavy. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- expected_data_ intsize_ in_ tera_ bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- key_encryption_ Keykey Encryption Key Response 
- Details about which key encryption type is being used.
- preferences
PreferencesResponse 
- Preferences for the order.
- reverse_shipping_ Reversedetails Shipping Details Response 
- Optional Reverse Shipping details for order.
- shipping_address ShippingAddress Response 
- Shipping address of the customer.
- actions List<String>
- Available actions on the job.
- chainOf StringCustody Sas Key 
- Shared access key to download the chain of custody logs
- contactDetails Property Map
- Contact details for notification and shipping.
- copyLog List<Property Map | Property Map | Property Map | Property Map>Details 
- List of copy log details.
- copyProgress List<Property Map>
- Copy progress per account.
- dataCenter StringCode 
- DataCenter code.
- datacenterAddress Property Map | Property Map
- Datacenter address to ship to, for the given sku and storage location.
- deliveryPackage Property Map
- Delivery package shipping details.
- deviceErasure Property MapDetails 
- Holds device data erasure details
- jobStages List<Property Map>
- List of stages that run in the job.
- lastMitigation Property MapAction On Job 
- Last mitigation action performed on the job.
- returnPackage Property Map
- Return package shipping details.
- reverseShipment StringLabel Sas Key 
- Shared access key to download the return shipment label
- dataExport List<Property Map>Details 
- Details of the data to be exported from azure.
- dataImport List<Property Map>Details 
- Details of the data to be imported into azure.
- devicePassword String
- Set Device password for unlocking Databox Heavy. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- expectedData NumberSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- keyEncryption Property MapKey 
- Details about which key encryption type is being used.
- preferences Property Map
- Preferences for the order.
- reverseShipping Property MapDetails 
- Optional Reverse Shipping details for order.
- shippingAddress Property Map
- Shipping address of the customer.
DataBoxJobDetails, DataBoxJobDetailsArgs        
- ContactDetails Pulumi.Azure Native. Data Box. Inputs. Contact Details 
- Contact details for notification and shipping.
- DataExport List<Pulumi.Details Azure Native. Data Box. Inputs. Data Export Details> 
- Details of the data to be exported from azure.
- DataImport List<Pulumi.Details Azure Native. Data Box. Inputs. Data Import Details> 
- Details of the data to be imported into azure.
- DevicePassword string
- Set Device password for unlocking Databox. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- ExpectedData intSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- KeyEncryption Pulumi.Key Azure Native. Data Box. Inputs. Key Encryption Key 
- Details about which key encryption type is being used.
- Preferences
Pulumi.Azure Native. Data Box. Inputs. Preferences 
- Preferences for the order.
- ReverseShipping Pulumi.Details Azure Native. Data Box. Inputs. Reverse Shipping Details 
- Optional Reverse Shipping details for order.
- ShippingAddress Pulumi.Azure Native. Data Box. Inputs. Shipping Address 
- Shipping address of the customer.
- ContactDetails ContactDetails 
- Contact details for notification and shipping.
- DataExport []DataDetails Export Details 
- Details of the data to be exported from azure.
- DataImport []DataDetails Import Details 
- Details of the data to be imported into azure.
- DevicePassword string
- Set Device password for unlocking Databox. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- ExpectedData intSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- KeyEncryption KeyKey Encryption Key 
- Details about which key encryption type is being used.
- Preferences Preferences
- Preferences for the order.
- ReverseShipping ReverseDetails Shipping Details 
- Optional Reverse Shipping details for order.
- ShippingAddress ShippingAddress 
- Shipping address of the customer.
- contactDetails ContactDetails 
- Contact details for notification and shipping.
- dataExport List<DataDetails Export Details> 
- Details of the data to be exported from azure.
- dataImport List<DataDetails Import Details> 
- Details of the data to be imported into azure.
- devicePassword String
- Set Device password for unlocking Databox. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- expectedData IntegerSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- keyEncryption KeyKey Encryption Key 
- Details about which key encryption type is being used.
- preferences Preferences
- Preferences for the order.
- reverseShipping ReverseDetails Shipping Details 
- Optional Reverse Shipping details for order.
- shippingAddress ShippingAddress 
- Shipping address of the customer.
- contactDetails ContactDetails 
- Contact details for notification and shipping.
- dataExport DataDetails Export Details[] 
- Details of the data to be exported from azure.
- dataImport DataDetails Import Details[] 
- Details of the data to be imported into azure.
- devicePassword string
- Set Device password for unlocking Databox. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- expectedData numberSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- keyEncryption KeyKey Encryption Key 
- Details about which key encryption type is being used.
- preferences Preferences
- Preferences for the order.
- reverseShipping ReverseDetails Shipping Details 
- Optional Reverse Shipping details for order.
- shippingAddress ShippingAddress 
- Shipping address of the customer.
- contact_details ContactDetails 
- Contact details for notification and shipping.
- data_export_ Sequence[Datadetails Export Details] 
- Details of the data to be exported from azure.
- data_import_ Sequence[Datadetails Import Details] 
- Details of the data to be imported into azure.
- device_password str
- Set Device password for unlocking Databox. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- expected_data_ intsize_ in_ tera_ bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- key_encryption_ Keykey Encryption Key 
- Details about which key encryption type is being used.
- preferences Preferences
- Preferences for the order.
- reverse_shipping_ Reversedetails Shipping Details 
- Optional Reverse Shipping details for order.
- shipping_address ShippingAddress 
- Shipping address of the customer.
- contactDetails Property Map
- Contact details for notification and shipping.
- dataExport List<Property Map>Details 
- Details of the data to be exported from azure.
- dataImport List<Property Map>Details 
- Details of the data to be imported into azure.
- devicePassword String
- Set Device password for unlocking Databox. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- expectedData NumberSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- keyEncryption Property MapKey 
- Details about which key encryption type is being used.
- preferences Property Map
- Preferences for the order.
- reverseShipping Property MapDetails 
- Optional Reverse Shipping details for order.
- shippingAddress Property Map
- Shipping address of the customer.
DataBoxJobDetailsResponse, DataBoxJobDetailsResponseArgs          
- Actions List<string>
- Available actions on the job.
- ChainOf stringCustody Sas Key 
- Shared access key to download the chain of custody logs
- ContactDetails Pulumi.Azure Native. Data Box. Inputs. Contact Details Response 
- Contact details for notification and shipping.
- CopyLog List<object>Details 
- List of copy log details.
- CopyProgress List<Pulumi.Azure Native. Data Box. Inputs. Copy Progress Response> 
- Copy progress per storage account.
- DataCenter stringCode 
- DataCenter code.
- DatacenterAddress Pulumi.Azure | Pulumi.Native. Data Box. Inputs. Datacenter Address Instruction Response Response Azure Native. Data Box. Inputs. Datacenter Address Location Response Response 
- Datacenter address to ship to, for the given sku and storage location.
- DeliveryPackage Pulumi.Azure Native. Data Box. Inputs. Package Shipping Details Response 
- Delivery package shipping details.
- DeviceErasure Pulumi.Details Azure Native. Data Box. Inputs. Device Erasure Details Response 
- Holds device data erasure details
- JobStages List<Pulumi.Azure Native. Data Box. Inputs. Job Stages Response> 
- List of stages that run in the job.
- LastMitigation Pulumi.Action On Job Azure Native. Data Box. Inputs. Last Mitigation Action On Job Response 
- Last mitigation action performed on the job.
- ReturnPackage Pulumi.Azure Native. Data Box. Inputs. Package Shipping Details Response 
- Return package shipping details.
- ReverseShipment stringLabel Sas Key 
- Shared access key to download the return shipment label
- DataExport List<Pulumi.Details Azure Native. Data Box. Inputs. Data Export Details Response> 
- Details of the data to be exported from azure.
- DataImport List<Pulumi.Details Azure Native. Data Box. Inputs. Data Import Details Response> 
- Details of the data to be imported into azure.
- DevicePassword string
- Set Device password for unlocking Databox. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- ExpectedData intSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- KeyEncryption Pulumi.Key Azure Native. Data Box. Inputs. Key Encryption Key Response 
- Details about which key encryption type is being used.
- Preferences
Pulumi.Azure Native. Data Box. Inputs. Preferences Response 
- Preferences for the order.
- ReverseShipping Pulumi.Details Azure Native. Data Box. Inputs. Reverse Shipping Details Response 
- Optional Reverse Shipping details for order.
- ShippingAddress Pulumi.Azure Native. Data Box. Inputs. Shipping Address Response 
- Shipping address of the customer.
- Actions []string
- Available actions on the job.
- ChainOf stringCustody Sas Key 
- Shared access key to download the chain of custody logs
- ContactDetails ContactDetails Response 
- Contact details for notification and shipping.
- CopyLog []interface{}Details 
- List of copy log details.
- CopyProgress []CopyProgress Response 
- Copy progress per storage account.
- DataCenter stringCode 
- DataCenter code.
- DatacenterAddress DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response 
- Datacenter address to ship to, for the given sku and storage location.
- DeliveryPackage PackageShipping Details Response 
- Delivery package shipping details.
- DeviceErasure DeviceDetails Erasure Details Response 
- Holds device data erasure details
- JobStages []JobStages Response 
- List of stages that run in the job.
- LastMitigation LastAction On Job Mitigation Action On Job Response 
- Last mitigation action performed on the job.
- ReturnPackage PackageShipping Details Response 
- Return package shipping details.
- ReverseShipment stringLabel Sas Key 
- Shared access key to download the return shipment label
- DataExport []DataDetails Export Details Response 
- Details of the data to be exported from azure.
- DataImport []DataDetails Import Details Response 
- Details of the data to be imported into azure.
- DevicePassword string
- Set Device password for unlocking Databox. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- ExpectedData intSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- KeyEncryption KeyKey Encryption Key Response 
- Details about which key encryption type is being used.
- Preferences
PreferencesResponse 
- Preferences for the order.
- ReverseShipping ReverseDetails Shipping Details Response 
- Optional Reverse Shipping details for order.
- ShippingAddress ShippingAddress Response 
- Shipping address of the customer.
- actions List<String>
- Available actions on the job.
- chainOf StringCustody Sas Key 
- Shared access key to download the chain of custody logs
- contactDetails ContactDetails Response 
- Contact details for notification and shipping.
- copyLog List<Object>Details 
- List of copy log details.
- copyProgress List<CopyProgress Response> 
- Copy progress per storage account.
- dataCenter StringCode 
- DataCenter code.
- datacenterAddress DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response 
- Datacenter address to ship to, for the given sku and storage location.
- deliveryPackage PackageShipping Details Response 
- Delivery package shipping details.
- deviceErasure DeviceDetails Erasure Details Response 
- Holds device data erasure details
- jobStages List<JobStages Response> 
- List of stages that run in the job.
- lastMitigation LastAction On Job Mitigation Action On Job Response 
- Last mitigation action performed on the job.
- returnPackage PackageShipping Details Response 
- Return package shipping details.
- reverseShipment StringLabel Sas Key 
- Shared access key to download the return shipment label
- dataExport List<DataDetails Export Details Response> 
- Details of the data to be exported from azure.
- dataImport List<DataDetails Import Details Response> 
- Details of the data to be imported into azure.
- devicePassword String
- Set Device password for unlocking Databox. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- expectedData IntegerSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- keyEncryption KeyKey Encryption Key Response 
- Details about which key encryption type is being used.
- preferences
PreferencesResponse 
- Preferences for the order.
- reverseShipping ReverseDetails Shipping Details Response 
- Optional Reverse Shipping details for order.
- shippingAddress ShippingAddress Response 
- Shipping address of the customer.
- actions string[]
- Available actions on the job.
- chainOf stringCustody Sas Key 
- Shared access key to download the chain of custody logs
- contactDetails ContactDetails Response 
- Contact details for notification and shipping.
- copyLog (DataDetails Box Account Copy Log Details Response | Data Box Customer Disk Copy Log Details Response | Data Box Disk Copy Log Details Response | Data Box Heavy Account Copy Log Details Response)[] 
- List of copy log details.
- copyProgress CopyProgress Response[] 
- Copy progress per storage account.
- dataCenter stringCode 
- DataCenter code.
- datacenterAddress DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response 
- Datacenter address to ship to, for the given sku and storage location.
- deliveryPackage PackageShipping Details Response 
- Delivery package shipping details.
- deviceErasure DeviceDetails Erasure Details Response 
- Holds device data erasure details
- jobStages JobStages Response[] 
- List of stages that run in the job.
- lastMitigation LastAction On Job Mitigation Action On Job Response 
- Last mitigation action performed on the job.
- returnPackage PackageShipping Details Response 
- Return package shipping details.
- reverseShipment stringLabel Sas Key 
- Shared access key to download the return shipment label
- dataExport DataDetails Export Details Response[] 
- Details of the data to be exported from azure.
- dataImport DataDetails Import Details Response[] 
- Details of the data to be imported into azure.
- devicePassword string
- Set Device password for unlocking Databox. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- expectedData numberSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- keyEncryption KeyKey Encryption Key Response 
- Details about which key encryption type is being used.
- preferences
PreferencesResponse 
- Preferences for the order.
- reverseShipping ReverseDetails Shipping Details Response 
- Optional Reverse Shipping details for order.
- shippingAddress ShippingAddress Response 
- Shipping address of the customer.
- actions Sequence[str]
- Available actions on the job.
- chain_of_ strcustody_ sas_ key 
- Shared access key to download the chain of custody logs
- contact_details ContactDetails Response 
- Contact details for notification and shipping.
- copy_log_ Sequence[Union[Datadetails Box Account Copy Log Details Response, Data Box Customer Disk Copy Log Details Response, Data Box Disk Copy Log Details Response, Data Box Heavy Account Copy Log Details Response]] 
- List of copy log details.
- copy_progress Sequence[CopyProgress Response] 
- Copy progress per storage account.
- data_center_ strcode 
- DataCenter code.
- datacenter_address DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response 
- Datacenter address to ship to, for the given sku and storage location.
- delivery_package PackageShipping Details Response 
- Delivery package shipping details.
- device_erasure_ Devicedetails Erasure Details Response 
- Holds device data erasure details
- job_stages Sequence[JobStages Response] 
- List of stages that run in the job.
- last_mitigation_ Lastaction_ on_ job Mitigation Action On Job Response 
- Last mitigation action performed on the job.
- return_package PackageShipping Details Response 
- Return package shipping details.
- reverse_shipment_ strlabel_ sas_ key 
- Shared access key to download the return shipment label
- data_export_ Sequence[Datadetails Export Details Response] 
- Details of the data to be exported from azure.
- data_import_ Sequence[Datadetails Import Details Response] 
- Details of the data to be imported into azure.
- device_password str
- Set Device password for unlocking Databox. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- expected_data_ intsize_ in_ tera_ bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- key_encryption_ Keykey Encryption Key Response 
- Details about which key encryption type is being used.
- preferences
PreferencesResponse 
- Preferences for the order.
- reverse_shipping_ Reversedetails Shipping Details Response 
- Optional Reverse Shipping details for order.
- shipping_address ShippingAddress Response 
- Shipping address of the customer.
- actions List<String>
- Available actions on the job.
- chainOf StringCustody Sas Key 
- Shared access key to download the chain of custody logs
- contactDetails Property Map
- Contact details for notification and shipping.
- copyLog List<Property Map | Property Map | Property Map | Property Map>Details 
- List of copy log details.
- copyProgress List<Property Map>
- Copy progress per storage account.
- dataCenter StringCode 
- DataCenter code.
- datacenterAddress Property Map | Property Map
- Datacenter address to ship to, for the given sku and storage location.
- deliveryPackage Property Map
- Delivery package shipping details.
- deviceErasure Property MapDetails 
- Holds device data erasure details
- jobStages List<Property Map>
- List of stages that run in the job.
- lastMitigation Property MapAction On Job 
- Last mitigation action performed on the job.
- returnPackage Property Map
- Return package shipping details.
- reverseShipment StringLabel Sas Key 
- Shared access key to download the return shipment label
- dataExport List<Property Map>Details 
- Details of the data to be exported from azure.
- dataImport List<Property Map>Details 
- Details of the data to be imported into azure.
- devicePassword String
- Set Device password for unlocking Databox. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- expectedData NumberSize In Tera Bytes 
- The expected size of the data, which needs to be transferred in this job, in terabytes.
- keyEncryption Property MapKey 
- Details about which key encryption type is being used.
- preferences Property Map
- Preferences for the order.
- reverseShipping Property MapDetails 
- Optional Reverse Shipping details for order.
- shippingAddress Property Map
- Shipping address of the customer.
DataExportDetails, DataExportDetailsArgs      
- AccountDetails Pulumi.Azure | Pulumi.Native. Data Box. Inputs. Managed Disk Details Azure Native. Data Box. Inputs. Storage Account Details 
- Account details of the data to be transferred
- TransferConfiguration Pulumi.Azure Native. Data Box. Inputs. Transfer Configuration 
- Configuration for the data transfer.
- LogCollection string | Pulumi.Level Azure Native. Data Box. Log Collection Level 
- Level of the logs to be collected.
- AccountDetails ManagedDisk | StorageDetails Account Details 
- Account details of the data to be transferred
- TransferConfiguration TransferConfiguration 
- Configuration for the data transfer.
- LogCollection string | LogLevel Collection Level 
- Level of the logs to be collected.
- accountDetails ManagedDisk | StorageDetails Account Details 
- Account details of the data to be transferred
- transferConfiguration TransferConfiguration 
- Configuration for the data transfer.
- logCollection String | LogLevel Collection Level 
- Level of the logs to be collected.
- accountDetails ManagedDisk | StorageDetails Account Details 
- Account details of the data to be transferred
- transferConfiguration TransferConfiguration 
- Configuration for the data transfer.
- logCollection string | LogLevel Collection Level 
- Level of the logs to be collected.
- account_details ManagedDisk | StorageDetails Account Details 
- Account details of the data to be transferred
- transfer_configuration TransferConfiguration 
- Configuration for the data transfer.
- log_collection_ str | Loglevel Collection Level 
- Level of the logs to be collected.
- accountDetails Property Map | Property Map
- Account details of the data to be transferred
- transferConfiguration Property Map
- Configuration for the data transfer.
- logCollection String | "Error" | "Verbose"Level 
- Level of the logs to be collected.
DataExportDetailsResponse, DataExportDetailsResponseArgs        
- AccountDetails Pulumi.Azure | Pulumi.Native. Data Box. Inputs. Managed Disk Details Response Azure Native. Data Box. Inputs. Storage Account Details Response 
- Account details of the data to be transferred
- TransferConfiguration Pulumi.Azure Native. Data Box. Inputs. Transfer Configuration Response 
- Configuration for the data transfer.
- LogCollection stringLevel 
- Level of the logs to be collected.
- AccountDetails ManagedDisk | StorageDetails Response Account Details Response 
- Account details of the data to be transferred
- TransferConfiguration TransferConfiguration Response 
- Configuration for the data transfer.
- LogCollection stringLevel 
- Level of the logs to be collected.
- accountDetails ManagedDisk | StorageDetails Response Account Details Response 
- Account details of the data to be transferred
- transferConfiguration TransferConfiguration Response 
- Configuration for the data transfer.
- logCollection StringLevel 
- Level of the logs to be collected.
- accountDetails ManagedDisk | StorageDetails Response Account Details Response 
- Account details of the data to be transferred
- transferConfiguration TransferConfiguration Response 
- Configuration for the data transfer.
- logCollection stringLevel 
- Level of the logs to be collected.
- account_details ManagedDisk | StorageDetails Response Account Details Response 
- Account details of the data to be transferred
- transfer_configuration TransferConfiguration Response 
- Configuration for the data transfer.
- log_collection_ strlevel 
- Level of the logs to be collected.
- accountDetails Property Map | Property Map
- Account details of the data to be transferred
- transferConfiguration Property Map
- Configuration for the data transfer.
- logCollection StringLevel 
- Level of the logs to be collected.
DataImportDetails, DataImportDetailsArgs      
- AccountDetails Pulumi.Azure | Pulumi.Native. Data Box. Inputs. Managed Disk Details Azure Native. Data Box. Inputs. Storage Account Details 
- Account details of the data to be transferred
- LogCollection string | Pulumi.Level Azure Native. Data Box. Log Collection Level 
- Level of the logs to be collected.
- AccountDetails ManagedDisk | StorageDetails Account Details 
- Account details of the data to be transferred
- LogCollection string | LogLevel Collection Level 
- Level of the logs to be collected.
- accountDetails ManagedDisk | StorageDetails Account Details 
- Account details of the data to be transferred
- logCollection String | LogLevel Collection Level 
- Level of the logs to be collected.
- accountDetails ManagedDisk | StorageDetails Account Details 
- Account details of the data to be transferred
- logCollection string | LogLevel Collection Level 
- Level of the logs to be collected.
- account_details ManagedDisk | StorageDetails Account Details 
- Account details of the data to be transferred
- log_collection_ str | Loglevel Collection Level 
- Level of the logs to be collected.
- accountDetails Property Map | Property Map
- Account details of the data to be transferred
- logCollection String | "Error" | "Verbose"Level 
- Level of the logs to be collected.
DataImportDetailsResponse, DataImportDetailsResponseArgs        
- AccountDetails Pulumi.Azure | Pulumi.Native. Data Box. Inputs. Managed Disk Details Response Azure Native. Data Box. Inputs. Storage Account Details Response 
- Account details of the data to be transferred
- LogCollection stringLevel 
- Level of the logs to be collected.
- AccountDetails ManagedDisk | StorageDetails Response Account Details Response 
- Account details of the data to be transferred
- LogCollection stringLevel 
- Level of the logs to be collected.
- accountDetails ManagedDisk | StorageDetails Response Account Details Response 
- Account details of the data to be transferred
- logCollection StringLevel 
- Level of the logs to be collected.
- accountDetails ManagedDisk | StorageDetails Response Account Details Response 
- Account details of the data to be transferred
- logCollection stringLevel 
- Level of the logs to be collected.
- account_details ManagedDisk | StorageDetails Response Account Details Response 
- Account details of the data to be transferred
- log_collection_ strlevel 
- Level of the logs to be collected.
- accountDetails Property Map | Property Map
- Account details of the data to be transferred
- logCollection StringLevel 
- Level of the logs to be collected.
DatacenterAddressInstructionResponseResponse, DatacenterAddressInstructionResponseResponseArgs          
- CommunicationInstruction string
- Data center communication instruction
- DataCenter stringAzure Location 
- Azure Location where the Data Center serves primarily.
- SupportedCarriers List<string>For Return Shipment 
- List of supported carriers for return shipment.
- CommunicationInstruction string
- Data center communication instruction
- DataCenter stringAzure Location 
- Azure Location where the Data Center serves primarily.
- SupportedCarriers []stringFor Return Shipment 
- List of supported carriers for return shipment.
- communicationInstruction String
- Data center communication instruction
- dataCenter StringAzure Location 
- Azure Location where the Data Center serves primarily.
- supportedCarriers List<String>For Return Shipment 
- List of supported carriers for return shipment.
- communicationInstruction string
- Data center communication instruction
- dataCenter stringAzure Location 
- Azure Location where the Data Center serves primarily.
- supportedCarriers string[]For Return Shipment 
- List of supported carriers for return shipment.
- communication_instruction str
- Data center communication instruction
- data_center_ strazure_ location 
- Azure Location where the Data Center serves primarily.
- supported_carriers_ Sequence[str]for_ return_ shipment 
- List of supported carriers for return shipment.
- communicationInstruction String
- Data center communication instruction
- dataCenter StringAzure Location 
- Azure Location where the Data Center serves primarily.
- supportedCarriers List<String>For Return Shipment 
- List of supported carriers for return shipment.
DatacenterAddressLocationResponseResponse, DatacenterAddressLocationResponseResponseArgs          
- AdditionalShipping stringInformation 
- Special instruction for shipping
- AddressType string
- Address type
- City string
- City name
- Company string
- Company name
- ContactPerson stringName 
- Contact person name
- Country string
- name of the country
- DataCenter stringAzure Location 
- Azure Location where the Data Center serves primarily.
- Phone string
- Phone number
- PhoneExtension string
- Phone extension
- State string
- name of the state
- Street1 string
- Street address line 1
- Street2 string
- Street address line 2
- Street3 string
- Street address line 3
- SupportedCarriers List<string>For Return Shipment 
- List of supported carriers for return shipment.
- Zip string
- Zip code
- AdditionalShipping stringInformation 
- Special instruction for shipping
- AddressType string
- Address type
- City string
- City name
- Company string
- Company name
- ContactPerson stringName 
- Contact person name
- Country string
- name of the country
- DataCenter stringAzure Location 
- Azure Location where the Data Center serves primarily.
- Phone string
- Phone number
- PhoneExtension string
- Phone extension
- State string
- name of the state
- Street1 string
- Street address line 1
- Street2 string
- Street address line 2
- Street3 string
- Street address line 3
- SupportedCarriers []stringFor Return Shipment 
- List of supported carriers for return shipment.
- Zip string
- Zip code
- additionalShipping StringInformation 
- Special instruction for shipping
- addressType String
- Address type
- city String
- City name
- company String
- Company name
- contactPerson StringName 
- Contact person name
- country String
- name of the country
- dataCenter StringAzure Location 
- Azure Location where the Data Center serves primarily.
- phone String
- Phone number
- phoneExtension String
- Phone extension
- state String
- name of the state
- street1 String
- Street address line 1
- street2 String
- Street address line 2
- street3 String
- Street address line 3
- supportedCarriers List<String>For Return Shipment 
- List of supported carriers for return shipment.
- zip String
- Zip code
- additionalShipping stringInformation 
- Special instruction for shipping
- addressType string
- Address type
- city string
- City name
- company string
- Company name
- contactPerson stringName 
- Contact person name
- country string
- name of the country
- dataCenter stringAzure Location 
- Azure Location where the Data Center serves primarily.
- phone string
- Phone number
- phoneExtension string
- Phone extension
- state string
- name of the state
- street1 string
- Street address line 1
- street2 string
- Street address line 2
- street3 string
- Street address line 3
- supportedCarriers string[]For Return Shipment 
- List of supported carriers for return shipment.
- zip string
- Zip code
- additional_shipping_ strinformation 
- Special instruction for shipping
- address_type str
- Address type
- city str
- City name
- company str
- Company name
- contact_person_ strname 
- Contact person name
- country str
- name of the country
- data_center_ strazure_ location 
- Azure Location where the Data Center serves primarily.
- phone str
- Phone number
- phone_extension str
- Phone extension
- state str
- name of the state
- street1 str
- Street address line 1
- street2 str
- Street address line 2
- street3 str
- Street address line 3
- supported_carriers_ Sequence[str]for_ return_ shipment 
- List of supported carriers for return shipment.
- zip str
- Zip code
- additionalShipping StringInformation 
- Special instruction for shipping
- addressType String
- Address type
- city String
- City name
- company String
- Company name
- contactPerson StringName 
- Contact person name
- country String
- name of the country
- dataCenter StringAzure Location 
- Azure Location where the Data Center serves primarily.
- phone String
- Phone number
- phoneExtension String
- Phone extension
- state String
- name of the state
- street1 String
- Street address line 1
- street2 String
- Street address line 2
- street3 String
- Street address line 3
- supportedCarriers List<String>For Return Shipment 
- List of supported carriers for return shipment.
- zip String
- Zip code
DeviceErasureDetailsResponse, DeviceErasureDetailsResponseArgs        
- DeviceErasure stringStatus 
- Holds the device erasure completion status
- ErasureOr stringDestruction Certificate Sas Key 
- Shared access key to download cleanup or destruction certificate for device
- DeviceErasure stringStatus 
- Holds the device erasure completion status
- ErasureOr stringDestruction Certificate Sas Key 
- Shared access key to download cleanup or destruction certificate for device
- deviceErasure StringStatus 
- Holds the device erasure completion status
- erasureOr StringDestruction Certificate Sas Key 
- Shared access key to download cleanup or destruction certificate for device
- deviceErasure stringStatus 
- Holds the device erasure completion status
- erasureOr stringDestruction Certificate Sas Key 
- Shared access key to download cleanup or destruction certificate for device
- device_erasure_ strstatus 
- Holds the device erasure completion status
- erasure_or_ strdestruction_ certificate_ sas_ key 
- Shared access key to download cleanup or destruction certificate for device
- deviceErasure StringStatus 
- Holds the device erasure completion status
- erasureOr StringDestruction Certificate Sas Key 
- Shared access key to download cleanup or destruction certificate for device
DoubleEncryption, DoubleEncryptionArgs    
- Enabled
- EnabledSoftware-based encryption is enabled.
- Disabled
- DisabledSoftware-based encryption is disabled.
- DoubleEncryption Enabled 
- EnabledSoftware-based encryption is enabled.
- DoubleEncryption Disabled 
- DisabledSoftware-based encryption is disabled.
- Enabled
- EnabledSoftware-based encryption is enabled.
- Disabled
- DisabledSoftware-based encryption is disabled.
- Enabled
- EnabledSoftware-based encryption is enabled.
- Disabled
- DisabledSoftware-based encryption is disabled.
- ENABLED
- EnabledSoftware-based encryption is enabled.
- DISABLED
- DisabledSoftware-based encryption is disabled.
- "Enabled"
- EnabledSoftware-based encryption is enabled.
- "Disabled"
- DisabledSoftware-based encryption is disabled.
EncryptionPreferences, EncryptionPreferencesArgs    
- DoubleEncryption string | Pulumi.Azure Native. Data Box. Double Encryption 
- Defines secondary layer of software-based encryption enablement.
- HardwareEncryption string | Pulumi.Azure Native. Data Box. Hardware Encryption 
- Defines Hardware level encryption (Only for disk)
- DoubleEncryption string | DoubleEncryption 
- Defines secondary layer of software-based encryption enablement.
- HardwareEncryption string | HardwareEncryption 
- Defines Hardware level encryption (Only for disk)
- doubleEncryption String | DoubleEncryption 
- Defines secondary layer of software-based encryption enablement.
- hardwareEncryption String | HardwareEncryption 
- Defines Hardware level encryption (Only for disk)
- doubleEncryption string | DoubleEncryption 
- Defines secondary layer of software-based encryption enablement.
- hardwareEncryption string | HardwareEncryption 
- Defines Hardware level encryption (Only for disk)
- double_encryption str | DoubleEncryption 
- Defines secondary layer of software-based encryption enablement.
- hardware_encryption str | HardwareEncryption 
- Defines Hardware level encryption (Only for disk)
- doubleEncryption String | "Enabled" | "Disabled"
- Defines secondary layer of software-based encryption enablement.
- hardwareEncryption String | "Enabled" | "Disabled"
- Defines Hardware level encryption (Only for disk)
EncryptionPreferencesResponse, EncryptionPreferencesResponseArgs      
- DoubleEncryption string
- Defines secondary layer of software-based encryption enablement.
- HardwareEncryption string
- Defines Hardware level encryption (Only for disk)
- DoubleEncryption string
- Defines secondary layer of software-based encryption enablement.
- HardwareEncryption string
- Defines Hardware level encryption (Only for disk)
- doubleEncryption String
- Defines secondary layer of software-based encryption enablement.
- hardwareEncryption String
- Defines Hardware level encryption (Only for disk)
- doubleEncryption string
- Defines secondary layer of software-based encryption enablement.
- hardwareEncryption string
- Defines Hardware level encryption (Only for disk)
- double_encryption str
- Defines secondary layer of software-based encryption enablement.
- hardware_encryption str
- Defines Hardware level encryption (Only for disk)
- doubleEncryption String
- Defines secondary layer of software-based encryption enablement.
- hardwareEncryption String
- Defines Hardware level encryption (Only for disk)
ExportDiskDetailsResponse, ExportDiskDetailsResponseArgs        
- BackupManifest stringCloud Path 
- Path to backed up manifest, only returned if enableManifestBackup is true.
- ManifestFile string
- The relative path of the manifest file on the disk.
- ManifestHash string
- The Base16-encoded MD5 hash of the manifest file on the disk.
- BackupManifest stringCloud Path 
- Path to backed up manifest, only returned if enableManifestBackup is true.
- ManifestFile string
- The relative path of the manifest file on the disk.
- ManifestHash string
- The Base16-encoded MD5 hash of the manifest file on the disk.
- backupManifest StringCloud Path 
- Path to backed up manifest, only returned if enableManifestBackup is true.
- manifestFile String
- The relative path of the manifest file on the disk.
- manifestHash String
- The Base16-encoded MD5 hash of the manifest file on the disk.
- backupManifest stringCloud Path 
- Path to backed up manifest, only returned if enableManifestBackup is true.
- manifestFile string
- The relative path of the manifest file on the disk.
- manifestHash string
- The Base16-encoded MD5 hash of the manifest file on the disk.
- backup_manifest_ strcloud_ path 
- Path to backed up manifest, only returned if enableManifestBackup is true.
- manifest_file str
- The relative path of the manifest file on the disk.
- manifest_hash str
- The Base16-encoded MD5 hash of the manifest file on the disk.
- backupManifest StringCloud Path 
- Path to backed up manifest, only returned if enableManifestBackup is true.
- manifestFile String
- The relative path of the manifest file on the disk.
- manifestHash String
- The Base16-encoded MD5 hash of the manifest file on the disk.
FilterFileDetails, FilterFileDetailsArgs      
- FilterFile stringPath 
- Path of the file that contains the details of all items to transfer.
- FilterFile string | Pulumi.Type Azure Native. Data Box. Filter File Type 
- Type of the filter file.
- FilterFile stringPath 
- Path of the file that contains the details of all items to transfer.
- FilterFile string | FilterType File Type 
- Type of the filter file.
- filterFile StringPath 
- Path of the file that contains the details of all items to transfer.
- filterFile String | FilterType File Type 
- Type of the filter file.
- filterFile stringPath 
- Path of the file that contains the details of all items to transfer.
- filterFile string | FilterType File Type 
- Type of the filter file.
- filter_file_ strpath 
- Path of the file that contains the details of all items to transfer.
- filter_file_ str | Filtertype File Type 
- Type of the filter file.
- filterFile StringPath 
- Path of the file that contains the details of all items to transfer.
- filterFile String | "AzureType Blob" | "Azure File" 
- Type of the filter file.
FilterFileDetailsResponse, FilterFileDetailsResponseArgs        
- FilterFile stringPath 
- Path of the file that contains the details of all items to transfer.
- FilterFile stringType 
- Type of the filter file.
- FilterFile stringPath 
- Path of the file that contains the details of all items to transfer.
- FilterFile stringType 
- Type of the filter file.
- filterFile StringPath 
- Path of the file that contains the details of all items to transfer.
- filterFile StringType 
- Type of the filter file.
- filterFile stringPath 
- Path of the file that contains the details of all items to transfer.
- filterFile stringType 
- Type of the filter file.
- filter_file_ strpath 
- Path of the file that contains the details of all items to transfer.
- filter_file_ strtype 
- Type of the filter file.
- filterFile StringPath 
- Path of the file that contains the details of all items to transfer.
- filterFile StringType 
- Type of the filter file.
FilterFileType, FilterFileTypeArgs      
- AzureBlob 
- AzureBlobFilter file is of the type AzureBlob.
- AzureFile 
- AzureFileFilter file is of the type AzureFiles.
- FilterFile Type Azure Blob 
- AzureBlobFilter file is of the type AzureBlob.
- FilterFile Type Azure File 
- AzureFileFilter file is of the type AzureFiles.
- AzureBlob 
- AzureBlobFilter file is of the type AzureBlob.
- AzureFile 
- AzureFileFilter file is of the type AzureFiles.
- AzureBlob 
- AzureBlobFilter file is of the type AzureBlob.
- AzureFile 
- AzureFileFilter file is of the type AzureFiles.
- AZURE_BLOB
- AzureBlobFilter file is of the type AzureBlob.
- AZURE_FILE
- AzureFileFilter file is of the type AzureFiles.
- "AzureBlob" 
- AzureBlobFilter file is of the type AzureBlob.
- "AzureFile" 
- AzureFileFilter file is of the type AzureFiles.
HardwareEncryption, HardwareEncryptionArgs    
- Enabled
- EnabledHardware-based encryption is enabled.
- Disabled
- DisabledHardware-based encryption is enabled.
- HardwareEncryption Enabled 
- EnabledHardware-based encryption is enabled.
- HardwareEncryption Disabled 
- DisabledHardware-based encryption is enabled.
- Enabled
- EnabledHardware-based encryption is enabled.
- Disabled
- DisabledHardware-based encryption is enabled.
- Enabled
- EnabledHardware-based encryption is enabled.
- Disabled
- DisabledHardware-based encryption is enabled.
- ENABLED
- EnabledHardware-based encryption is enabled.
- DISABLED
- DisabledHardware-based encryption is enabled.
- "Enabled"
- EnabledHardware-based encryption is enabled.
- "Disabled"
- DisabledHardware-based encryption is enabled.
IdentityProperties, IdentityPropertiesArgs    
- Type string
- Managed service identity type.
- UserAssigned Pulumi.Azure Native. Data Box. Inputs. User Assigned Properties 
- User assigned identity properties.
- Type string
- Managed service identity type.
- UserAssigned UserAssigned Properties 
- User assigned identity properties.
- type String
- Managed service identity type.
- userAssigned UserAssigned Properties 
- User assigned identity properties.
- type string
- Managed service identity type.
- userAssigned UserAssigned Properties 
- User assigned identity properties.
- type str
- Managed service identity type.
- user_assigned UserAssigned Properties 
- User assigned identity properties.
- type String
- Managed service identity type.
- userAssigned Property Map
- User assigned identity properties.
IdentityPropertiesResponse, IdentityPropertiesResponseArgs      
- Type string
- Managed service identity type.
- UserAssigned Pulumi.Azure Native. Data Box. Inputs. User Assigned Properties Response 
- User assigned identity properties.
- Type string
- Managed service identity type.
- UserAssigned UserAssigned Properties Response 
- User assigned identity properties.
- type String
- Managed service identity type.
- userAssigned UserAssigned Properties Response 
- User assigned identity properties.
- type string
- Managed service identity type.
- userAssigned UserAssigned Properties Response 
- User assigned identity properties.
- type str
- Managed service identity type.
- user_assigned UserAssigned Properties Response 
- User assigned identity properties.
- type String
- Managed service identity type.
- userAssigned Property Map
- User assigned identity properties.
ImportDiskDetails, ImportDiskDetailsArgs      
- BitLocker stringKey 
- BitLocker key used to encrypt the disk.
- ManifestFile string
- The relative path of the manifest file on the disk.
- ManifestHash string
- The Base16-encoded MD5 hash of the manifest file on the disk.
- BitLocker stringKey 
- BitLocker key used to encrypt the disk.
- ManifestFile string
- The relative path of the manifest file on the disk.
- ManifestHash string
- The Base16-encoded MD5 hash of the manifest file on the disk.
- bitLocker StringKey 
- BitLocker key used to encrypt the disk.
- manifestFile String
- The relative path of the manifest file on the disk.
- manifestHash String
- The Base16-encoded MD5 hash of the manifest file on the disk.
- bitLocker stringKey 
- BitLocker key used to encrypt the disk.
- manifestFile string
- The relative path of the manifest file on the disk.
- manifestHash string
- The Base16-encoded MD5 hash of the manifest file on the disk.
- bit_locker_ strkey 
- BitLocker key used to encrypt the disk.
- manifest_file str
- The relative path of the manifest file on the disk.
- manifest_hash str
- The Base16-encoded MD5 hash of the manifest file on the disk.
- bitLocker StringKey 
- BitLocker key used to encrypt the disk.
- manifestFile String
- The relative path of the manifest file on the disk.
- manifestHash String
- The Base16-encoded MD5 hash of the manifest file on the disk.
ImportDiskDetailsResponse, ImportDiskDetailsResponseArgs        
- BackupManifest stringCloud Path 
- Path to backed up manifest, only returned if enableManifestBackup is true.
- BitLocker stringKey 
- BitLocker key used to encrypt the disk.
- ManifestFile string
- The relative path of the manifest file on the disk.
- ManifestHash string
- The Base16-encoded MD5 hash of the manifest file on the disk.
- BackupManifest stringCloud Path 
- Path to backed up manifest, only returned if enableManifestBackup is true.
- BitLocker stringKey 
- BitLocker key used to encrypt the disk.
- ManifestFile string
- The relative path of the manifest file on the disk.
- ManifestHash string
- The Base16-encoded MD5 hash of the manifest file on the disk.
- backupManifest StringCloud Path 
- Path to backed up manifest, only returned if enableManifestBackup is true.
- bitLocker StringKey 
- BitLocker key used to encrypt the disk.
- manifestFile String
- The relative path of the manifest file on the disk.
- manifestHash String
- The Base16-encoded MD5 hash of the manifest file on the disk.
- backupManifest stringCloud Path 
- Path to backed up manifest, only returned if enableManifestBackup is true.
- bitLocker stringKey 
- BitLocker key used to encrypt the disk.
- manifestFile string
- The relative path of the manifest file on the disk.
- manifestHash string
- The Base16-encoded MD5 hash of the manifest file on the disk.
- backup_manifest_ strcloud_ path 
- Path to backed up manifest, only returned if enableManifestBackup is true.
- bit_locker_ strkey 
- BitLocker key used to encrypt the disk.
- manifest_file str
- The relative path of the manifest file on the disk.
- manifest_hash str
- The Base16-encoded MD5 hash of the manifest file on the disk.
- backupManifest StringCloud Path 
- Path to backed up manifest, only returned if enableManifestBackup is true.
- bitLocker StringKey 
- BitLocker key used to encrypt the disk.
- manifestFile String
- The relative path of the manifest file on the disk.
- manifestHash String
- The Base16-encoded MD5 hash of the manifest file on the disk.
JobDeliveryInfo, JobDeliveryInfoArgs      
- ScheduledDate stringTime 
- Scheduled date time.
- ScheduledDate stringTime 
- Scheduled date time.
- scheduledDate StringTime 
- Scheduled date time.
- scheduledDate stringTime 
- Scheduled date time.
- scheduled_date_ strtime 
- Scheduled date time.
- scheduledDate StringTime 
- Scheduled date time.
JobDeliveryInfoResponse, JobDeliveryInfoResponseArgs        
- ScheduledDate stringTime 
- Scheduled date time.
- ScheduledDate stringTime 
- Scheduled date time.
- scheduledDate StringTime 
- Scheduled date time.
- scheduledDate stringTime 
- Scheduled date time.
- scheduled_date_ strtime 
- Scheduled date time.
- scheduledDate StringTime 
- Scheduled date time.
JobDeliveryType, JobDeliveryTypeArgs      
- NonScheduled 
- NonScheduledNon Scheduled job.
- Scheduled
- ScheduledScheduled job.
- JobDelivery Type Non Scheduled 
- NonScheduledNon Scheduled job.
- JobDelivery Type Scheduled 
- ScheduledScheduled job.
- NonScheduled 
- NonScheduledNon Scheduled job.
- Scheduled
- ScheduledScheduled job.
- NonScheduled 
- NonScheduledNon Scheduled job.
- Scheduled
- ScheduledScheduled job.
- NON_SCHEDULED
- NonScheduledNon Scheduled job.
- SCHEDULED
- ScheduledScheduled job.
- "NonScheduled" 
- NonScheduledNon Scheduled job.
- "Scheduled"
- ScheduledScheduled job.
JobStagesResponse, JobStagesResponseArgs      
- DisplayName string
- Display name of the job stage.
- JobStage objectDetails 
- Job Stage Details
- StageName string
- Name of the job stage.
- StageStatus string
- Status of the job stage.
- StageTime string
- Time for the job stage in UTC ISO 8601 format.
- DisplayName string
- Display name of the job stage.
- JobStage interface{}Details 
- Job Stage Details
- StageName string
- Name of the job stage.
- StageStatus string
- Status of the job stage.
- StageTime string
- Time for the job stage in UTC ISO 8601 format.
- displayName String
- Display name of the job stage.
- jobStage ObjectDetails 
- Job Stage Details
- stageName String
- Name of the job stage.
- stageStatus String
- Status of the job stage.
- stageTime String
- Time for the job stage in UTC ISO 8601 format.
- displayName string
- Display name of the job stage.
- jobStage anyDetails 
- Job Stage Details
- stageName string
- Name of the job stage.
- stageStatus string
- Status of the job stage.
- stageTime string
- Time for the job stage in UTC ISO 8601 format.
- display_name str
- Display name of the job stage.
- job_stage_ Anydetails 
- Job Stage Details
- stage_name str
- Name of the job stage.
- stage_status str
- Status of the job stage.
- stage_time str
- Time for the job stage in UTC ISO 8601 format.
- displayName String
- Display name of the job stage.
- jobStage AnyDetails 
- Job Stage Details
- stageName String
- Name of the job stage.
- stageStatus String
- Status of the job stage.
- stageTime String
- Time for the job stage in UTC ISO 8601 format.
KekType, KekTypeArgs    
- MicrosoftManaged 
- MicrosoftManagedKey encryption key is managed by Microsoft.
- CustomerManaged 
- CustomerManagedKey encryption key is managed by the Customer.
- KekType Microsoft Managed 
- MicrosoftManagedKey encryption key is managed by Microsoft.
- KekType Customer Managed 
- CustomerManagedKey encryption key is managed by the Customer.
- MicrosoftManaged 
- MicrosoftManagedKey encryption key is managed by Microsoft.
- CustomerManaged 
- CustomerManagedKey encryption key is managed by the Customer.
- MicrosoftManaged 
- MicrosoftManagedKey encryption key is managed by Microsoft.
- CustomerManaged 
- CustomerManagedKey encryption key is managed by the Customer.
- MICROSOFT_MANAGED
- MicrosoftManagedKey encryption key is managed by Microsoft.
- CUSTOMER_MANAGED
- CustomerManagedKey encryption key is managed by the Customer.
- "MicrosoftManaged" 
- MicrosoftManagedKey encryption key is managed by Microsoft.
- "CustomerManaged" 
- CustomerManagedKey encryption key is managed by the Customer.
KeyEncryptionKey, KeyEncryptionKeyArgs      
- KekType string | Pulumi.Azure Native. Data Box. Kek Type 
- Type of encryption key used for key encryption.
- IdentityProperties Pulumi.Azure Native. Data Box. Inputs. Identity Properties 
- Managed identity properties used for key encryption.
- KekUrl string
- Key encryption key. It is required in case of Customer managed KekType.
- KekVault stringResource ID 
- Kek vault resource id. It is required in case of Customer managed KekType.
- KekType string | KekType 
- Type of encryption key used for key encryption.
- IdentityProperties IdentityProperties 
- Managed identity properties used for key encryption.
- KekUrl string
- Key encryption key. It is required in case of Customer managed KekType.
- KekVault stringResource ID 
- Kek vault resource id. It is required in case of Customer managed KekType.
- kekType String | KekType 
- Type of encryption key used for key encryption.
- identityProperties IdentityProperties 
- Managed identity properties used for key encryption.
- kekUrl String
- Key encryption key. It is required in case of Customer managed KekType.
- kekVault StringResource ID 
- Kek vault resource id. It is required in case of Customer managed KekType.
- kekType string | KekType 
- Type of encryption key used for key encryption.
- identityProperties IdentityProperties 
- Managed identity properties used for key encryption.
- kekUrl string
- Key encryption key. It is required in case of Customer managed KekType.
- kekVault stringResource ID 
- Kek vault resource id. It is required in case of Customer managed KekType.
- kek_type str | KekType 
- Type of encryption key used for key encryption.
- identity_properties IdentityProperties 
- Managed identity properties used for key encryption.
- kek_url str
- Key encryption key. It is required in case of Customer managed KekType.
- kek_vault_ strresource_ id 
- Kek vault resource id. It is required in case of Customer managed KekType.
- kekType String | "MicrosoftManaged" | "Customer Managed" 
- Type of encryption key used for key encryption.
- identityProperties Property Map
- Managed identity properties used for key encryption.
- kekUrl String
- Key encryption key. It is required in case of Customer managed KekType.
- kekVault StringResource ID 
- Kek vault resource id. It is required in case of Customer managed KekType.
KeyEncryptionKeyResponse, KeyEncryptionKeyResponseArgs        
- KekType string
- Type of encryption key used for key encryption.
- IdentityProperties Pulumi.Azure Native. Data Box. Inputs. Identity Properties Response 
- Managed identity properties used for key encryption.
- KekUrl string
- Key encryption key. It is required in case of Customer managed KekType.
- KekVault stringResource ID 
- Kek vault resource id. It is required in case of Customer managed KekType.
- KekType string
- Type of encryption key used for key encryption.
- IdentityProperties IdentityProperties Response 
- Managed identity properties used for key encryption.
- KekUrl string
- Key encryption key. It is required in case of Customer managed KekType.
- KekVault stringResource ID 
- Kek vault resource id. It is required in case of Customer managed KekType.
- kekType String
- Type of encryption key used for key encryption.
- identityProperties IdentityProperties Response 
- Managed identity properties used for key encryption.
- kekUrl String
- Key encryption key. It is required in case of Customer managed KekType.
- kekVault StringResource ID 
- Kek vault resource id. It is required in case of Customer managed KekType.
- kekType string
- Type of encryption key used for key encryption.
- identityProperties IdentityProperties Response 
- Managed identity properties used for key encryption.
- kekUrl string
- Key encryption key. It is required in case of Customer managed KekType.
- kekVault stringResource ID 
- Kek vault resource id. It is required in case of Customer managed KekType.
- kek_type str
- Type of encryption key used for key encryption.
- identity_properties IdentityProperties Response 
- Managed identity properties used for key encryption.
- kek_url str
- Key encryption key. It is required in case of Customer managed KekType.
- kek_vault_ strresource_ id 
- Kek vault resource id. It is required in case of Customer managed KekType.
- kekType String
- Type of encryption key used for key encryption.
- identityProperties Property Map
- Managed identity properties used for key encryption.
- kekUrl String
- Key encryption key. It is required in case of Customer managed KekType.
- kekVault StringResource ID 
- Kek vault resource id. It is required in case of Customer managed KekType.
LastMitigationActionOnJobResponse, LastMitigationActionOnJobResponseArgs            
- ActionDate stringTime In Utc 
- Action performed date time
- CustomerResolution string
- Resolution code provided by customer
- IsPerformed boolBy Customer 
- Action performed by customer, possibility is that mitigation might happen by customer or service or by ops
- ActionDate stringTime In Utc 
- Action performed date time
- CustomerResolution string
- Resolution code provided by customer
- IsPerformed boolBy Customer 
- Action performed by customer, possibility is that mitigation might happen by customer or service or by ops
- actionDate StringTime In Utc 
- Action performed date time
- customerResolution String
- Resolution code provided by customer
- isPerformed BooleanBy Customer 
- Action performed by customer, possibility is that mitigation might happen by customer or service or by ops
- actionDate stringTime In Utc 
- Action performed date time
- customerResolution string
- Resolution code provided by customer
- isPerformed booleanBy Customer 
- Action performed by customer, possibility is that mitigation might happen by customer or service or by ops
- action_date_ strtime_ in_ utc 
- Action performed date time
- customer_resolution str
- Resolution code provided by customer
- is_performed_ boolby_ customer 
- Action performed by customer, possibility is that mitigation might happen by customer or service or by ops
- actionDate StringTime In Utc 
- Action performed date time
- customerResolution String
- Resolution code provided by customer
- isPerformed BooleanBy Customer 
- Action performed by customer, possibility is that mitigation might happen by customer or service or by ops
LogCollectionLevel, LogCollectionLevelArgs      
- Error
- ErrorOnly Errors will be collected in the logs.
- Verbose
- VerboseVerbose logging (includes Errors, CRC, size information and others).
- LogCollection Level Error 
- ErrorOnly Errors will be collected in the logs.
- LogCollection Level Verbose 
- VerboseVerbose logging (includes Errors, CRC, size information and others).
- Error
- ErrorOnly Errors will be collected in the logs.
- Verbose
- VerboseVerbose logging (includes Errors, CRC, size information and others).
- Error
- ErrorOnly Errors will be collected in the logs.
- Verbose
- VerboseVerbose logging (includes Errors, CRC, size information and others).
- ERROR
- ErrorOnly Errors will be collected in the logs.
- VERBOSE
- VerboseVerbose logging (includes Errors, CRC, size information and others).
- "Error"
- ErrorOnly Errors will be collected in the logs.
- "Verbose"
- VerboseVerbose logging (includes Errors, CRC, size information and others).
ManagedDiskDetails, ManagedDiskDetailsArgs      
- ResourceGroup stringId 
- Resource Group Id of the compute disks.
- StagingStorage stringAccount Id 
- Resource Id of the storage account that can be used to copy the vhd for staging.
- string
- Password for all the shares to be created on the device. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- ResourceGroup stringId 
- Resource Group Id of the compute disks.
- StagingStorage stringAccount Id 
- Resource Id of the storage account that can be used to copy the vhd for staging.
- string
- Password for all the shares to be created on the device. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- resourceGroup StringId 
- Resource Group Id of the compute disks.
- stagingStorage StringAccount Id 
- Resource Id of the storage account that can be used to copy the vhd for staging.
- String
- Password for all the shares to be created on the device. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- resourceGroup stringId 
- Resource Group Id of the compute disks.
- stagingStorage stringAccount Id 
- Resource Id of the storage account that can be used to copy the vhd for staging.
- string
- Password for all the shares to be created on the device. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- resource_group_ strid 
- Resource Group Id of the compute disks.
- staging_storage_ straccount_ id 
- Resource Id of the storage account that can be used to copy the vhd for staging.
- str
- Password for all the shares to be created on the device. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- resourceGroup StringId 
- Resource Group Id of the compute disks.
- stagingStorage StringAccount Id 
- Resource Id of the storage account that can be used to copy the vhd for staging.
- String
- Password for all the shares to be created on the device. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
ManagedDiskDetailsResponse, ManagedDiskDetailsResponseArgs        
- ResourceGroup stringId 
- Resource Group Id of the compute disks.
- StagingStorage stringAccount Id 
- Resource Id of the storage account that can be used to copy the vhd for staging.
- ResourceGroup stringId 
- Resource Group Id of the compute disks.
- StagingStorage stringAccount Id 
- Resource Id of the storage account that can be used to copy the vhd for staging.
- resourceGroup StringId 
- Resource Group Id of the compute disks.
- stagingStorage StringAccount Id 
- Resource Id of the storage account that can be used to copy the vhd for staging.
- resourceGroup stringId 
- Resource Group Id of the compute disks.
- stagingStorage stringAccount Id 
- Resource Id of the storage account that can be used to copy the vhd for staging.
- resource_group_ strid 
- Resource Group Id of the compute disks.
- staging_storage_ straccount_ id 
- Resource Id of the storage account that can be used to copy the vhd for staging.
- resourceGroup StringId 
- Resource Group Id of the compute disks.
- stagingStorage StringAccount Id 
- Resource Id of the storage account that can be used to copy the vhd for staging.
NotificationPreference, NotificationPreferenceArgs    
- SendNotification bool
- Notification is required or not.
- StageName string | Pulumi.Azure Native. Data Box. Notification Stage Name 
- Name of the stage.
- SendNotification bool
- Notification is required or not.
- StageName string | NotificationStage Name 
- Name of the stage.
- sendNotification Boolean
- Notification is required or not.
- stageName String | NotificationStage Name 
- Name of the stage.
- sendNotification boolean
- Notification is required or not.
- stageName string | NotificationStage Name 
- Name of the stage.
- send_notification bool
- Notification is required or not.
- stage_name str | NotificationStage Name 
- Name of the stage.
- sendNotification Boolean
- Notification is required or not.
- stageName String | "DevicePrepared" | "Dispatched" | "Delivered" | "Picked Up" | "At Azure DC" | "Data Copy" | "Created" | "Shipped To Customer" 
- Name of the stage.
NotificationPreferenceResponse, NotificationPreferenceResponseArgs      
- SendNotification bool
- Notification is required or not.
- StageName string
- Name of the stage.
- SendNotification bool
- Notification is required or not.
- StageName string
- Name of the stage.
- sendNotification Boolean
- Notification is required or not.
- stageName String
- Name of the stage.
- sendNotification boolean
- Notification is required or not.
- stageName string
- Name of the stage.
- send_notification bool
- Notification is required or not.
- stage_name str
- Name of the stage.
- sendNotification Boolean
- Notification is required or not.
- stageName String
- Name of the stage.
NotificationStageName, NotificationStageNameArgs      
- DevicePrepared 
- DevicePreparedNotification at device prepared stage.
- Dispatched
- DispatchedNotification at device dispatched stage.
- Delivered
- DeliveredNotification at device delivered stage.
- PickedUp 
- PickedUpNotification at device picked up from user stage.
- AtAzure DC 
- AtAzureDCNotification at device received at Azure datacenter stage.
- DataCopy 
- DataCopyNotification at data copy started stage.
- Created
- CreatedNotification at job created stage.
- ShippedTo Customer 
- ShippedToCustomerNotification at shipped devices to customer stage.
- NotificationStage Name Device Prepared 
- DevicePreparedNotification at device prepared stage.
- NotificationStage Name Dispatched 
- DispatchedNotification at device dispatched stage.
- NotificationStage Name Delivered 
- DeliveredNotification at device delivered stage.
- NotificationStage Name Picked Up 
- PickedUpNotification at device picked up from user stage.
- NotificationStage Name At Azure DC 
- AtAzureDCNotification at device received at Azure datacenter stage.
- NotificationStage Name Data Copy 
- DataCopyNotification at data copy started stage.
- NotificationStage Name Created 
- CreatedNotification at job created stage.
- NotificationStage Name Shipped To Customer 
- ShippedToCustomerNotification at shipped devices to customer stage.
- DevicePrepared 
- DevicePreparedNotification at device prepared stage.
- Dispatched
- DispatchedNotification at device dispatched stage.
- Delivered
- DeliveredNotification at device delivered stage.
- PickedUp 
- PickedUpNotification at device picked up from user stage.
- AtAzure DC 
- AtAzureDCNotification at device received at Azure datacenter stage.
- DataCopy 
- DataCopyNotification at data copy started stage.
- Created
- CreatedNotification at job created stage.
- ShippedTo Customer 
- ShippedToCustomerNotification at shipped devices to customer stage.
- DevicePrepared 
- DevicePreparedNotification at device prepared stage.
- Dispatched
- DispatchedNotification at device dispatched stage.
- Delivered
- DeliveredNotification at device delivered stage.
- PickedUp 
- PickedUpNotification at device picked up from user stage.
- AtAzure DC 
- AtAzureDCNotification at device received at Azure datacenter stage.
- DataCopy 
- DataCopyNotification at data copy started stage.
- Created
- CreatedNotification at job created stage.
- ShippedTo Customer 
- ShippedToCustomerNotification at shipped devices to customer stage.
- DEVICE_PREPARED
- DevicePreparedNotification at device prepared stage.
- DISPATCHED
- DispatchedNotification at device dispatched stage.
- DELIVERED
- DeliveredNotification at device delivered stage.
- PICKED_UP
- PickedUpNotification at device picked up from user stage.
- AT_AZURE_DC
- AtAzureDCNotification at device received at Azure datacenter stage.
- DATA_COPY
- DataCopyNotification at data copy started stage.
- CREATED
- CreatedNotification at job created stage.
- SHIPPED_TO_CUSTOMER
- ShippedToCustomerNotification at shipped devices to customer stage.
- "DevicePrepared" 
- DevicePreparedNotification at device prepared stage.
- "Dispatched"
- DispatchedNotification at device dispatched stage.
- "Delivered"
- DeliveredNotification at device delivered stage.
- "PickedUp" 
- PickedUpNotification at device picked up from user stage.
- "AtAzure DC" 
- AtAzureDCNotification at device received at Azure datacenter stage.
- "DataCopy" 
- DataCopyNotification at data copy started stage.
- "Created"
- CreatedNotification at job created stage.
- "ShippedTo Customer" 
- ShippedToCustomerNotification at shipped devices to customer stage.
PackageCarrierDetails, PackageCarrierDetailsArgs      
- CarrierAccount stringNumber 
- Carrier Account Number of customer for customer disk.
- CarrierName string
- Name of the carrier.
- TrackingId string
- Tracking Id of shipment.
- CarrierAccount stringNumber 
- Carrier Account Number of customer for customer disk.
- CarrierName string
- Name of the carrier.
- TrackingId string
- Tracking Id of shipment.
- carrierAccount StringNumber 
- Carrier Account Number of customer for customer disk.
- carrierName String
- Name of the carrier.
- trackingId String
- Tracking Id of shipment.
- carrierAccount stringNumber 
- Carrier Account Number of customer for customer disk.
- carrierName string
- Name of the carrier.
- trackingId string
- Tracking Id of shipment.
- carrier_account_ strnumber 
- Carrier Account Number of customer for customer disk.
- carrier_name str
- Name of the carrier.
- tracking_id str
- Tracking Id of shipment.
- carrierAccount StringNumber 
- Carrier Account Number of customer for customer disk.
- carrierName String
- Name of the carrier.
- trackingId String
- Tracking Id of shipment.
PackageCarrierDetailsResponse, PackageCarrierDetailsResponseArgs        
- CarrierAccount stringNumber 
- Carrier Account Number of customer for customer disk.
- CarrierName string
- Name of the carrier.
- TrackingId string
- Tracking Id of shipment.
- CarrierAccount stringNumber 
- Carrier Account Number of customer for customer disk.
- CarrierName string
- Name of the carrier.
- TrackingId string
- Tracking Id of shipment.
- carrierAccount StringNumber 
- Carrier Account Number of customer for customer disk.
- carrierName String
- Name of the carrier.
- trackingId String
- Tracking Id of shipment.
- carrierAccount stringNumber 
- Carrier Account Number of customer for customer disk.
- carrierName string
- Name of the carrier.
- trackingId string
- Tracking Id of shipment.
- carrier_account_ strnumber 
- Carrier Account Number of customer for customer disk.
- carrier_name str
- Name of the carrier.
- tracking_id str
- Tracking Id of shipment.
- carrierAccount StringNumber 
- Carrier Account Number of customer for customer disk.
- carrierName String
- Name of the carrier.
- trackingId String
- Tracking Id of shipment.
PackageCarrierInfoResponse, PackageCarrierInfoResponseArgs        
- CarrierName string
- Name of the carrier.
- TrackingId string
- Tracking Id of shipment.
- CarrierName string
- Name of the carrier.
- TrackingId string
- Tracking Id of shipment.
- carrierName String
- Name of the carrier.
- trackingId String
- Tracking Id of shipment.
- carrierName string
- Name of the carrier.
- trackingId string
- Tracking Id of shipment.
- carrier_name str
- Name of the carrier.
- tracking_id str
- Tracking Id of shipment.
- carrierName String
- Name of the carrier.
- trackingId String
- Tracking Id of shipment.
PackageShippingDetailsResponse, PackageShippingDetailsResponseArgs        
- CarrierName string
- Name of the carrier.
- TrackingId string
- Tracking Id of shipment.
- TrackingUrl string
- Url where shipment can be tracked.
- CarrierName string
- Name of the carrier.
- TrackingId string
- Tracking Id of shipment.
- TrackingUrl string
- Url where shipment can be tracked.
- carrierName String
- Name of the carrier.
- trackingId String
- Tracking Id of shipment.
- trackingUrl String
- Url where shipment can be tracked.
- carrierName string
- Name of the carrier.
- trackingId string
- Tracking Id of shipment.
- trackingUrl string
- Url where shipment can be tracked.
- carrier_name str
- Name of the carrier.
- tracking_id str
- Tracking Id of shipment.
- tracking_url str
- Url where shipment can be tracked.
- carrierName String
- Name of the carrier.
- trackingId String
- Tracking Id of shipment.
- trackingUrl String
- Url where shipment can be tracked.
Preferences, PreferencesArgs  
- EncryptionPreferences Pulumi.Azure Native. Data Box. Inputs. Encryption Preferences 
- Preferences related to the Encryption.
- PreferredData List<string>Center Region 
- Preferred data center region.
- ReverseTransport Pulumi.Preferences Azure Native. Data Box. Inputs. Transport Preferences 
- Optional Preferences related to the reverse shipment logistics of the sku.
- StorageAccount List<Union<string, Pulumi.Access Tier Preferences Azure Native. Data Box. Storage Account Access Tier>> 
- Preferences related to the Access Tier of storage accounts.
- TransportPreferences Pulumi.Azure Native. Data Box. Inputs. Transport Preferences 
- Preferences related to the shipment logistics of the sku.
- EncryptionPreferences EncryptionPreferences 
- Preferences related to the Encryption.
- PreferredData []stringCenter Region 
- Preferred data center region.
- ReverseTransport TransportPreferences Preferences 
- Optional Preferences related to the reverse shipment logistics of the sku.
- StorageAccount []stringAccess Tier Preferences 
- Preferences related to the Access Tier of storage accounts.
- TransportPreferences TransportPreferences 
- Preferences related to the shipment logistics of the sku.
- encryptionPreferences EncryptionPreferences 
- Preferences related to the Encryption.
- preferredData List<String>Center Region 
- Preferred data center region.
- reverseTransport TransportPreferences Preferences 
- Optional Preferences related to the reverse shipment logistics of the sku.
- storageAccount List<Either<String,StorageAccess Tier Preferences Account Access Tier>> 
- Preferences related to the Access Tier of storage accounts.
- transportPreferences TransportPreferences 
- Preferences related to the shipment logistics of the sku.
- encryptionPreferences EncryptionPreferences 
- Preferences related to the Encryption.
- preferredData string[]Center Region 
- Preferred data center region.
- reverseTransport TransportPreferences Preferences 
- Optional Preferences related to the reverse shipment logistics of the sku.
- storageAccount (string | StorageAccess Tier Preferences Account Access Tier)[] 
- Preferences related to the Access Tier of storage accounts.
- transportPreferences TransportPreferences 
- Preferences related to the shipment logistics of the sku.
- encryption_preferences EncryptionPreferences 
- Preferences related to the Encryption.
- preferred_data_ Sequence[str]center_ region 
- Preferred data center region.
- reverse_transport_ Transportpreferences Preferences 
- Optional Preferences related to the reverse shipment logistics of the sku.
- storage_account_ Sequence[Union[str, Storageaccess_ tier_ preferences Account Access Tier]] 
- Preferences related to the Access Tier of storage accounts.
- transport_preferences TransportPreferences 
- Preferences related to the shipment logistics of the sku.
- encryptionPreferences Property Map
- Preferences related to the Encryption.
- preferredData List<String>Center Region 
- Preferred data center region.
- reverseTransport Property MapPreferences 
- Optional Preferences related to the reverse shipment logistics of the sku.
- storageAccount List<String | "Archive">Access Tier Preferences 
- Preferences related to the Access Tier of storage accounts.
- transportPreferences Property Map
- Preferences related to the shipment logistics of the sku.
PreferencesResponse, PreferencesResponseArgs    
- EncryptionPreferences Pulumi.Azure Native. Data Box. Inputs. Encryption Preferences Response 
- Preferences related to the Encryption.
- PreferredData List<string>Center Region 
- Preferred data center region.
- ReverseTransport Pulumi.Preferences Azure Native. Data Box. Inputs. Transport Preferences Response 
- Optional Preferences related to the reverse shipment logistics of the sku.
- StorageAccount List<string>Access Tier Preferences 
- Preferences related to the Access Tier of storage accounts.
- TransportPreferences Pulumi.Azure Native. Data Box. Inputs. Transport Preferences Response 
- Preferences related to the shipment logistics of the sku.
- EncryptionPreferences EncryptionPreferences Response 
- Preferences related to the Encryption.
- PreferredData []stringCenter Region 
- Preferred data center region.
- ReverseTransport TransportPreferences Preferences Response 
- Optional Preferences related to the reverse shipment logistics of the sku.
- StorageAccount []stringAccess Tier Preferences 
- Preferences related to the Access Tier of storage accounts.
- TransportPreferences TransportPreferences Response 
- Preferences related to the shipment logistics of the sku.
- encryptionPreferences EncryptionPreferences Response 
- Preferences related to the Encryption.
- preferredData List<String>Center Region 
- Preferred data center region.
- reverseTransport TransportPreferences Preferences Response 
- Optional Preferences related to the reverse shipment logistics of the sku.
- storageAccount List<String>Access Tier Preferences 
- Preferences related to the Access Tier of storage accounts.
- transportPreferences TransportPreferences Response 
- Preferences related to the shipment logistics of the sku.
- encryptionPreferences EncryptionPreferences Response 
- Preferences related to the Encryption.
- preferredData string[]Center Region 
- Preferred data center region.
- reverseTransport TransportPreferences Preferences Response 
- Optional Preferences related to the reverse shipment logistics of the sku.
- storageAccount string[]Access Tier Preferences 
- Preferences related to the Access Tier of storage accounts.
- transportPreferences TransportPreferences Response 
- Preferences related to the shipment logistics of the sku.
- encryption_preferences EncryptionPreferences Response 
- Preferences related to the Encryption.
- preferred_data_ Sequence[str]center_ region 
- Preferred data center region.
- reverse_transport_ Transportpreferences Preferences Response 
- Optional Preferences related to the reverse shipment logistics of the sku.
- storage_account_ Sequence[str]access_ tier_ preferences 
- Preferences related to the Access Tier of storage accounts.
- transport_preferences TransportPreferences Response 
- Preferences related to the shipment logistics of the sku.
- encryptionPreferences Property Map
- Preferences related to the Encryption.
- preferredData List<String>Center Region 
- Preferred data center region.
- reverseTransport Property MapPreferences 
- Optional Preferences related to the reverse shipment logistics of the sku.
- storageAccount List<String>Access Tier Preferences 
- Preferences related to the Access Tier of storage accounts.
- transportPreferences Property Map
- Preferences related to the shipment logistics of the sku.
ResourceIdentity, ResourceIdentityArgs    
- Type string
- Identity type
- UserAssigned List<string>Identities 
- User Assigned Identities
- Type string
- Identity type
- UserAssigned []stringIdentities 
- User Assigned Identities
- type String
- Identity type
- userAssigned List<String>Identities 
- User Assigned Identities
- type string
- Identity type
- userAssigned string[]Identities 
- User Assigned Identities
- type str
- Identity type
- user_assigned_ Sequence[str]identities 
- User Assigned Identities
- type String
- Identity type
- userAssigned List<String>Identities 
- User Assigned Identities
ResourceIdentityResponse, ResourceIdentityResponseArgs      
- PrincipalId string
- Service Principal Id backing the Msi
- TenantId string
- Home Tenant Id
- Type string
- Identity type
- UserAssigned Dictionary<string, Pulumi.Identities Azure Native. Data Box. Inputs. User Assigned Identity Response> 
- User Assigned Identities
- PrincipalId string
- Service Principal Id backing the Msi
- TenantId string
- Home Tenant Id
- Type string
- Identity type
- UserAssigned map[string]UserIdentities Assigned Identity Response 
- User Assigned Identities
- principalId String
- Service Principal Id backing the Msi
- tenantId String
- Home Tenant Id
- type String
- Identity type
- userAssigned Map<String,UserIdentities Assigned Identity Response> 
- User Assigned Identities
- principalId string
- Service Principal Id backing the Msi
- tenantId string
- Home Tenant Id
- type string
- Identity type
- userAssigned {[key: string]: UserIdentities Assigned Identity Response} 
- User Assigned Identities
- principal_id str
- Service Principal Id backing the Msi
- tenant_id str
- Home Tenant Id
- type str
- Identity type
- user_assigned_ Mapping[str, Useridentities Assigned Identity Response] 
- User Assigned Identities
- principalId String
- Service Principal Id backing the Msi
- tenantId String
- Home Tenant Id
- type String
- Identity type
- userAssigned Map<Property Map>Identities 
- User Assigned Identities
ReverseShippingDetails, ReverseShippingDetailsArgs      
- ContactDetails Pulumi.Azure Native. Data Box. Inputs. Contact Info 
- Contact Info.
- ShippingAddress Pulumi.Azure Native. Data Box. Inputs. Shipping Address 
- Shipping address where customer wishes to receive the device.
- ContactDetails ContactInfo 
- Contact Info.
- ShippingAddress ShippingAddress 
- Shipping address where customer wishes to receive the device.
- contactDetails ContactInfo 
- Contact Info.
- shippingAddress ShippingAddress 
- Shipping address where customer wishes to receive the device.
- contactDetails ContactInfo 
- Contact Info.
- shippingAddress ShippingAddress 
- Shipping address where customer wishes to receive the device.
- contact_details ContactInfo 
- Contact Info.
- shipping_address ShippingAddress 
- Shipping address where customer wishes to receive the device.
- contactDetails Property Map
- Contact Info.
- shippingAddress Property Map
- Shipping address where customer wishes to receive the device.
ReverseShippingDetailsResponse, ReverseShippingDetailsResponseArgs        
- IsUpdated bool
- A flag to indicate whether Reverse Shipping details are updated or not after device has been prepared. Read only field
- ContactDetails Pulumi.Azure Native. Data Box. Inputs. Contact Info Response 
- Contact Info.
- ShippingAddress Pulumi.Azure Native. Data Box. Inputs. Shipping Address Response 
- Shipping address where customer wishes to receive the device.
- IsUpdated bool
- A flag to indicate whether Reverse Shipping details are updated or not after device has been prepared. Read only field
- ContactDetails ContactInfo Response 
- Contact Info.
- ShippingAddress ShippingAddress Response 
- Shipping address where customer wishes to receive the device.
- isUpdated Boolean
- A flag to indicate whether Reverse Shipping details are updated or not after device has been prepared. Read only field
- contactDetails ContactInfo Response 
- Contact Info.
- shippingAddress ShippingAddress Response 
- Shipping address where customer wishes to receive the device.
- isUpdated boolean
- A flag to indicate whether Reverse Shipping details are updated or not after device has been prepared. Read only field
- contactDetails ContactInfo Response 
- Contact Info.
- shippingAddress ShippingAddress Response 
- Shipping address where customer wishes to receive the device.
- is_updated bool
- A flag to indicate whether Reverse Shipping details are updated or not after device has been prepared. Read only field
- contact_details ContactInfo Response 
- Contact Info.
- shipping_address ShippingAddress Response 
- Shipping address where customer wishes to receive the device.
- isUpdated Boolean
- A flag to indicate whether Reverse Shipping details are updated or not after device has been prepared. Read only field
- contactDetails Property Map
- Contact Info.
- shippingAddress Property Map
- Shipping address where customer wishes to receive the device.
ShippingAddress, ShippingAddressArgs    
- Country string
- Name of the Country.
- StreetAddress1 string
- Street Address line 1.
- AddressType string | Pulumi.Azure Native. Data Box. Address Type 
- Type of address.
- City string
- Name of the City.
- CompanyName string
- Name of the company.
- PostalCode string
- Postal code.
- SkipAddress boolValidation 
- Flag to indicate if customer has chosen to skip default address validation
- StateOr stringProvince 
- Name of the State or Province.
- StreetAddress2 string
- Street Address line 2.
- StreetAddress3 string
- Street Address line 3.
- TaxIdentification stringNumber 
- Tax Identification Number
- ZipExtended stringCode 
- Extended Zip Code.
- Country string
- Name of the Country.
- StreetAddress1 string
- Street Address line 1.
- AddressType string | AddressType 
- Type of address.
- City string
- Name of the City.
- CompanyName string
- Name of the company.
- PostalCode string
- Postal code.
- SkipAddress boolValidation 
- Flag to indicate if customer has chosen to skip default address validation
- StateOr stringProvince 
- Name of the State or Province.
- StreetAddress2 string
- Street Address line 2.
- StreetAddress3 string
- Street Address line 3.
- TaxIdentification stringNumber 
- Tax Identification Number
- ZipExtended stringCode 
- Extended Zip Code.
- country String
- Name of the Country.
- streetAddress1 String
- Street Address line 1.
- addressType String | AddressType 
- Type of address.
- city String
- Name of the City.
- companyName String
- Name of the company.
- postalCode String
- Postal code.
- skipAddress BooleanValidation 
- Flag to indicate if customer has chosen to skip default address validation
- stateOr StringProvince 
- Name of the State or Province.
- streetAddress2 String
- Street Address line 2.
- streetAddress3 String
- Street Address line 3.
- taxIdentification StringNumber 
- Tax Identification Number
- zipExtended StringCode 
- Extended Zip Code.
- country string
- Name of the Country.
- streetAddress1 string
- Street Address line 1.
- addressType string | AddressType 
- Type of address.
- city string
- Name of the City.
- companyName string
- Name of the company.
- postalCode string
- Postal code.
- skipAddress booleanValidation 
- Flag to indicate if customer has chosen to skip default address validation
- stateOr stringProvince 
- Name of the State or Province.
- streetAddress2 string
- Street Address line 2.
- streetAddress3 string
- Street Address line 3.
- taxIdentification stringNumber 
- Tax Identification Number
- zipExtended stringCode 
- Extended Zip Code.
- country str
- Name of the Country.
- street_address1 str
- Street Address line 1.
- address_type str | AddressType 
- Type of address.
- city str
- Name of the City.
- company_name str
- Name of the company.
- postal_code str
- Postal code.
- skip_address_ boolvalidation 
- Flag to indicate if customer has chosen to skip default address validation
- state_or_ strprovince 
- Name of the State or Province.
- street_address2 str
- Street Address line 2.
- street_address3 str
- Street Address line 3.
- tax_identification_ strnumber 
- Tax Identification Number
- zip_extended_ strcode 
- Extended Zip Code.
- country String
- Name of the Country.
- streetAddress1 String
- Street Address line 1.
- addressType String | "None" | "Residential" | "Commercial"
- Type of address.
- city String
- Name of the City.
- companyName String
- Name of the company.
- postalCode String
- Postal code.
- skipAddress BooleanValidation 
- Flag to indicate if customer has chosen to skip default address validation
- stateOr StringProvince 
- Name of the State or Province.
- streetAddress2 String
- Street Address line 2.
- streetAddress3 String
- Street Address line 3.
- taxIdentification StringNumber 
- Tax Identification Number
- zipExtended StringCode 
- Extended Zip Code.
ShippingAddressResponse, ShippingAddressResponseArgs      
- Country string
- Name of the Country.
- StreetAddress1 string
- Street Address line 1.
- AddressType string
- Type of address.
- City string
- Name of the City.
- CompanyName string
- Name of the company.
- PostalCode string
- Postal code.
- SkipAddress boolValidation 
- Flag to indicate if customer has chosen to skip default address validation
- StateOr stringProvince 
- Name of the State or Province.
- StreetAddress2 string
- Street Address line 2.
- StreetAddress3 string
- Street Address line 3.
- TaxIdentification stringNumber 
- Tax Identification Number
- ZipExtended stringCode 
- Extended Zip Code.
- Country string
- Name of the Country.
- StreetAddress1 string
- Street Address line 1.
- AddressType string
- Type of address.
- City string
- Name of the City.
- CompanyName string
- Name of the company.
- PostalCode string
- Postal code.
- SkipAddress boolValidation 
- Flag to indicate if customer has chosen to skip default address validation
- StateOr stringProvince 
- Name of the State or Province.
- StreetAddress2 string
- Street Address line 2.
- StreetAddress3 string
- Street Address line 3.
- TaxIdentification stringNumber 
- Tax Identification Number
- ZipExtended stringCode 
- Extended Zip Code.
- country String
- Name of the Country.
- streetAddress1 String
- Street Address line 1.
- addressType String
- Type of address.
- city String
- Name of the City.
- companyName String
- Name of the company.
- postalCode String
- Postal code.
- skipAddress BooleanValidation 
- Flag to indicate if customer has chosen to skip default address validation
- stateOr StringProvince 
- Name of the State or Province.
- streetAddress2 String
- Street Address line 2.
- streetAddress3 String
- Street Address line 3.
- taxIdentification StringNumber 
- Tax Identification Number
- zipExtended StringCode 
- Extended Zip Code.
- country string
- Name of the Country.
- streetAddress1 string
- Street Address line 1.
- addressType string
- Type of address.
- city string
- Name of the City.
- companyName string
- Name of the company.
- postalCode string
- Postal code.
- skipAddress booleanValidation 
- Flag to indicate if customer has chosen to skip default address validation
- stateOr stringProvince 
- Name of the State or Province.
- streetAddress2 string
- Street Address line 2.
- streetAddress3 string
- Street Address line 3.
- taxIdentification stringNumber 
- Tax Identification Number
- zipExtended stringCode 
- Extended Zip Code.
- country str
- Name of the Country.
- street_address1 str
- Street Address line 1.
- address_type str
- Type of address.
- city str
- Name of the City.
- company_name str
- Name of the company.
- postal_code str
- Postal code.
- skip_address_ boolvalidation 
- Flag to indicate if customer has chosen to skip default address validation
- state_or_ strprovince 
- Name of the State or Province.
- street_address2 str
- Street Address line 2.
- street_address3 str
- Street Address line 3.
- tax_identification_ strnumber 
- Tax Identification Number
- zip_extended_ strcode 
- Extended Zip Code.
- country String
- Name of the Country.
- streetAddress1 String
- Street Address line 1.
- addressType String
- Type of address.
- city String
- Name of the City.
- companyName String
- Name of the company.
- postalCode String
- Postal code.
- skipAddress BooleanValidation 
- Flag to indicate if customer has chosen to skip default address validation
- stateOr StringProvince 
- Name of the State or Province.
- streetAddress2 String
- Street Address line 2.
- streetAddress3 String
- Street Address line 3.
- taxIdentification StringNumber 
- Tax Identification Number
- zipExtended StringCode 
- Extended Zip Code.
Sku, SkuArgs  
- Name
string | Pulumi.Azure Native. Data Box. Sku Name 
- The sku name.
- DisplayName string
- The display name of the sku.
- Family string
- The sku family.
- Name
string | SkuName 
- The sku name.
- DisplayName string
- The display name of the sku.
- Family string
- The sku family.
- name
String | SkuName 
- The sku name.
- displayName String
- The display name of the sku.
- family String
- The sku family.
- name
string | SkuName 
- The sku name.
- displayName string
- The display name of the sku.
- family string
- The sku family.
- name
str | SkuName 
- The sku name.
- display_name str
- The display name of the sku.
- family str
- The sku family.
- name
String | "DataBox" | "Data Box Disk" | "Data Box Heavy" | "Data Box Customer Disk" 
- The sku name.
- displayName String
- The display name of the sku.
- family String
- The sku family.
SkuName, SkuNameArgs    
- DataBox 
- DataBoxData Box.
- DataBox Disk 
- DataBoxDiskData Box Disk.
- DataBox Heavy 
- DataBoxHeavyData Box Heavy.
- DataBox Customer Disk 
- DataBoxCustomerDiskData Box Customer Disk.
- SkuName Data Box 
- DataBoxData Box.
- SkuName Data Box Disk 
- DataBoxDiskData Box Disk.
- SkuName Data Box Heavy 
- DataBoxHeavyData Box Heavy.
- SkuName Data Box Customer Disk 
- DataBoxCustomerDiskData Box Customer Disk.
- DataBox 
- DataBoxData Box.
- DataBox Disk 
- DataBoxDiskData Box Disk.
- DataBox Heavy 
- DataBoxHeavyData Box Heavy.
- DataBox Customer Disk 
- DataBoxCustomerDiskData Box Customer Disk.
- DataBox 
- DataBoxData Box.
- DataBox Disk 
- DataBoxDiskData Box Disk.
- DataBox Heavy 
- DataBoxHeavyData Box Heavy.
- DataBox Customer Disk 
- DataBoxCustomerDiskData Box Customer Disk.
- DATA_BOX
- DataBoxData Box.
- DATA_BOX_DISK
- DataBoxDiskData Box Disk.
- DATA_BOX_HEAVY
- DataBoxHeavyData Box Heavy.
- DATA_BOX_CUSTOMER_DISK
- DataBoxCustomerDiskData Box Customer Disk.
- "DataBox" 
- DataBoxData Box.
- "DataBox Disk" 
- DataBoxDiskData Box Disk.
- "DataBox Heavy" 
- DataBoxHeavyData Box Heavy.
- "DataBox Customer Disk" 
- DataBoxCustomerDiskData Box Customer Disk.
SkuResponse, SkuResponseArgs    
- Name string
- The sku name.
- DisplayName string
- The display name of the sku.
- Family string
- The sku family.
- Name string
- The sku name.
- DisplayName string
- The display name of the sku.
- Family string
- The sku family.
- name String
- The sku name.
- displayName String
- The display name of the sku.
- family String
- The sku family.
- name string
- The sku name.
- displayName string
- The display name of the sku.
- family string
- The sku family.
- name str
- The sku name.
- display_name str
- The display name of the sku.
- family str
- The sku family.
- name String
- The sku name.
- displayName String
- The display name of the sku.
- family String
- The sku family.
StorageAccountAccessTier, StorageAccountAccessTierArgs        
- Archive
- ArchiveArchive Access Tier shares requested by the customer.
- StorageAccount Access Tier Archive 
- ArchiveArchive Access Tier shares requested by the customer.
- Archive
- ArchiveArchive Access Tier shares requested by the customer.
- Archive
- ArchiveArchive Access Tier shares requested by the customer.
- ARCHIVE
- ArchiveArchive Access Tier shares requested by the customer.
- "Archive"
- ArchiveArchive Access Tier shares requested by the customer.
StorageAccountDetails, StorageAccountDetailsArgs      
- StorageAccount stringId 
- Storage Account Resource Id.
- string
- Password for all the shares to be created on the device. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- StorageAccount stringId 
- Storage Account Resource Id.
- string
- Password for all the shares to be created on the device. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- storageAccount StringId 
- Storage Account Resource Id.
- String
- Password for all the shares to be created on the device. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- storageAccount stringId 
- Storage Account Resource Id.
- string
- Password for all the shares to be created on the device. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- storage_account_ strid 
- Storage Account Resource Id.
- str
- Password for all the shares to be created on the device. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- storageAccount StringId 
- Storage Account Resource Id.
- String
- Password for all the shares to be created on the device. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
StorageAccountDetailsResponse, StorageAccountDetailsResponseArgs        
- StorageAccount stringId 
- Storage Account Resource Id.
- StorageAccount stringId 
- Storage Account Resource Id.
- storageAccount StringId 
- Storage Account Resource Id.
- storageAccount stringId 
- Storage Account Resource Id.
- storage_account_ strid 
- Storage Account Resource Id.
- storageAccount StringId 
- Storage Account Resource Id.
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC)
- CreatedBy string
- A string identifier for the identity that created the resource
- CreatedBy stringType 
- The type of identity that created the resource: user, application, managedIdentity
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- A string identifier for the identity that last modified the resource
- LastModified stringBy Type 
- The type of identity that last modified the resource: user, application, managedIdentity
- CreatedAt string
- The timestamp of resource creation (UTC)
- CreatedBy string
- A string identifier for the identity that created the resource
- CreatedBy stringType 
- The type of identity that created the resource: user, application, managedIdentity
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- A string identifier for the identity that last modified the resource
- LastModified stringBy Type 
- The type of identity that last modified the resource: user, application, managedIdentity
- createdAt String
- The timestamp of resource creation (UTC)
- createdBy String
- A string identifier for the identity that created the resource
- createdBy StringType 
- The type of identity that created the resource: user, application, managedIdentity
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- A string identifier for the identity that last modified the resource
- lastModified StringBy Type 
- The type of identity that last modified the resource: user, application, managedIdentity
- createdAt string
- The timestamp of resource creation (UTC)
- createdBy string
- A string identifier for the identity that created the resource
- createdBy stringType 
- The type of identity that created the resource: user, application, managedIdentity
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- A string identifier for the identity that last modified the resource
- lastModified stringBy Type 
- The type of identity that last modified the resource: user, application, managedIdentity
- created_at str
- The timestamp of resource creation (UTC)
- created_by str
- A string identifier for the identity that created the resource
- created_by_ strtype 
- The type of identity that created the resource: user, application, managedIdentity
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- A string identifier for the identity that last modified the resource
- last_modified_ strby_ type 
- The type of identity that last modified the resource: user, application, managedIdentity
- createdAt String
- The timestamp of resource creation (UTC)
- createdBy String
- A string identifier for the identity that created the resource
- createdBy StringType 
- The type of identity that created the resource: user, application, managedIdentity
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- A string identifier for the identity that last modified the resource
- lastModified StringBy Type 
- The type of identity that last modified the resource: user, application, managedIdentity
TransferAllDetails, TransferAllDetailsArgs      
- DataAccount string | Pulumi.Type Azure Native. Data Box. Data Account Type 
- Type of the account of data
- TransferAll boolBlobs 
- To indicate if all Azure blobs have to be transferred
- TransferAll boolFiles 
- To indicate if all Azure Files have to be transferred
- DataAccount string | DataType Account Type 
- Type of the account of data
- TransferAll boolBlobs 
- To indicate if all Azure blobs have to be transferred
- TransferAll boolFiles 
- To indicate if all Azure Files have to be transferred
- dataAccount String | DataType Account Type 
- Type of the account of data
- transferAll BooleanBlobs 
- To indicate if all Azure blobs have to be transferred
- transferAll BooleanFiles 
- To indicate if all Azure Files have to be transferred
- dataAccount string | DataType Account Type 
- Type of the account of data
- transferAll booleanBlobs 
- To indicate if all Azure blobs have to be transferred
- transferAll booleanFiles 
- To indicate if all Azure Files have to be transferred
- data_account_ str | Datatype Account Type 
- Type of the account of data
- transfer_all_ boolblobs 
- To indicate if all Azure blobs have to be transferred
- transfer_all_ boolfiles 
- To indicate if all Azure Files have to be transferred
- dataAccount String | "StorageType Account" | "Managed Disk" 
- Type of the account of data
- transferAll BooleanBlobs 
- To indicate if all Azure blobs have to be transferred
- transferAll BooleanFiles 
- To indicate if all Azure Files have to be transferred
TransferAllDetailsResponse, TransferAllDetailsResponseArgs        
- DataAccount stringType 
- Type of the account of data
- TransferAll boolBlobs 
- To indicate if all Azure blobs have to be transferred
- TransferAll boolFiles 
- To indicate if all Azure Files have to be transferred
- DataAccount stringType 
- Type of the account of data
- TransferAll boolBlobs 
- To indicate if all Azure blobs have to be transferred
- TransferAll boolFiles 
- To indicate if all Azure Files have to be transferred
- dataAccount StringType 
- Type of the account of data
- transferAll BooleanBlobs 
- To indicate if all Azure blobs have to be transferred
- transferAll BooleanFiles 
- To indicate if all Azure Files have to be transferred
- dataAccount stringType 
- Type of the account of data
- transferAll booleanBlobs 
- To indicate if all Azure blobs have to be transferred
- transferAll booleanFiles 
- To indicate if all Azure Files have to be transferred
- data_account_ strtype 
- Type of the account of data
- transfer_all_ boolblobs 
- To indicate if all Azure blobs have to be transferred
- transfer_all_ boolfiles 
- To indicate if all Azure Files have to be transferred
- dataAccount StringType 
- Type of the account of data
- transferAll BooleanBlobs 
- To indicate if all Azure blobs have to be transferred
- transferAll BooleanFiles 
- To indicate if all Azure Files have to be transferred
TransferConfiguration, TransferConfigurationArgs    
- TransferConfiguration string | Pulumi.Type Azure Native. Data Box. Transfer Configuration Type 
- Type of the configuration for transfer.
- TransferAll Pulumi.Details Azure Native. Data Box. Inputs. Transfer Configuration Transfer All Details 
- Map of filter type and the details to transfer all data. This field is required only if the TransferConfigurationType is given as TransferAll
- TransferFilter Pulumi.Details Azure Native. Data Box. Inputs. Transfer Configuration Transfer Filter Details 
- Map of filter type and the details to filter. This field is required only if the TransferConfigurationType is given as TransferUsingFilter.
- TransferConfiguration string | TransferType Configuration Type 
- Type of the configuration for transfer.
- TransferAll TransferDetails Configuration Transfer All Details 
- Map of filter type and the details to transfer all data. This field is required only if the TransferConfigurationType is given as TransferAll
- TransferFilter TransferDetails Configuration Transfer Filter Details 
- Map of filter type and the details to filter. This field is required only if the TransferConfigurationType is given as TransferUsingFilter.
- transferConfiguration String | TransferType Configuration Type 
- Type of the configuration for transfer.
- transferAll TransferDetails Configuration Transfer All Details 
- Map of filter type and the details to transfer all data. This field is required only if the TransferConfigurationType is given as TransferAll
- transferFilter TransferDetails Configuration Transfer Filter Details 
- Map of filter type and the details to filter. This field is required only if the TransferConfigurationType is given as TransferUsingFilter.
- transferConfiguration string | TransferType Configuration Type 
- Type of the configuration for transfer.
- transferAll TransferDetails Configuration Transfer All Details 
- Map of filter type and the details to transfer all data. This field is required only if the TransferConfigurationType is given as TransferAll
- transferFilter TransferDetails Configuration Transfer Filter Details 
- Map of filter type and the details to filter. This field is required only if the TransferConfigurationType is given as TransferUsingFilter.
- transfer_configuration_ str | Transfertype Configuration Type 
- Type of the configuration for transfer.
- transfer_all_ Transferdetails Configuration Transfer All Details 
- Map of filter type and the details to transfer all data. This field is required only if the TransferConfigurationType is given as TransferAll
- transfer_filter_ Transferdetails Configuration Transfer Filter Details 
- Map of filter type and the details to filter. This field is required only if the TransferConfigurationType is given as TransferUsingFilter.
- transferConfiguration String | "TransferType All" | "Transfer Using Filter" 
- Type of the configuration for transfer.
- transferAll Property MapDetails 
- Map of filter type and the details to transfer all data. This field is required only if the TransferConfigurationType is given as TransferAll
- transferFilter Property MapDetails 
- Map of filter type and the details to filter. This field is required only if the TransferConfigurationType is given as TransferUsingFilter.
TransferConfigurationResponse, TransferConfigurationResponseArgs      
- TransferConfiguration stringType 
- Type of the configuration for transfer.
- TransferAll Pulumi.Details Azure Native. Data Box. Inputs. Transfer Configuration Response Transfer All Details 
- Map of filter type and the details to transfer all data. This field is required only if the TransferConfigurationType is given as TransferAll
- TransferFilter Pulumi.Details Azure Native. Data Box. Inputs. Transfer Configuration Response Transfer Filter Details 
- Map of filter type and the details to filter. This field is required only if the TransferConfigurationType is given as TransferUsingFilter.
- TransferConfiguration stringType 
- Type of the configuration for transfer.
- TransferAll TransferDetails Configuration Response Transfer All Details 
- Map of filter type and the details to transfer all data. This field is required only if the TransferConfigurationType is given as TransferAll
- TransferFilter TransferDetails Configuration Response Transfer Filter Details 
- Map of filter type and the details to filter. This field is required only if the TransferConfigurationType is given as TransferUsingFilter.
- transferConfiguration StringType 
- Type of the configuration for transfer.
- transferAll TransferDetails Configuration Response Transfer All Details 
- Map of filter type and the details to transfer all data. This field is required only if the TransferConfigurationType is given as TransferAll
- transferFilter TransferDetails Configuration Response Transfer Filter Details 
- Map of filter type and the details to filter. This field is required only if the TransferConfigurationType is given as TransferUsingFilter.
- transferConfiguration stringType 
- Type of the configuration for transfer.
- transferAll TransferDetails Configuration Response Transfer All Details 
- Map of filter type and the details to transfer all data. This field is required only if the TransferConfigurationType is given as TransferAll
- transferFilter TransferDetails Configuration Response Transfer Filter Details 
- Map of filter type and the details to filter. This field is required only if the TransferConfigurationType is given as TransferUsingFilter.
- transfer_configuration_ strtype 
- Type of the configuration for transfer.
- transfer_all_ Transferdetails Configuration Response Transfer All Details 
- Map of filter type and the details to transfer all data. This field is required only if the TransferConfigurationType is given as TransferAll
- transfer_filter_ Transferdetails Configuration Response Transfer Filter Details 
- Map of filter type and the details to filter. This field is required only if the TransferConfigurationType is given as TransferUsingFilter.
- transferConfiguration StringType 
- Type of the configuration for transfer.
- transferAll Property MapDetails 
- Map of filter type and the details to transfer all data. This field is required only if the TransferConfigurationType is given as TransferAll
- transferFilter Property MapDetails 
- Map of filter type and the details to filter. This field is required only if the TransferConfigurationType is given as TransferUsingFilter.
TransferConfigurationResponseTransferAllDetails, TransferConfigurationResponseTransferAllDetailsArgs            
- Include
Pulumi.Azure Native. Data Box. Inputs. Transfer All Details Response 
- Details to transfer all data.
- Include
TransferAll Details Response 
- Details to transfer all data.
- include
TransferAll Details Response 
- Details to transfer all data.
- include
TransferAll Details Response 
- Details to transfer all data.
- include
TransferAll Details Response 
- Details to transfer all data.
- include Property Map
- Details to transfer all data.
TransferConfigurationResponseTransferFilterDetails, TransferConfigurationResponseTransferFilterDetailsArgs            
- Include
Pulumi.Azure Native. Data Box. Inputs. Transfer Filter Details Response 
- Details of the filtering the transfer of data.
- Include
TransferFilter Details Response 
- Details of the filtering the transfer of data.
- include
TransferFilter Details Response 
- Details of the filtering the transfer of data.
- include
TransferFilter Details Response 
- Details of the filtering the transfer of data.
- include
TransferFilter Details Response 
- Details of the filtering the transfer of data.
- include Property Map
- Details of the filtering the transfer of data.
TransferConfigurationTransferAllDetails, TransferConfigurationTransferAllDetailsArgs          
- Include
Pulumi.Azure Native. Data Box. Inputs. Transfer All Details 
- Details to transfer all data.
- Include
TransferAll Details 
- Details to transfer all data.
- include
TransferAll Details 
- Details to transfer all data.
- include
TransferAll Details 
- Details to transfer all data.
- include
TransferAll Details 
- Details to transfer all data.
- include Property Map
- Details to transfer all data.
TransferConfigurationTransferFilterDetails, TransferConfigurationTransferFilterDetailsArgs          
- Include
Pulumi.Azure Native. Data Box. Inputs. Transfer Filter Details 
- Details of the filtering the transfer of data.
- Include
TransferFilter Details 
- Details of the filtering the transfer of data.
- include
TransferFilter Details 
- Details of the filtering the transfer of data.
- include
TransferFilter Details 
- Details of the filtering the transfer of data.
- include
TransferFilter Details 
- Details of the filtering the transfer of data.
- include Property Map
- Details of the filtering the transfer of data.
TransferConfigurationType, TransferConfigurationTypeArgs      
- TransferAll 
- TransferAllTransfer all the data.
- TransferUsing Filter 
- TransferUsingFilterTransfer using filter.
- TransferConfiguration Type Transfer All 
- TransferAllTransfer all the data.
- TransferConfiguration Type Transfer Using Filter 
- TransferUsingFilterTransfer using filter.
- TransferAll 
- TransferAllTransfer all the data.
- TransferUsing Filter 
- TransferUsingFilterTransfer using filter.
- TransferAll 
- TransferAllTransfer all the data.
- TransferUsing Filter 
- TransferUsingFilterTransfer using filter.
- TRANSFER_ALL
- TransferAllTransfer all the data.
- TRANSFER_USING_FILTER
- TransferUsingFilterTransfer using filter.
- "TransferAll" 
- TransferAllTransfer all the data.
- "TransferUsing Filter" 
- TransferUsingFilterTransfer using filter.
TransferFilterDetails, TransferFilterDetailsArgs      
- DataAccount string | Pulumi.Type Azure Native. Data Box. Data Account Type 
- Type of the account of data.
- AzureFile Pulumi.Filter Details Azure Native. Data Box. Inputs. Azure File Filter Details 
- Filter details to transfer Azure files.
- BlobFilter Pulumi.Details Azure Native. Data Box. Inputs. Blob Filter Details 
- Filter details to transfer blobs.
- FilterFile List<Pulumi.Details Azure Native. Data Box. Inputs. Filter File Details> 
- Details of the filter files to be used for data transfer.
- DataAccount string | DataType Account Type 
- Type of the account of data.
- AzureFile AzureFilter Details File Filter Details 
- Filter details to transfer Azure files.
- BlobFilter BlobDetails Filter Details 
- Filter details to transfer blobs.
- FilterFile []FilterDetails File Details 
- Details of the filter files to be used for data transfer.
- dataAccount String | DataType Account Type 
- Type of the account of data.
- azureFile AzureFilter Details File Filter Details 
- Filter details to transfer Azure files.
- blobFilter BlobDetails Filter Details 
- Filter details to transfer blobs.
- filterFile List<FilterDetails File Details> 
- Details of the filter files to be used for data transfer.
- dataAccount string | DataType Account Type 
- Type of the account of data.
- azureFile AzureFilter Details File Filter Details 
- Filter details to transfer Azure files.
- blobFilter BlobDetails Filter Details 
- Filter details to transfer blobs.
- filterFile FilterDetails File Details[] 
- Details of the filter files to be used for data transfer.
- data_account_ str | Datatype Account Type 
- Type of the account of data.
- azure_file_ Azurefilter_ details File Filter Details 
- Filter details to transfer Azure files.
- blob_filter_ Blobdetails Filter Details 
- Filter details to transfer blobs.
- filter_file_ Sequence[Filterdetails File Details] 
- Details of the filter files to be used for data transfer.
- dataAccount String | "StorageType Account" | "Managed Disk" 
- Type of the account of data.
- azureFile Property MapFilter Details 
- Filter details to transfer Azure files.
- blobFilter Property MapDetails 
- Filter details to transfer blobs.
- filterFile List<Property Map>Details 
- Details of the filter files to be used for data transfer.
TransferFilterDetailsResponse, TransferFilterDetailsResponseArgs        
- DataAccount stringType 
- Type of the account of data.
- AzureFile Pulumi.Filter Details Azure Native. Data Box. Inputs. Azure File Filter Details Response 
- Filter details to transfer Azure files.
- BlobFilter Pulumi.Details Azure Native. Data Box. Inputs. Blob Filter Details Response 
- Filter details to transfer blobs.
- FilterFile List<Pulumi.Details Azure Native. Data Box. Inputs. Filter File Details Response> 
- Details of the filter files to be used for data transfer.
- DataAccount stringType 
- Type of the account of data.
- AzureFile AzureFilter Details File Filter Details Response 
- Filter details to transfer Azure files.
- BlobFilter BlobDetails Filter Details Response 
- Filter details to transfer blobs.
- FilterFile []FilterDetails File Details Response 
- Details of the filter files to be used for data transfer.
- dataAccount StringType 
- Type of the account of data.
- azureFile AzureFilter Details File Filter Details Response 
- Filter details to transfer Azure files.
- blobFilter BlobDetails Filter Details Response 
- Filter details to transfer blobs.
- filterFile List<FilterDetails File Details Response> 
- Details of the filter files to be used for data transfer.
- dataAccount stringType 
- Type of the account of data.
- azureFile AzureFilter Details File Filter Details Response 
- Filter details to transfer Azure files.
- blobFilter BlobDetails Filter Details Response 
- Filter details to transfer blobs.
- filterFile FilterDetails File Details Response[] 
- Details of the filter files to be used for data transfer.
- data_account_ strtype 
- Type of the account of data.
- azure_file_ Azurefilter_ details File Filter Details Response 
- Filter details to transfer Azure files.
- blob_filter_ Blobdetails Filter Details Response 
- Filter details to transfer blobs.
- filter_file_ Sequence[Filterdetails File Details Response] 
- Details of the filter files to be used for data transfer.
- dataAccount StringType 
- Type of the account of data.
- azureFile Property MapFilter Details 
- Filter details to transfer Azure files.
- blobFilter Property MapDetails 
- Filter details to transfer blobs.
- filterFile List<Property Map>Details 
- Details of the filter files to be used for data transfer.
TransferType, TransferTypeArgs    
- ImportTo Azure 
- ImportToAzureImport data to azure.
- ExportFrom Azure 
- ExportFromAzureExport data from azure.
- TransferType Import To Azure 
- ImportToAzureImport data to azure.
- TransferType Export From Azure 
- ExportFromAzureExport data from azure.
- ImportTo Azure 
- ImportToAzureImport data to azure.
- ExportFrom Azure 
- ExportFromAzureExport data from azure.
- ImportTo Azure 
- ImportToAzureImport data to azure.
- ExportFrom Azure 
- ExportFromAzureExport data from azure.
- IMPORT_TO_AZURE
- ImportToAzureImport data to azure.
- EXPORT_FROM_AZURE
- ExportFromAzureExport data from azure.
- "ImportTo Azure" 
- ImportToAzureImport data to azure.
- "ExportFrom Azure" 
- ExportFromAzureExport data from azure.
TransportPreferences, TransportPreferencesArgs    
- PreferredShipment string | Pulumi.Type Azure Native. Data Box. Transport Shipment Types 
- Indicates Shipment Logistics type that the customer preferred.
- PreferredShipment string | TransportType Shipment Types 
- Indicates Shipment Logistics type that the customer preferred.
- preferredShipment String | TransportType Shipment Types 
- Indicates Shipment Logistics type that the customer preferred.
- preferredShipment string | TransportType Shipment Types 
- Indicates Shipment Logistics type that the customer preferred.
- preferred_shipment_ str | Transporttype Shipment Types 
- Indicates Shipment Logistics type that the customer preferred.
- preferredShipment String | "CustomerType Managed" | "Microsoft Managed" 
- Indicates Shipment Logistics type that the customer preferred.
TransportPreferencesResponse, TransportPreferencesResponseArgs      
- IsUpdated bool
- Read only property which indicates whether transport preferences has been updated or not after device is prepared.
- PreferredShipment stringType 
- Indicates Shipment Logistics type that the customer preferred.
- IsUpdated bool
- Read only property which indicates whether transport preferences has been updated or not after device is prepared.
- PreferredShipment stringType 
- Indicates Shipment Logistics type that the customer preferred.
- isUpdated Boolean
- Read only property which indicates whether transport preferences has been updated or not after device is prepared.
- preferredShipment StringType 
- Indicates Shipment Logistics type that the customer preferred.
- isUpdated boolean
- Read only property which indicates whether transport preferences has been updated or not after device is prepared.
- preferredShipment stringType 
- Indicates Shipment Logistics type that the customer preferred.
- is_updated bool
- Read only property which indicates whether transport preferences has been updated or not after device is prepared.
- preferred_shipment_ strtype 
- Indicates Shipment Logistics type that the customer preferred.
- isUpdated Boolean
- Read only property which indicates whether transport preferences has been updated or not after device is prepared.
- preferredShipment StringType 
- Indicates Shipment Logistics type that the customer preferred.
TransportShipmentTypes, TransportShipmentTypesArgs      
- CustomerManaged 
- CustomerManagedShipment Logistics is handled by the customer.
- MicrosoftManaged 
- MicrosoftManagedShipment Logistics is handled by Microsoft.
- TransportShipment Types Customer Managed 
- CustomerManagedShipment Logistics is handled by the customer.
- TransportShipment Types Microsoft Managed 
- MicrosoftManagedShipment Logistics is handled by Microsoft.
- CustomerManaged 
- CustomerManagedShipment Logistics is handled by the customer.
- MicrosoftManaged 
- MicrosoftManagedShipment Logistics is handled by Microsoft.
- CustomerManaged 
- CustomerManagedShipment Logistics is handled by the customer.
- MicrosoftManaged 
- MicrosoftManagedShipment Logistics is handled by Microsoft.
- CUSTOMER_MANAGED
- CustomerManagedShipment Logistics is handled by the customer.
- MICROSOFT_MANAGED
- MicrosoftManagedShipment Logistics is handled by Microsoft.
- "CustomerManaged" 
- CustomerManagedShipment Logistics is handled by the customer.
- "MicrosoftManaged" 
- MicrosoftManagedShipment Logistics is handled by Microsoft.
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs        
- ClientId string
- The client id of user assigned identity.
- PrincipalId string
- The principal id of user assigned identity.
- ClientId string
- The client id of user assigned identity.
- PrincipalId string
- The principal id of user assigned identity.
- clientId String
- The client id of user assigned identity.
- principalId String
- The principal id of user assigned identity.
- clientId string
- The client id of user assigned identity.
- principalId string
- The principal id of user assigned identity.
- client_id str
- The client id of user assigned identity.
- principal_id str
- The principal id of user assigned identity.
- clientId String
- The client id of user assigned identity.
- principalId String
- The principal id of user assigned identity.
UserAssignedProperties, UserAssignedPropertiesArgs      
- ResourceId string
- Arm resource id for user assigned identity to be used to fetch MSI token.
- ResourceId string
- Arm resource id for user assigned identity to be used to fetch MSI token.
- resourceId String
- Arm resource id for user assigned identity to be used to fetch MSI token.
- resourceId string
- Arm resource id for user assigned identity to be used to fetch MSI token.
- resource_id str
- Arm resource id for user assigned identity to be used to fetch MSI token.
- resourceId String
- Arm resource id for user assigned identity to be used to fetch MSI token.
UserAssignedPropertiesResponse, UserAssignedPropertiesResponseArgs        
- ResourceId string
- Arm resource id for user assigned identity to be used to fetch MSI token.
- ResourceId string
- Arm resource id for user assigned identity to be used to fetch MSI token.
- resourceId String
- Arm resource id for user assigned identity to be used to fetch MSI token.
- resourceId string
- Arm resource id for user assigned identity to be used to fetch MSI token.
- resource_id str
- Arm resource id for user assigned identity to be used to fetch MSI token.
- resourceId String
- Arm resource id for user assigned identity to be used to fetch MSI token.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:databox:Job TestJobName1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataBox/jobs/{jobName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0