azure-native.databox.Job
Explore with Pulumi AI
Job Resource.
Uses Azure REST API version 2024-03-01-preview. In version 2.x of the Azure Native provider, it used API version 2022-12-01.
Other available API versions: 2022-12-01, 2023-03-01, 2023-12-01, 2024-02-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native databox [ApiVersion]
. See the version guide for details.
Example Usage
JobsCreate
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/v3"
"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(DataBoxJobDetailsArgs.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/v3"
"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(DataBoxJobDetailsArgs.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/v3"
"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(DataBoxJobDetailsArgs.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
This property is required. string - The unique name of the resource.
- args
This property is required. JobArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. 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
This property is required. string - The unique name of the resource.
- args
This property is required. JobArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. JobArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. 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:
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The Resource Group Name
- Sku
This property is required. Pulumi.Azure Native. Data Box. Inputs. Sku - The sku type.
- Transfer
Type This property is required. string | Pulumi.Azure Native. Data Box. Transfer Type - Type of the data transfer.
- Delivery
Info Pulumi.Azure Native. Data Box. Inputs. Job Delivery Info - Delivery Info of Job.
- Delivery
Type 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
- Job
Name Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- 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).
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The Resource Group Name
- Sku
This property is required. SkuArgs - The sku type.
- Transfer
Type This property is required. string | TransferType - Type of the data transfer.
- Delivery
Info JobDelivery Info Args - Delivery Info of Job.
- Delivery
Type string | JobDelivery Type - Delivery type of Job.
- Details
Data
Box | 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
Resource
Identity Args - Msi identity of the resource
- Job
Name Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- 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).
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The Resource Group Name
- sku
This property is required. Sku - The sku type.
- transfer
Type This property is required. String | TransferType - Type of the data transfer.
- delivery
Info JobDelivery Info - Delivery Info of Job.
- delivery
Type String | JobDelivery Type - Delivery type of Job.
- details
Data
Box | 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
Resource
Identity - Msi identity of the resource
- job
Name Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- 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).
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The Resource Group Name
- sku
This property is required. Sku - The sku type.
- transfer
Type This property is required. string | TransferType - Type of the data transfer.
- delivery
Info JobDelivery Info - Delivery Info of Job.
- delivery
Type string | JobDelivery Type - Delivery type of Job.
- details
Data
Box | 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
Resource
Identity - Msi identity of the resource
- job
Name Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- 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_ name This property is required. Changes to this property will trigger replacement.
- The Resource Group Name
- sku
This property is required. SkuArgs - The sku type.
- transfer_
type This property is required. 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
Data
Box | 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
Resource
Identity Args - Msi identity of the resource
- job_
name Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- 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).
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The Resource Group Name
- sku
This property is required. Property Map - The sku type.
- transfer
Type This property is required. String | "ImportTo Azure" | "Export From Azure" - Type of the data transfer.
- delivery
Info Property Map - Delivery Info of Job.
- delivery
Type 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
- job
Name Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- 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:
- All
Devices boolLost - Flag to indicate if all devices associated with the job are lost.
- Azure
Api stringVersion - The Azure API version of the resource.
- Cancellation
Reason string - Reason for cancellation.
- Delayed
Stage string - Name of the stage where delay might be present.
- 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.
- 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 string
- Name of the object.
- Reverse
Shipping stringDetails Update - The Editable status for Reverse Shipping Address and Contact Info
- Reverse
Transport stringPreference Update - The Editable status for Reverse Transport preferences
- Start
Time string - Time at which the job was started in UTC ISO 8601 format.
- Status string
- Name of the stage which is in progress.
- System
Data 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.
- All
Devices boolLost - Flag to indicate if all devices associated with the job are lost.
- Azure
Api stringVersion - The Azure API version of the resource.
- Cancellation
Reason string - Reason for cancellation.
- Delayed
Stage string - Name of the stage where delay might be present.
- Error
Cloud
Error Response - Top level error for the job.
- Id string
- 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 string
- Name of the object.
- Reverse
Shipping stringDetails Update - The Editable status for Reverse Shipping Address and Contact Info
- Reverse
Transport stringPreference Update - The Editable status for Reverse Transport preferences
- Start
Time string - Time at which the job was started in UTC ISO 8601 format.
- Status string
- Name of the stage which is in progress.
- System
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- Type of the object.
- all
Devices BooleanLost - Flag to indicate if all devices associated with the job are lost.
- azure
Api StringVersion - The Azure API version of the resource.
- cancellation
Reason String - Reason for cancellation.
- delayed
Stage String - Name of the stage where delay might be present.
- error
Cloud
Error Response - Top level error for the job.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Cancellable Boolean - Describes whether the job is cancellable or not.
- is
Cancellable BooleanWithout Fee - Flag to indicate cancellation of scheduled job.
- is
Deletable Boolean - Describes whether the job is deletable or not.
- is
Prepare BooleanTo Ship Enabled - Is Prepare To Ship Enabled on this job
- is
Shipping BooleanAddress Editable - Describes whether the shipping address is editable or not.
- name String
- Name of the object.
- reverse
Shipping StringDetails Update - The Editable status for Reverse Shipping Address and Contact Info
- reverse
Transport StringPreference Update - The Editable status for Reverse Transport preferences
- start
Time String - Time at which the job was started in UTC ISO 8601 format.
- status String
- Name of the stage which is in progress.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type String
- Type of the object.
- all
Devices booleanLost - Flag to indicate if all devices associated with the job are lost.
- azure
Api stringVersion - The Azure API version of the resource.
- cancellation
Reason string - Reason for cancellation.
- delayed
Stage string - Name of the stage where delay might be present.
- error
Cloud
Error Response - Top level error for the job.
- id string
- The provider-assigned unique ID for this managed resource.
- is
Cancellable boolean - Describes whether the job is cancellable or not.
- is
Cancellable booleanWithout Fee - Flag to indicate cancellation of scheduled job.
- is
Deletable boolean - Describes whether the job is deletable or not.
- is
Prepare booleanTo Ship Enabled - Is Prepare To Ship Enabled on this job
- is
Shipping booleanAddress Editable - Describes whether the shipping address is editable or not.
- name string
- Name of the object.
- reverse
Shipping stringDetails Update - The Editable status for Reverse Shipping Address and Contact Info
- reverse
Transport stringPreference Update - The Editable status for Reverse Transport preferences
- start
Time string - Time at which the job was started in UTC ISO 8601 format.
- status string
- Name of the stage which is in progress.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type string
- Type of the object.
- all_
devices_ boollost - Flag to indicate if all devices associated with the job are lost.
- azure_
api_ strversion - The Azure API version of the resource.
- cancellation_
reason str - Reason for cancellation.
- delayed_
stage str - Name of the stage where delay might be present.
- error
Cloud
Error 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.
- all
Devices BooleanLost - Flag to indicate if all devices associated with the job are lost.
- azure
Api StringVersion - The Azure API version of the resource.
- cancellation
Reason String - Reason for cancellation.
- delayed
Stage String - Name of the stage where delay might be present.
- error Property Map
- Top level error for the job.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Cancellable Boolean - Describes whether the job is cancellable or not.
- is
Cancellable BooleanWithout Fee - Flag to indicate cancellation of scheduled job.
- is
Deletable Boolean - Describes whether the job is deletable or not.
- is
Prepare BooleanTo Ship Enabled - Is Prepare To Ship Enabled on this job
- is
Shipping BooleanAddress Editable - Describes whether the shipping address is editable or not.
- name String
- Name of the object.
- reverse
Shipping StringDetails Update - The Editable status for Reverse Shipping Address and Contact Info
- reverse
Transport StringPreference Update - The Editable status for Reverse Transport preferences
- start
Time String - Time at which the job was started in UTC ISO 8601 format.
- status String
- Name of the stage which is in progress.
- system
Data 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.
- Address
Type None - NoneAddress type not known.
- Address
Type Residential - ResidentialResidential Address.
- Address
Type 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
- File
Path List<string>List - List of full path of the files to be transferred.
- File
Prefix List<string>List - Prefix list of the Azure files to be transferred.
- List<string>
- List of file shares to be transferred.
- File
Path []stringList - List of full path of the files to be transferred.
- File
Prefix []stringList - Prefix list of the Azure files to be transferred.
- []string
- List of file shares to be transferred.
- file
Path List<String>List - List of full path of the files to be transferred.
- file
Prefix List<String>List - Prefix list of the Azure files to be transferred.
- List<String>
- List of file shares to be transferred.
- file
Path string[]List - List of full path of the files to be transferred.
- file
Prefix 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.
- file
Path List<String>List - List of full path of the files to be transferred.
- file
Prefix List<String>List - Prefix list of the Azure files to be transferred.
- List<String>
- List of file shares to be transferred.
AzureFileFilterDetailsResponse, AzureFileFilterDetailsResponseArgs
- File
Path List<string>List - List of full path of the files to be transferred.
- File
Prefix List<string>List - Prefix list of the Azure files to be transferred.
- List<string>
- List of file shares to be transferred.
- File
Path []stringList - List of full path of the files to be transferred.
- File
Prefix []stringList - Prefix list of the Azure files to be transferred.
- []string
- List of file shares to be transferred.
- file
Path List<String>List - List of full path of the files to be transferred.
- file
Prefix List<String>List - Prefix list of the Azure files to be transferred.
- List<String>
- List of file shares to be transferred.
- file
Path string[]List - List of full path of the files to be transferred.
- file
Prefix 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.
- file
Path List<String>List - List of full path of the files to be transferred.
- file
Prefix List<String>List - Prefix list of the Azure files to be transferred.
- List<String>
- List of file shares to be transferred.
BlobFilterDetails, BlobFilterDetailsArgs
- Blob
Path List<string>List - List of full path of the blobs to be transferred.
- Blob
Prefix List<string>List - Prefix list of the Azure blobs to be transferred.
- Container
List List<string> - List of blob containers to be transferred.
- Blob
Path []stringList - List of full path of the blobs to be transferred.
- Blob
Prefix []stringList - Prefix list of the Azure blobs to be transferred.
- Container
List []string - List of blob containers to be transferred.
- blob
Path List<String>List - List of full path of the blobs to be transferred.
- blob
Prefix List<String>List - Prefix list of the Azure blobs to be transferred.
- container
List List<String> - List of blob containers to be transferred.
- blob
Path string[]List - List of full path of the blobs to be transferred.
- blob
Prefix string[]List - Prefix list of the Azure blobs to be transferred.
- container
List 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.
- blob
Path List<String>List - List of full path of the blobs to be transferred.
- blob
Prefix List<String>List - Prefix list of the Azure blobs to be transferred.
- container
List List<String> - List of blob containers to be transferred.
BlobFilterDetailsResponse, BlobFilterDetailsResponseArgs
- Blob
Path List<string>List - List of full path of the blobs to be transferred.
- Blob
Prefix List<string>List - Prefix list of the Azure blobs to be transferred.
- Container
List List<string> - List of blob containers to be transferred.
- Blob
Path []stringList - List of full path of the blobs to be transferred.
- Blob
Prefix []stringList - Prefix list of the Azure blobs to be transferred.
- Container
List []string - List of blob containers to be transferred.
- blob
Path List<String>List - List of full path of the blobs to be transferred.
- blob
Prefix List<String>List - Prefix list of the Azure blobs to be transferred.
- container
List List<String> - List of blob containers to be transferred.
- blob
Path string[]List - List of full path of the blobs to be transferred.
- blob
Prefix string[]List - Prefix list of the Azure blobs to be transferred.
- container
List 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.
- blob
Path List<String>List - List of full path of the blobs to be transferred.
- blob
Prefix List<String>List - Prefix list of the Azure blobs to be transferred.
- container
List List<String> - List of blob containers to be transferred.
CloudErrorResponse, CloudErrorResponseArgs
- Additional
Info This property is required. List<Pulumi.Azure Native. Data Box. Inputs. Additional Error Info Response> - Gets or sets additional error info.
- Details
This property is required. 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.
- Additional
Info This property is required. []AdditionalError Info Response - Gets or sets additional error info.
- Details
This property is required. []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 This property is required. List<AdditionalError Info Response> - Gets or sets additional error info.
- details
This property is required. 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.
- additional
Info This property is required. AdditionalError Info Response[] - Gets or sets additional error info.
- details
This property is required. 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 This property is required. Sequence[AdditionalError Info Response] - Gets or sets additional error info.
- details
This property is required. 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.
- additional
Info This property is required. List<Property Map> - Gets or sets additional error info.
- details
This property is required. 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
- Contact
Name This property is required. string - Contact name of the person.
- Email
List This property is required. List<string> - List of Email-ids to be notified about job progress.
- Phone
This property is required. string - Phone number of the contact person.
- Mobile string
- Mobile number of the contact person.
- Notification
Preference List<Pulumi.Azure Native. Data Box. Inputs. Notification Preference> - Notification preference for a job stage.
- Phone
Extension string - Phone extension number of the contact person.
- Contact
Name This property is required. string - Contact name of the person.
- Email
List This property is required. []string - List of Email-ids to be notified about job progress.
- Phone
This property is required. string - Phone number of the contact person.
- Mobile string
- Mobile number of the contact person.
- Notification
Preference []NotificationPreference - Notification preference for a job stage.
- Phone
Extension string - Phone extension number of the contact person.
- contact
Name This property is required. String - Contact name of the person.
- email
List This property is required. List<String> - List of Email-ids to be notified about job progress.
- phone
This property is required. String - Phone number of the contact person.
- mobile String
- Mobile number of the contact person.
- notification
Preference List<NotificationPreference> - Notification preference for a job stage.
- phone
Extension String - Phone extension number of the contact person.
- contact
Name This property is required. string - Contact name of the person.
- email
List This property is required. string[] - List of Email-ids to be notified about job progress.
- phone
This property is required. string - Phone number of the contact person.
- mobile string
- Mobile number of the contact person.
- notification
Preference NotificationPreference[] - Notification preference for a job stage.
- phone
Extension string - Phone extension number of the contact person.
- contact_
name This property is required. str - Contact name of the person.
- email_
list This property is required. Sequence[str] - List of Email-ids to be notified about job progress.
- phone
This property is required. 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.
- contact
Name This property is required. String - Contact name of the person.
- email
List This property is required. List<String> - List of Email-ids to be notified about job progress.
- phone
This property is required. String - Phone number of the contact person.
- mobile String
- Mobile number of the contact person.
- notification
Preference List<Property Map> - Notification preference for a job stage.
- phone
Extension String - Phone extension number of the contact person.
ContactDetailsResponse, ContactDetailsResponseArgs
- Contact
Name This property is required. string - Contact name of the person.
- Email
List This property is required. List<string> - List of Email-ids to be notified about job progress.
- Phone
This property is required. string - Phone number of the contact person.
- Mobile string
- Mobile number of the contact person.
- Notification
Preference List<Pulumi.Azure Native. Data Box. Inputs. Notification Preference Response> - Notification preference for a job stage.
- Phone
Extension string - Phone extension number of the contact person.
- Contact
Name This property is required. string - Contact name of the person.
- Email
List This property is required. []string - List of Email-ids to be notified about job progress.
- Phone
This property is required. string - Phone number of the contact person.
- Mobile string
- Mobile number of the contact person.
- Notification
Preference []NotificationPreference Response - Notification preference for a job stage.
- Phone
Extension string - Phone extension number of the contact person.
- contact
Name This property is required. String - Contact name of the person.
- email
List This property is required. List<String> - List of Email-ids to be notified about job progress.
- phone
This property is required. String - Phone number of the contact person.
- mobile String
- Mobile number of the contact person.
- notification
Preference List<NotificationPreference Response> - Notification preference for a job stage.
- phone
Extension String - Phone extension number of the contact person.
- contact
Name This property is required. string - Contact name of the person.
- email
List This property is required. string[] - List of Email-ids to be notified about job progress.
- phone
This property is required. string - Phone number of the contact person.
- mobile string
- Mobile number of the contact person.
- notification
Preference NotificationPreference Response[] - Notification preference for a job stage.
- phone
Extension string - Phone extension number of the contact person.
- contact_
name This property is required. str - Contact name of the person.
- email_
list This property is required. Sequence[str] - List of Email-ids to be notified about job progress.
- phone
This property is required. 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.
- contact
Name This property is required. String - Contact name of the person.
- email
List This property is required. List<String> - List of Email-ids to be notified about job progress.
- phone
This property is required. String - Phone number of the contact person.
- mobile String
- Mobile number of the contact person.
- notification
Preference List<Property Map> - Notification preference for a job stage.
- phone
Extension String - Phone extension number of the contact person.
ContactInfo, ContactInfoArgs
- Contact
Name This property is required. string - Contact name of the person.
- Phone
This property is required. string - Phone number of the contact person.
- Mobile string
- Mobile number of the contact person.
- Phone
Extension string - Phone extension number of the contact person.
- Contact
Name This property is required. string - Contact name of the person.
- Phone
This property is required. string - Phone number of the contact person.
- Mobile string
- Mobile number of the contact person.
- Phone
Extension string - Phone extension number of the contact person.
- contact
Name This property is required. String - Contact name of the person.
- phone
This property is required. String - Phone number of the contact person.
- mobile String
- Mobile number of the contact person.
- phone
Extension String - Phone extension number of the contact person.
- contact
Name This property is required. string - Contact name of the person.
- phone
This property is required. string - Phone number of the contact person.
- mobile string
- Mobile number of the contact person.
- phone
Extension string - Phone extension number of the contact person.
- contact_
name This property is required. str - Contact name of the person.
- phone
This property is required. 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.
- contact
Name This property is required. String - Contact name of the person.
- phone
This property is required. String - Phone number of the contact person.
- mobile String
- Mobile number of the contact person.
- phone
Extension String - Phone extension number of the contact person.
ContactInfoResponse, ContactInfoResponseArgs
- Contact
Name This property is required. string - Contact name of the person.
- Phone
This property is required. string - Phone number of the contact person.
- Mobile string
- Mobile number of the contact person.
- Phone
Extension string - Phone extension number of the contact person.
- Contact
Name This property is required. string - Contact name of the person.
- Phone
This property is required. string - Phone number of the contact person.
- Mobile string
- Mobile number of the contact person.
- Phone
Extension string - Phone extension number of the contact person.
- contact
Name This property is required. String - Contact name of the person.
- phone
This property is required. String - Phone number of the contact person.
- mobile String
- Mobile number of the contact person.
- phone
Extension String - Phone extension number of the contact person.
- contact
Name This property is required. string - Contact name of the person.
- phone
This property is required. string - Phone number of the contact person.
- mobile string
- Mobile number of the contact person.
- phone
Extension string - Phone extension number of the contact person.
- contact_
name This property is required. str - Contact name of the person.
- phone
This property is required. 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.
- contact
Name This property is required. String - Contact name of the person.
- phone
This property is required. String - Phone number of the contact person.
- mobile String
- Mobile number of the contact person.
- phone
Extension String - Phone extension number of the contact person.
CopyProgressResponse, CopyProgressResponseArgs
- Account
Id This property is required. string - Id of the account where the data needs to be uploaded.
- Actions
This property is required. List<string> - Available actions on the job.
- Bytes
Processed This property is required. double - To indicate bytes transferred.
- Data
Account Type This property is required. string - Data Account Type.
- Directories
Errored Out This property is required. double - To indicate directories errored out in the job.
- Error
This property is required. Pulumi.Azure Native. Data Box. Inputs. Cloud Error Response - Error, if any, in the stage
- Files
Errored Out This property is required. double - Number of files which could not be copied
- Files
Processed This property is required. double - Number of files processed
- Invalid
Directories Processed This property is required. double - To indicate directories renamed
- Invalid
File Bytes Uploaded This property is required. double - Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- Invalid
Files Processed This property is required. double - Number of files not adhering to azure naming conventions which were processed by automatic renaming
- Is
Enumeration In Progress This property is required. bool - To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- Renamed
Container Count This property is required. double - Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- Storage
Account Name This property is required. string - Name of the storage account. This will be empty for data account types other than storage account.
- Total
Bytes To Process This property is required. double - Total amount of data to be processed by the job.
- Total
Files To Process This property is required. double - Total files to process
- Transfer
Type This property is required. string - Transfer type of data
- Account
Id This property is required. string - Id of the account where the data needs to be uploaded.
- Actions
This property is required. []string - Available actions on the job.
- Bytes
Processed This property is required. float64 - To indicate bytes transferred.
- Data
Account Type This property is required. string - Data Account Type.
- Directories
Errored Out This property is required. float64 - To indicate directories errored out in the job.
- Error
This property is required. CloudError Response - Error, if any, in the stage
- Files
Errored Out This property is required. float64 - Number of files which could not be copied
- Files
Processed This property is required. float64 - Number of files processed
- Invalid
Directories Processed This property is required. float64 - To indicate directories renamed
- Invalid
File Bytes Uploaded This property is required. float64 - Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- Invalid
Files Processed This property is required. float64 - Number of files not adhering to azure naming conventions which were processed by automatic renaming
- Is
Enumeration In Progress This property is required. bool - To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- Renamed
Container Count This property is required. float64 - Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- Storage
Account Name This property is required. string - Name of the storage account. This will be empty for data account types other than storage account.
- Total
Bytes To Process This property is required. float64 - Total amount of data to be processed by the job.
- Total
Files To Process This property is required. float64 - Total files to process
- Transfer
Type This property is required. string - Transfer type of data
- account
Id This property is required. String - Id of the account where the data needs to be uploaded.
- actions
This property is required. List<String> - Available actions on the job.
- bytes
Processed This property is required. Double - To indicate bytes transferred.
- data
Account Type This property is required. String - Data Account Type.
- directories
Errored Out This property is required. Double - To indicate directories errored out in the job.
- error
This property is required. CloudError Response - Error, if any, in the stage
- files
Errored Out This property is required. Double - Number of files which could not be copied
- files
Processed This property is required. Double - Number of files processed
- invalid
Directories Processed This property is required. Double - To indicate directories renamed
- invalid
File Bytes Uploaded This property is required. Double - Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalid
Files Processed This property is required. Double - Number of files not adhering to azure naming conventions which were processed by automatic renaming
- is
Enumeration In Progress This property is required. Boolean - To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamed
Container Count This property is required. Double - Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- storage
Account Name This property is required. String - Name of the storage account. This will be empty for data account types other than storage account.
- total
Bytes To Process This property is required. Double - Total amount of data to be processed by the job.
- total
Files To Process This property is required. Double - Total files to process
- transfer
Type This property is required. String - Transfer type of data
- account
Id This property is required. string - Id of the account where the data needs to be uploaded.
- actions
This property is required. string[] - Available actions on the job.
- bytes
Processed This property is required. number - To indicate bytes transferred.
- data
Account Type This property is required. string - Data Account Type.
- directories
Errored Out This property is required. number - To indicate directories errored out in the job.
- error
This property is required. CloudError Response - Error, if any, in the stage
- files
Errored Out This property is required. number - Number of files which could not be copied
- files
Processed This property is required. number - Number of files processed
- invalid
Directories Processed This property is required. number - To indicate directories renamed
- invalid
File Bytes Uploaded This property is required. number - Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalid
Files Processed This property is required. number - Number of files not adhering to azure naming conventions which were processed by automatic renaming
- is
Enumeration In Progress This property is required. boolean - To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamed
Container Count This property is required. number - Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- storage
Account Name This property is required. string - Name of the storage account. This will be empty for data account types other than storage account.
- total
Bytes To Process This property is required. number - Total amount of data to be processed by the job.
- total
Files To Process This property is required. number - Total files to process
- transfer
Type This property is required. string - Transfer type of data
- account_
id This property is required. str - Id of the account where the data needs to be uploaded.
- actions
This property is required. Sequence[str] - Available actions on the job.
- bytes_
processed This property is required. float - To indicate bytes transferred.
- data_
account_ type This property is required. str - Data Account Type.
- directories_
errored_ out This property is required. float - To indicate directories errored out in the job.
- error
This property is required. CloudError Response - Error, if any, in the stage
- files_
errored_ out This property is required. float - Number of files which could not be copied
- files_
processed This property is required. float - Number of files processed
- invalid_
directories_ processed This property is required. float - To indicate directories renamed
- invalid_
file_ bytes_ uploaded This property is required. float - Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalid_
files_ processed This property is required. float - Number of files not adhering to azure naming conventions which were processed by automatic renaming
- is_
enumeration_ in_ progress This property is required. bool - To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamed_
container_ count This property is required. float - Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- storage_
account_ name This property is required. str - Name of the storage account. This will be empty for data account types other than storage account.
- total_
bytes_ to_ process This property is required. float - Total amount of data to be processed by the job.
- total_
files_ to_ process This property is required. float - Total files to process
- transfer_
type This property is required. str - Transfer type of data
- account
Id This property is required. String - Id of the account where the data needs to be uploaded.
- actions
This property is required. List<String> - Available actions on the job.
- bytes
Processed This property is required. Number - To indicate bytes transferred.
- data
Account Type This property is required. String - Data Account Type.
- directories
Errored Out This property is required. Number - To indicate directories errored out in the job.
- error
This property is required. Property Map - Error, if any, in the stage
- files
Errored Out This property is required. Number - Number of files which could not be copied
- files
Processed This property is required. Number - Number of files processed
- invalid
Directories Processed This property is required. Number - To indicate directories renamed
- invalid
File Bytes Uploaded This property is required. Number - Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalid
Files Processed This property is required. Number - Number of files not adhering to azure naming conventions which were processed by automatic renaming
- is
Enumeration In Progress This property is required. Boolean - To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamed
Container Count This property is required. Number - Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- storage
Account Name This property is required. String - Name of the storage account. This will be empty for data account types other than storage account.
- total
Bytes To Process This property is required. Number - Total amount of data to be processed by the job.
- total
Files To Process This property is required. Number - Total files to process
- transfer
Type This property is required. String - Transfer type of data
DataAccountType, DataAccountTypeArgs
- Storage
Account - StorageAccountStorage Accounts .
- Managed
Disk - ManagedDiskAzure Managed disk storage.
- Data
Account Type Storage Account - StorageAccountStorage Accounts .
- Data
Account Type Managed Disk - ManagedDiskAzure Managed disk storage.
- Storage
Account - StorageAccountStorage Accounts .
- Managed
Disk - ManagedDiskAzure Managed disk storage.
- Storage
Account - StorageAccountStorage Accounts .
- Managed
Disk - ManagedDiskAzure Managed disk storage.
- STORAGE_ACCOUNT
- StorageAccountStorage Accounts .
- MANAGED_DISK
- ManagedDiskAzure Managed disk storage.
- "Storage
Account" - StorageAccountStorage Accounts .
- "Managed
Disk" - ManagedDiskAzure Managed disk storage.
DataBoxAccountCopyLogDetailsResponse, DataBoxAccountCopyLogDetailsResponseArgs
- Account
Name This property is required. string - Account name.
- Copy
Log Link This property is required. string - Link for copy logs.
- Copy
Verbose Log Link This property is required. string - Link for copy verbose logs. This will be set only when LogCollectionLevel is set to Verbose.
- Account
Name This property is required. string - Account name.
- Copy
Log Link This property is required. string - Link for copy logs.
- Copy
Verbose Log Link This property is required. string - Link for copy verbose logs. This will be set only when LogCollectionLevel is set to Verbose.
- account
Name This property is required. String - Account name.
- copy
Log Link This property is required. String - Link for copy logs.
- copy
Verbose Log Link This property is required. String - Link for copy verbose logs. This will be set only when LogCollectionLevel is set to Verbose.
- account
Name This property is required. string - Account name.
- copy
Log Link This property is required. string - Link for copy logs.
- copy
Verbose Log Link This property is required. string - Link for copy verbose logs. This will be set only when LogCollectionLevel is set to Verbose.
- account_
name This property is required. str - Account name.
- copy_
log_ link This property is required. str - Link for copy logs.
- copy_
verbose_ log_ link This property is required. str - Link for copy verbose logs. This will be set only when LogCollectionLevel is set to Verbose.
- account
Name This property is required. String - Account name.
- copy
Log Link This property is required. String - Link for copy logs.
- copy
Verbose Log Link This property is required. String - Link for copy verbose logs. This will be set only when LogCollectionLevel is set to Verbose.
DataBoxCustomerDiskCopyLogDetailsResponse, DataBoxCustomerDiskCopyLogDetailsResponseArgs
- Error
Log Link This property is required. string - Link for copy error logs.
- Serial
Number This property is required. string - Disk Serial Number.
- Verbose
Log Link This property is required. string - Link for copy verbose logs.
- Error
Log Link This property is required. string - Link for copy error logs.
- Serial
Number This property is required. string - Disk Serial Number.
- Verbose
Log Link This property is required. string - Link for copy verbose logs.
- error
Log Link This property is required. String - Link for copy error logs.
- serial
Number This property is required. String - Disk Serial Number.
- verbose
Log Link This property is required. String - Link for copy verbose logs.
- error
Log Link This property is required. string - Link for copy error logs.
- serial
Number This property is required. string - Disk Serial Number.
- verbose
Log Link This property is required. string - Link for copy verbose logs.
- error_
log_ link This property is required. str - Link for copy error logs.
- serial_
number This property is required. str - Disk Serial Number.
- verbose_
log_ link This property is required. str - Link for copy verbose logs.
- error
Log Link This property is required. String - Link for copy error logs.
- serial
Number This property is required. String - Disk Serial Number.
- verbose
Log Link This property is required. String - Link for copy verbose logs.
DataBoxCustomerDiskCopyProgressResponse, DataBoxCustomerDiskCopyProgressResponseArgs
- Account
Id This property is required. string - Id of the account where the data needs to be uploaded.
- Actions
This property is required. List<string> - Available actions on the job.
- Bytes
Processed This property is required. double - To indicate bytes transferred.
- Copy
Status This property is required. string - The Status of the copy
- Data
Account Type This property is required. string - Data Account Type.
- Directories
Errored Out This property is required. double - To indicate directories errored out in the job.
- Error
This property is required. Pulumi.Azure Native. Data Box. Inputs. Cloud Error Response - Error, if any, in the stage
- Files
Errored Out This property is required. double - Number of files which could not be copied
- Files
Processed This property is required. double - Number of files processed
- Invalid
Directories Processed This property is required. double - To indicate directories renamed
- Invalid
File Bytes Uploaded This property is required. double - Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- Invalid
Files Processed This property is required. double - Number of files not adhering to azure naming conventions which were processed by automatic renaming
- Is
Enumeration In Progress This property is required. bool - To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- Renamed
Container Count This property is required. double - Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- Serial
Number This property is required. string - Disk Serial Number.
- Storage
Account Name This property is required. string - Name of the storage account. This will be empty for data account types other than storage account.
- Total
Bytes To Process This property is required. double - Total amount of data to be processed by the job.
- Total
Files To Process This property is required. double - Total files to process
- Transfer
Type This property is required. string - Transfer type of data
- Account
Id This property is required. string - Id of the account where the data needs to be uploaded.
- Actions
This property is required. []string - Available actions on the job.
- Bytes
Processed This property is required. float64 - To indicate bytes transferred.
- Copy
Status This property is required. string - The Status of the copy
- Data
Account Type This property is required. string - Data Account Type.
- Directories
Errored Out This property is required. float64 - To indicate directories errored out in the job.
- Error
This property is required. CloudError Response - Error, if any, in the stage
- Files
Errored Out This property is required. float64 - Number of files which could not be copied
- Files
Processed This property is required. float64 - Number of files processed
- Invalid
Directories Processed This property is required. float64 - To indicate directories renamed
- Invalid
File Bytes Uploaded This property is required. float64 - Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- Invalid
Files Processed This property is required. float64 - Number of files not adhering to azure naming conventions which were processed by automatic renaming
- Is
Enumeration In Progress This property is required. bool - To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- Renamed
Container Count This property is required. float64 - Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- Serial
Number This property is required. string - Disk Serial Number.
- Storage
Account Name This property is required. string - Name of the storage account. This will be empty for data account types other than storage account.
- Total
Bytes To Process This property is required. float64 - Total amount of data to be processed by the job.
- Total
Files To Process This property is required. float64 - Total files to process
- Transfer
Type This property is required. string - Transfer type of data
- account
Id This property is required. String - Id of the account where the data needs to be uploaded.
- actions
This property is required. List<String> - Available actions on the job.
- bytes
Processed This property is required. Double - To indicate bytes transferred.
- copy
Status This property is required. String - The Status of the copy
- data
Account Type This property is required. String - Data Account Type.
- directories
Errored Out This property is required. Double - To indicate directories errored out in the job.
- error
This property is required. CloudError Response - Error, if any, in the stage
- files
Errored Out This property is required. Double - Number of files which could not be copied
- files
Processed This property is required. Double - Number of files processed
- invalid
Directories Processed This property is required. Double - To indicate directories renamed
- invalid
File Bytes Uploaded This property is required. Double - Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalid
Files Processed This property is required. Double - Number of files not adhering to azure naming conventions which were processed by automatic renaming
- is
Enumeration In Progress This property is required. Boolean - To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamed
Container Count This property is required. Double - Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- serial
Number This property is required. String - Disk Serial Number.
- storage
Account Name This property is required. String - Name of the storage account. This will be empty for data account types other than storage account.
- total
Bytes To Process This property is required. Double - Total amount of data to be processed by the job.
- total
Files To Process This property is required. Double - Total files to process
- transfer
Type This property is required. String - Transfer type of data
- account
Id This property is required. string - Id of the account where the data needs to be uploaded.
- actions
This property is required. string[] - Available actions on the job.
- bytes
Processed This property is required. number - To indicate bytes transferred.
- copy
Status This property is required. string - The Status of the copy
- data
Account Type This property is required. string - Data Account Type.
- directories
Errored Out This property is required. number - To indicate directories errored out in the job.
- error
This property is required. CloudError Response - Error, if any, in the stage
- files
Errored Out This property is required. number - Number of files which could not be copied
- files
Processed This property is required. number - Number of files processed
- invalid
Directories Processed This property is required. number - To indicate directories renamed
- invalid
File Bytes Uploaded This property is required. number - Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalid
Files Processed This property is required. number - Number of files not adhering to azure naming conventions which were processed by automatic renaming
- is
Enumeration In Progress This property is required. boolean - To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamed
Container Count This property is required. number - Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- serial
Number This property is required. string - Disk Serial Number.
- storage
Account Name This property is required. string - Name of the storage account. This will be empty for data account types other than storage account.
- total
Bytes To Process This property is required. number - Total amount of data to be processed by the job.
- total
Files To Process This property is required. number - Total files to process
- transfer
Type This property is required. string - Transfer type of data
- account_
id This property is required. str - Id of the account where the data needs to be uploaded.
- actions
This property is required. Sequence[str] - Available actions on the job.
- bytes_
processed This property is required. float - To indicate bytes transferred.
- copy_
status This property is required. str - The Status of the copy
- data_
account_ type This property is required. str - Data Account Type.
- directories_
errored_ out This property is required. float - To indicate directories errored out in the job.
- error
This property is required. CloudError Response - Error, if any, in the stage
- files_
errored_ out This property is required. float - Number of files which could not be copied
- files_
processed This property is required. float - Number of files processed
- invalid_
directories_ processed This property is required. float - To indicate directories renamed
- invalid_
file_ bytes_ uploaded This property is required. float - Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalid_
files_ processed This property is required. float - Number of files not adhering to azure naming conventions which were processed by automatic renaming
- is_
enumeration_ in_ progress This property is required. bool - To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamed_
container_ count This property is required. float - Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- serial_
number This property is required. str - Disk Serial Number.
- storage_
account_ name This property is required. str - Name of the storage account. This will be empty for data account types other than storage account.
- total_
bytes_ to_ process This property is required. float - Total amount of data to be processed by the job.
- total_
files_ to_ process This property is required. float - Total files to process
- transfer_
type This property is required. str - Transfer type of data
- account
Id This property is required. String - Id of the account where the data needs to be uploaded.
- actions
This property is required. List<String> - Available actions on the job.
- bytes
Processed This property is required. Number - To indicate bytes transferred.
- copy
Status This property is required. String - The Status of the copy
- data
Account Type This property is required. String - Data Account Type.
- directories
Errored Out This property is required. Number - To indicate directories errored out in the job.
- error
This property is required. Property Map - Error, if any, in the stage
- files
Errored Out This property is required. Number - Number of files which could not be copied
- files
Processed This property is required. Number - Number of files processed
- invalid
Directories Processed This property is required. Number - To indicate directories renamed
- invalid
File Bytes Uploaded This property is required. Number - Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalid
Files Processed This property is required. Number - Number of files not adhering to azure naming conventions which were processed by automatic renaming
- is
Enumeration In Progress This property is required. Boolean - To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamed
Container Count This property is required. Number - Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- serial
Number This property is required. String - Disk Serial Number.
- storage
Account Name This property is required. String - Name of the storage account. This will be empty for data account types other than storage account.
- total
Bytes To Process This property is required. Number - Total amount of data to be processed by the job.
- total
Files To Process This property is required. Number - Total files to process
- transfer
Type This property is required. String - Transfer type of data
DataBoxCustomerDiskJobDetails, DataBoxCustomerDiskJobDetailsArgs
- Contact
Details This property is required. Pulumi.Azure Native. Data Box. Inputs. Contact Details - Contact details for notification and shipping.
- Return
To Customer Package Details This property is required. Pulumi.Azure Native. Data Box. Inputs. Package Carrier Details - Return package shipping details.
- Data
Export List<Pulumi.Details Azure Native. Data Box. Inputs. Data Export Details> - Details of the data to be exported from azure.
- Data
Import List<Pulumi.Details Azure Native. Data Box. Inputs. Data 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 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.
- Key
Encryption 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.
- Reverse
Shipping Pulumi.Details Azure Native. Data Box. Inputs. Reverse Shipping Details - Optional Reverse Shipping details for order.
- Shipping
Address Pulumi.Azure Native. Data Box. Inputs. Shipping Address - Shipping address of the customer.
- Contact
Details This property is required. ContactDetails - Contact details for notification and shipping.
- Return
To Customer Package Details This property is required. PackageCarrier Details - Return package shipping details.
- Data
Export []DataDetails Export Details - Details of the data to be exported from azure.
- Data
Import []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 map[string]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.
- contact
Details This property is required. ContactDetails - Contact details for notification and shipping.
- return
To Customer Package Details This property is required. PackageCarrier Details - Return package shipping details.
- data
Export List<DataDetails Export Details> - Details of the data to be exported from azure.
- data
Import List<DataDetails Import Details> - Details of the data to be imported into azure.
- enable
Manifest BooleanBackup - Flag to indicate if disk manifest should be backed-up in the Storage Account.
- expected
Data IntegerSize In Tera Bytes - The expected size of the data, which needs to be transferred in this job, in terabytes.
- import
Disk Map<String,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.
- contact
Details This property is required. ContactDetails - Contact details for notification and shipping.
- return
To Customer Package Details This property is required. PackageCarrier Details - Return package shipping details.
- data
Export DataDetails Export Details[] - Details of the data to be exported from azure.
- data
Import DataDetails Import Details[] - Details of the data to be imported into azure.
- enable
Manifest booleanBackup - Flag to indicate if disk manifest should be backed-up in the Storage Account.
- expected
Data numberSize In Tera Bytes - The expected size of the data, which needs to be transferred in this job, in terabytes.
- import
Disk {[key: string]: 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.
- contact_
details This property is required. ContactDetails - Contact details for notification and shipping.
- return_
to_ customer_ package_ details This property is required. PackageCarrier 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.
- contact
Details This property is required. Property Map - Contact details for notification and shipping.
- return
To Customer Package Details This property is required. Property Map - Return package shipping details.
- data
Export List<Property Map>Details - Details of the data to be exported from azure.
- data
Import List<Property Map>Details - Details of the data to be imported into azure.
- enable
Manifest BooleanBackup - Flag to indicate if disk manifest should be backed-up in the Storage Account.
- expected
Data NumberSize In Tera Bytes - The expected size of the data, which needs to be transferred in this job, in terabytes.
- import
Disk Map<Property Map>Details Collection - Contains the map of disk serial number to the disk details for import jobs.
- key
Encryption Property MapKey - Details about which key encryption type is being used.
- preferences Property Map
- Preferences for the order.
- reverse
Shipping Property MapDetails - Optional Reverse Shipping details for order.
- shipping
Address Property Map - Shipping address of the customer.
DataBoxCustomerDiskJobDetailsResponse, DataBoxCustomerDiskJobDetailsResponseArgs
- Actions
This property is required. List<string> - Available actions on the job.
- Chain
Of Custody Sas Key This property is required. string - Shared access key to download the chain of custody logs
- Contact
Details This property is required. Pulumi.Azure Native. Data Box. Inputs. Contact Details Response - Contact details for notification and shipping.
- Copy
Log Details This property is required. List<object> - List of copy log details.
- Copy
Progress This property is required. List<Pulumi.Azure Native. Data Box. Inputs. Data Box Customer Disk Copy Progress Response> - Copy progress per disk.
- Data
Center Code This property is required. string - DataCenter code.
- Datacenter
Address This property is required. 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.
- Deliver
To Dc Package Details This property is required. Pulumi.Azure Native. Data Box. Inputs. Package Carrier Info Response - Delivery package shipping details.
- Delivery
Package This property is required. Pulumi.Azure Native. Data Box. Inputs. Package Shipping Details Response - Delivery package shipping details.
- Device
Erasure Details This property is required. Pulumi.Azure Native. Data Box. Inputs. Device Erasure Details Response - Holds device data erasure details
- Export
Disk Details Collection This property is required. Dictionary<string, Pulumi.Azure Native. Data Box. Inputs. Export Disk Details Response> - Contains the map of disk serial number to the disk details for export jobs.
- Job
Stages This property is required. List<Pulumi.Azure Native. Data Box. Inputs. Job Stages Response> - List of stages that run in the job.
- Last
Mitigation Action On Job This property is required. Pulumi.Azure Native. Data Box. Inputs. Last Mitigation Action On Job Response - Last mitigation action performed on the job.
- Return
Package This property is required. Pulumi.Azure Native. Data Box. Inputs. Package Shipping Details Response - Return package shipping details.
- Return
To Customer Package Details This property is required. Pulumi.Azure Native. Data Box. Inputs. Package Carrier Details Response - Return package shipping details.
- Reverse
Shipment Label Sas Key This property is required. string - Shared access key to download the return shipment label
- Data
Export List<Pulumi.Details Azure Native. Data Box. Inputs. Data Export Details Response> - Details of the data to be exported from azure.
- Data
Import List<Pulumi.Details Azure Native. Data Box. Inputs. Data 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 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.
- Key
Encryption 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.
- Reverse
Shipping Pulumi.Details Azure Native. Data Box. Inputs. Reverse Shipping Details Response - Optional Reverse Shipping details for order.
- Shipping
Address Pulumi.Azure Native. Data Box. Inputs. Shipping Address Response - Shipping address of the customer.
- Actions
This property is required. []string - Available actions on the job.
- Chain
Of Custody Sas Key This property is required. string - Shared access key to download the chain of custody logs
- Contact
Details This property is required. ContactDetails Response - Contact details for notification and shipping.
- Copy
Log Details This property is required. []interface{} - List of copy log details.
- Copy
Progress This property is required. []DataBox Customer Disk Copy Progress Response - Copy progress per disk.
- Data
Center Code This property is required. string - DataCenter code.
- Datacenter
Address This property is required. DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response - Datacenter address to ship to, for the given sku and storage location.
- Deliver
To Dc Package Details This property is required. PackageCarrier Info Response - Delivery package shipping details.
- Delivery
Package This property is required. PackageShipping Details Response - Delivery package shipping details.
- Device
Erasure Details This property is required. DeviceErasure Details Response - Holds device data erasure details
- Export
Disk Details Collection This property is required. map[string]ExportDisk Details Response - Contains the map of disk serial number to the disk details for export jobs.
- Job
Stages This property is required. []JobStages Response - List of stages that run in the job.
- Last
Mitigation Action On Job This property is required. LastMitigation Action On Job Response - Last mitigation action performed on the job.
- Return
Package This property is required. PackageShipping Details Response - Return package shipping details.
- Return
To Customer Package Details This property is required. PackageCarrier Details Response - Return package shipping details.
- Reverse
Shipment Label Sas Key This property is required. string - Shared access key to download the return shipment label
- Data
Export []DataDetails Export Details Response - Details of the data to be exported from azure.
- Data
Import []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 map[string]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
Preferences
Response - 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
This property is required. List<String> - Available actions on the job.
- chain
Of Custody Sas Key This property is required. String - Shared access key to download the chain of custody logs
- contact
Details This property is required. ContactDetails Response - Contact details for notification and shipping.
- copy
Log Details This property is required. List<Object> - List of copy log details.
- copy
Progress This property is required. List<DataBox Customer Disk Copy Progress Response> - Copy progress per disk.
- data
Center Code This property is required. String - DataCenter code.
- datacenter
Address This property is required. DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response - Datacenter address to ship to, for the given sku and storage location.
- deliver
To Dc Package Details This property is required. PackageCarrier Info Response - Delivery package shipping details.
- delivery
Package This property is required. PackageShipping Details Response - Delivery package shipping details.
- device
Erasure Details This property is required. DeviceErasure Details Response - Holds device data erasure details
- export
Disk Details Collection This property is required. Map<String,ExportDisk Details Response> - Contains the map of disk serial number to the disk details for export jobs.
- job
Stages This property is required. List<JobStages Response> - List of stages that run in the job.
- last
Mitigation Action On Job This property is required. LastMitigation Action On Job Response - Last mitigation action performed on the job.
- return
Package This property is required. PackageShipping Details Response - Return package shipping details.
- return
To Customer Package Details This property is required. PackageCarrier Details Response - Return package shipping details.
- reverse
Shipment Label Sas Key This property is required. String - Shared access key to download the return shipment label
- data
Export List<DataDetails Export Details Response> - Details of the data to be exported from azure.
- data
Import List<DataDetails Import Details Response> - Details of the data to be imported into azure.
- enable
Manifest BooleanBackup - Flag to indicate if disk manifest should be backed-up in the Storage Account.
- expected
Data IntegerSize In Tera Bytes - The expected size of the data, which needs to be transferred in this job, in terabytes.
- import
Disk Map<String,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
Preferences
Response - 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
This property is required. string[] - Available actions on the job.
- chain
Of Custody Sas Key This property is required. string - Shared access key to download the chain of custody logs
- contact
Details This property is required. ContactDetails Response - Contact details for notification and shipping.
- copy
Log Details This property is required. (DataBox 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 This property is required. DataBox Customer Disk Copy Progress Response[] - Copy progress per disk.
- data
Center Code This property is required. string - DataCenter code.
- datacenter
Address This property is required. DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response - Datacenter address to ship to, for the given sku and storage location.
- deliver
To Dc Package Details This property is required. PackageCarrier Info Response - Delivery package shipping details.
- delivery
Package This property is required. PackageShipping Details Response - Delivery package shipping details.
- device
Erasure Details This property is required. DeviceErasure Details Response - Holds device data erasure details
- export
Disk Details Collection This property is required. {[key: string]: ExportDisk Details Response} - Contains the map of disk serial number to the disk details for export jobs.
- job
Stages This property is required. JobStages Response[] - List of stages that run in the job.
- last
Mitigation Action On Job This property is required. LastMitigation Action On Job Response - Last mitigation action performed on the job.
- return
Package This property is required. PackageShipping Details Response - Return package shipping details.
- return
To Customer Package Details This property is required. PackageCarrier Details Response - Return package shipping details.
- reverse
Shipment Label Sas Key This property is required. string - Shared access key to download the return shipment label
- data
Export DataDetails Export Details Response[] - Details of the data to be exported from azure.
- data
Import DataDetails Import Details Response[] - Details of the data to be imported into azure.
- enable
Manifest booleanBackup - Flag to indicate if disk manifest should be backed-up in the Storage Account.
- expected
Data numberSize In Tera Bytes - The expected size of the data, which needs to be transferred in this job, in terabytes.
- import
Disk {[key: string]: 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
Preferences
Response - 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
This property is required. Sequence[str] - Available actions on the job.
- chain_
of_ custody_ sas_ key This property is required. str - Shared access key to download the chain of custody logs
- contact_
details This property is required. ContactDetails Response - Contact details for notification and shipping.
- copy_
log_ details This property is required. Sequence[Union[DataBox 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 This property is required. Sequence[DataBox Customer Disk Copy Progress Response] - Copy progress per disk.
- data_
center_ code This property is required. str - DataCenter code.
- datacenter_
address This property is required. DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response - Datacenter address to ship to, for the given sku and storage location.
- deliver_
to_ dc_ package_ details This property is required. PackageCarrier Info Response - Delivery package shipping details.
- delivery_
package This property is required. PackageShipping Details Response - Delivery package shipping details.
- device_
erasure_ details This property is required. DeviceErasure Details Response - Holds device data erasure details
- export_
disk_ details_ collection This property is required. Mapping[str, ExportDisk Details Response] - Contains the map of disk serial number to the disk details for export jobs.
- job_
stages This property is required. Sequence[JobStages Response] - List of stages that run in the job.
- last_
mitigation_ action_ on_ job This property is required. LastMitigation Action On Job Response - Last mitigation action performed on the job.
- return_
package This property is required. PackageShipping Details Response - Return package shipping details.
- return_
to_ customer_ package_ details This property is required. PackageCarrier Details Response - Return package shipping details.
- reverse_
shipment_ label_ sas_ key This property is required. str - 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
Preferences
Response - 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
This property is required. List<String> - Available actions on the job.
- chain
Of Custody Sas Key This property is required. String - Shared access key to download the chain of custody logs
- contact
Details This property is required. Property Map - Contact details for notification and shipping.
- copy
Log Details This property is required. List<Property Map | Property Map | Property Map | Property Map> - List of copy log details.
- copy
Progress This property is required. List<Property Map> - Copy progress per disk.
- data
Center Code This property is required. String - DataCenter code.
- datacenter
Address This property is required. Property Map | Property Map - Datacenter address to ship to, for the given sku and storage location.
- deliver
To Dc Package Details This property is required. Property Map - Delivery package shipping details.
- delivery
Package This property is required. Property Map - Delivery package shipping details.
- device
Erasure Details This property is required. Property Map - Holds device data erasure details
- export
Disk Details Collection This property is required. Map<Property Map> - Contains the map of disk serial number to the disk details for export jobs.
- job
Stages This property is required. List<Property Map> - List of stages that run in the job.
- last
Mitigation Action On Job This property is required. Property Map - Last mitigation action performed on the job.
- return
Package This property is required. Property Map - Return package shipping details.
- return
To Customer Package Details This property is required. Property Map - Return package shipping details.
- reverse
Shipment Label Sas Key This property is required. String - Shared access key to download the return shipment label
- data
Export List<Property Map>Details - Details of the data to be exported from azure.
- data
Import List<Property Map>Details - Details of the data to be imported into azure.
- enable
Manifest BooleanBackup - Flag to indicate if disk manifest should be backed-up in the Storage Account.
- expected
Data NumberSize In Tera Bytes - The expected size of the data, which needs to be transferred in this job, in terabytes.
- import
Disk Map<Property Map>Details Collection - Contains the map of disk serial number to the disk details for import jobs.
- key
Encryption Property MapKey - Details about which key encryption type is being used.
- preferences Property Map
- Preferences for the order.
- reverse
Shipping Property MapDetails - Optional Reverse Shipping details for order.
- shipping
Address Property Map - Shipping address of the customer.
DataBoxDiskCopyLogDetailsResponse, DataBoxDiskCopyLogDetailsResponseArgs
- Disk
Serial Number This property is required. string - Disk Serial Number.
- Error
Log Link This property is required. string - Link for copy error logs.
- Verbose
Log Link This property is required. string - Link for copy verbose logs.
- Disk
Serial Number This property is required. string - Disk Serial Number.
- Error
Log Link This property is required. string - Link for copy error logs.
- Verbose
Log Link This property is required. string - Link for copy verbose logs.
- disk
Serial Number This property is required. String - Disk Serial Number.
- error
Log Link This property is required. String - Link for copy error logs.
- verbose
Log Link This property is required. String - Link for copy verbose logs.
- disk
Serial Number This property is required. string - Disk Serial Number.
- error
Log Link This property is required. string - Link for copy error logs.
- verbose
Log Link This property is required. string - Link for copy verbose logs.
- disk_
serial_ number This property is required. str - Disk Serial Number.
- error_
log_ link This property is required. str - Link for copy error logs.
- verbose_
log_ link This property is required. str - Link for copy verbose logs.
- disk
Serial Number This property is required. String - Disk Serial Number.
- error
Log Link This property is required. String - Link for copy error logs.
- verbose
Log Link This property is required. String - Link for copy verbose logs.
DataBoxDiskCopyProgressResponse, DataBoxDiskCopyProgressResponseArgs
- Actions
This property is required. List<string> - Available actions on the job.
- Bytes
Copied This property is required. double - Bytes copied during the copy of disk.
- Error
This property is required. Pulumi.Azure Native. Data Box. Inputs. Cloud Error Response - Error, if any, in the stage
- Percent
Complete This property is required. int - Indicates the percentage completed for the copy of the disk.
- Serial
Number This property is required. string - The serial number of the disk
- Status
This property is required. string - The Status of the copy
- Actions
This property is required. []string - Available actions on the job.
- Bytes
Copied This property is required. float64 - Bytes copied during the copy of disk.
- Error
This property is required. CloudError Response - Error, if any, in the stage
- Percent
Complete This property is required. int - Indicates the percentage completed for the copy of the disk.
- Serial
Number This property is required. string - The serial number of the disk
- Status
This property is required. string - The Status of the copy
- actions
This property is required. List<String> - Available actions on the job.
- bytes
Copied This property is required. Double - Bytes copied during the copy of disk.
- error
This property is required. CloudError Response - Error, if any, in the stage
- percent
Complete This property is required. Integer - Indicates the percentage completed for the copy of the disk.
- serial
Number This property is required. String - The serial number of the disk
- status
This property is required. String - The Status of the copy
- actions
This property is required. string[] - Available actions on the job.
- bytes
Copied This property is required. number - Bytes copied during the copy of disk.
- error
This property is required. CloudError Response - Error, if any, in the stage
- percent
Complete This property is required. number - Indicates the percentage completed for the copy of the disk.
- serial
Number This property is required. string - The serial number of the disk
- status
This property is required. string - The Status of the copy
- actions
This property is required. Sequence[str] - Available actions on the job.
- bytes_
copied This property is required. float - Bytes copied during the copy of disk.
- error
This property is required. CloudError Response - Error, if any, in the stage
- percent_
complete This property is required. int - Indicates the percentage completed for the copy of the disk.
- serial_
number This property is required. str - The serial number of the disk
- status
This property is required. str - The Status of the copy
- actions
This property is required. List<String> - Available actions on the job.
- bytes
Copied This property is required. Number - Bytes copied during the copy of disk.
- error
This property is required. Property Map - Error, if any, in the stage
- percent
Complete This property is required. Number - Indicates the percentage completed for the copy of the disk.
- serial
Number This property is required. String - The serial number of the disk
- status
This property is required. String - The Status of the copy
DataBoxDiskGranularCopyLogDetailsResponse, DataBoxDiskGranularCopyLogDetailsResponseArgs
- Account
Id This property is required. string - Account id.
- Error
Log Link This property is required. string - Link for copy error logs.
- Serial
Number This property is required. string - Disk Serial Number.
- Verbose
Log Link This property is required. string - Link for copy verbose logs.
- Account
Id This property is required. string - Account id.
- Error
Log Link This property is required. string - Link for copy error logs.
- Serial
Number This property is required. string - Disk Serial Number.
- Verbose
Log Link This property is required. string - Link for copy verbose logs.
- account
Id This property is required. String - Account id.
- error
Log Link This property is required. String - Link for copy error logs.
- serial
Number This property is required. String - Disk Serial Number.
- verbose
Log Link This property is required. String - Link for copy verbose logs.
- account
Id This property is required. string - Account id.
- error
Log Link This property is required. string - Link for copy error logs.
- serial
Number This property is required. string - Disk Serial Number.
- verbose
Log Link This property is required. string - Link for copy verbose logs.
- account_
id This property is required. str - Account id.
- error_
log_ link This property is required. str - Link for copy error logs.
- serial_
number This property is required. str - Disk Serial Number.
- verbose_
log_ link This property is required. str - Link for copy verbose logs.
- account
Id This property is required. String - Account id.
- error
Log Link This property is required. String - Link for copy error logs.
- serial
Number This property is required. String - Disk Serial Number.
- verbose
Log Link This property is required. String - Link for copy verbose logs.
DataBoxDiskGranularCopyProgressResponse, DataBoxDiskGranularCopyProgressResponseArgs
- Account
Id This property is required. string - Id of the account where the data needs to be uploaded.
- Actions
This property is required. List<string> - Available actions on the job.
- Bytes
Processed This property is required. double - To indicate bytes transferred.
- Copy
Status This property is required. string - The Status of the copy
- Data
Account Type This property is required. string - Data Account Type.
- Directories
Errored Out This property is required. double - To indicate directories errored out in the job.
- Error
This property is required. Pulumi.Azure Native. Data Box. Inputs. Cloud Error Response - Error, if any, in the stage
- Files
Errored Out This property is required. double - Number of files which could not be copied
- Files
Processed This property is required. double - Number of files processed
- Invalid
Directories Processed This property is required. double - To indicate directories renamed
- Invalid
File Bytes Uploaded This property is required. double - Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- Invalid
Files Processed This property is required. double - Number of files not adhering to azure naming conventions which were processed by automatic renaming
- Is
Enumeration In Progress This property is required. bool - To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- Renamed
Container Count This property is required. double - Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- Serial
Number This property is required. string - Disk Serial Number.
- Storage
Account Name This property is required. string - Name of the storage account. This will be empty for data account types other than storage account.
- Total
Bytes To Process This property is required. double - Total amount of data to be processed by the job.
- Total
Files To Process This property is required. double - Total files to process
- Transfer
Type This property is required. string - Transfer type of data
- Account
Id This property is required. string - Id of the account where the data needs to be uploaded.
- Actions
This property is required. []string - Available actions on the job.
- Bytes
Processed This property is required. float64 - To indicate bytes transferred.
- Copy
Status This property is required. string - The Status of the copy
- Data
Account Type This property is required. string - Data Account Type.
- Directories
Errored Out This property is required. float64 - To indicate directories errored out in the job.
- Error
This property is required. CloudError Response - Error, if any, in the stage
- Files
Errored Out This property is required. float64 - Number of files which could not be copied
- Files
Processed This property is required. float64 - Number of files processed
- Invalid
Directories Processed This property is required. float64 - To indicate directories renamed
- Invalid
File Bytes Uploaded This property is required. float64 - Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- Invalid
Files Processed This property is required. float64 - Number of files not adhering to azure naming conventions which were processed by automatic renaming
- Is
Enumeration In Progress This property is required. bool - To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- Renamed
Container Count This property is required. float64 - Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- Serial
Number This property is required. string - Disk Serial Number.
- Storage
Account Name This property is required. string - Name of the storage account. This will be empty for data account types other than storage account.
- Total
Bytes To Process This property is required. float64 - Total amount of data to be processed by the job.
- Total
Files To Process This property is required. float64 - Total files to process
- Transfer
Type This property is required. string - Transfer type of data
- account
Id This property is required. String - Id of the account where the data needs to be uploaded.
- actions
This property is required. List<String> - Available actions on the job.
- bytes
Processed This property is required. Double - To indicate bytes transferred.
- copy
Status This property is required. String - The Status of the copy
- data
Account Type This property is required. String - Data Account Type.
- directories
Errored Out This property is required. Double - To indicate directories errored out in the job.
- error
This property is required. CloudError Response - Error, if any, in the stage
- files
Errored Out This property is required. Double - Number of files which could not be copied
- files
Processed This property is required. Double - Number of files processed
- invalid
Directories Processed This property is required. Double - To indicate directories renamed
- invalid
File Bytes Uploaded This property is required. Double - Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalid
Files Processed This property is required. Double - Number of files not adhering to azure naming conventions which were processed by automatic renaming
- is
Enumeration In Progress This property is required. Boolean - To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamed
Container Count This property is required. Double - Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- serial
Number This property is required. String - Disk Serial Number.
- storage
Account Name This property is required. String - Name of the storage account. This will be empty for data account types other than storage account.
- total
Bytes To Process This property is required. Double - Total amount of data to be processed by the job.
- total
Files To Process This property is required. Double - Total files to process
- transfer
Type This property is required. String - Transfer type of data
- account
Id This property is required. string - Id of the account where the data needs to be uploaded.
- actions
This property is required. string[] - Available actions on the job.
- bytes
Processed This property is required. number - To indicate bytes transferred.
- copy
Status This property is required. string - The Status of the copy
- data
Account Type This property is required. string - Data Account Type.
- directories
Errored Out This property is required. number - To indicate directories errored out in the job.
- error
This property is required. CloudError Response - Error, if any, in the stage
- files
Errored Out This property is required. number - Number of files which could not be copied
- files
Processed This property is required. number - Number of files processed
- invalid
Directories Processed This property is required. number - To indicate directories renamed
- invalid
File Bytes Uploaded This property is required. number - Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalid
Files Processed This property is required. number - Number of files not adhering to azure naming conventions which were processed by automatic renaming
- is
Enumeration In Progress This property is required. boolean - To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamed
Container Count This property is required. number - Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- serial
Number This property is required. string - Disk Serial Number.
- storage
Account Name This property is required. string - Name of the storage account. This will be empty for data account types other than storage account.
- total
Bytes To Process This property is required. number - Total amount of data to be processed by the job.
- total
Files To Process This property is required. number - Total files to process
- transfer
Type This property is required. string - Transfer type of data
- account_
id This property is required. str - Id of the account where the data needs to be uploaded.
- actions
This property is required. Sequence[str] - Available actions on the job.
- bytes_
processed This property is required. float - To indicate bytes transferred.
- copy_
status This property is required. str - The Status of the copy
- data_
account_ type This property is required. str - Data Account Type.
- directories_
errored_ out This property is required. float - To indicate directories errored out in the job.
- error
This property is required. CloudError Response - Error, if any, in the stage
- files_
errored_ out This property is required. float - Number of files which could not be copied
- files_
processed This property is required. float - Number of files processed
- invalid_
directories_ processed This property is required. float - To indicate directories renamed
- invalid_
file_ bytes_ uploaded This property is required. float - Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalid_
files_ processed This property is required. float - Number of files not adhering to azure naming conventions which were processed by automatic renaming
- is_
enumeration_ in_ progress This property is required. bool - To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamed_
container_ count This property is required. float - Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- serial_
number This property is required. str - Disk Serial Number.
- storage_
account_ name This property is required. str - Name of the storage account. This will be empty for data account types other than storage account.
- total_
bytes_ to_ process This property is required. float - Total amount of data to be processed by the job.
- total_
files_ to_ process This property is required. float - Total files to process
- transfer_
type This property is required. str - Transfer type of data
- account
Id This property is required. String - Id of the account where the data needs to be uploaded.
- actions
This property is required. List<String> - Available actions on the job.
- bytes
Processed This property is required. Number - To indicate bytes transferred.
- copy
Status This property is required. String - The Status of the copy
- data
Account Type This property is required. String - Data Account Type.
- directories
Errored Out This property is required. Number - To indicate directories errored out in the job.
- error
This property is required. Property Map - Error, if any, in the stage
- files
Errored Out This property is required. Number - Number of files which could not be copied
- files
Processed This property is required. Number - Number of files processed
- invalid
Directories Processed This property is required. Number - To indicate directories renamed
- invalid
File Bytes Uploaded This property is required. Number - Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalid
Files Processed This property is required. Number - Number of files not adhering to azure naming conventions which were processed by automatic renaming
- is
Enumeration In Progress This property is required. Boolean - To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamed
Container Count This property is required. Number - Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- serial
Number This property is required. String - Disk Serial Number.
- storage
Account Name This property is required. String - Name of the storage account. This will be empty for data account types other than storage account.
- total
Bytes To Process This property is required. Number - Total amount of data to be processed by the job.
- total
Files To Process This property is required. Number - Total files to process
- transfer
Type This property is required. String - Transfer type of data
DataBoxDiskJobDetails, DataBoxDiskJobDetailsArgs
- Contact
Details This property is required. Pulumi.Azure Native. Data Box. Inputs. Contact Details - Contact details for notification and shipping.
- Data
Export List<Pulumi.Details Azure Native. Data Box. Inputs. Data Export Details> - Details of the data to be exported from azure.
- Data
Import List<Pulumi.Details Azure Native. Data Box. Inputs. Data 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 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.
- Preferred
Disks 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.
- Reverse
Shipping Pulumi.Details Azure Native. Data Box. Inputs. Reverse Shipping Details - Optional Reverse Shipping details for order.
- Shipping
Address Pulumi.Azure Native. Data Box. Inputs. Shipping Address - Shipping address of the customer.
- Contact
Details This property is required. ContactDetails - Contact details for notification and shipping.
- Data
Export []DataDetails Export Details - Details of the data to be exported from azure.
- Data
Import []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 string
- User entered passkey for DataBox Disk job.
- Preferences Preferences
- Preferences for the order.
- Preferred
Disks 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.
- Reverse
Shipping ReverseDetails Shipping Details - Optional Reverse Shipping details for order.
- Shipping
Address ShippingAddress - Shipping address of the customer.
- contact
Details This property is required. ContactDetails - Contact details for notification and shipping.
- data
Export List<DataDetails Export Details> - Details of the data to be exported from azure.
- data
Import List<DataDetails Import Details> - Details of the data to be imported into azure.
- expected
Data IntegerSize 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 String
- User entered passkey for DataBox Disk job.
- preferences Preferences
- Preferences for the order.
- preferred
Disks 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.
- reverse
Shipping ReverseDetails Shipping Details - Optional Reverse Shipping details for order.
- shipping
Address ShippingAddress - Shipping address of the customer.
- contact
Details This property is required. ContactDetails - Contact details for notification and shipping.
- data
Export DataDetails Export Details[] - Details of the data to be exported from azure.
- data
Import DataDetails Import Details[] - Details of the data to be imported into azure.
- expected
Data numberSize 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 string
- User entered passkey for DataBox Disk job.
- preferences Preferences
- Preferences for the order.
- preferred
Disks {[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.
- reverse
Shipping ReverseDetails Shipping Details - Optional Reverse Shipping details for order.
- shipping
Address ShippingAddress - Shipping address of the customer.
- contact_
details This property is required. 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.
- contact
Details This property is required. Property Map - Contact details for notification and shipping.
- data
Export List<Property Map>Details - Details of the data to be exported from azure.
- data
Import List<Property Map>Details - Details of the data to be imported into azure.
- expected
Data NumberSize In Tera Bytes - The expected size of the data, which needs to be transferred in this job, in terabytes.
- key
Encryption 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.
- preferred
Disks 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.
- reverse
Shipping Property MapDetails - Optional Reverse Shipping details for order.
- shipping
Address Property Map - Shipping address of the customer.
DataBoxDiskJobDetailsResponse, DataBoxDiskJobDetailsResponseArgs
- Actions
This property is required. List<string> - Available actions on the job.
- Chain
Of Custody Sas Key This property is required. string - Shared access key to download the chain of custody logs
- Contact
Details This property is required. Pulumi.Azure Native. Data Box. Inputs. Contact Details Response - Contact details for notification and shipping.
- Copy
Log Details This property is required. List<object> - List of copy log details.
- Copy
Progress This property is required. List<Pulumi.Azure Native. Data Box. Inputs. Data Box Disk Copy Progress Response> - Copy progress per disk.
- Data
Center Code This property is required. string - DataCenter code.
- Datacenter
Address This property is required. 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.
- Delivery
Package This property is required. Pulumi.Azure Native. Data Box. Inputs. Package Shipping Details Response - Delivery package shipping details.
- Device
Erasure Details This property is required. Pulumi.Azure Native. Data Box. Inputs. Device Erasure Details Response - Holds device data erasure details
- Disks
And Size Details This property is required. Dictionary<string, int> - 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 Log Details This property is required. List<Pulumi.Azure Native. Data Box. Inputs. Data Box Disk Granular Copy Log Details Response> - Copy progress per disk.
- Granular
Copy Progress This property is required. List<Pulumi.Azure Native. Data Box. Inputs. Data Box Disk Granular Copy Progress Response> - Copy progress per disk.
- Job
Stages This property is required. List<Pulumi.Azure Native. Data Box. Inputs. Job Stages Response> - List of stages that run in the job.
- Last
Mitigation Action On Job This property is required. Pulumi.Azure Native. Data Box. Inputs. Last Mitigation Action On Job Response - Last mitigation action performed on the job.
- Return
Package This property is required. Pulumi.Azure Native. Data Box. Inputs. Package Shipping Details Response - Return package shipping details.
- Reverse
Shipment Label Sas Key This property is required. string - Shared access key to download the return shipment label
- Data
Export List<Pulumi.Details Azure Native. Data Box. Inputs. Data Export Details Response> - Details of the data to be exported from azure.
- Data
Import List<Pulumi.Details Azure Native. Data Box. Inputs. Data 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 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.
- Preferred
Disks 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.
- Reverse
Shipping Pulumi.Details Azure Native. Data Box. Inputs. Reverse Shipping Details Response - Optional Reverse Shipping details for order.
- Shipping
Address Pulumi.Azure Native. Data Box. Inputs. Shipping Address Response - Shipping address of the customer.
- Actions
This property is required. []string - Available actions on the job.
- Chain
Of Custody Sas Key This property is required. string - Shared access key to download the chain of custody logs
- Contact
Details This property is required. ContactDetails Response - Contact details for notification and shipping.
- Copy
Log Details This property is required. []interface{} - List of copy log details.
- Copy
Progress This property is required. []DataBox Disk Copy Progress Response - Copy progress per disk.
- Data
Center Code This property is required. string - DataCenter code.
- Datacenter
Address This property is required. DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response - Datacenter address to ship to, for the given sku and storage location.
- Delivery
Package This property is required. PackageShipping Details Response - Delivery package shipping details.
- Device
Erasure Details This property is required. DeviceErasure Details Response - Holds device data erasure details
- Disks
And Size Details This property is required. map[string]int - 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 Log Details This property is required. []DataBox Disk Granular Copy Log Details Response - Copy progress per disk.
- Granular
Copy Progress This property is required. []DataBox Disk Granular Copy Progress Response - Copy progress per disk.
- Job
Stages This property is required. []JobStages Response - List of stages that run in the job.
- Last
Mitigation Action On Job This property is required. LastMitigation Action On Job Response - Last mitigation action performed on the job.
- Return
Package This property is required. PackageShipping Details Response - Return package shipping details.
- Reverse
Shipment Label Sas Key This property is required. string - Shared access key to download the return shipment label
- Data
Export []DataDetails Export Details Response - Details of the data to be exported from azure.
- Data
Import []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 string
- User entered passkey for DataBox Disk job.
- Preferences
Preferences
Response - Preferences for the order.
- Preferred
Disks 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.
- Reverse
Shipping ReverseDetails Shipping Details Response - Optional Reverse Shipping details for order.
- Shipping
Address ShippingAddress Response - Shipping address of the customer.
- actions
This property is required. List<String> - Available actions on the job.
- chain
Of Custody Sas Key This property is required. String - Shared access key to download the chain of custody logs
- contact
Details This property is required. ContactDetails Response - Contact details for notification and shipping.
- copy
Log Details This property is required. List<Object> - List of copy log details.
- copy
Progress This property is required. List<DataBox Disk Copy Progress Response> - Copy progress per disk.
- data
Center Code This property is required. String - DataCenter code.
- datacenter
Address This property is required. DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response - Datacenter address to ship to, for the given sku and storage location.
- delivery
Package This property is required. PackageShipping Details Response - Delivery package shipping details.
- device
Erasure Details This property is required. DeviceErasure Details Response - Holds device data erasure details
- disks
And Size Details This property is required. Map<String,Integer> - 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 Log Details This property is required. List<DataBox Disk Granular Copy Log Details Response> - Copy progress per disk.
- granular
Copy Progress This property is required. List<DataBox Disk Granular Copy Progress Response> - Copy progress per disk.
- job
Stages This property is required. List<JobStages Response> - List of stages that run in the job.
- last
Mitigation Action On Job This property is required. LastMitigation Action On Job Response - Last mitigation action performed on the job.
- return
Package This property is required. PackageShipping Details Response - Return package shipping details.
- reverse
Shipment Label Sas Key This property is required. String - Shared access key to download the return shipment label
- data
Export List<DataDetails Export Details Response> - Details of the data to be exported from azure.
- data
Import List<DataDetails Import Details Response> - Details of the data to be imported into azure.
- expected
Data IntegerSize 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 String
- User entered passkey for DataBox Disk job.
- preferences
Preferences
Response - Preferences for the order.
- preferred
Disks 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.
- reverse
Shipping ReverseDetails Shipping Details Response - Optional Reverse Shipping details for order.
- shipping
Address ShippingAddress Response - Shipping address of the customer.
- actions
This property is required. string[] - Available actions on the job.
- chain
Of Custody Sas Key This property is required. string - Shared access key to download the chain of custody logs
- contact
Details This property is required. ContactDetails Response - Contact details for notification and shipping.
- copy
Log Details This property is required. (DataBox 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 This property is required. DataBox Disk Copy Progress Response[] - Copy progress per disk.
- data
Center Code This property is required. string - DataCenter code.
- datacenter
Address This property is required. DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response - Datacenter address to ship to, for the given sku and storage location.
- delivery
Package This property is required. PackageShipping Details Response - Delivery package shipping details.
- device
Erasure Details This property is required. DeviceErasure Details Response - Holds device data erasure details
- disks
And Size Details This property is required. {[key: string]: number} - 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 Log Details This property is required. DataBox Disk Granular Copy Log Details Response[] - Copy progress per disk.
- granular
Copy Progress This property is required. DataBox Disk Granular Copy Progress Response[] - Copy progress per disk.
- job
Stages This property is required. JobStages Response[] - List of stages that run in the job.
- last
Mitigation Action On Job This property is required. LastMitigation Action On Job Response - Last mitigation action performed on the job.
- return
Package This property is required. PackageShipping Details Response - Return package shipping details.
- reverse
Shipment Label Sas Key This property is required. string - Shared access key to download the return shipment label
- data
Export DataDetails Export Details Response[] - Details of the data to be exported from azure.
- data
Import DataDetails Import Details Response[] - Details of the data to be imported into azure.
- expected
Data numberSize 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 string
- User entered passkey for DataBox Disk job.
- preferences
Preferences
Response - Preferences for the order.
- preferred
Disks {[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.
- reverse
Shipping ReverseDetails Shipping Details Response - Optional Reverse Shipping details for order.
- shipping
Address ShippingAddress Response - Shipping address of the customer.
- actions
This property is required. Sequence[str] - Available actions on the job.
- chain_
of_ custody_ sas_ key This property is required. str - Shared access key to download the chain of custody logs
- contact_
details This property is required. ContactDetails Response - Contact details for notification and shipping.
- copy_
log_ details This property is required. Sequence[Union[DataBox 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 This property is required. Sequence[DataBox Disk Copy Progress Response] - Copy progress per disk.
- data_
center_ code This property is required. str - DataCenter code.
- datacenter_
address This property is required. DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response - Datacenter address to ship to, for the given sku and storage location.
- delivery_
package This property is required. PackageShipping Details Response - Delivery package shipping details.
- device_
erasure_ details This property is required. DeviceErasure Details Response - Holds device data erasure details
- disks_
and_ size_ details This property is required. Mapping[str, int] - 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_ log_ details This property is required. Sequence[DataBox Disk Granular Copy Log Details Response] - Copy progress per disk.
- granular_
copy_ progress This property is required. Sequence[DataBox Disk Granular Copy Progress Response] - Copy progress per disk.
- job_
stages This property is required. Sequence[JobStages Response] - List of stages that run in the job.
- last_
mitigation_ action_ on_ job This property is required. LastMitigation Action On Job Response - Last mitigation action performed on the job.
- return_
package This property is required. PackageShipping Details Response - Return package shipping details.
- reverse_
shipment_ label_ sas_ key This property is required. str - 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
Preferences
Response - 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
This property is required. List<String> - Available actions on the job.
- chain
Of Custody Sas Key This property is required. String - Shared access key to download the chain of custody logs
- contact
Details This property is required. Property Map - Contact details for notification and shipping.
- copy
Log Details This property is required. List<Property Map | Property Map | Property Map | Property Map> - List of copy log details.
- copy
Progress This property is required. List<Property Map> - Copy progress per disk.
- data
Center Code This property is required. String - DataCenter code.
- datacenter
Address This property is required. Property Map | Property Map - Datacenter address to ship to, for the given sku and storage location.
- delivery
Package This property is required. Property Map - Delivery package shipping details.
- device
Erasure Details This property is required. Property Map - Holds device data erasure details
- disks
And Size Details This property is required. Map<Number> - 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 Log Details This property is required. List<Property Map> - Copy progress per disk.
- granular
Copy Progress This property is required. List<Property Map> - Copy progress per disk.
- job
Stages This property is required. List<Property Map> - List of stages that run in the job.
- last
Mitigation Action On Job This property is required. Property Map - Last mitigation action performed on the job.
- return
Package This property is required. Property Map - Return package shipping details.
- reverse
Shipment Label Sas Key This property is required. String - Shared access key to download the return shipment label
- data
Export List<Property Map>Details - Details of the data to be exported from azure.
- data
Import List<Property Map>Details - Details of the data to be imported into azure.
- expected
Data NumberSize In Tera Bytes - The expected size of the data, which needs to be transferred in this job, in terabytes.
- key
Encryption 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.
- preferred
Disks 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.
- reverse
Shipping Property MapDetails - Optional Reverse Shipping details for order.
- shipping
Address Property Map - Shipping address of the customer.
DataBoxHeavyAccountCopyLogDetailsResponse, DataBoxHeavyAccountCopyLogDetailsResponseArgs
- Account
Name This property is required. string - Account name.
- Copy
Log Link This property is required. List<string> - Link for copy logs.
- Copy
Verbose Log Link This property is required. List<string> - Link for copy verbose logs. This will be set only when the LogCollectionLevel is set to verbose.
- Account
Name This property is required. string - Account name.
- Copy
Log Link This property is required. []string - Link for copy logs.
- Copy
Verbose Log Link This property is required. []string - Link for copy verbose logs. This will be set only when the LogCollectionLevel is set to verbose.
- account
Name This property is required. String - Account name.
- copy
Log Link This property is required. List<String> - Link for copy logs.
- copy
Verbose Log Link This property is required. List<String> - Link for copy verbose logs. This will be set only when the LogCollectionLevel is set to verbose.
- account
Name This property is required. string - Account name.
- copy
Log Link This property is required. string[] - Link for copy logs.
- copy
Verbose Log Link This property is required. string[] - Link for copy verbose logs. This will be set only when the LogCollectionLevel is set to verbose.
- account_
name This property is required. str - Account name.
- copy_
log_ link This property is required. Sequence[str] - Link for copy logs.
- copy_
verbose_ log_ link This property is required. Sequence[str] - Link for copy verbose logs. This will be set only when the LogCollectionLevel is set to verbose.
- account
Name This property is required. String - Account name.
- copy
Log Link This property is required. List<String> - Link for copy logs.
- copy
Verbose Log Link This property is required. List<String> - Link for copy verbose logs. This will be set only when the LogCollectionLevel is set to verbose.
DataBoxHeavyJobDetails, DataBoxHeavyJobDetailsArgs
- Contact
Details This property is required. Pulumi.Azure Native. Data Box. Inputs. Contact Details - Contact details for notification and shipping.
- Data
Export List<Pulumi.Details Azure Native. Data Box. Inputs. Data Export Details> - Details of the data to be exported from azure.
- Data
Import List<Pulumi.Details Azure Native. Data Box. Inputs. Data Import Details> - Details of the data to be imported into azure.
- Device
Password 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 : @#-$%^!+=;:_()]+
- Expected
Data intSize In Tera Bytes - The expected size of the data, which needs to be transferred in this job, in terabytes.
- Key
Encryption 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.
- Reverse
Shipping Pulumi.Details Azure Native. Data Box. Inputs. Reverse Shipping Details - Optional Reverse Shipping details for order.
- Shipping
Address Pulumi.Azure Native. Data Box. Inputs. Shipping Address - Shipping address of the customer.
- Contact
Details This property is required. ContactDetails - Contact details for notification and shipping.
- Data
Export []DataDetails Export Details - Details of the data to be exported from azure.
- Data
Import []DataDetails Import Details - Details of the data to be imported into azure.
- Device
Password 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 : @#-$%^!+=;:_()]+
- 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.
- contact
Details This property is required. ContactDetails - Contact details for notification and shipping.
- data
Export List<DataDetails Export Details> - Details of the data to be exported from azure.
- data
Import List<DataDetails Import Details> - Details of the data to be imported into azure.
- device
Password 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 : @#-$%^!+=;:_()]+
- expected
Data IntegerSize 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.
- contact
Details This property is required. ContactDetails - Contact details for notification and shipping.
- data
Export DataDetails Export Details[] - Details of the data to be exported from azure.
- data
Import DataDetails Import Details[] - Details of the data to be imported into azure.
- device
Password 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 : @#-$%^!+=;:_()]+
- expected
Data numberSize 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.
- contact_
details This property is required. 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.
- contact
Details This property is required. Property Map - Contact details for notification and shipping.
- data
Export List<Property Map>Details - Details of the data to be exported from azure.
- data
Import List<Property Map>Details - Details of the data to be imported into azure.
- device
Password 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 : @#-$%^!+=;:_()]+
- expected
Data NumberSize In Tera Bytes - The expected size of the data, which needs to be transferred in this job, in terabytes.
- key
Encryption Property MapKey - Details about which key encryption type is being used.
- preferences Property Map
- Preferences for the order.
- reverse
Shipping Property MapDetails - Optional Reverse Shipping details for order.
- shipping
Address Property Map - Shipping address of the customer.
DataBoxHeavyJobDetailsResponse, DataBoxHeavyJobDetailsResponseArgs
- Actions
This property is required. List<string> - Available actions on the job.
- Chain
Of Custody Sas Key This property is required. string - Shared access key to download the chain of custody logs
- Contact
Details This property is required. Pulumi.Azure Native. Data Box. Inputs. Contact Details Response - Contact details for notification and shipping.
- Copy
Log Details This property is required. List<object> - List of copy log details.
- Copy
Progress This property is required. List<Pulumi.Azure Native. Data Box. Inputs. Copy Progress Response> - Copy progress per account.
- Data
Center Code This property is required. string - DataCenter code.
- Datacenter
Address This property is required. 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.
- Delivery
Package This property is required. Pulumi.Azure Native. Data Box. Inputs. Package Shipping Details Response - Delivery package shipping details.
- Device
Erasure Details This property is required. Pulumi.Azure Native. Data Box. Inputs. Device Erasure Details Response - Holds device data erasure details
- Job
Stages This property is required. List<Pulumi.Azure Native. Data Box. Inputs. Job Stages Response> - List of stages that run in the job.
- Last
Mitigation Action On Job This property is required. Pulumi.Azure Native. Data Box. Inputs. Last Mitigation Action On Job Response - Last mitigation action performed on the job.
- Return
Package This property is required. Pulumi.Azure Native. Data Box. Inputs. Package Shipping Details Response - Return package shipping details.
- Reverse
Shipment Label Sas Key This property is required. string - Shared access key to download the return shipment label
- Data
Export List<Pulumi.Details Azure Native. Data Box. Inputs. Data Export Details Response> - Details of the data to be exported from azure.
- Data
Import List<Pulumi.Details Azure Native. Data Box. Inputs. Data Import Details Response> - Details of the data to be imported into azure.
- Device
Password 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 : @#-$%^!+=;:_()]+
- Expected
Data intSize In Tera Bytes - The expected size of the data, which needs to be transferred in this job, in terabytes.
- Key
Encryption 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.
- Reverse
Shipping Pulumi.Details Azure Native. Data Box. Inputs. Reverse Shipping Details Response - Optional Reverse Shipping details for order.
- Shipping
Address Pulumi.Azure Native. Data Box. Inputs. Shipping Address Response - Shipping address of the customer.
- Actions
This property is required. []string - Available actions on the job.
- Chain
Of Custody Sas Key This property is required. string - Shared access key to download the chain of custody logs
- Contact
Details This property is required. ContactDetails Response - Contact details for notification and shipping.
- Copy
Log Details This property is required. []interface{} - List of copy log details.
- Copy
Progress This property is required. []CopyProgress Response - Copy progress per account.
- Data
Center Code This property is required. string - DataCenter code.
- Datacenter
Address This property is required. DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response - Datacenter address to ship to, for the given sku and storage location.
- Delivery
Package This property is required. PackageShipping Details Response - Delivery package shipping details.
- Device
Erasure Details This property is required. DeviceErasure Details Response - Holds device data erasure details
- Job
Stages This property is required. []JobStages Response - List of stages that run in the job.
- Last
Mitigation Action On Job This property is required. LastMitigation Action On Job Response - Last mitigation action performed on the job.
- Return
Package This property is required. PackageShipping Details Response - Return package shipping details.
- Reverse
Shipment Label Sas Key This property is required. string - Shared access key to download the return shipment label
- Data
Export []DataDetails Export Details Response - Details of the data to be exported from azure.
- Data
Import []DataDetails Import Details Response - Details of the data to be imported into azure.
- Device
Password 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 : @#-$%^!+=;:_()]+
- 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
Preferences
Response - 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
This property is required. List<String> - Available actions on the job.
- chain
Of Custody Sas Key This property is required. String - Shared access key to download the chain of custody logs
- contact
Details This property is required. ContactDetails Response - Contact details for notification and shipping.
- copy
Log Details This property is required. List<Object> - List of copy log details.
- copy
Progress This property is required. List<CopyProgress Response> - Copy progress per account.
- data
Center Code This property is required. String - DataCenter code.
- datacenter
Address This property is required. DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response - Datacenter address to ship to, for the given sku and storage location.
- delivery
Package This property is required. PackageShipping Details Response - Delivery package shipping details.
- device
Erasure Details This property is required. DeviceErasure Details Response - Holds device data erasure details
- job
Stages This property is required. List<JobStages Response> - List of stages that run in the job.
- last
Mitigation Action On Job This property is required. LastMitigation Action On Job Response - Last mitigation action performed on the job.
- return
Package This property is required. PackageShipping Details Response - Return package shipping details.
- reverse
Shipment Label Sas Key This property is required. String - Shared access key to download the return shipment label
- data
Export List<DataDetails Export Details Response> - Details of the data to be exported from azure.
- data
Import List<DataDetails Import Details Response> - Details of the data to be imported into azure.
- device
Password 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 : @#-$%^!+=;:_()]+
- expected
Data IntegerSize 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
Preferences
Response - 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
This property is required. string[] - Available actions on the job.
- chain
Of Custody Sas Key This property is required. string - Shared access key to download the chain of custody logs
- contact
Details This property is required. ContactDetails Response - Contact details for notification and shipping.
- copy
Log Details This property is required. (DataBox 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 This property is required. CopyProgress Response[] - Copy progress per account.
- data
Center Code This property is required. string - DataCenter code.
- datacenter
Address This property is required. DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response - Datacenter address to ship to, for the given sku and storage location.
- delivery
Package This property is required. PackageShipping Details Response - Delivery package shipping details.
- device
Erasure Details This property is required. DeviceErasure Details Response - Holds device data erasure details
- job
Stages This property is required. JobStages Response[] - List of stages that run in the job.
- last
Mitigation Action On Job This property is required. LastMitigation Action On Job Response - Last mitigation action performed on the job.
- return
Package This property is required. PackageShipping Details Response - Return package shipping details.
- reverse
Shipment Label Sas Key This property is required. string - Shared access key to download the return shipment label
- data
Export DataDetails Export Details Response[] - Details of the data to be exported from azure.
- data
Import DataDetails Import Details Response[] - Details of the data to be imported into azure.
- device
Password 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 : @#-$%^!+=;:_()]+
- expected
Data numberSize 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
Preferences
Response - 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
This property is required. Sequence[str] - Available actions on the job.
- chain_
of_ custody_ sas_ key This property is required. str - Shared access key to download the chain of custody logs
- contact_
details This property is required. ContactDetails Response - Contact details for notification and shipping.
- copy_
log_ details This property is required. Sequence[Union[DataBox 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 This property is required. Sequence[CopyProgress Response] - Copy progress per account.
- data_
center_ code This property is required. str - DataCenter code.
- datacenter_
address This property is required. DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response - Datacenter address to ship to, for the given sku and storage location.
- delivery_
package This property is required. PackageShipping Details Response - Delivery package shipping details.
- device_
erasure_ details This property is required. DeviceErasure Details Response - Holds device data erasure details
- job_
stages This property is required. Sequence[JobStages Response] - List of stages that run in the job.
- last_
mitigation_ action_ on_ job This property is required. LastMitigation Action On Job Response - Last mitigation action performed on the job.
- return_
package This property is required. PackageShipping Details Response - Return package shipping details.
- reverse_
shipment_ label_ sas_ key This property is required. str - 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
Preferences
Response - 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
This property is required. List<String> - Available actions on the job.
- chain
Of Custody Sas Key This property is required. String - Shared access key to download the chain of custody logs
- contact
Details This property is required. Property Map - Contact details for notification and shipping.
- copy
Log Details This property is required. List<Property Map | Property Map | Property Map | Property Map> - List of copy log details.
- copy
Progress This property is required. List<Property Map> - Copy progress per account.
- data
Center Code This property is required. String - DataCenter code.
- datacenter
Address This property is required. Property Map | Property Map - Datacenter address to ship to, for the given sku and storage location.
- delivery
Package This property is required. Property Map - Delivery package shipping details.
- device
Erasure Details This property is required. Property Map - Holds device data erasure details
- job
Stages This property is required. List<Property Map> - List of stages that run in the job.
- last
Mitigation Action On Job This property is required. Property Map - Last mitigation action performed on the job.
- return
Package This property is required. Property Map - Return package shipping details.
- reverse
Shipment Label Sas Key This property is required. String - Shared access key to download the return shipment label
- data
Export List<Property Map>Details - Details of the data to be exported from azure.
- data
Import List<Property Map>Details - Details of the data to be imported into azure.
- device
Password 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 : @#-$%^!+=;:_()]+
- expected
Data NumberSize In Tera Bytes - The expected size of the data, which needs to be transferred in this job, in terabytes.
- key
Encryption Property MapKey - Details about which key encryption type is being used.
- preferences Property Map
- Preferences for the order.
- reverse
Shipping Property MapDetails - Optional Reverse Shipping details for order.
- shipping
Address Property Map - Shipping address of the customer.
DataBoxJobDetails, DataBoxJobDetailsArgs
- Contact
Details This property is required. Pulumi.Azure Native. Data Box. Inputs. Contact Details - Contact details for notification and shipping.
- Data
Export List<Pulumi.Details Azure Native. Data Box. Inputs. Data Export Details> - Details of the data to be exported from azure.
- Data
Import List<Pulumi.Details Azure Native. Data Box. Inputs. Data Import Details> - Details of the data to be imported into azure.
- Device
Password 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 : @#-$%^!+=;:_()]+
- Expected
Data intSize In Tera Bytes - The expected size of the data, which needs to be transferred in this job, in terabytes.
- Key
Encryption 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.
- Reverse
Shipping Pulumi.Details Azure Native. Data Box. Inputs. Reverse Shipping Details - Optional Reverse Shipping details for order.
- Shipping
Address Pulumi.Azure Native. Data Box. Inputs. Shipping Address - Shipping address of the customer.
- Contact
Details This property is required. ContactDetails - Contact details for notification and shipping.
- Data
Export []DataDetails Export Details - Details of the data to be exported from azure.
- Data
Import []DataDetails Import Details - Details of the data to be imported into azure.
- Device
Password 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 : @#-$%^!+=;:_()]+
- 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.
- contact
Details This property is required. ContactDetails - Contact details for notification and shipping.
- data
Export List<DataDetails Export Details> - Details of the data to be exported from azure.
- data
Import List<DataDetails Import Details> - Details of the data to be imported into azure.
- device
Password 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 : @#-$%^!+=;:_()]+
- expected
Data IntegerSize 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.
- contact
Details This property is required. ContactDetails - Contact details for notification and shipping.
- data
Export DataDetails Export Details[] - Details of the data to be exported from azure.
- data
Import DataDetails Import Details[] - Details of the data to be imported into azure.
- device
Password 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 : @#-$%^!+=;:_()]+
- expected
Data numberSize 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.
- contact_
details This property is required. 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.
- contact
Details This property is required. Property Map - Contact details for notification and shipping.
- data
Export List<Property Map>Details - Details of the data to be exported from azure.
- data
Import List<Property Map>Details - Details of the data to be imported into azure.
- device
Password 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 : @#-$%^!+=;:_()]+
- expected
Data NumberSize In Tera Bytes - The expected size of the data, which needs to be transferred in this job, in terabytes.
- key
Encryption Property MapKey - Details about which key encryption type is being used.
- preferences Property Map
- Preferences for the order.
- reverse
Shipping Property MapDetails - Optional Reverse Shipping details for order.
- shipping
Address Property Map - Shipping address of the customer.
DataBoxJobDetailsResponse, DataBoxJobDetailsResponseArgs
- Actions
This property is required. List<string> - Available actions on the job.
- Chain
Of Custody Sas Key This property is required. string - Shared access key to download the chain of custody logs
- Contact
Details This property is required. Pulumi.Azure Native. Data Box. Inputs. Contact Details Response - Contact details for notification and shipping.
- Copy
Log Details This property is required. List<object> - List of copy log details.
- Copy
Progress This property is required. List<Pulumi.Azure Native. Data Box. Inputs. Copy Progress Response> - Copy progress per storage account.
- Data
Center Code This property is required. string - DataCenter code.
- Datacenter
Address This property is required. 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.
- Delivery
Package This property is required. Pulumi.Azure Native. Data Box. Inputs. Package Shipping Details Response - Delivery package shipping details.
- Device
Erasure Details This property is required. Pulumi.Azure Native. Data Box. Inputs. Device Erasure Details Response - Holds device data erasure details
- Job
Stages This property is required. List<Pulumi.Azure Native. Data Box. Inputs. Job Stages Response> - List of stages that run in the job.
- Last
Mitigation Action On Job This property is required. Pulumi.Azure Native. Data Box. Inputs. Last Mitigation Action On Job Response - Last mitigation action performed on the job.
- Return
Package This property is required. Pulumi.Azure Native. Data Box. Inputs. Package Shipping Details Response - Return package shipping details.
- Reverse
Shipment Label Sas Key This property is required. string - Shared access key to download the return shipment label
- Data
Export List<Pulumi.Details Azure Native. Data Box. Inputs. Data Export Details Response> - Details of the data to be exported from azure.
- Data
Import List<Pulumi.Details Azure Native. Data Box. Inputs. Data Import Details Response> - Details of the data to be imported into azure.
- Device
Password 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 : @#-$%^!+=;:_()]+
- Expected
Data intSize In Tera Bytes - The expected size of the data, which needs to be transferred in this job, in terabytes.
- Key
Encryption 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.
- Reverse
Shipping Pulumi.Details Azure Native. Data Box. Inputs. Reverse Shipping Details Response - Optional Reverse Shipping details for order.
- Shipping
Address Pulumi.Azure Native. Data Box. Inputs. Shipping Address Response - Shipping address of the customer.
- Actions
This property is required. []string - Available actions on the job.
- Chain
Of Custody Sas Key This property is required. string - Shared access key to download the chain of custody logs
- Contact
Details This property is required. ContactDetails Response - Contact details for notification and shipping.
- Copy
Log Details This property is required. []interface{} - List of copy log details.
- Copy
Progress This property is required. []CopyProgress Response - Copy progress per storage account.
- Data
Center Code This property is required. string - DataCenter code.
- Datacenter
Address This property is required. DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response - Datacenter address to ship to, for the given sku and storage location.
- Delivery
Package This property is required. PackageShipping Details Response - Delivery package shipping details.
- Device
Erasure Details This property is required. DeviceErasure Details Response - Holds device data erasure details
- Job
Stages This property is required. []JobStages Response - List of stages that run in the job.
- Last
Mitigation Action On Job This property is required. LastMitigation Action On Job Response - Last mitigation action performed on the job.
- Return
Package This property is required. PackageShipping Details Response - Return package shipping details.
- Reverse
Shipment Label Sas Key This property is required. string - Shared access key to download the return shipment label
- Data
Export []DataDetails Export Details Response - Details of the data to be exported from azure.
- Data
Import []DataDetails Import Details Response - Details of the data to be imported into azure.
- Device
Password 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 : @#-$%^!+=;:_()]+
- 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
Preferences
Response - 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
This property is required. List<String> - Available actions on the job.
- chain
Of Custody Sas Key This property is required. String - Shared access key to download the chain of custody logs
- contact
Details This property is required. ContactDetails Response - Contact details for notification and shipping.
- copy
Log Details This property is required. List<Object> - List of copy log details.
- copy
Progress This property is required. List<CopyProgress Response> - Copy progress per storage account.
- data
Center Code This property is required. String - DataCenter code.
- datacenter
Address This property is required. DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response - Datacenter address to ship to, for the given sku and storage location.
- delivery
Package This property is required. PackageShipping Details Response - Delivery package shipping details.
- device
Erasure Details This property is required. DeviceErasure Details Response - Holds device data erasure details
- job
Stages This property is required. List<JobStages Response> - List of stages that run in the job.
- last
Mitigation Action On Job This property is required. LastMitigation Action On Job Response - Last mitigation action performed on the job.
- return
Package This property is required. PackageShipping Details Response - Return package shipping details.
- reverse
Shipment Label Sas Key This property is required. String - Shared access key to download the return shipment label
- data
Export List<DataDetails Export Details Response> - Details of the data to be exported from azure.
- data
Import List<DataDetails Import Details Response> - Details of the data to be imported into azure.
- device
Password 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 : @#-$%^!+=;:_()]+
- expected
Data IntegerSize 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
Preferences
Response - 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
This property is required. string[] - Available actions on the job.
- chain
Of Custody Sas Key This property is required. string - Shared access key to download the chain of custody logs
- contact
Details This property is required. ContactDetails Response - Contact details for notification and shipping.
- copy
Log Details This property is required. (DataBox 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 This property is required. CopyProgress Response[] - Copy progress per storage account.
- data
Center Code This property is required. string - DataCenter code.
- datacenter
Address This property is required. DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response - Datacenter address to ship to, for the given sku and storage location.
- delivery
Package This property is required. PackageShipping Details Response - Delivery package shipping details.
- device
Erasure Details This property is required. DeviceErasure Details Response - Holds device data erasure details
- job
Stages This property is required. JobStages Response[] - List of stages that run in the job.
- last
Mitigation Action On Job This property is required. LastMitigation Action On Job Response - Last mitigation action performed on the job.
- return
Package This property is required. PackageShipping Details Response - Return package shipping details.
- reverse
Shipment Label Sas Key This property is required. string - Shared access key to download the return shipment label
- data
Export DataDetails Export Details Response[] - Details of the data to be exported from azure.
- data
Import DataDetails Import Details Response[] - Details of the data to be imported into azure.
- device
Password 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 : @#-$%^!+=;:_()]+
- expected
Data numberSize 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
Preferences
Response - 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
This property is required. Sequence[str] - Available actions on the job.
- chain_
of_ custody_ sas_ key This property is required. str - Shared access key to download the chain of custody logs
- contact_
details This property is required. ContactDetails Response - Contact details for notification and shipping.
- copy_
log_ details This property is required. Sequence[Union[DataBox 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 This property is required. Sequence[CopyProgress Response] - Copy progress per storage account.
- data_
center_ code This property is required. str - DataCenter code.
- datacenter_
address This property is required. DatacenterAddress | DatacenterInstruction Response Response Address Location Response Response - Datacenter address to ship to, for the given sku and storage location.
- delivery_
package This property is required. PackageShipping Details Response - Delivery package shipping details.
- device_
erasure_ details This property is required. DeviceErasure Details Response - Holds device data erasure details
- job_
stages This property is required. Sequence[JobStages Response] - List of stages that run in the job.
- last_
mitigation_ action_ on_ job This property is required. LastMitigation Action On Job Response - Last mitigation action performed on the job.
- return_
package This property is required. PackageShipping Details Response - Return package shipping details.
- reverse_
shipment_ label_ sas_ key This property is required. str - 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
Preferences
Response - 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
This property is required. List<String> - Available actions on the job.
- chain
Of Custody Sas Key This property is required. String - Shared access key to download the chain of custody logs
- contact
Details This property is required. Property Map - Contact details for notification and shipping.
- copy
Log Details This property is required. List<Property Map | Property Map | Property Map | Property Map> - List of copy log details.
- copy
Progress This property is required. List<Property Map> - Copy progress per storage account.
- data
Center Code This property is required. String - DataCenter code.
- datacenter
Address This property is required. Property Map | Property Map - Datacenter address to ship to, for the given sku and storage location.
- delivery
Package This property is required. Property Map - Delivery package shipping details.
- device
Erasure Details This property is required. Property Map - Holds device data erasure details
- job
Stages This property is required. List<Property Map> - List of stages that run in the job.
- last
Mitigation Action On Job This property is required. Property Map - Last mitigation action performed on the job.
- return
Package This property is required. Property Map - Return package shipping details.
- reverse
Shipment Label Sas Key This property is required. String - Shared access key to download the return shipment label
- data
Export List<Property Map>Details - Details of the data to be exported from azure.
- data
Import List<Property Map>Details - Details of the data to be imported into azure.
- device
Password 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 : @#-$%^!+=;:_()]+
- expected
Data NumberSize In Tera Bytes - The expected size of the data, which needs to be transferred in this job, in terabytes.
- key
Encryption Property MapKey - Details about which key encryption type is being used.
- preferences Property Map
- Preferences for the order.
- reverse
Shipping Property MapDetails - Optional Reverse Shipping details for order.
- shipping
Address Property Map - Shipping address of the customer.
DataExportDetails, DataExportDetailsArgs
- Account
Details This property is required. 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
- Transfer
Configuration This property is required. Pulumi.Azure Native. Data Box. Inputs. Transfer Configuration - Configuration for the data transfer.
- Log
Collection string | Pulumi.Level Azure Native. Data Box. Log Collection Level - Level of the logs to be collected.
- Account
Details This property is required. ManagedDisk | StorageDetails Account Details - Account details of the data to be transferred
- Transfer
Configuration This property is required. TransferConfiguration - Configuration for the data transfer.
- Log
Collection string | LogLevel Collection Level - Level of the logs to be collected.
- account
Details This property is required. ManagedDisk | StorageDetails Account Details - Account details of the data to be transferred
- transfer
Configuration This property is required. TransferConfiguration - Configuration for the data transfer.
- log
Collection String | LogLevel Collection Level - Level of the logs to be collected.
- account
Details This property is required. ManagedDisk | StorageDetails Account Details - Account details of the data to be transferred
- transfer
Configuration This property is required. TransferConfiguration - Configuration for the data transfer.
- log
Collection string | LogLevel Collection Level - Level of the logs to be collected.
- account_
details This property is required. ManagedDisk | StorageDetails Account Details - Account details of the data to be transferred
- transfer_
configuration This property is required. TransferConfiguration - Configuration for the data transfer.
- log_
collection_ str | Loglevel Collection Level - Level of the logs to be collected.
- account
Details This property is required. Property Map | Property Map - Account details of the data to be transferred
- transfer
Configuration This property is required. Property Map - Configuration for the data transfer.
- log
Collection String | "Error" | "Verbose"Level - Level of the logs to be collected.
DataExportDetailsResponse, DataExportDetailsResponseArgs
- Account
Details This property is required. 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
- Transfer
Configuration This property is required. Pulumi.Azure Native. Data Box. Inputs. Transfer Configuration Response - Configuration for the data transfer.
- Log
Collection stringLevel - Level of the logs to be collected.
- Account
Details This property is required. ManagedDisk | StorageDetails Response Account Details Response - Account details of the data to be transferred
- Transfer
Configuration This property is required. TransferConfiguration Response - Configuration for the data transfer.
- Log
Collection stringLevel - Level of the logs to be collected.
- account
Details This property is required. ManagedDisk | StorageDetails Response Account Details Response - Account details of the data to be transferred
- transfer
Configuration This property is required. TransferConfiguration Response - Configuration for the data transfer.
- log
Collection StringLevel - Level of the logs to be collected.
- account
Details This property is required. ManagedDisk | StorageDetails Response Account Details Response - Account details of the data to be transferred
- transfer
Configuration This property is required. TransferConfiguration Response - Configuration for the data transfer.
- log
Collection stringLevel - Level of the logs to be collected.
- account_
details This property is required. ManagedDisk | StorageDetails Response Account Details Response - Account details of the data to be transferred
- transfer_
configuration This property is required. TransferConfiguration Response - Configuration for the data transfer.
- log_
collection_ strlevel - Level of the logs to be collected.
- account
Details This property is required. Property Map | Property Map - Account details of the data to be transferred
- transfer
Configuration This property is required. Property Map - Configuration for the data transfer.
- log
Collection StringLevel - Level of the logs to be collected.
DataImportDetails, DataImportDetailsArgs
- Account
Details This property is required. 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
- Log
Collection string | Pulumi.Level Azure Native. Data Box. Log Collection Level - Level of the logs to be collected.
- Account
Details This property is required. ManagedDisk | StorageDetails Account Details - Account details of the data to be transferred
- Log
Collection string | LogLevel Collection Level - Level of the logs to be collected.
- account
Details This property is required. ManagedDisk | StorageDetails Account Details - Account details of the data to be transferred
- log
Collection String | LogLevel Collection Level - Level of the logs to be collected.
- account
Details This property is required. ManagedDisk | StorageDetails Account Details - Account details of the data to be transferred
- log
Collection string | LogLevel Collection Level - Level of the logs to be collected.
- account_
details This property is required. 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.
- account
Details This property is required. Property Map | Property Map - Account details of the data to be transferred
- log
Collection String | "Error" | "Verbose"Level - Level of the logs to be collected.
DataImportDetailsResponse, DataImportDetailsResponseArgs
- Account
Details This property is required. 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
- Log
Collection stringLevel - Level of the logs to be collected.
- Account
Details This property is required. ManagedDisk | StorageDetails Response Account Details Response - Account details of the data to be transferred
- Log
Collection stringLevel - Level of the logs to be collected.
- account
Details This property is required. ManagedDisk | StorageDetails Response Account Details Response - Account details of the data to be transferred
- log
Collection StringLevel - Level of the logs to be collected.
- account
Details This property is required. ManagedDisk | StorageDetails Response Account Details Response - Account details of the data to be transferred
- log
Collection stringLevel - Level of the logs to be collected.
- account_
details This property is required. ManagedDisk | StorageDetails Response Account Details Response - Account details of the data to be transferred
- log_
collection_ strlevel - Level of the logs to be collected.
- account
Details This property is required. Property Map | Property Map - Account details of the data to be transferred
- log
Collection StringLevel - Level of the logs to be collected.
DatacenterAddressInstructionResponseResponse, DatacenterAddressInstructionResponseResponseArgs
- Communication
Instruction This property is required. string - Data center communication instruction
- Data
Center Azure Location This property is required. string - Azure Location where the Data Center serves primarily.
- Supported
Carriers For Return Shipment This property is required. List<string> - List of supported carriers for return shipment.
- Communication
Instruction This property is required. string - Data center communication instruction
- Data
Center Azure Location This property is required. string - Azure Location where the Data Center serves primarily.
- Supported
Carriers For Return Shipment This property is required. []string - List of supported carriers for return shipment.
- communication
Instruction This property is required. String - Data center communication instruction
- data
Center Azure Location This property is required. String - Azure Location where the Data Center serves primarily.
- supported
Carriers For Return Shipment This property is required. List<String> - List of supported carriers for return shipment.
- communication
Instruction This property is required. string - Data center communication instruction
- data
Center Azure Location This property is required. string - Azure Location where the Data Center serves primarily.
- supported
Carriers For Return Shipment This property is required. string[] - List of supported carriers for return shipment.
- communication_
instruction This property is required. str - Data center communication instruction
- data_
center_ azure_ location This property is required. str - Azure Location where the Data Center serves primarily.
- supported_
carriers_ for_ return_ shipment This property is required. Sequence[str] - List of supported carriers for return shipment.
- communication
Instruction This property is required. String - Data center communication instruction
- data
Center Azure Location This property is required. String - Azure Location where the Data Center serves primarily.
- supported
Carriers For Return Shipment This property is required. List<String> - List of supported carriers for return shipment.
DatacenterAddressLocationResponseResponse, DatacenterAddressLocationResponseResponseArgs
- Additional
Shipping Information This property is required. string - Special instruction for shipping
- Address
Type This property is required. string - Address type
- City
This property is required. string - City name
- Company
This property is required. string - Company name
- Contact
Person Name This property is required. string - Contact person name
- Country
This property is required. string - name of the country
- Data
Center Azure Location This property is required. string - Azure Location where the Data Center serves primarily.
- Phone
This property is required. string - Phone number
- Phone
Extension This property is required. string - Phone extension
- State
This property is required. string - name of the state
- Street1
This property is required. string - Street address line 1
- Street2
This property is required. string - Street address line 2
- Street3
This property is required. string - Street address line 3
- Supported
Carriers For Return Shipment This property is required. List<string> - List of supported carriers for return shipment.
- Zip
This property is required. string - Zip code
- Additional
Shipping Information This property is required. string - Special instruction for shipping
- Address
Type This property is required. string - Address type
- City
This property is required. string - City name
- Company
This property is required. string - Company name
- Contact
Person Name This property is required. string - Contact person name
- Country
This property is required. string - name of the country
- Data
Center Azure Location This property is required. string - Azure Location where the Data Center serves primarily.
- Phone
This property is required. string - Phone number
- Phone
Extension This property is required. string - Phone extension
- State
This property is required. string - name of the state
- Street1
This property is required. string - Street address line 1
- Street2
This property is required. string - Street address line 2
- Street3
This property is required. string - Street address line 3
- Supported
Carriers For Return Shipment This property is required. []string - List of supported carriers for return shipment.
- Zip
This property is required. string - Zip code
- additional
Shipping Information This property is required. String - Special instruction for shipping
- address
Type This property is required. String - Address type
- city
This property is required. String - City name
- company
This property is required. String - Company name
- contact
Person Name This property is required. String - Contact person name
- country
This property is required. String - name of the country
- data
Center Azure Location This property is required. String - Azure Location where the Data Center serves primarily.
- phone
This property is required. String - Phone number
- phone
Extension This property is required. String - Phone extension
- state
This property is required. String - name of the state
- street1
This property is required. String - Street address line 1
- street2
This property is required. String - Street address line 2
- street3
This property is required. String - Street address line 3
- supported
Carriers For Return Shipment This property is required. List<String> - List of supported carriers for return shipment.
- zip
This property is required. String - Zip code
- additional
Shipping Information This property is required. string - Special instruction for shipping
- address
Type This property is required. string - Address type
- city
This property is required. string - City name
- company
This property is required. string - Company name
- contact
Person Name This property is required. string - Contact person name
- country
This property is required. string - name of the country
- data
Center Azure Location This property is required. string - Azure Location where the Data Center serves primarily.
- phone
This property is required. string - Phone number
- phone
Extension This property is required. string - Phone extension
- state
This property is required. string - name of the state
- street1
This property is required. string - Street address line 1
- street2
This property is required. string - Street address line 2
- street3
This property is required. string - Street address line 3
- supported
Carriers For Return Shipment This property is required. string[] - List of supported carriers for return shipment.
- zip
This property is required. string - Zip code
- additional_
shipping_ information This property is required. str - Special instruction for shipping
- address_
type This property is required. str - Address type
- city
This property is required. str - City name
- company
This property is required. str - Company name
- contact_
person_ name This property is required. str - Contact person name
- country
This property is required. str - name of the country
- data_
center_ azure_ location This property is required. str - Azure Location where the Data Center serves primarily.
- phone
This property is required. str - Phone number
- phone_
extension This property is required. str - Phone extension
- state
This property is required. str - name of the state
- street1
This property is required. str - Street address line 1
- street2
This property is required. str - Street address line 2
- street3
This property is required. str - Street address line 3
- supported_
carriers_ for_ return_ shipment This property is required. Sequence[str] - List of supported carriers for return shipment.
- zip
This property is required. str - Zip code
- additional
Shipping Information This property is required. String - Special instruction for shipping
- address
Type This property is required. String - Address type
- city
This property is required. String - City name
- company
This property is required. String - Company name
- contact
Person Name This property is required. String - Contact person name
- country
This property is required. String - name of the country
- data
Center Azure Location This property is required. String - Azure Location where the Data Center serves primarily.
- phone
This property is required. String - Phone number
- phone
Extension This property is required. String - Phone extension
- state
This property is required. String - name of the state
- street1
This property is required. String - Street address line 1
- street2
This property is required. String - Street address line 2
- street3
This property is required. String - Street address line 3
- supported
Carriers For Return Shipment This property is required. List<String> - List of supported carriers for return shipment.
- zip
This property is required. String - Zip code
DeviceErasureDetailsResponse, DeviceErasureDetailsResponseArgs
- Device
Erasure Status This property is required. string - Holds the device erasure completion status
- Erasure
Or Destruction Certificate Sas Key This property is required. string - Shared access key to download cleanup or destruction certificate for device
- Device
Erasure Status This property is required. string - Holds the device erasure completion status
- Erasure
Or Destruction Certificate Sas Key This property is required. string - Shared access key to download cleanup or destruction certificate for device
- device
Erasure Status This property is required. String - Holds the device erasure completion status
- erasure
Or Destruction Certificate Sas Key This property is required. String - Shared access key to download cleanup or destruction certificate for device
- device
Erasure Status This property is required. string - Holds the device erasure completion status
- erasure
Or Destruction Certificate Sas Key This property is required. string - Shared access key to download cleanup or destruction certificate for device
- device_
erasure_ status This property is required. str - Holds the device erasure completion status
- erasure_
or_ destruction_ certificate_ sas_ key This property is required. str - Shared access key to download cleanup or destruction certificate for device
- device
Erasure Status This property is required. String - Holds the device erasure completion status
- erasure
Or Destruction Certificate Sas Key This property is required. String - 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.
- Double
Encryption Enabled - EnabledSoftware-based encryption is enabled.
- Double
Encryption 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
- Double
Encryption string | Pulumi.Azure Native. Data Box. Double Encryption - Defines secondary layer of software-based encryption enablement.
- Hardware
Encryption string | Pulumi.Azure Native. Data Box. Hardware Encryption - Defines Hardware level encryption (Only for disk)
- Double
Encryption string | DoubleEncryption - Defines secondary layer of software-based encryption enablement.
- Hardware
Encryption string | HardwareEncryption - Defines Hardware level encryption (Only for disk)
- double
Encryption String | DoubleEncryption - Defines secondary layer of software-based encryption enablement.
- hardware
Encryption String | HardwareEncryption - Defines Hardware level encryption (Only for disk)
- double
Encryption string | DoubleEncryption - Defines secondary layer of software-based encryption enablement.
- hardware
Encryption 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)
- double
Encryption String | "Enabled" | "Disabled" - Defines secondary layer of software-based encryption enablement.
- hardware
Encryption String | "Enabled" | "Disabled" - Defines Hardware level encryption (Only for disk)
EncryptionPreferencesResponse, EncryptionPreferencesResponseArgs
- Double
Encryption string - Defines secondary layer of software-based encryption enablement.
- Hardware
Encryption string - Defines Hardware level encryption (Only for disk)
- Double
Encryption string - Defines secondary layer of software-based encryption enablement.
- Hardware
Encryption string - Defines Hardware level encryption (Only for disk)
- double
Encryption String - Defines secondary layer of software-based encryption enablement.
- hardware
Encryption String - Defines Hardware level encryption (Only for disk)
- double
Encryption string - Defines secondary layer of software-based encryption enablement.
- hardware
Encryption 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)
- double
Encryption String - Defines secondary layer of software-based encryption enablement.
- hardware
Encryption String - Defines Hardware level encryption (Only for disk)
ExportDiskDetailsResponse, ExportDiskDetailsResponseArgs
- Backup
Manifest Cloud Path This property is required. string - Path to backed up manifest, only returned if enableManifestBackup is true.
- Manifest
File This property is required. string - The relative path of the manifest file on the disk.
- Manifest
Hash This property is required. string - The Base16-encoded MD5 hash of the manifest file on the disk.
- Backup
Manifest Cloud Path This property is required. string - Path to backed up manifest, only returned if enableManifestBackup is true.
- Manifest
File This property is required. string - The relative path of the manifest file on the disk.
- Manifest
Hash This property is required. string - The Base16-encoded MD5 hash of the manifest file on the disk.
- backup
Manifest Cloud Path This property is required. String - Path to backed up manifest, only returned if enableManifestBackup is true.
- manifest
File This property is required. String - The relative path of the manifest file on the disk.
- manifest
Hash This property is required. String - The Base16-encoded MD5 hash of the manifest file on the disk.
- backup
Manifest Cloud Path This property is required. string - Path to backed up manifest, only returned if enableManifestBackup is true.
- manifest
File This property is required. string - The relative path of the manifest file on the disk.
- manifest
Hash This property is required. string - The Base16-encoded MD5 hash of the manifest file on the disk.
- backup_
manifest_ cloud_ path This property is required. str - Path to backed up manifest, only returned if enableManifestBackup is true.
- manifest_
file This property is required. str - The relative path of the manifest file on the disk.
- manifest_
hash This property is required. str - The Base16-encoded MD5 hash of the manifest file on the disk.
- backup
Manifest Cloud Path This property is required. String - Path to backed up manifest, only returned if enableManifestBackup is true.
- manifest
File This property is required. String - The relative path of the manifest file on the disk.
- manifest
Hash This property is required. String - The Base16-encoded MD5 hash of the manifest file on the disk.
FilterFileDetails, FilterFileDetailsArgs
- Filter
File Path This property is required. string - Path of the file that contains the details of all items to transfer.
- Filter
File Type This property is required. string | Pulumi.Azure Native. Data Box. Filter File Type - Type of the filter file.
- Filter
File Path This property is required. string - Path of the file that contains the details of all items to transfer.
- Filter
File Type This property is required. string | FilterFile Type - Type of the filter file.
- filter
File Path This property is required. String - Path of the file that contains the details of all items to transfer.
- filter
File Type This property is required. String | FilterFile Type - Type of the filter file.
- filter
File Path This property is required. string - Path of the file that contains the details of all items to transfer.
- filter
File Type This property is required. string | FilterFile Type - Type of the filter file.
- filter_
file_ path This property is required. str - Path of the file that contains the details of all items to transfer.
- filter_
file_ type This property is required. str | FilterFile Type - Type of the filter file.
- filter
File Path This property is required. String - Path of the file that contains the details of all items to transfer.
- filter
File Type This property is required. String | "AzureBlob" | "Azure File" - Type of the filter file.
FilterFileDetailsResponse, FilterFileDetailsResponseArgs
- Filter
File Path This property is required. string - Path of the file that contains the details of all items to transfer.
- Filter
File Type This property is required. string - Type of the filter file.
- Filter
File Path This property is required. string - Path of the file that contains the details of all items to transfer.
- Filter
File Type This property is required. string - Type of the filter file.
- filter
File Path This property is required. String - Path of the file that contains the details of all items to transfer.
- filter
File Type This property is required. String - Type of the filter file.
- filter
File Path This property is required. string - Path of the file that contains the details of all items to transfer.
- filter
File Type This property is required. string - Type of the filter file.
- filter_
file_ path This property is required. str - Path of the file that contains the details of all items to transfer.
- filter_
file_ type This property is required. str - Type of the filter file.
- filter
File Path This property is required. String - Path of the file that contains the details of all items to transfer.
- filter
File Type This property is required. String - Type of the filter file.
FilterFileType, FilterFileTypeArgs
- Azure
Blob - AzureBlobFilter file is of the type AzureBlob.
- Azure
File - AzureFileFilter file is of the type AzureFiles.
- Filter
File Type Azure Blob - AzureBlobFilter file is of the type AzureBlob.
- Filter
File Type Azure File - 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.
- Azure
Blob - AzureBlobFilter file is of the type AzureBlob.
- Azure
File - 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.
- "Azure
Blob" - AzureBlobFilter file is of the type AzureBlob.
- "Azure
File" - AzureFileFilter file is of the type AzureFiles.
HardwareEncryption, HardwareEncryptionArgs
- Enabled
- EnabledHardware-based encryption is enabled.
- Disabled
- DisabledHardware-based encryption is enabled.
- Hardware
Encryption Enabled - EnabledHardware-based encryption is enabled.
- Hardware
Encryption 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.
- User
Assigned Pulumi.Azure Native. Data Box. Inputs. User Assigned Properties - User assigned identity properties.
- Type string
- Managed service identity type.
- User
Assigned UserAssigned Properties - User assigned identity properties.
- type String
- Managed service identity type.
- user
Assigned UserAssigned Properties - User assigned identity properties.
- type string
- Managed service identity type.
- user
Assigned 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.
- user
Assigned Property Map - User assigned identity properties.
IdentityPropertiesResponse, IdentityPropertiesResponseArgs
- Type string
- Managed service identity type.
- User
Assigned Pulumi.Azure Native. Data Box. Inputs. User Assigned Properties Response - User assigned identity properties.
- Type string
- Managed service identity type.
- User
Assigned UserAssigned Properties Response - User assigned identity properties.
- type String
- Managed service identity type.
- user
Assigned UserAssigned Properties Response - User assigned identity properties.
- type string
- Managed service identity type.
- user
Assigned 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.
- user
Assigned Property Map - User assigned identity properties.
ImportDiskDetails, ImportDiskDetailsArgs
- Bit
Locker Key This property is required. string - BitLocker key used to encrypt the disk.
- Manifest
File This property is required. string - The relative path of the manifest file on the disk.
- Manifest
Hash This property is required. string - The Base16-encoded MD5 hash of the manifest file on the disk.
- Bit
Locker Key This property is required. string - BitLocker key used to encrypt the disk.
- Manifest
File This property is required. string - The relative path of the manifest file on the disk.
- Manifest
Hash This property is required. string - The Base16-encoded MD5 hash of the manifest file on the disk.
- bit
Locker Key This property is required. String - BitLocker key used to encrypt the disk.
- manifest
File This property is required. String - The relative path of the manifest file on the disk.
- manifest
Hash This property is required. String - The Base16-encoded MD5 hash of the manifest file on the disk.
- bit
Locker Key This property is required. string - BitLocker key used to encrypt the disk.
- manifest
File This property is required. string - The relative path of the manifest file on the disk.
- manifest
Hash This property is required. string - The Base16-encoded MD5 hash of the manifest file on the disk.
- bit_
locker_ key This property is required. str - BitLocker key used to encrypt the disk.
- manifest_
file This property is required. str - The relative path of the manifest file on the disk.
- manifest_
hash This property is required. str - The Base16-encoded MD5 hash of the manifest file on the disk.
- bit
Locker Key This property is required. String - BitLocker key used to encrypt the disk.
- manifest
File This property is required. String - The relative path of the manifest file on the disk.
- manifest
Hash This property is required. String - The Base16-encoded MD5 hash of the manifest file on the disk.
ImportDiskDetailsResponse, ImportDiskDetailsResponseArgs
- Backup
Manifest Cloud Path This property is required. string - Path to backed up manifest, only returned if enableManifestBackup is true.
- Bit
Locker Key This property is required. string - BitLocker key used to encrypt the disk.
- Manifest
File This property is required. string - The relative path of the manifest file on the disk.
- Manifest
Hash This property is required. string - The Base16-encoded MD5 hash of the manifest file on the disk.
- Backup
Manifest Cloud Path This property is required. string - Path to backed up manifest, only returned if enableManifestBackup is true.
- Bit
Locker Key This property is required. string - BitLocker key used to encrypt the disk.
- Manifest
File This property is required. string - The relative path of the manifest file on the disk.
- Manifest
Hash This property is required. string - The Base16-encoded MD5 hash of the manifest file on the disk.
- backup
Manifest Cloud Path This property is required. String - Path to backed up manifest, only returned if enableManifestBackup is true.
- bit
Locker Key This property is required. String - BitLocker key used to encrypt the disk.
- manifest
File This property is required. String - The relative path of the manifest file on the disk.
- manifest
Hash This property is required. String - The Base16-encoded MD5 hash of the manifest file on the disk.
- backup
Manifest Cloud Path This property is required. string - Path to backed up manifest, only returned if enableManifestBackup is true.
- bit
Locker Key This property is required. string - BitLocker key used to encrypt the disk.
- manifest
File This property is required. string - The relative path of the manifest file on the disk.
- manifest
Hash This property is required. string - The Base16-encoded MD5 hash of the manifest file on the disk.
- backup_
manifest_ cloud_ path This property is required. str - Path to backed up manifest, only returned if enableManifestBackup is true.
- bit_
locker_ key This property is required. str - BitLocker key used to encrypt the disk.
- manifest_
file This property is required. str - The relative path of the manifest file on the disk.
- manifest_
hash This property is required. str - The Base16-encoded MD5 hash of the manifest file on the disk.
- backup
Manifest Cloud Path This property is required. String - Path to backed up manifest, only returned if enableManifestBackup is true.
- bit
Locker Key This property is required. String - BitLocker key used to encrypt the disk.
- manifest
File This property is required. String - The relative path of the manifest file on the disk.
- manifest
Hash This property is required. String - The Base16-encoded MD5 hash of the manifest file on the disk.
JobDelayDetailsResponse, JobDelayDetailsResponseArgs
- Description
This property is required. string - Description of the delay.
- Error
Code This property is required. string - Delay Error code
- Resolution
Time This property is required. string - Timestamp when the delay notification was resolved.
- Start
Time This property is required. string - Timestamp when the delay notification was created.
- Status
This property is required. string - Status of notification
- Description
This property is required. string - Description of the delay.
- Error
Code This property is required. string - Delay Error code
- Resolution
Time This property is required. string - Timestamp when the delay notification was resolved.
- Start
Time This property is required. string - Timestamp when the delay notification was created.
- Status
This property is required. string - Status of notification
- description
This property is required. String - Description of the delay.
- error
Code This property is required. String - Delay Error code
- resolution
Time This property is required. String - Timestamp when the delay notification was resolved.
- start
Time This property is required. String - Timestamp when the delay notification was created.
- status
This property is required. String - Status of notification
- description
This property is required. string - Description of the delay.
- error
Code This property is required. string - Delay Error code
- resolution
Time This property is required. string - Timestamp when the delay notification was resolved.
- start
Time This property is required. string - Timestamp when the delay notification was created.
- status
This property is required. string - Status of notification
- description
This property is required. str - Description of the delay.
- error_
code This property is required. str - Delay Error code
- resolution_
time This property is required. str - Timestamp when the delay notification was resolved.
- start_
time This property is required. str - Timestamp when the delay notification was created.
- status
This property is required. str - Status of notification
- description
This property is required. String - Description of the delay.
- error
Code This property is required. String - Delay Error code
- resolution
Time This property is required. String - Timestamp when the delay notification was resolved.
- start
Time This property is required. String - Timestamp when the delay notification was created.
- status
This property is required. String - Status of notification
JobDeliveryInfo, JobDeliveryInfoArgs
- Scheduled
Date stringTime - Scheduled date time.
- Scheduled
Date stringTime - Scheduled date time.
- scheduled
Date StringTime - Scheduled date time.
- scheduled
Date stringTime - Scheduled date time.
- scheduled_
date_ strtime - Scheduled date time.
- scheduled
Date StringTime - Scheduled date time.
JobDeliveryInfoResponse, JobDeliveryInfoResponseArgs
- Scheduled
Date stringTime - Scheduled date time.
- Scheduled
Date stringTime - Scheduled date time.
- scheduled
Date StringTime - Scheduled date time.
- scheduled
Date stringTime - Scheduled date time.
- scheduled_
date_ strtime - Scheduled date time.
- scheduled
Date StringTime - Scheduled date time.
JobDeliveryType, JobDeliveryTypeArgs
- Non
Scheduled - NonScheduledNon Scheduled job.
- Scheduled
- ScheduledScheduled job.
- Job
Delivery Type Non Scheduled - NonScheduledNon Scheduled job.
- Job
Delivery Type Scheduled - ScheduledScheduled job.
- Non
Scheduled - NonScheduledNon Scheduled job.
- Scheduled
- ScheduledScheduled job.
- Non
Scheduled - NonScheduledNon Scheduled job.
- Scheduled
- ScheduledScheduled job.
- NON_SCHEDULED
- NonScheduledNon Scheduled job.
- SCHEDULED
- ScheduledScheduled job.
- "Non
Scheduled" - NonScheduledNon Scheduled job.
- "Scheduled"
- ScheduledScheduled job.
JobStagesResponse, JobStagesResponseArgs
- Delay
Information This property is required. List<Pulumi.Azure Native. Data Box. Inputs. Job Delay Details Response> - Delay information for the job stages.
- Display
Name This property is required. string - Display name of the job stage.
- Job
Stage Details This property is required. object - Job Stage Details
- Stage
Name This property is required. string - Name of the job stage.
- Stage
Status This property is required. string - Status of the job stage.
- Stage
Time This property is required. string - Time for the job stage in UTC ISO 8601 format.
- Delay
Information This property is required. []JobDelay Details Response - Delay information for the job stages.
- Display
Name This property is required. string - Display name of the job stage.
- Job
Stage Details This property is required. interface{} - Job Stage Details
- Stage
Name This property is required. string - Name of the job stage.
- Stage
Status This property is required. string - Status of the job stage.
- Stage
Time This property is required. string - Time for the job stage in UTC ISO 8601 format.
- delay
Information This property is required. List<JobDelay Details Response> - Delay information for the job stages.
- display
Name This property is required. String - Display name of the job stage.
- job
Stage Details This property is required. Object - Job Stage Details
- stage
Name This property is required. String - Name of the job stage.
- stage
Status This property is required. String - Status of the job stage.
- stage
Time This property is required. String - Time for the job stage in UTC ISO 8601 format.
- delay
Information This property is required. JobDelay Details Response[] - Delay information for the job stages.
- display
Name This property is required. string - Display name of the job stage.
- job
Stage Details This property is required. any - Job Stage Details
- stage
Name This property is required. string - Name of the job stage.
- stage
Status This property is required. string - Status of the job stage.
- stage
Time This property is required. string - Time for the job stage in UTC ISO 8601 format.
- delay_
information This property is required. Sequence[JobDelay Details Response] - Delay information for the job stages.
- display_
name This property is required. str - Display name of the job stage.
- job_
stage_ details This property is required. Any - Job Stage Details
- stage_
name This property is required. str - Name of the job stage.
- stage_
status This property is required. str - Status of the job stage.
- stage_
time This property is required. str - Time for the job stage in UTC ISO 8601 format.
- delay
Information This property is required. List<Property Map> - Delay information for the job stages.
- display
Name This property is required. String - Display name of the job stage.
- job
Stage Details This property is required. Any - Job Stage Details
- stage
Name This property is required. String - Name of the job stage.
- stage
Status This property is required. String - Status of the job stage.
- stage
Time This property is required. String - Time for the job stage in UTC ISO 8601 format.
KekType, KekTypeArgs
- Microsoft
Managed - MicrosoftManagedKey encryption key is managed by Microsoft.
- Customer
Managed - CustomerManagedKey encryption key is managed by the Customer.
- Kek
Type Microsoft Managed - MicrosoftManagedKey encryption key is managed by Microsoft.
- Kek
Type Customer Managed - 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.
- Microsoft
Managed - MicrosoftManagedKey encryption key is managed by Microsoft.
- Customer
Managed - 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.
- "Microsoft
Managed" - MicrosoftManagedKey encryption key is managed by Microsoft.
- "Customer
Managed" - CustomerManagedKey encryption key is managed by the Customer.
KeyEncryptionKey, KeyEncryptionKeyArgs
- Kek
Type This property is required. string | Pulumi.Azure Native. Data Box. Kek Type - Type of encryption key used for key encryption.
- Identity
Properties Pulumi.Azure Native. Data Box. Inputs. Identity Properties - Managed identity properties used for key encryption.
- Kek
Url string - Key encryption key. It is required in case of Customer managed KekType.
- Kek
Vault stringResource ID - Kek vault resource id. It is required in case of Customer managed KekType.
- Kek
Type This property is required. string | KekType - Type of encryption key used for key encryption.
- Identity
Properties IdentityProperties - Managed identity properties used for key encryption.
- Kek
Url string - Key encryption key. It is required in case of Customer managed KekType.
- Kek
Vault stringResource ID - Kek vault resource id. It is required in case of Customer managed KekType.
- kek
Type This property is required. String | KekType - Type of encryption key used for key encryption.
- identity
Properties IdentityProperties - Managed identity properties used for key encryption.
- kek
Url String - Key encryption key. It is required in case of Customer managed KekType.
- kek
Vault StringResource ID - Kek vault resource id. It is required in case of Customer managed KekType.
- kek
Type This property is required. string | KekType - Type of encryption key used for key encryption.
- identity
Properties IdentityProperties - Managed identity properties used for key encryption.
- kek
Url string - Key encryption key. It is required in case of Customer managed KekType.
- kek
Vault stringResource ID - Kek vault resource id. It is required in case of Customer managed KekType.
- kek_
type This property is required. 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.
- kek
Type This property is required. String | "MicrosoftManaged" | "Customer Managed" - Type of encryption key used for key encryption.
- identity
Properties Property Map - Managed identity properties used for key encryption.
- kek
Url String - Key encryption key. It is required in case of Customer managed KekType.
- kek
Vault StringResource ID - Kek vault resource id. It is required in case of Customer managed KekType.
KeyEncryptionKeyResponse, KeyEncryptionKeyResponseArgs
- Kek
Type This property is required. string - Type of encryption key used for key encryption.
- Identity
Properties Pulumi.Azure Native. Data Box. Inputs. Identity Properties Response - Managed identity properties used for key encryption.
- Kek
Url string - Key encryption key. It is required in case of Customer managed KekType.
- Kek
Vault stringResource ID - Kek vault resource id. It is required in case of Customer managed KekType.
- Kek
Type This property is required. string - Type of encryption key used for key encryption.
- Identity
Properties IdentityProperties Response - Managed identity properties used for key encryption.
- Kek
Url string - Key encryption key. It is required in case of Customer managed KekType.
- Kek
Vault stringResource ID - Kek vault resource id. It is required in case of Customer managed KekType.
- kek
Type This property is required. String - Type of encryption key used for key encryption.
- identity
Properties IdentityProperties Response - Managed identity properties used for key encryption.
- kek
Url String - Key encryption key. It is required in case of Customer managed KekType.
- kek
Vault StringResource ID - Kek vault resource id. It is required in case of Customer managed KekType.
- kek
Type This property is required. string - Type of encryption key used for key encryption.
- identity
Properties IdentityProperties Response - Managed identity properties used for key encryption.
- kek
Url string - Key encryption key. It is required in case of Customer managed KekType.
- kek
Vault stringResource ID - Kek vault resource id. It is required in case of Customer managed KekType.
- kek_
type This property is required. 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.
- kek
Type This property is required. String - Type of encryption key used for key encryption.
- identity
Properties Property Map - Managed identity properties used for key encryption.
- kek
Url String - Key encryption key. It is required in case of Customer managed KekType.
- kek
Vault StringResource ID - Kek vault resource id. It is required in case of Customer managed KekType.
LastMitigationActionOnJobResponse, LastMitigationActionOnJobResponseArgs
- Action
Date stringTime In Utc - Action performed date time
- Customer
Resolution string - 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
- Action
Date stringTime In Utc - Action performed date time
- Customer
Resolution string - 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
- action
Date StringTime In Utc - Action performed date time
- customer
Resolution String - Resolution code provided by customer
- is
Performed BooleanBy Customer - Action performed by customer, possibility is that mitigation might happen by customer or service or by ops
- action
Date stringTime In Utc - Action performed date time
- customer
Resolution string - Resolution code provided by customer
- is
Performed 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
- action
Date StringTime In Utc - Action performed date time
- customer
Resolution String - Resolution code provided by customer
- is
Performed 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).
- Log
Collection Level Error - ErrorOnly Errors will be collected in the logs.
- Log
Collection 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
- Resource
Group Id This property is required. string - Resource Group Id of the compute disks.
- Staging
Storage Account Id This property is required. string - 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 Id This property is required. string - Resource Group Id of the compute disks.
- Staging
Storage Account Id This property is required. string - 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 Id This property is required. String - Resource Group Id of the compute disks.
- staging
Storage Account Id This property is required. String - 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 Id This property is required. string - Resource Group Id of the compute disks.
- staging
Storage Account Id This property is required. string - 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_ id This property is required. str - Resource Group Id of the compute disks.
- staging_
storage_ account_ id This property is required. str - 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 : @#-$%^!+=;:_()]+
- resource
Group Id This property is required. String - Resource Group Id of the compute disks.
- staging
Storage Account Id This property is required. String - 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
- Resource
Group Id This property is required. string - Resource Group Id of the compute disks.
- Staging
Storage Account Id This property is required. string - Resource Id of the storage account that can be used to copy the vhd for staging.
- Resource
Group Id This property is required. string - Resource Group Id of the compute disks.
- Staging
Storage Account Id This property is required. string - Resource Id of the storage account that can be used to copy the vhd for staging.
- resource
Group Id This property is required. String - Resource Group Id of the compute disks.
- staging
Storage Account Id This property is required. String - Resource Id of the storage account that can be used to copy the vhd for staging.
- resource
Group Id This property is required. string - Resource Group Id of the compute disks.
- staging
Storage Account Id This property is required. string - Resource Id of the storage account that can be used to copy the vhd for staging.
- resource_
group_ id This property is required. str - Resource Group Id of the compute disks.
- staging_
storage_ account_ id This property is required. str - Resource Id of the storage account that can be used to copy the vhd for staging.
- resource
Group Id This property is required. String - Resource Group Id of the compute disks.
- staging
Storage Account Id This property is required. String - Resource Id of the storage account that can be used to copy the vhd for staging.
NotificationPreference, NotificationPreferenceArgs
- Send
Notification This property is required. bool - Notification is required or not.
- Stage
Name This property is required. string | Pulumi.Azure Native. Data Box. Notification Stage Name - Name of the stage.
- Send
Notification This property is required. bool - Notification is required or not.
- Stage
Name This property is required. string | NotificationStage Name - Name of the stage.
- send
Notification This property is required. Boolean - Notification is required or not.
- stage
Name This property is required. String | NotificationStage Name - Name of the stage.
- send
Notification This property is required. boolean - Notification is required or not.
- stage
Name This property is required. string | NotificationStage Name - Name of the stage.
- send_
notification This property is required. bool - Notification is required or not.
- stage_
name This property is required. str | NotificationStage Name - Name of the stage.
- send
Notification This property is required. Boolean - Notification is required or not.
- stage
Name This property is required. String | "DevicePrepared" | "Dispatched" | "Delivered" | "Picked Up" | "At Azure DC" | "Data Copy" | "Created" | "Shipped To Customer" - Name of the stage.
NotificationPreferenceResponse, NotificationPreferenceResponseArgs
- Send
Notification This property is required. bool - Notification is required or not.
- Stage
Name This property is required. string - Name of the stage.
- Send
Notification This property is required. bool - Notification is required or not.
- Stage
Name This property is required. string - Name of the stage.
- send
Notification This property is required. Boolean - Notification is required or not.
- stage
Name This property is required. String - Name of the stage.
- send
Notification This property is required. boolean - Notification is required or not.
- stage
Name This property is required. string - Name of the stage.
- send_
notification This property is required. bool - Notification is required or not.
- stage_
name This property is required. str - Name of the stage.
- send
Notification This property is required. Boolean - Notification is required or not.
- stage
Name This property is required. String - Name of the stage.
NotificationStageName, NotificationStageNameArgs
- 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.
- Notification
Stage Name Device Prepared - DevicePreparedNotification at device prepared stage.
- Notification
Stage Name Dispatched - DispatchedNotification at device dispatched stage.
- Notification
Stage Name Delivered - DeliveredNotification at device delivered stage.
- Notification
Stage Name Picked Up - PickedUpNotification at device picked up from user stage.
- Notification
Stage Name At Azure DC - AtAzureDCNotification at device received at Azure datacenter stage.
- Notification
Stage Name Data Copy - DataCopyNotification at data copy started stage.
- Notification
Stage Name Created - CreatedNotification at job created stage.
- Notification
Stage Name Shipped To 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.
- 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.
- 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.
- "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.
PackageCarrierDetails, PackageCarrierDetailsArgs
- Carrier
Account stringNumber - Carrier Account Number of customer for customer disk.
- Carrier
Name string - Name of the carrier.
- Tracking
Id string - Tracking Id of shipment.
- Carrier
Account stringNumber - Carrier Account Number of customer for customer disk.
- Carrier
Name string - Name of the carrier.
- Tracking
Id string - Tracking Id of shipment.
- carrier
Account StringNumber - Carrier Account Number of customer for customer disk.
- carrier
Name String - Name of the carrier.
- tracking
Id String - Tracking Id of shipment.
- carrier
Account stringNumber - Carrier Account Number of customer for customer disk.
- carrier
Name string - Name of the carrier.
- tracking
Id 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.
- carrier
Account StringNumber - Carrier Account Number of customer for customer disk.
- carrier
Name String - Name of the carrier.
- tracking
Id String - Tracking Id of shipment.
PackageCarrierDetailsResponse, PackageCarrierDetailsResponseArgs
- Carrier
Account stringNumber - Carrier Account Number of customer for customer disk.
- Carrier
Name string - Name of the carrier.
- Tracking
Id string - Tracking Id of shipment.
- Carrier
Account stringNumber - Carrier Account Number of customer for customer disk.
- Carrier
Name string - Name of the carrier.
- Tracking
Id string - Tracking Id of shipment.
- carrier
Account StringNumber - Carrier Account Number of customer for customer disk.
- carrier
Name String - Name of the carrier.
- tracking
Id String - Tracking Id of shipment.
- carrier
Account stringNumber - Carrier Account Number of customer for customer disk.
- carrier
Name string - Name of the carrier.
- tracking
Id 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.
- carrier
Account StringNumber - Carrier Account Number of customer for customer disk.
- carrier
Name String - Name of the carrier.
- tracking
Id String - Tracking Id of shipment.
PackageCarrierInfoResponse, PackageCarrierInfoResponseArgs
- Carrier
Name string - Name of the carrier.
- Tracking
Id string - Tracking Id of shipment.
- Carrier
Name string - Name of the carrier.
- Tracking
Id string - Tracking Id of shipment.
- carrier
Name String - Name of the carrier.
- tracking
Id String - Tracking Id of shipment.
- carrier
Name string - Name of the carrier.
- tracking
Id string - Tracking Id of shipment.
- carrier_
name str - Name of the carrier.
- tracking_
id str - Tracking Id of shipment.
- carrier
Name String - Name of the carrier.
- tracking
Id String - Tracking Id of shipment.
PackageShippingDetailsResponse, PackageShippingDetailsResponseArgs
- Carrier
Name This property is required. string - Name of the carrier.
- Tracking
Id This property is required. string - Tracking Id of shipment.
- Tracking
Url This property is required. string - Url where shipment can be tracked.
- Carrier
Name This property is required. string - Name of the carrier.
- Tracking
Id This property is required. string - Tracking Id of shipment.
- Tracking
Url This property is required. string - Url where shipment can be tracked.
- carrier
Name This property is required. String - Name of the carrier.
- tracking
Id This property is required. String - Tracking Id of shipment.
- tracking
Url This property is required. String - Url where shipment can be tracked.
- carrier
Name This property is required. string - Name of the carrier.
- tracking
Id This property is required. string - Tracking Id of shipment.
- tracking
Url This property is required. string - Url where shipment can be tracked.
- carrier_
name This property is required. str - Name of the carrier.
- tracking_
id This property is required. str - Tracking Id of shipment.
- tracking_
url This property is required. str - Url where shipment can be tracked.
- carrier
Name This property is required. String - Name of the carrier.
- tracking
Id This property is required. String - Tracking Id of shipment.
- tracking
Url This property is required. String - Url where shipment can be tracked.
Preferences, PreferencesArgs
- Encryption
Preferences Pulumi.Azure Native. Data Box. Inputs. Encryption Preferences - Preferences related to the Encryption.
- Preferred
Data List<string>Center Region - Preferred data center region.
- Reverse
Transport Pulumi.Preferences Azure Native. Data Box. Inputs. Transport Preferences - Optional Preferences related to the reverse shipment logistics of the sku.
- Storage
Account List<Union<string, Pulumi.Access Tier Preferences Azure Native. Data Box. Storage Account Access Tier>> - Preferences related to the Access Tier of storage accounts.
- Transport
Preferences Pulumi.Azure Native. Data Box. Inputs. Transport Preferences - Preferences related to the shipment logistics of the sku.
- Encryption
Preferences EncryptionPreferences - Preferences related to the Encryption.
- Preferred
Data []stringCenter Region - Preferred data center region.
- Reverse
Transport TransportPreferences Preferences - Optional Preferences related to the reverse shipment logistics of the sku.
- Storage
Account []stringAccess Tier Preferences - Preferences related to the Access Tier of storage accounts.
- Transport
Preferences TransportPreferences - Preferences related to the shipment logistics of the sku.
- encryption
Preferences EncryptionPreferences - Preferences related to the Encryption.
- preferred
Data List<String>Center Region - Preferred data center region.
- reverse
Transport TransportPreferences Preferences - Optional Preferences related to the reverse shipment logistics of the sku.
- storage
Account List<Either<String,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.
- encryption
Preferences EncryptionPreferences - Preferences related to the Encryption.
- preferred
Data string[]Center Region - Preferred data center region.
- reverse
Transport TransportPreferences Preferences - Optional Preferences related to the reverse shipment logistics of the sku.
- storage
Account (string | 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.
- 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.
- encryption
Preferences Property Map - Preferences related to the Encryption.
- preferred
Data List<String>Center Region - Preferred data center region.
- reverse
Transport Property MapPreferences - Optional Preferences related to the reverse shipment logistics of the sku.
- storage
Account List<String | "Archive">Access Tier Preferences - Preferences related to the Access Tier of storage accounts.
- transport
Preferences Property Map - Preferences related to the shipment logistics of the sku.
PreferencesResponse, PreferencesResponseArgs
- Encryption
Preferences Pulumi.Azure Native. Data Box. Inputs. Encryption Preferences Response - Preferences related to the Encryption.
- Preferred
Data List<string>Center Region - Preferred data center region.
- Reverse
Transport Pulumi.Preferences Azure Native. Data Box. Inputs. Transport Preferences Response - Optional Preferences related to the reverse shipment logistics of the sku.
- Storage
Account List<string>Access Tier Preferences - Preferences related to the Access Tier of storage accounts.
- Transport
Preferences Pulumi.Azure Native. Data Box. Inputs. Transport Preferences Response - Preferences related to the shipment logistics of the sku.
- Encryption
Preferences EncryptionPreferences Response - Preferences related to the Encryption.
- Preferred
Data []stringCenter Region - Preferred data center region.
- Reverse
Transport TransportPreferences Preferences Response - Optional Preferences related to the reverse shipment logistics of the sku.
- Storage
Account []stringAccess Tier Preferences - Preferences related to the Access Tier of storage accounts.
- Transport
Preferences TransportPreferences Response - Preferences related to the shipment logistics of the sku.
- encryption
Preferences EncryptionPreferences Response - Preferences related to the Encryption.
- preferred
Data List<String>Center Region - Preferred data center region.
- reverse
Transport TransportPreferences Preferences Response - Optional Preferences related to the reverse shipment logistics of the sku.
- storage
Account List<String>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.
- encryption
Preferences EncryptionPreferences Response - Preferences related to the Encryption.
- preferred
Data string[]Center Region - Preferred data center region.
- reverse
Transport TransportPreferences Preferences Response - Optional Preferences related to the reverse shipment logistics of the sku.
- storage
Account string[]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.
- 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.
- encryption
Preferences Property Map - Preferences related to the Encryption.
- preferred
Data List<String>Center Region - Preferred data center region.
- reverse
Transport Property MapPreferences - Optional Preferences related to the reverse shipment logistics of the sku.
- storage
Account List<String>Access Tier Preferences - Preferences related to the Access Tier of storage accounts.
- transport
Preferences Property Map - Preferences related to the shipment logistics of the sku.
ResourceIdentity, ResourceIdentityArgs
- Type string
- Identity type
- User
Assigned List<string>Identities - User Assigned Identities
- Type string
- Identity type
- User
Assigned []stringIdentities - User Assigned Identities
- type String
- Identity type
- user
Assigned List<String>Identities - User Assigned Identities
- type string
- Identity type
- user
Assigned string[]Identities - User Assigned Identities
- type str
- Identity type
- user_
assigned_ Sequence[str]identities - User Assigned Identities
- type String
- Identity type
- user
Assigned List<String>Identities - User Assigned Identities
ResourceIdentityResponse, ResourceIdentityResponseArgs
- Principal
Id This property is required. string - Service Principal Id backing the Msi
- Tenant
Id This property is required. string - Home Tenant Id
- Type string
- Identity type
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Data Box. Inputs. User Assigned Identity Response> - User Assigned Identities
- Principal
Id This property is required. string - Service Principal Id backing the Msi
- Tenant
Id This property is required. string - Home Tenant Id
- Type string
- Identity type
- User
Assigned map[string]UserIdentities Assigned Identity Response - User Assigned Identities
- principal
Id This property is required. String - Service Principal Id backing the Msi
- tenant
Id This property is required. String - Home Tenant Id
- type String
- Identity type
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - User Assigned Identities
- principal
Id This property is required. string - Service Principal Id backing the Msi
- tenant
Id This property is required. string - Home Tenant Id
- type string
- Identity type
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - User Assigned Identities
- principal_
id This property is required. str - Service Principal Id backing the Msi
- tenant_
id This property is required. str - Home Tenant Id
- type str
- Identity type
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Response] - User Assigned Identities
- principal
Id This property is required. String - Service Principal Id backing the Msi
- tenant
Id This property is required. String - Home Tenant Id
- type String
- Identity type
- user
Assigned Map<Property Map>Identities - User Assigned Identities
ReverseShippingDetails, ReverseShippingDetailsArgs
- Contact
Details Pulumi.Azure Native. Data Box. Inputs. Contact Info - Contact Info.
- Shipping
Address Pulumi.Azure Native. Data Box. Inputs. Shipping Address - 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.
- contact
Details ContactInfo - Contact Info.
- shipping
Address 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.
- contact_
details ContactInfo - Contact Info.
- shipping_
address ShippingAddress - Shipping address where customer wishes to receive the device.
- contact
Details Property Map - Contact Info.
- shipping
Address Property Map - Shipping address where customer wishes to receive the device.
ReverseShippingDetailsResponse, ReverseShippingDetailsResponseArgs
- Is
Updated This property is required. bool - A flag to indicate whether Reverse Shipping details are updated or not after device has been prepared. Read only field
- Contact
Details Pulumi.Azure Native. Data Box. Inputs. Contact Info Response - Contact Info.
- Shipping
Address Pulumi.Azure Native. Data Box. Inputs. Shipping Address Response - Shipping address where customer wishes to receive the device.
- Is
Updated This property is required. 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.
- is
Updated This property is required. Boolean - 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.
- is
Updated This property is required. boolean - 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.
- is_
updated This property is required. 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.
- is
Updated This property is required. Boolean - A flag to indicate whether Reverse Shipping details are updated or not after device has been prepared. Read only field
- contact
Details Property Map - Contact Info.
- shipping
Address Property Map - Shipping address where customer wishes to receive the device.
ShippingAddress, ShippingAddressArgs
- Country
This property is required. string - Name of the Country.
- Street
Address1 This property is required. string - Street Address line 1.
- Address
Type string | Pulumi.Azure Native. Data Box. Address Type - Type of address.
- City string
- Name of the City.
- Company
Name string - Name of the company.
- Postal
Code string - Postal code.
- Skip
Address boolValidation - Flag to indicate if customer has chosen to skip default address validation
- State
Or stringProvince - Name of the State or Province.
- Street
Address2 string - Street Address line 2.
- Street
Address3 string - Street Address line 3.
- Tax
Identification stringNumber - Tax Identification Number
- Zip
Extended stringCode - Extended Zip Code.
- Country
This property is required. string - Name of the Country.
- Street
Address1 This property is required. string - Street Address line 1.
- Address
Type string | AddressType - Type of address.
- City string
- Name of the City.
- Company
Name string - Name of the company.
- Postal
Code string - Postal code.
- Skip
Address boolValidation - Flag to indicate if customer has chosen to skip default address validation
- State
Or stringProvince - Name of the State or Province.
- Street
Address2 string - Street Address line 2.
- Street
Address3 string - Street Address line 3.
- Tax
Identification stringNumber - Tax Identification Number
- Zip
Extended stringCode - Extended Zip Code.
- country
This property is required. String - Name of the Country.
- street
Address1 This property is required. String - Street Address line 1.
- address
Type String | AddressType - Type of address.
- city String
- Name of the City.
- company
Name String - Name of the company.
- postal
Code String - Postal code.
- skip
Address BooleanValidation - Flag to indicate if customer has chosen to skip default address validation
- state
Or StringProvince - Name of the State or Province.
- street
Address2 String - Street Address line 2.
- street
Address3 String - Street Address line 3.
- tax
Identification StringNumber - Tax Identification Number
- zip
Extended StringCode - Extended Zip Code.
- country
This property is required. string - Name of the Country.
- street
Address1 This property is required. string - Street Address line 1.
- address
Type string | AddressType - Type of address.
- city string
- Name of the City.
- company
Name string - Name of the company.
- postal
Code string - Postal code.
- skip
Address booleanValidation - Flag to indicate if customer has chosen to skip default address validation
- state
Or stringProvince - Name of the State or Province.
- street
Address2 string - Street Address line 2.
- street
Address3 string - Street Address line 3.
- tax
Identification stringNumber - Tax Identification Number
- zip
Extended stringCode - Extended Zip Code.
- country
This property is required. str - Name of the Country.
- street_
address1 This property is required. 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
This property is required. String - Name of the Country.
- street
Address1 This property is required. String - Street Address line 1.
- address
Type String | "None" | "Residential" | "Commercial" - Type of address.
- city String
- Name of the City.
- company
Name String - Name of the company.
- postal
Code String - Postal code.
- skip
Address BooleanValidation - Flag to indicate if customer has chosen to skip default address validation
- state
Or StringProvince - Name of the State or Province.
- street
Address2 String - Street Address line 2.
- street
Address3 String - Street Address line 3.
- tax
Identification StringNumber - Tax Identification Number
- zip
Extended StringCode - Extended Zip Code.
ShippingAddressResponse, ShippingAddressResponseArgs
- Country
This property is required. string - Name of the Country.
- Street
Address1 This property is required. string - Street Address line 1.
- Address
Type string - Type of address.
- City string
- Name of the City.
- Company
Name string - Name of the company.
- Postal
Code string - Postal code.
- Skip
Address boolValidation - Flag to indicate if customer has chosen to skip default address validation
- State
Or stringProvince - Name of the State or Province.
- Street
Address2 string - Street Address line 2.
- Street
Address3 string - Street Address line 3.
- Tax
Identification stringNumber - Tax Identification Number
- Zip
Extended stringCode - Extended Zip Code.
- Country
This property is required. string - Name of the Country.
- Street
Address1 This property is required. string - Street Address line 1.
- Address
Type string - Type of address.
- City string
- Name of the City.
- Company
Name string - Name of the company.
- Postal
Code string - Postal code.
- Skip
Address boolValidation - Flag to indicate if customer has chosen to skip default address validation
- State
Or stringProvince - Name of the State or Province.
- Street
Address2 string - Street Address line 2.
- Street
Address3 string - Street Address line 3.
- Tax
Identification stringNumber - Tax Identification Number
- Zip
Extended stringCode - Extended Zip Code.
- country
This property is required. String - Name of the Country.
- street
Address1 This property is required. String - Street Address line 1.
- address
Type String - Type of address.
- city String
- Name of the City.
- company
Name String - Name of the company.
- postal
Code String - Postal code.
- skip
Address BooleanValidation - Flag to indicate if customer has chosen to skip default address validation
- state
Or StringProvince - Name of the State or Province.
- street
Address2 String - Street Address line 2.
- street
Address3 String - Street Address line 3.
- tax
Identification StringNumber - Tax Identification Number
- zip
Extended StringCode - Extended Zip Code.
- country
This property is required. string - Name of the Country.
- street
Address1 This property is required. string - Street Address line 1.
- address
Type string - Type of address.
- city string
- Name of the City.
- company
Name string - Name of the company.
- postal
Code string - Postal code.
- skip
Address booleanValidation - Flag to indicate if customer has chosen to skip default address validation
- state
Or stringProvince - Name of the State or Province.
- street
Address2 string - Street Address line 2.
- street
Address3 string - Street Address line 3.
- tax
Identification stringNumber - Tax Identification Number
- zip
Extended stringCode - Extended Zip Code.
- country
This property is required. str - Name of the Country.
- street_
address1 This property is required. 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
This property is required. String - Name of the Country.
- street
Address1 This property is required. String - Street Address line 1.
- address
Type String - Type of address.
- city String
- Name of the City.
- company
Name String - Name of the company.
- postal
Code String - Postal code.
- skip
Address BooleanValidation - Flag to indicate if customer has chosen to skip default address validation
- state
Or StringProvince - Name of the State or Province.
- street
Address2 String - Street Address line 2.
- street
Address3 String - Street Address line 3.
- tax
Identification StringNumber - Tax Identification Number
- zip
Extended StringCode - Extended Zip Code.
Sku, SkuArgs
- Name
This property is required. string | Pulumi.Azure Native. Data Box. Sku Name - The sku name.
- Display
Name string - The display name of the sku.
- Family string
- The sku family.
- Name
This property is required. string | SkuName - The sku name.
- Display
Name string - The display name of the sku.
- Family string
- The sku family.
- name
This property is required. String | SkuName - The sku name.
- display
Name String - The display name of the sku.
- family String
- The sku family.
- name
This property is required. string | SkuName - The sku name.
- display
Name string - The display name of the sku.
- family string
- The sku family.
- name
This property is required. str | SkuName - The sku name.
- display_
name str - The display name of the sku.
- family str
- The sku family.
- name
This property is required. String | "DataBox" | "Data Box Disk" | "Data Box Heavy" | "Data Box Customer Disk" - The sku name.
- display
Name String - The display name of the sku.
- family String
- The sku family.
SkuName, SkuNameArgs
- Data
Box - DataBoxData Box.
- Data
Box Disk - DataBoxDiskData Box Disk.
- Data
Box Heavy - DataBoxHeavyData Box Heavy.
- Data
Box Customer Disk - DataBoxCustomerDiskData Box Customer Disk.
- Sku
Name Data Box - DataBoxData Box.
- Sku
Name Data Box Disk - DataBoxDiskData Box Disk.
- Sku
Name Data Box Heavy - DataBoxHeavyData Box Heavy.
- Sku
Name Data Box 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.
- Data
Box - DataBoxData Box.
- Data
Box Disk - DataBoxDiskData Box Disk.
- Data
Box Heavy - DataBoxHeavyData Box Heavy.
- Data
Box 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.
- "Data
Box" - DataBoxData Box.
- "Data
Box Disk" - DataBoxDiskData Box Disk.
- "Data
Box Heavy" - DataBoxHeavyData Box Heavy.
- "Data
Box Customer Disk" - DataBoxCustomerDiskData Box Customer Disk.
SkuResponse, SkuResponseArgs
- Model
This property is required. string - The model name.
- Name
This property is required. string - The sku name.
- Display
Name string - The display name of the sku.
- Family string
- The sku family.
- Model
This property is required. string - The model name.
- Name
This property is required. string - The sku name.
- Display
Name string - The display name of the sku.
- Family string
- The sku family.
- model
This property is required. String - The model name.
- name
This property is required. String - The sku name.
- display
Name String - The display name of the sku.
- family String
- The sku family.
- model
This property is required. string - The model name.
- name
This property is required. string - The sku name.
- display
Name string - The display name of the sku.
- family string
- The sku family.
- model
This property is required. str - The model name.
- name
This property is required. str - The sku name.
- display_
name str - The display name of the sku.
- family str
- The sku family.
- model
This property is required. String - The model name.
- name
This property is required. String - The sku name.
- display
Name String - The display name of the sku.
- family String
- The sku family.
StorageAccountAccessTier, StorageAccountAccessTierArgs
- Archive
- ArchiveArchive Access Tier shares requested by the customer.
- Storage
Account 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
- Storage
Account Id This property is required. string - 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 Id This property is required. string - 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 Id This property is required. String - 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 Id This property is required. string - 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_ id This property is required. str - 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 : @#-$%^!+=;:_()]+
- storage
Account Id This property is required. String - 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
- Storage
Account Id This property is required. string - Storage Account Resource Id.
- Storage
Account Id This property is required. string - Storage Account Resource Id.
- storage
Account Id This property is required. String - Storage Account Resource Id.
- storage
Account Id This property is required. string - Storage Account Resource Id.
- storage_
account_ id This property is required. str - Storage Account Resource Id.
- storage
Account Id This property is required. String - Storage Account Resource Id.
SystemDataResponse, SystemDataResponseArgs
- Created
At This property is required. string - The timestamp of resource creation (UTC)
- Created
By This property is required. string - A string identifier for the identity that created the resource
- Created
By Type This property is required. string - The type of identity that created the resource: user, application, managedIdentity
- Last
Modified At This property is required. string - The timestamp of resource last modification (UTC)
- Last
Modified By This property is required. string - A string identifier for the identity that last modified the resource
- Last
Modified By Type This property is required. string - The type of identity that last modified the resource: user, application, managedIdentity
- Created
At This property is required. string - The timestamp of resource creation (UTC)
- Created
By This property is required. string - A string identifier for the identity that created the resource
- Created
By Type This property is required. string - The type of identity that created the resource: user, application, managedIdentity
- Last
Modified At This property is required. string - The timestamp of resource last modification (UTC)
- Last
Modified By This property is required. string - A string identifier for the identity that last modified the resource
- Last
Modified By Type This property is required. string - The type of identity that last modified the resource: user, application, managedIdentity
- created
At This property is required. String - The timestamp of resource creation (UTC)
- created
By This property is required. String - A string identifier for the identity that created the resource
- created
By Type This property is required. String - The type of identity that created the resource: user, application, managedIdentity
- last
Modified At This property is required. String - The timestamp of resource last modification (UTC)
- last
Modified By This property is required. String - A string identifier for the identity that last modified the resource
- last
Modified By Type This property is required. String - The type of identity that last modified the resource: user, application, managedIdentity
- created
At This property is required. string - The timestamp of resource creation (UTC)
- created
By This property is required. string - A string identifier for the identity that created the resource
- created
By Type This property is required. string - The type of identity that created the resource: user, application, managedIdentity
- last
Modified At This property is required. string - The timestamp of resource last modification (UTC)
- last
Modified By This property is required. string - A string identifier for the identity that last modified the resource
- last
Modified By Type This property is required. string - The type of identity that last modified the resource: user, application, managedIdentity
- created_
at This property is required. str - The timestamp of resource creation (UTC)
- created_
by This property is required. str - A string identifier for the identity that created the resource
- created_
by_ type This property is required. str - The type of identity that created the resource: user, application, managedIdentity
- last_
modified_ at This property is required. str - The timestamp of resource last modification (UTC)
- last_
modified_ by This property is required. str - A string identifier for the identity that last modified the resource
- last_
modified_ by_ type This property is required. str - The type of identity that last modified the resource: user, application, managedIdentity
- created
At This property is required. String - The timestamp of resource creation (UTC)
- created
By This property is required. String - A string identifier for the identity that created the resource
- created
By Type This property is required. String - The type of identity that created the resource: user, application, managedIdentity
- last
Modified At This property is required. String - The timestamp of resource last modification (UTC)
- last
Modified By This property is required. String - A string identifier for the identity that last modified the resource
- last
Modified By Type This property is required. String - The type of identity that last modified the resource: user, application, managedIdentity
TransferAllDetails, TransferAllDetailsArgs
- Data
Account Type This property is required. string | Pulumi.Azure Native. Data Box. Data 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
- Data
Account Type This property is required. string | DataAccount 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
- data
Account Type This property is required. String | DataAccount Type - Type of the account of data
- transfer
All BooleanBlobs - To indicate if all Azure blobs have to be transferred
- transfer
All BooleanFiles - To indicate if all Azure Files have to be transferred
- data
Account Type This property is required. string | DataAccount Type - Type of the account of data
- transfer
All booleanBlobs - To indicate if all Azure blobs have to be transferred
- transfer
All booleanFiles - To indicate if all Azure Files have to be transferred
- data_
account_ type This property is required. str | DataAccount 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
- data
Account Type This property is required. String | "StorageAccount" | "Managed Disk" - Type of the account of data
- transfer
All BooleanBlobs - To indicate if all Azure blobs have to be transferred
- transfer
All BooleanFiles - To indicate if all Azure Files have to be transferred
TransferAllDetailsResponse, TransferAllDetailsResponseArgs
- Data
Account Type This property is required. string - 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
- Data
Account Type This property is required. string - 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
- data
Account Type This property is required. String - Type of the account of data
- transfer
All BooleanBlobs - To indicate if all Azure blobs have to be transferred
- transfer
All BooleanFiles - To indicate if all Azure Files have to be transferred
- data
Account Type This property is required. string - Type of the account of data
- transfer
All booleanBlobs - To indicate if all Azure blobs have to be transferred
- transfer
All booleanFiles - To indicate if all Azure Files have to be transferred
- data_
account_ type This property is required. str - 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
- data
Account Type This property is required. String - Type of the account of data
- transfer
All BooleanBlobs - To indicate if all Azure blobs have to be transferred
- transfer
All BooleanFiles - To indicate if all Azure Files have to be transferred
TransferConfiguration, TransferConfigurationArgs
- Transfer
Configuration Type This property is required. string | Pulumi.Azure Native. Data Box. Transfer Configuration Type - Type of the configuration for transfer.
- Transfer
All 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
- Transfer
Filter 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.
- Transfer
Configuration Type This property is required. string | TransferConfiguration 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.
- transfer
Configuration Type This property is required. String | TransferConfiguration 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.
- transfer
Configuration Type This property is required. string | TransferConfiguration 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.
- transfer_
configuration_ type This property is required. str | TransferConfiguration 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.
- transfer
Configuration Type This property is required. String | "TransferAll" | "Transfer Using Filter" - Type of the configuration for transfer.
- transfer
All 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
- transfer
Filter 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
- Transfer
Configuration Type This property is required. string - Type of the configuration for transfer.
- Transfer
All 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
- Transfer
Filter 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.
- Transfer
Configuration Type This property is required. string - 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.
- transfer
Configuration Type This property is required. String - 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.
- transfer
Configuration Type This property is required. string - 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.
- transfer_
configuration_ type This property is required. str - 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.
- transfer
Configuration Type This property is required. String - Type of the configuration for transfer.
- transfer
All 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
- transfer
Filter 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
Transfer
All Details Response - Details to transfer all data.
- include
Transfer
All Details Response - Details to transfer all data.
- include
Transfer
All Details Response - Details to transfer all data.
- include
Transfer
All 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
Transfer
Filter Details Response - Details of the filtering the transfer of data.
- include
Transfer
Filter Details Response - Details of the filtering the transfer of data.
- include
Transfer
Filter Details Response - Details of the filtering the transfer of data.
- include
Transfer
Filter 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
Transfer
All Details - Details to transfer all data.
- include
Transfer
All Details - Details to transfer all data.
- include
Transfer
All Details - Details to transfer all data.
- include
Transfer
All 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
Transfer
Filter Details - Details of the filtering the transfer of data.
- include
Transfer
Filter Details - Details of the filtering the transfer of data.
- include
Transfer
Filter Details - Details of the filtering the transfer of data.
- include
Transfer
Filter Details - Details of the filtering the transfer of data.
- include Property Map
- Details of the filtering the transfer of data.
TransferConfigurationType, TransferConfigurationTypeArgs
- Transfer
All - TransferAllTransfer all the data.
- Transfer
Using Filter - TransferUsingFilterTransfer using filter.
- Transfer
Configuration Type Transfer All - TransferAllTransfer all the data.
- Transfer
Configuration Type Transfer Using Filter - TransferUsingFilterTransfer using filter.
- Transfer
All - TransferAllTransfer all the data.
- Transfer
Using Filter - TransferUsingFilterTransfer using filter.
- Transfer
All - TransferAllTransfer all the data.
- Transfer
Using Filter - TransferUsingFilterTransfer using filter.
- TRANSFER_ALL
- TransferAllTransfer all the data.
- TRANSFER_USING_FILTER
- TransferUsingFilterTransfer using filter.
- "Transfer
All" - TransferAllTransfer all the data.
- "Transfer
Using Filter" - TransferUsingFilterTransfer using filter.
TransferFilterDetails, TransferFilterDetailsArgs
- Data
Account Type This property is required. string | Pulumi.Azure Native. Data Box. Data Account Type - Type of the account of data.
- Azure
File Pulumi.Filter Details Azure Native. Data Box. Inputs. Azure File Filter Details - Filter details to transfer Azure files.
- Blob
Filter Pulumi.Details Azure Native. Data Box. Inputs. Blob Filter Details - Filter details to transfer blobs.
- Filter
File List<Pulumi.Details Azure Native. Data Box. Inputs. Filter File Details> - Details of the filter files to be used for data transfer.
- Data
Account Type This property is required. string | DataAccount 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 []FilterDetails File Details - Details of the filter files to be used for data transfer.
- data
Account Type This property is required. String | DataAccount 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 List<FilterDetails File Details> - Details of the filter files to be used for data transfer.
- data
Account Type This property is required. string | DataAccount 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 FilterDetails File Details[] - Details of the filter files to be used for data transfer.
- data_
account_ type This property is required. str | DataAccount 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.
- data
Account Type This property is required. String | "StorageAccount" | "Managed Disk" - Type of the account of data.
- azure
File Property MapFilter Details - Filter details to transfer Azure files.
- blob
Filter Property MapDetails - Filter details to transfer blobs.
- filter
File List<Property Map>Details - Details of the filter files to be used for data transfer.
TransferFilterDetailsResponse, TransferFilterDetailsResponseArgs
- Data
Account Type This property is required. string - Type of the account of data.
- Azure
File Pulumi.Filter Details Azure Native. Data Box. Inputs. Azure File Filter Details Response - Filter details to transfer Azure files.
- Blob
Filter Pulumi.Details Azure Native. Data Box. Inputs. Blob Filter Details Response - Filter details to transfer blobs.
- Filter
File List<Pulumi.Details Azure Native. Data Box. Inputs. Filter File Details Response> - Details of the filter files to be used for data transfer.
- Data
Account Type This property is required. string - 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 []FilterDetails File Details Response - Details of the filter files to be used for data transfer.
- data
Account Type This property is required. String - 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 List<FilterDetails File Details Response> - Details of the filter files to be used for data transfer.
- data
Account Type This property is required. string - 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 FilterDetails File Details Response[] - Details of the filter files to be used for data transfer.
- data_
account_ type This property is required. str - 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.
- data
Account Type This property is required. String - Type of the account of data.
- azure
File Property MapFilter Details - Filter details to transfer Azure files.
- blob
Filter Property MapDetails - Filter details to transfer blobs.
- filter
File List<Property Map>Details - Details of the filter files to be used for data transfer.
TransferType, TransferTypeArgs
- Import
To Azure - ImportToAzureImport data to azure.
- Export
From Azure - ExportFromAzureExport data from azure.
- Transfer
Type Import To Azure - ImportToAzureImport data to azure.
- Transfer
Type Export From Azure - ExportFromAzureExport data from azure.
- Import
To Azure - ImportToAzureImport data to azure.
- Export
From Azure - ExportFromAzureExport data from azure.
- Import
To Azure - ImportToAzureImport data to azure.
- Export
From Azure - ExportFromAzureExport data from azure.
- IMPORT_TO_AZURE
- ImportToAzureImport data to azure.
- EXPORT_FROM_AZURE
- ExportFromAzureExport data from azure.
- "Import
To Azure" - ImportToAzureImport data to azure.
- "Export
From Azure" - ExportFromAzureExport data from azure.
TransportPreferences, TransportPreferencesArgs
- Preferred
Shipment Type This property is required. string | Pulumi.Azure Native. Data Box. Transport Shipment Types - Indicates Shipment Logistics type that the customer preferred.
- Preferred
Shipment Type This property is required. string | TransportShipment Types - Indicates Shipment Logistics type that the customer preferred.
- preferred
Shipment Type This property is required. String | TransportShipment Types - Indicates Shipment Logistics type that the customer preferred.
- preferred
Shipment Type This property is required. string | TransportShipment Types - Indicates Shipment Logistics type that the customer preferred.
- preferred_
shipment_ type This property is required. str | TransportShipment Types - Indicates Shipment Logistics type that the customer preferred.
- preferred
Shipment Type This property is required. String | "CustomerManaged" | "Microsoft Managed" - Indicates Shipment Logistics type that the customer preferred.
TransportPreferencesResponse, TransportPreferencesResponseArgs
- Is
Updated This property is required. bool - Read only property which indicates whether transport preferences has been updated or not after device is prepared.
- Preferred
Shipment Type This property is required. string - Indicates Shipment Logistics type that the customer preferred.
- Is
Updated This property is required. bool - Read only property which indicates whether transport preferences has been updated or not after device is prepared.
- Preferred
Shipment Type This property is required. string - Indicates Shipment Logistics type that the customer preferred.
- is
Updated This property is required. Boolean - Read only property which indicates whether transport preferences has been updated or not after device is prepared.
- preferred
Shipment Type This property is required. String - Indicates Shipment Logistics type that the customer preferred.
- is
Updated This property is required. boolean - Read only property which indicates whether transport preferences has been updated or not after device is prepared.
- preferred
Shipment Type This property is required. string - Indicates Shipment Logistics type that the customer preferred.
- is_
updated This property is required. bool - Read only property which indicates whether transport preferences has been updated or not after device is prepared.
- preferred_
shipment_ type This property is required. str - Indicates Shipment Logistics type that the customer preferred.
- is
Updated This property is required. Boolean - Read only property which indicates whether transport preferences has been updated or not after device is prepared.
- preferred
Shipment Type This property is required. String - Indicates Shipment Logistics type that the customer preferred.
TransportShipmentTypes, TransportShipmentTypesArgs
- Customer
Managed - CustomerManagedShipment Logistics is handled by the customer.
- Microsoft
Managed - MicrosoftManagedShipment Logistics is handled by Microsoft.
- Transport
Shipment Types Customer Managed - CustomerManagedShipment Logistics is handled by the customer.
- Transport
Shipment Types Microsoft Managed - MicrosoftManagedShipment Logistics is handled by Microsoft.
- Customer
Managed - CustomerManagedShipment Logistics is handled by the customer.
- Microsoft
Managed - MicrosoftManagedShipment Logistics is handled by Microsoft.
- Customer
Managed - CustomerManagedShipment Logistics is handled by the customer.
- Microsoft
Managed - MicrosoftManagedShipment Logistics is handled by Microsoft.
- CUSTOMER_MANAGED
- CustomerManagedShipment Logistics is handled by the customer.
- MICROSOFT_MANAGED
- MicrosoftManagedShipment Logistics is handled by Microsoft.
- "Customer
Managed" - CustomerManagedShipment Logistics is handled by the customer.
- "Microsoft
Managed" - MicrosoftManagedShipment Logistics is handled by Microsoft.
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id This property is required. string - The client id of user assigned identity.
- Principal
Id This property is required. string - The principal id of user assigned identity.
- Client
Id This property is required. string - The client id of user assigned identity.
- Principal
Id This property is required. string - The principal id of user assigned identity.
- client
Id This property is required. String - The client id of user assigned identity.
- principal
Id This property is required. String - The principal id of user assigned identity.
- client
Id This property is required. string - The client id of user assigned identity.
- principal
Id This property is required. string - The principal id of user assigned identity.
- client_
id This property is required. str - The client id of user assigned identity.
- principal_
id This property is required. str - The principal id of user assigned identity.
- client
Id This property is required. String - The client id of user assigned identity.
- principal
Id This property is required. String - The principal id of user assigned identity.
UserAssignedProperties, UserAssignedPropertiesArgs
- Resource
Id string - Arm resource id for user assigned identity to be used to fetch MSI token.
- Resource
Id string - Arm resource id for user assigned identity to be used to fetch MSI token.
- resource
Id String - Arm resource id for user assigned identity to be used to fetch MSI token.
- resource
Id 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.
- resource
Id String - Arm resource id for user assigned identity to be used to fetch MSI token.
UserAssignedPropertiesResponse, UserAssignedPropertiesResponseArgs
- Resource
Id string - Arm resource id for user assigned identity to be used to fetch MSI token.
- Resource
Id string - Arm resource id for user assigned identity to be used to fetch MSI token.
- resource
Id String - Arm resource id for user assigned identity to be used to fetch MSI token.
- resource
Id 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.
- resource
Id 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