azure-native.databox.Job
Explore with Pulumi AI
Job Resource. API Version: 2020-11-01.
Example Usage
JobsCreate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var job = new AzureNative.DataBox.Job("job", new()
{
Details = new AzureNative.DataBox.Inputs.DataBoxJobDetailsArgs
{
ContactDetails = new AzureNative.DataBox.Inputs.ContactDetailsArgs
{
ContactName = "XXXX XXXX",
EmailList = new[]
{
"xxxx@xxxx.xxx",
},
Phone = "0000000000",
PhoneExtension = "",
},
DataImportDetails = new[]
{
new AzureNative.DataBox.Inputs.DataImportDetailsArgs
{
AccountDetails = new AzureNative.DataBox.Inputs.StorageAccountDetailsArgs
{
DataAccountType = "StorageAccount",
StorageAccountId = "/subscriptions/YourSubscriptionId/resourcegroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
},
},
},
JobDetailsType = "DataBox",
ShippingAddress = new AzureNative.DataBox.Inputs.ShippingAddressArgs
{
AddressType = "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 = "DataBox",
},
TransferType = "ImportToAzure",
});
});
package main
import (
databox "github.com/pulumi/pulumi-azure-native-sdk/databox"
"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.DataBoxJobDetails{
ContactDetails: databox.ContactDetails{
ContactName: "XXXX XXXX",
EmailList: []string{
"xxxx@xxxx.xxx",
},
Phone: "0000000000",
PhoneExtension: "",
},
DataImportDetails: []databox.DataImportDetails{
{
AccountDetails: {
DataAccountType: "StorageAccount",
StorageAccountId: "/subscriptions/YourSubscriptionId/resourcegroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
},
},
},
JobDetailsType: "DataBox",
ShippingAddress: databox.ShippingAddress{
AddressType: "Commercial",
City: "XXXX XXXX",
CompanyName: "XXXX XXXX",
Country: "XX",
PostalCode: "00000",
StateOrProvince: "XX",
StreetAddress1: "XXXX XXXX",
StreetAddress2: "XXXX XXXX",
},
},
JobName: pulumi.String("TestJobName1"),
Location: pulumi.String("westus"),
ResourceGroupName: pulumi.String("YourResourceGroupName"),
Sku: &databox.SkuArgs{
Name: pulumi.String("DataBox"),
},
TransferType: pulumi.String("ImportToAzure"),
})
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 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(Map.ofEntries(
Map.entry("contactDetails", Map.ofEntries(
Map.entry("contactName", "XXXX XXXX"),
Map.entry("emailList", "xxxx@xxxx.xxx"),
Map.entry("phone", "0000000000"),
Map.entry("phoneExtension", "")
)),
Map.entry("dataImportDetails", Map.of("accountDetails", Map.ofEntries(
Map.entry("dataAccountType", "StorageAccount"),
Map.entry("storageAccountId", "/subscriptions/YourSubscriptionId/resourcegroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName")
))),
Map.entry("jobDetailsType", "DataBox"),
Map.entry("shippingAddress", Map.ofEntries(
Map.entry("addressType", "Commercial"),
Map.entry("city", "XXXX XXXX"),
Map.entry("companyName", "XXXX XXXX"),
Map.entry("country", "XX"),
Map.entry("postalCode", "00000"),
Map.entry("stateOrProvince", "XX"),
Map.entry("streetAddress1", "XXXX XXXX"),
Map.entry("streetAddress2", "XXXX XXXX")
))
))
.jobName("TestJobName1")
.location("westus")
.resourceGroupName("YourResourceGroupName")
.sku(Map.of("name", "DataBox"))
.transferType("ImportToAzure")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
job = azure_native.databox.Job("job",
details=azure_native.databox.DataBoxJobDetailsArgs(
contact_details=azure_native.databox.ContactDetailsArgs(
contact_name="XXXX XXXX",
email_list=["xxxx@xxxx.xxx"],
phone="0000000000",
phone_extension="",
),
data_import_details=[azure_native.databox.DataImportDetailsArgs(
account_details=azure_native.databox.StorageAccountDetailsArgs(
data_account_type="StorageAccount",
storage_account_id="/subscriptions/YourSubscriptionId/resourcegroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
),
)],
job_details_type="DataBox",
shipping_address=azure_native.databox.ShippingAddressArgs(
address_type="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=azure_native.databox.SkuArgs(
name="DataBox",
),
transfer_type="ImportToAzure")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const job = new azure_native.databox.Job("job", {
details: {
contactDetails: {
contactName: "XXXX XXXX",
emailList: ["xxxx@xxxx.xxx"],
phone: "0000000000",
phoneExtension: "",
},
dataImportDetails: [{
accountDetails: {
dataAccountType: "StorageAccount",
storageAccountId: "/subscriptions/YourSubscriptionId/resourcegroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
},
}],
jobDetailsType: "DataBox",
shippingAddress: {
addressType: "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",
});
resources:
job:
type: azure-native:databox:Job
properties:
details:
contactDetails:
contactName: XXXX XXXX
emailList:
- xxxx@xxxx.xxx
phone: '0000000000'
phoneExtension:
dataImportDetails:
- accountDetails:
dataAccountType: StorageAccount
storageAccountId: /subscriptions/YourSubscriptionId/resourcegroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName
jobDetailsType: DataBox
shippingAddress:
addressType: Commercial
city: XXXX XXXX
companyName: XXXX XXXX
country: XX
postalCode: '00000'
stateOrProvince: XX
streetAddress1: XXXX XXXX
streetAddress2: XXXX XXXX
jobName: TestJobName1
location: westus
resourceGroupName: YourResourceGroupName
sku:
name: DataBox
transferType: ImportToAzure
JobsCreateDevicePassword
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var job = new AzureNative.DataBox.Job("job", new()
{
Details = new AzureNative.DataBox.Inputs.DataBoxJobDetailsArgs
{
ContactDetails = new AzureNative.DataBox.Inputs.ContactDetailsArgs
{
ContactName = "XXXX XXXX",
EmailList = new[]
{
"xxxx@xxxx.xxx",
},
Phone = "0000000000",
PhoneExtension = "",
},
DataImportDetails = new[]
{
new AzureNative.DataBox.Inputs.DataImportDetailsArgs
{
AccountDetails = new AzureNative.DataBox.Inputs.StorageAccountDetailsArgs
{
DataAccountType = "StorageAccount",
SharePassword = "<sharePassword>",
StorageAccountId = "/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
},
},
},
DevicePassword = "<devicePassword>",
JobDetailsType = "DataBox",
ShippingAddress = new AzureNative.DataBox.Inputs.ShippingAddressArgs
{
AddressType = "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 = "DataBox",
},
TransferType = "ImportToAzure",
});
});
package main
import (
databox "github.com/pulumi/pulumi-azure-native-sdk/databox"
"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.DataBoxJobDetails{
ContactDetails: databox.ContactDetails{
ContactName: "XXXX XXXX",
EmailList: []string{
"xxxx@xxxx.xxx",
},
Phone: "0000000000",
PhoneExtension: "",
},
DataImportDetails: []databox.DataImportDetails{
{
AccountDetails: {
DataAccountType: "StorageAccount",
SharePassword: "<sharePassword>",
StorageAccountId: "/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
},
},
},
DevicePassword: "<devicePassword>",
JobDetailsType: "DataBox",
ShippingAddress: databox.ShippingAddress{
AddressType: "Commercial",
City: "XXXX XXXX",
CompanyName: "XXXX XXXX",
Country: "XX",
PostalCode: "00000",
StateOrProvince: "XX",
StreetAddress1: "XXXX XXXX",
StreetAddress2: "XXXX XXXX",
},
},
JobName: pulumi.String("TestJobName1"),
Location: pulumi.String("westus"),
ResourceGroupName: pulumi.String("YourResourceGroupName"),
Sku: &databox.SkuArgs{
Name: pulumi.String("DataBox"),
},
TransferType: pulumi.String("ImportToAzure"),
})
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 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(Map.ofEntries(
Map.entry("contactDetails", Map.ofEntries(
Map.entry("contactName", "XXXX XXXX"),
Map.entry("emailList", "xxxx@xxxx.xxx"),
Map.entry("phone", "0000000000"),
Map.entry("phoneExtension", "")
)),
Map.entry("dataImportDetails", Map.of("accountDetails", Map.ofEntries(
Map.entry("dataAccountType", "StorageAccount"),
Map.entry("sharePassword", "<sharePassword>"),
Map.entry("storageAccountId", "/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName")
))),
Map.entry("devicePassword", "<devicePassword>"),
Map.entry("jobDetailsType", "DataBox"),
Map.entry("shippingAddress", Map.ofEntries(
Map.entry("addressType", "Commercial"),
Map.entry("city", "XXXX XXXX"),
Map.entry("companyName", "XXXX XXXX"),
Map.entry("country", "XX"),
Map.entry("postalCode", "00000"),
Map.entry("stateOrProvince", "XX"),
Map.entry("streetAddress1", "XXXX XXXX"),
Map.entry("streetAddress2", "XXXX XXXX")
))
))
.jobName("TestJobName1")
.location("westus")
.resourceGroupName("YourResourceGroupName")
.sku(Map.of("name", "DataBox"))
.transferType("ImportToAzure")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
job = azure_native.databox.Job("job",
details=azure_native.databox.DataBoxJobDetailsArgs(
contact_details=azure_native.databox.ContactDetailsArgs(
contact_name="XXXX XXXX",
email_list=["xxxx@xxxx.xxx"],
phone="0000000000",
phone_extension="",
),
data_import_details=[azure_native.databox.DataImportDetailsArgs(
account_details=azure_native.databox.StorageAccountDetailsArgs(
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=azure_native.databox.ShippingAddressArgs(
address_type="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=azure_native.databox.SkuArgs(
name="DataBox",
),
transfer_type="ImportToAzure")
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: "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",
});
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 = "Enabled",
},
},
ShippingAddress = new AzureNative.DataBox.Inputs.ShippingAddressArgs
{
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 = "DataBox",
},
TransferType = "ImportToAzure",
});
});
package main
import (
databox "github.com/pulumi/pulumi-azure-native-sdk/databox"
"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.DataBoxJobDetails{
ContactDetails: databox.ContactDetails{
ContactName: "XXXX XXXX",
EmailList: []string{
"xxxx@xxxx.xxx",
},
Phone: "0000000000",
PhoneExtension: "",
},
DataImportDetails: []databox.DataImportDetails{
{
AccountDetails: {
DataAccountType: "StorageAccount",
StorageAccountId: "/subscriptions/YourSubscriptionId/resourcegroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
},
},
},
JobDetailsType: "DataBox",
Preferences: databox.Preferences{
EncryptionPreferences: databox.EncryptionPreferences{
DoubleEncryption: "Enabled",
},
},
ShippingAddress: databox.ShippingAddress{
AddressType: "Commercial",
City: "XXXX XXXX",
CompanyName: "XXXX XXXX",
Country: "XX",
PostalCode: "00000",
StateOrProvince: "XX",
StreetAddress1: "XXXX XXXX",
StreetAddress2: "XXXX XXXX",
},
},
JobName: pulumi.String("TestJobName1"),
Location: pulumi.String("westus"),
ResourceGroupName: pulumi.String("YourResourceGroupName"),
Sku: &databox.SkuArgs{
Name: pulumi.String("DataBox"),
},
TransferType: pulumi.String("ImportToAzure"),
})
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 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(Map.ofEntries(
Map.entry("contactDetails", Map.ofEntries(
Map.entry("contactName", "XXXX XXXX"),
Map.entry("emailList", "xxxx@xxxx.xxx"),
Map.entry("phone", "0000000000"),
Map.entry("phoneExtension", "")
)),
Map.entry("dataImportDetails", Map.of("accountDetails", Map.ofEntries(
Map.entry("dataAccountType", "StorageAccount"),
Map.entry("storageAccountId", "/subscriptions/YourSubscriptionId/resourcegroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName")
))),
Map.entry("jobDetailsType", "DataBox"),
Map.entry("preferences", Map.of("encryptionPreferences", Map.of("doubleEncryption", "Enabled"))),
Map.entry("shippingAddress", Map.ofEntries(
Map.entry("addressType", "Commercial"),
Map.entry("city", "XXXX XXXX"),
Map.entry("companyName", "XXXX XXXX"),
Map.entry("country", "XX"),
Map.entry("postalCode", "00000"),
Map.entry("stateOrProvince", "XX"),
Map.entry("streetAddress1", "XXXX XXXX"),
Map.entry("streetAddress2", "XXXX XXXX")
))
))
.jobName("TestJobName1")
.location("westus")
.resourceGroupName("YourResourceGroupName")
.sku(Map.of("name", "DataBox"))
.transferType("ImportToAzure")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
job = azure_native.databox.Job("job",
details=azure_native.databox.DataBoxJobDetailsArgs(
contact_details=azure_native.databox.ContactDetailsArgs(
contact_name="XXXX XXXX",
email_list=["xxxx@xxxx.xxx"],
phone="0000000000",
phone_extension="",
),
data_import_details=[azure_native.databox.DataImportDetailsArgs(
account_details=azure_native.databox.StorageAccountDetailsArgs(
data_account_type="StorageAccount",
storage_account_id="/subscriptions/YourSubscriptionId/resourcegroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
),
)],
job_details_type="DataBox",
preferences=azure_native.databox.PreferencesArgs(
encryption_preferences=azure_native.databox.EncryptionPreferencesArgs(
double_encryption="Enabled",
),
),
shipping_address=azure_native.databox.ShippingAddressArgs(
address_type="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=azure_native.databox.SkuArgs(
name="DataBox",
),
transfer_type="ImportToAzure")
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: "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",
});
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 = "StorageAccount",
TransferAllBlobs = true,
TransferAllFiles = true,
},
},
TransferConfigurationType = "TransferAll",
},
},
},
JobDetailsType = "DataBox",
ShippingAddress = new AzureNative.DataBox.Inputs.ShippingAddressArgs
{
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 = "DataBox",
},
TransferType = "ExportFromAzure",
});
});
package main
import (
databox "github.com/pulumi/pulumi-azure-native-sdk/databox"
"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.DataBoxJobDetails{
ContactDetails: databox.ContactDetails{
ContactName: "XXXX XXXX",
EmailList: []string{
"xxxx@xxxx.xxx",
},
Phone: "0000000000",
PhoneExtension: "",
},
DataExportDetails: []databox.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: databox.ShippingAddress{
AddressType: "Commercial",
City: "XXXX XXXX",
CompanyName: "XXXX XXXX",
Country: "XX",
PostalCode: "00000",
StateOrProvince: "XX",
StreetAddress1: "XXXX XXXX",
StreetAddress2: "XXXX XXXX",
},
},
JobName: pulumi.String("TestJobName1"),
Location: pulumi.String("westus"),
ResourceGroupName: pulumi.String("YourResourceGroupName"),
Sku: &databox.SkuArgs{
Name: pulumi.String("DataBox"),
},
TransferType: pulumi.String("ExportFromAzure"),
})
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 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(Map.ofEntries(
Map.entry("contactDetails", Map.ofEntries(
Map.entry("contactName", "XXXX XXXX"),
Map.entry("emailList", "xxxx@xxxx.xxx"),
Map.entry("phone", "0000000000"),
Map.entry("phoneExtension", "")
)),
Map.entry("dataExportDetails", Map.ofEntries(
Map.entry("accountDetails", Map.ofEntries(
Map.entry("dataAccountType", "StorageAccount"),
Map.entry("storageAccountId", "/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName")
)),
Map.entry("transferConfiguration", Map.ofEntries(
Map.entry("transferAllDetails", Map.of("include", Map.ofEntries(
Map.entry("dataAccountType", "StorageAccount"),
Map.entry("transferAllBlobs", true),
Map.entry("transferAllFiles", true)
))),
Map.entry("transferConfigurationType", "TransferAll")
))
)),
Map.entry("jobDetailsType", "DataBox"),
Map.entry("shippingAddress", Map.ofEntries(
Map.entry("addressType", "Commercial"),
Map.entry("city", "XXXX XXXX"),
Map.entry("companyName", "XXXX XXXX"),
Map.entry("country", "XX"),
Map.entry("postalCode", "00000"),
Map.entry("stateOrProvince", "XX"),
Map.entry("streetAddress1", "XXXX XXXX"),
Map.entry("streetAddress2", "XXXX XXXX")
))
))
.jobName("TestJobName1")
.location("westus")
.resourceGroupName("YourResourceGroupName")
.sku(Map.of("name", "DataBox"))
.transferType("ExportFromAzure")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
job = azure_native.databox.Job("job",
details=azure_native.databox.DataBoxJobDetailsArgs(
contact_details=azure_native.databox.ContactDetailsArgs(
contact_name="XXXX XXXX",
email_list=["xxxx@xxxx.xxx"],
phone="0000000000",
phone_extension="",
),
data_export_details=[azure_native.databox.DataExportDetailsArgs(
account_details=azure_native.databox.StorageAccountDetailsArgs(
data_account_type="StorageAccount",
storage_account_id="/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
),
transfer_configuration=azure_native.databox.TransferConfigurationArgs(
transfer_all_details=azure_native.databox.TransferConfigurationTransferAllDetailsArgs(
include=azure_native.databox.TransferAllDetailsArgs(
data_account_type="StorageAccount",
transfer_all_blobs=True,
transfer_all_files=True,
),
),
transfer_configuration_type="TransferAll",
),
)],
job_details_type="DataBox",
shipping_address=azure_native.databox.ShippingAddressArgs(
address_type="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=azure_native.databox.SkuArgs(
name="DataBox",
),
transfer_type="ExportFromAzure")
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: "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",
});
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
JobsCreateWithUserAssignedIdentity
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var job = new AzureNative.DataBox.Job("job", new()
{
Details = new AzureNative.DataBox.Inputs.DataBoxJobDetailsArgs
{
ContactDetails = new AzureNative.DataBox.Inputs.ContactDetailsArgs
{
ContactName = "XXXX XXXX",
EmailList = new[]
{
"xxxx@xxxx.xxx",
},
Phone = "0000000000",
PhoneExtension = "",
},
DataImportDetails = new[]
{
new AzureNative.DataBox.Inputs.DataImportDetailsArgs
{
AccountDetails = new AzureNative.DataBox.Inputs.StorageAccountDetailsArgs
{
DataAccountType = "StorageAccount",
StorageAccountId = "/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
},
},
},
JobDetailsType = "DataBox",
ShippingAddress = new AzureNative.DataBox.Inputs.ShippingAddressArgs
{
AddressType = "Commercial",
City = "XXXX XXXX",
CompanyName = "XXXX XXXX",
Country = "XX",
PostalCode = "00000",
StateOrProvince = "XX",
StreetAddress1 = "XXXX XXXX",
StreetAddress2 = "XXXX XXXX",
},
},
Identity = new AzureNative.DataBox.Inputs.ResourceIdentityArgs
{
Type = "UserAssigned",
UserAssignedIdentities =
{
{ "/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity", null },
},
},
JobName = "TestJobName1",
Location = "westus",
ResourceGroupName = "YourResourceGroupName",
Sku = new AzureNative.DataBox.Inputs.SkuArgs
{
Name = "DataBox",
},
TransferType = "ImportToAzure",
});
});
package main
import (
databox "github.com/pulumi/pulumi-azure-native-sdk/databox"
"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.DataBoxJobDetails{
ContactDetails: databox.ContactDetails{
ContactName: "XXXX XXXX",
EmailList: []string{
"xxxx@xxxx.xxx",
},
Phone: "0000000000",
PhoneExtension: "",
},
DataImportDetails: []databox.DataImportDetails{
{
AccountDetails: {
DataAccountType: "StorageAccount",
StorageAccountId: "/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
},
},
},
JobDetailsType: "DataBox",
ShippingAddress: databox.ShippingAddress{
AddressType: "Commercial",
City: "XXXX XXXX",
CompanyName: "XXXX XXXX",
Country: "XX",
PostalCode: "00000",
StateOrProvince: "XX",
StreetAddress1: "XXXX XXXX",
StreetAddress2: "XXXX XXXX",
},
},
Identity: &databox.ResourceIdentityArgs{
Type: pulumi.String("UserAssigned"),
UserAssignedIdentities: pulumi.AnyMap{
"/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity": nil,
},
},
JobName: pulumi.String("TestJobName1"),
Location: pulumi.String("westus"),
ResourceGroupName: pulumi.String("YourResourceGroupName"),
Sku: &databox.SkuArgs{
Name: pulumi.String("DataBox"),
},
TransferType: pulumi.String("ImportToAzure"),
})
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 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(Map.ofEntries(
Map.entry("contactDetails", Map.ofEntries(
Map.entry("contactName", "XXXX XXXX"),
Map.entry("emailList", "xxxx@xxxx.xxx"),
Map.entry("phone", "0000000000"),
Map.entry("phoneExtension", "")
)),
Map.entry("dataImportDetails", Map.of("accountDetails", Map.ofEntries(
Map.entry("dataAccountType", "StorageAccount"),
Map.entry("storageAccountId", "/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName")
))),
Map.entry("jobDetailsType", "DataBox"),
Map.entry("shippingAddress", Map.ofEntries(
Map.entry("addressType", "Commercial"),
Map.entry("city", "XXXX XXXX"),
Map.entry("companyName", "XXXX XXXX"),
Map.entry("country", "XX"),
Map.entry("postalCode", "00000"),
Map.entry("stateOrProvince", "XX"),
Map.entry("streetAddress1", "XXXX XXXX"),
Map.entry("streetAddress2", "XXXX XXXX")
))
))
.identity(Map.ofEntries(
Map.entry("type", "UserAssigned"),
Map.entry("userAssignedIdentities", Map.of("/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity", ))
))
.jobName("TestJobName1")
.location("westus")
.resourceGroupName("YourResourceGroupName")
.sku(Map.of("name", "DataBox"))
.transferType("ImportToAzure")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
job = azure_native.databox.Job("job",
details=azure_native.databox.DataBoxJobDetailsArgs(
contact_details=azure_native.databox.ContactDetailsArgs(
contact_name="XXXX XXXX",
email_list=["xxxx@xxxx.xxx"],
phone="0000000000",
phone_extension="",
),
data_import_details=[azure_native.databox.DataImportDetailsArgs(
account_details=azure_native.databox.StorageAccountDetailsArgs(
data_account_type="StorageAccount",
storage_account_id="/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
),
)],
job_details_type="DataBox",
shipping_address=azure_native.databox.ShippingAddressArgs(
address_type="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",
),
),
identity=azure_native.databox.ResourceIdentityArgs(
type="UserAssigned",
user_assigned_identities={
"/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity": {},
},
),
job_name="TestJobName1",
location="westus",
resource_group_name="YourResourceGroupName",
sku=azure_native.databox.SkuArgs(
name="DataBox",
),
transfer_type="ImportToAzure")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const job = new azure_native.databox.Job("job", {
details: {
contactDetails: {
contactName: "XXXX XXXX",
emailList: ["xxxx@xxxx.xxx"],
phone: "0000000000",
phoneExtension: "",
},
dataImportDetails: [{
accountDetails: {
dataAccountType: "StorageAccount",
storageAccountId: "/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName",
},
}],
jobDetailsType: "DataBox",
shippingAddress: {
addressType: "Commercial",
city: "XXXX XXXX",
companyName: "XXXX XXXX",
country: "XX",
postalCode: "00000",
stateOrProvince: "XX",
streetAddress1: "XXXX XXXX",
streetAddress2: "XXXX XXXX",
},
},
identity: {
type: "UserAssigned",
userAssignedIdentities: {
"/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity": {},
},
},
jobName: "TestJobName1",
location: "westus",
resourceGroupName: "YourResourceGroupName",
sku: {
name: "DataBox",
},
transferType: "ImportToAzure",
});
resources:
job:
type: azure-native:databox:Job
properties:
details:
contactDetails:
contactName: XXXX XXXX
emailList:
- xxxx@xxxx.xxx
phone: '0000000000'
phoneExtension:
dataImportDetails:
- accountDetails:
dataAccountType: StorageAccount
storageAccountId: /subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName
jobDetailsType: DataBox
shippingAddress:
addressType: Commercial
city: XXXX XXXX
companyName: XXXX XXXX
country: XX
postalCode: '00000'
stateOrProvince: XX
streetAddress1: XXXX XXXX
streetAddress2: XXXX XXXX
identity:
type: UserAssigned
userAssignedIdentities:
? /subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity
: {}
jobName: TestJobName1
location: westus
resourceGroupName: YourResourceGroupName
sku:
name: DataBox
transferType: ImportToAzure
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[DataBoxDiskJobDetailsArgs, DataBoxHeavyJobDetailsArgs, DataBoxJobDetailsArgs]] = None,
identity: Optional[ResourceIdentityArgs] = None,
job_name: Optional[str] = None,
location: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewJob(ctx *Context, name string, args JobArgs, opts ...ResourceOption) (*Job, error)
public Job(string name, JobArgs args, CustomResourceOptions? opts = null)
type: azure-native:databox:Job
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args JobArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args JobArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args JobArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args JobArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args JobArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var jobResource = new AzureNative.Databox.Job("jobResource", new()
{
ResourceGroupName = "string",
Sku =
{
{ "name", "string" },
{ "displayName", "string" },
{ "family", "string" },
},
TransferType = "string",
DeliveryInfo =
{
{ "scheduledDateTime", "string" },
},
DeliveryType = "string",
Details =
{
{ "contactDetails",
{
{ "contactName", "string" },
{ "emailList", new[]
{
"string",
} },
{ "phone", "string" },
{ "mobile", "string" },
{ "notificationPreference", new[]
{
{
{ "sendNotification", false },
{ "stageName", "string" },
},
} },
{ "phoneExtension", "string" },
} },
{ "jobDetailsType", "DataBoxDisk" },
{ "dataExportDetails", new[]
{
{
{ "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", new[]
{
"string",
} },
{ "filePrefixList", new[]
{
"string",
} },
{ "fileShareList", new[]
{
"string",
} },
} },
{ "blobFilterDetails",
{
{ "blobPathList", new[]
{
"string",
} },
{ "blobPrefixList", new[]
{
"string",
} },
{ "containerList", new[]
{
"string",
} },
} },
{ "filterFileDetails", new[]
{
{
{ "filterFilePath", "string" },
{ "filterFileType", "string" },
},
} },
} },
} },
} },
{ "logCollectionLevel", "string" },
},
} },
{ "dataImportDetails", new[]
{
{
{ "accountDetails",
{
{ "dataAccountType", "ManagedDisk" },
{ "resourceGroupId", "string" },
{ "stagingStorageAccountId", "string" },
{ "sharePassword", "string" },
} },
},
} },
{ "expectedDataSizeInTeraBytes", 0 },
{ "keyEncryptionKey",
{
{ "kekType", "string" },
{ "identityProperties",
{
{ "type", "string" },
{ "userAssigned",
{
{ "resourceId", "string" },
} },
} },
{ "kekUrl", "string" },
{ "kekVaultResourceID", "string" },
} },
{ "passkey", "string" },
{ "preferences",
{
{ "encryptionPreferences",
{
{ "doubleEncryption", "string" },
} },
{ "preferredDataCenterRegion", new[]
{
"string",
} },
{ "transportPreferences",
{
{ "preferredShipmentType", "string" },
} },
} },
{ "preferredDisks",
{
{ "string", 0 },
} },
{ "shippingAddress",
{
{ "country", "string" },
{ "streetAddress1", "string" },
{ "addressType", "string" },
{ "city", "string" },
{ "companyName", "string" },
{ "postalCode", "string" },
{ "stateOrProvince", "string" },
{ "streetAddress2", "string" },
{ "streetAddress3", "string" },
{ "zipExtendedCode", "string" },
} },
},
Identity =
{
{ "type", "string" },
{ "userAssignedIdentities",
{
{ "string", "any" },
} },
},
JobName = "string",
Location = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := databox.NewJob(ctx, "jobResource", &databox.JobArgs{
ResourceGroupName: "string",
Sku: map[string]interface{}{
"name": "string",
"displayName": "string",
"family": "string",
},
TransferType: "string",
DeliveryInfo: map[string]interface{}{
"scheduledDateTime": "string",
},
DeliveryType: "string",
Details: map[string]interface{}{
"contactDetails": map[string]interface{}{
"contactName": "string",
"emailList": []string{
"string",
},
"phone": "string",
"mobile": "string",
"notificationPreference": []map[string]interface{}{
map[string]interface{}{
"sendNotification": false,
"stageName": "string",
},
},
"phoneExtension": "string",
},
"jobDetailsType": "DataBoxDisk",
"dataExportDetails": []map[string]interface{}{
map[string]interface{}{
"accountDetails": map[string]interface{}{
"dataAccountType": "ManagedDisk",
"resourceGroupId": "string",
"stagingStorageAccountId": "string",
"sharePassword": "string",
},
"transferConfiguration": map[string]interface{}{
"transferConfigurationType": "string",
"transferAllDetails": map[string]interface{}{
"include": map[string]interface{}{
"dataAccountType": "string",
"transferAllBlobs": false,
"transferAllFiles": false,
},
},
"transferFilterDetails": map[string]interface{}{
"include": map[string]interface{}{
"dataAccountType": "string",
"azureFileFilterDetails": map[string]interface{}{
"filePathList": []string{
"string",
},
"filePrefixList": []string{
"string",
},
"fileShareList": []string{
"string",
},
},
"blobFilterDetails": map[string]interface{}{
"blobPathList": []string{
"string",
},
"blobPrefixList": []string{
"string",
},
"containerList": []string{
"string",
},
},
"filterFileDetails": []map[string]interface{}{
map[string]interface{}{
"filterFilePath": "string",
"filterFileType": "string",
},
},
},
},
},
"logCollectionLevel": "string",
},
},
"dataImportDetails": []map[string]interface{}{
map[string]interface{}{
"accountDetails": map[string]interface{}{
"dataAccountType": "ManagedDisk",
"resourceGroupId": "string",
"stagingStorageAccountId": "string",
"sharePassword": "string",
},
},
},
"expectedDataSizeInTeraBytes": 0,
"keyEncryptionKey": map[string]interface{}{
"kekType": "string",
"identityProperties": map[string]interface{}{
"type": "string",
"userAssigned": map[string]interface{}{
"resourceId": "string",
},
},
"kekUrl": "string",
"kekVaultResourceID": "string",
},
"passkey": "string",
"preferences": map[string]interface{}{
"encryptionPreferences": map[string]interface{}{
"doubleEncryption": "string",
},
"preferredDataCenterRegion": []string{
"string",
},
"transportPreferences": map[string]interface{}{
"preferredShipmentType": "string",
},
},
"preferredDisks": map[string]interface{}{
"string": 0,
},
"shippingAddress": map[string]interface{}{
"country": "string",
"streetAddress1": "string",
"addressType": "string",
"city": "string",
"companyName": "string",
"postalCode": "string",
"stateOrProvince": "string",
"streetAddress2": "string",
"streetAddress3": "string",
"zipExtendedCode": "string",
},
},
Identity: map[string]interface{}{
"type": "string",
"userAssignedIdentities": map[string]interface{}{
"string": "any",
},
},
JobName: "string",
Location: "string",
Tags: map[string]interface{}{
"string": "string",
},
})
var jobResource = new Job("jobResource", JobArgs.builder()
.resourceGroupName("string")
.sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.transferType("string")
.deliveryInfo(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.deliveryType("string")
.details(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.identity(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.jobName("string")
.location("string")
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
job_resource = azure_native.databox.Job("jobResource",
resource_group_name=string,
sku={
name: string,
displayName: string,
family: string,
},
transfer_type=string,
delivery_info={
scheduledDateTime: string,
},
delivery_type=string,
details={
contactDetails: {
contactName: string,
emailList: [string],
phone: string,
mobile: string,
notificationPreference: [{
sendNotification: False,
stageName: string,
}],
phoneExtension: string,
},
jobDetailsType: DataBoxDisk,
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,
},
}],
expectedDataSizeInTeraBytes: 0,
keyEncryptionKey: {
kekType: string,
identityProperties: {
type: string,
userAssigned: {
resourceId: string,
},
},
kekUrl: string,
kekVaultResourceID: string,
},
passkey: string,
preferences: {
encryptionPreferences: {
doubleEncryption: string,
},
preferredDataCenterRegion: [string],
transportPreferences: {
preferredShipmentType: string,
},
},
preferredDisks: {
string: 0,
},
shippingAddress: {
country: string,
streetAddress1: string,
addressType: string,
city: string,
companyName: string,
postalCode: string,
stateOrProvince: string,
streetAddress2: string,
streetAddress3: string,
zipExtendedCode: string,
},
},
identity={
type: string,
userAssignedIdentities: {
string: any,
},
},
job_name=string,
location=string,
tags={
string: string,
})
const jobResource = new azure_native.databox.Job("jobResource", {
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: "DataBoxDisk",
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",
},
}],
expectedDataSizeInTeraBytes: 0,
keyEncryptionKey: {
kekType: "string",
identityProperties: {
type: "string",
userAssigned: {
resourceId: "string",
},
},
kekUrl: "string",
kekVaultResourceID: "string",
},
passkey: "string",
preferences: {
encryptionPreferences: {
doubleEncryption: "string",
},
preferredDataCenterRegion: ["string"],
transportPreferences: {
preferredShipmentType: "string",
},
},
preferredDisks: {
string: 0,
},
shippingAddress: {
country: "string",
streetAddress1: "string",
addressType: "string",
city: "string",
companyName: "string",
postalCode: "string",
stateOrProvince: "string",
streetAddress2: "string",
streetAddress3: "string",
zipExtendedCode: "string",
},
},
identity: {
type: "string",
userAssignedIdentities: {
string: "any",
},
},
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
expectedDataSizeInTeraBytes: 0
jobDetailsType: DataBoxDisk
keyEncryptionKey:
identityProperties:
type: string
userAssigned:
resourceId: string
kekType: string
kekUrl: string
kekVaultResourceID: string
passkey: string
preferences:
encryptionPreferences:
doubleEncryption: string
preferredDataCenterRegion:
- string
transportPreferences:
preferredShipmentType: string
preferredDisks:
string: 0
shippingAddress:
addressType: string
city: string
companyName: string
country: string
postalCode: string
stateOrProvince: string
streetAddress1: string
streetAddress2: string
streetAddress3: string
zipExtendedCode: string
identity:
type: string
userAssignedIdentities:
string: any
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 stringName - The Resource Group Name
- Sku
Pulumi.
Azure Native. Data Box. Inputs. Sku - The sku type.
- Transfer
Type 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 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 string - The name of the job Resource within the specified resource group. job names must be between 3 and 24 characters in length and use any alphanumeric and underscore only
- Location string
- The location of the resource. This will be one of the supported and registered Azure Regions (e.g. West US, East US, Southeast Asia, etc.). The region of a resource cannot be changed once it is created, but if an identical region is specified on update the request will succeed.
- Dictionary<string, string>
- The list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups).
- Resource
Group stringName - The Resource Group Name
- Sku
Sku
Args - The sku type.
- Transfer
Type 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 | 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 string - The name of the job Resource within the specified resource group. job names must be between 3 and 24 characters in length and use any alphanumeric and underscore only
- Location string
- The location of the resource. This will be one of the supported and registered Azure Regions (e.g. West US, East US, Southeast Asia, etc.). The region of a resource cannot be changed once it is created, but if an identical region is specified on update the request will succeed.
- map[string]string
- The list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups).
- resource
Group StringName - The Resource Group Name
- sku Sku
- The sku type.
- transfer
Type 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 | 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 String - The name of the job Resource within the specified resource group. job names must be between 3 and 24 characters in length and use any alphanumeric and underscore only
- location String
- The location of the resource. This will be one of the supported and registered Azure Regions (e.g. West US, East US, Southeast Asia, etc.). The region of a resource cannot be changed once it is created, but if an identical region is specified on update the request will succeed.
- Map<String,String>
- The list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups).
- resource
Group stringName - The Resource Group Name
- sku Sku
- The sku type.
- transfer
Type 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 | 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 string - The name of the job Resource within the specified resource group. job names must be between 3 and 24 characters in length and use any alphanumeric and underscore only
- location string
- The location of the resource. This will be one of the supported and registered Azure Regions (e.g. West US, East US, Southeast Asia, etc.). The region of a resource cannot be changed once it is created, but if an identical region is specified on update the request will succeed.
- {[key: string]: string}
- The list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups).
- resource_
group_ strname - The Resource Group Name
- sku
Sku
Args - The sku type.
- transfer_
type str | TransferType - Type of the data transfer.
- delivery_
info JobDelivery Info Args - Delivery Info of Job.
- delivery_
type str | JobDelivery Type - Delivery type of Job.
- details
Data
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 str - The name of the job Resource within the specified resource group. job names must be between 3 and 24 characters in length and use any alphanumeric and underscore only
- location str
- The location of the resource. This will be one of the supported and registered Azure Regions (e.g. West US, East US, Southeast Asia, etc.). The region of a resource cannot be changed once it is created, but if an identical region is specified on update the request will succeed.
- Mapping[str, str]
- The list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups).
- resource
Group StringName - The Resource Group Name
- sku Property Map
- The sku type.
- transfer
Type 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
- 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 String - The name of the job Resource within the specified resource group. job names must be between 3 and 24 characters in length and use any alphanumeric and underscore only
- location String
- The location of the resource. This will be one of the supported and registered Azure Regions (e.g. West US, East US, Southeast Asia, etc.). The region of a resource cannot be changed once it is created, but if an identical region is specified on update the request will succeed.
- Map<String>
- The list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups).
Outputs
All input properties are implicitly available as output properties. Additionally, the Job resource produces the following output properties:
- Cancellation
Reason string - Reason for cancellation.
- Error
Pulumi.
Azure Native. Data Box. Outputs. Cloud Error Response - Top level error for the job.
- Id string
- The provider-assigned unique ID for this managed resource.
- 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.
- 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.
- Cancellation
Reason string - Reason for cancellation.
- 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.
- 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.
- cancellation
Reason String - Reason for cancellation.
- 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.
- 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.
- cancellation
Reason string - Reason for cancellation.
- 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.
- 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.
- cancellation_
reason str - Reason for cancellation.
- 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.
- 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.
- cancellation
Reason String - Reason for cancellation.
- 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.
- 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 List<Pulumi.Azure Native. Data Box. Inputs. Additional Error Info Response> - Cloud error additional info.
- Details
List<Pulumi.
Azure Native. Data Box. Inputs. Cloud Error Response> - Cloud error details.
- Code string
- Cloud error code.
- Message string
- Cloud error message.
- Target string
- Cloud error target.
- Additional
Info []AdditionalError Info Response - Cloud error additional info.
- Details
[]Cloud
Error Response - Cloud error details.
- Code string
- Cloud error code.
- Message string
- Cloud error message.
- Target string
- Cloud error target.
- additional
Info List<AdditionalError Info Response> - Cloud error additional info.
- details
List<Cloud
Error Response> - Cloud error details.
- code String
- Cloud error code.
- message String
- Cloud error message.
- target String
- Cloud error target.
- additional
Info AdditionalError Info Response[] - Cloud error additional info.
- details
Cloud
Error Response[] - Cloud error details.
- code string
- Cloud error code.
- message string
- Cloud error message.
- target string
- Cloud error target.
- additional_
info Sequence[AdditionalError Info Response] - Cloud error additional info.
- details
Sequence[Cloud
Error Response] - Cloud error details.
- code str
- Cloud error code.
- message str
- Cloud error message.
- target str
- Cloud error target.
- additional
Info List<Property Map> - Cloud error additional info.
- details List<Property Map>
- Cloud error details.
- code String
- Cloud error code.
- message String
- Cloud error message.
- target String
- Cloud error target.
ContactDetails, ContactDetailsArgs
- Contact
Name string - Contact name of the person.
- Email
List List<string> - List of Email-ids to be notified about job progress.
- Phone string
- Phone number of the contact person.
- Mobile string
- Mobile number of the contact person.
- 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 string - Contact name of the person.
- Email
List []string - List of Email-ids to be notified about job progress.
- Phone string
- Phone number of the contact person.
- Mobile string
- Mobile number of the contact person.
- Notification
Preference []NotificationPreference - Notification preference for a job stage.
- Phone
Extension string - Phone extension number of the contact person.
- contact
Name String - Contact name of the person.
- email
List List<String> - List of Email-ids to be notified about job progress.
- phone String
- Phone number of the contact person.
- mobile String
- Mobile number of the contact person.
- notification
Preference List<NotificationPreference> - Notification preference for a job stage.
- phone
Extension String - Phone extension number of the contact person.
- contact
Name string - Contact name of the person.
- email
List string[] - List of Email-ids to be notified about job progress.
- phone string
- Phone number of the contact person.
- mobile string
- Mobile number of the contact person.
- notification
Preference NotificationPreference[] - Notification preference for a job stage.
- phone
Extension string - Phone extension number of the contact person.
- contact_
name str - Contact name of the person.
- email_
list Sequence[str] - List of Email-ids to be notified about job progress.
- phone str
- Phone number of the contact person.
- mobile str
- Mobile number of the contact person.
- notification_
preference Sequence[NotificationPreference] - Notification preference for a job stage.
- phone_
extension str - Phone extension number of the contact person.
- contact
Name String - Contact name of the person.
- email
List List<String> - List of Email-ids to be notified about job progress.
- phone String
- Phone number of the contact person.
- mobile String
- Mobile number of the contact person.
- 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 string - Contact name of the person.
- Email
List List<string> - List of Email-ids to be notified about job progress.
- Phone string
- Phone number of the contact person.
- Mobile string
- Mobile number of the contact person.
- 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 string - Contact name of the person.
- Email
List []string - List of Email-ids to be notified about job progress.
- Phone string
- Phone number of the contact person.
- Mobile string
- Mobile number of the contact person.
- Notification
Preference []NotificationPreference Response - Notification preference for a job stage.
- Phone
Extension string - Phone extension number of the contact person.
- contact
Name String - Contact name of the person.
- email
List List<String> - List of Email-ids to be notified about job progress.
- phone String
- Phone number of the contact person.
- mobile String
- Mobile number of the contact person.
- notification
Preference List<NotificationPreference Response> - Notification preference for a job stage.
- phone
Extension String - Phone extension number of the contact person.
- contact
Name string - Contact name of the person.
- email
List string[] - List of Email-ids to be notified about job progress.
- phone string
- Phone number of the contact person.
- mobile string
- Mobile number of the contact person.
- notification
Preference NotificationPreference Response[] - Notification preference for a job stage.
- phone
Extension string - Phone extension number of the contact person.
- contact_
name str - Contact name of the person.
- email_
list Sequence[str] - List of Email-ids to be notified about job progress.
- phone str
- Phone number of the contact person.
- mobile str
- Mobile number of the contact person.
- notification_
preference Sequence[NotificationPreference Response] - Notification preference for a job stage.
- phone_
extension str - Phone extension number of the contact person.
- contact
Name String - Contact name of the person.
- email
List List<String> - List of Email-ids to be notified about job progress.
- phone String
- Phone number of the contact person.
- mobile String
- Mobile number of the contact person.
- notification
Preference List<Property Map> - Notification preference for a job stage.
- phone
Extension String - Phone extension number of the contact person.
CopyProgressResponse, CopyProgressResponseArgs
- Account
Id string - Id of the account where the data needs to be uploaded.
- Bytes
Processed double - To indicate bytes transferred.
- Data
Account stringType - Data Account Type.
- Directories
Errored doubleOut - To indicate directories errored out in the job.
- Files
Errored doubleOut - Number of files which could not be copied
- Files
Processed double - Number of files processed
- Invalid
Directories doubleProcessed - To indicate directories renamed
- Invalid
File doubleBytes Uploaded - Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- Invalid
Files doubleProcessed - Number of files not adhering to azure naming conventions which were processed by automatic renaming
- Is
Enumeration boolIn Progress - To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- Renamed
Container doubleCount - Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- Storage
Account stringName - Name of the storage account. This will be empty for data account types other than storage account.
- Total
Bytes doubleTo Process - Total amount of data to be processed by the job.
- Total
Files doubleTo Process - Total files to process
- Transfer
Type string - Transfer type of data
- Account
Id string - Id of the account where the data needs to be uploaded.
- Bytes
Processed float64 - To indicate bytes transferred.
- Data
Account stringType - Data Account Type.
- Directories
Errored float64Out - To indicate directories errored out in the job.
- Files
Errored float64Out - Number of files which could not be copied
- Files
Processed float64 - Number of files processed
- Invalid
Directories float64Processed - To indicate directories renamed
- Invalid
File float64Bytes Uploaded - Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- Invalid
Files float64Processed - Number of files not adhering to azure naming conventions which were processed by automatic renaming
- Is
Enumeration boolIn Progress - To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- Renamed
Container float64Count - Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- Storage
Account stringName - Name of the storage account. This will be empty for data account types other than storage account.
- Total
Bytes float64To Process - Total amount of data to be processed by the job.
- Total
Files float64To Process - Total files to process
- Transfer
Type string - Transfer type of data
- account
Id String - Id of the account where the data needs to be uploaded.
- bytes
Processed Double - To indicate bytes transferred.
- data
Account StringType - Data Account Type.
- directories
Errored DoubleOut - To indicate directories errored out in the job.
- files
Errored DoubleOut - Number of files which could not be copied
- files
Processed Double - Number of files processed
- invalid
Directories DoubleProcessed - To indicate directories renamed
- invalid
File DoubleBytes Uploaded - Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalid
Files DoubleProcessed - Number of files not adhering to azure naming conventions which were processed by automatic renaming
- is
Enumeration BooleanIn Progress - To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamed
Container DoubleCount - Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- storage
Account StringName - Name of the storage account. This will be empty for data account types other than storage account.
- total
Bytes DoubleTo Process - Total amount of data to be processed by the job.
- total
Files DoubleTo Process - Total files to process
- transfer
Type String - Transfer type of data
- account
Id string - Id of the account where the data needs to be uploaded.
- bytes
Processed number - To indicate bytes transferred.
- data
Account stringType - Data Account Type.
- directories
Errored numberOut - To indicate directories errored out in the job.
- files
Errored numberOut - Number of files which could not be copied
- files
Processed number - Number of files processed
- invalid
Directories numberProcessed - To indicate directories renamed
- invalid
File numberBytes Uploaded - Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalid
Files numberProcessed - Number of files not adhering to azure naming conventions which were processed by automatic renaming
- is
Enumeration booleanIn Progress - To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamed
Container numberCount - Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- storage
Account stringName - Name of the storage account. This will be empty for data account types other than storage account.
- total
Bytes numberTo Process - Total amount of data to be processed by the job.
- total
Files numberTo Process - Total files to process
- transfer
Type string - Transfer type of data
- account_
id str - Id of the account where the data needs to be uploaded.
- bytes_
processed float - To indicate bytes transferred.
- data_
account_ strtype - Data Account Type.
- directories_
errored_ floatout - To indicate directories errored out in the job.
- files_
errored_ floatout - Number of files which could not be copied
- files_
processed float - Number of files processed
- invalid_
directories_ floatprocessed - To indicate directories renamed
- invalid_
file_ floatbytes_ uploaded - Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalid_
files_ floatprocessed - Number of files not adhering to azure naming conventions which were processed by automatic renaming
- is_
enumeration_ boolin_ progress - To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamed_
container_ floatcount - Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- storage_
account_ strname - Name of the storage account. This will be empty for data account types other than storage account.
- total_
bytes_ floatto_ process - Total amount of data to be processed by the job.
- total_
files_ floatto_ process - Total files to process
- transfer_
type str - Transfer type of data
- account
Id String - Id of the account where the data needs to be uploaded.
- bytes
Processed Number - To indicate bytes transferred.
- data
Account StringType - Data Account Type.
- directories
Errored NumberOut - To indicate directories errored out in the job.
- files
Errored NumberOut - Number of files which could not be copied
- files
Processed Number - Number of files processed
- invalid
Directories NumberProcessed - To indicate directories renamed
- invalid
File NumberBytes Uploaded - Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
- invalid
Files NumberProcessed - Number of files not adhering to azure naming conventions which were processed by automatic renaming
- is
Enumeration BooleanIn Progress - To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
- renamed
Container NumberCount - Number of folders not adhering to azure naming conventions which were processed by automatic renaming
- storage
Account StringName - Name of the storage account. This will be empty for data account types other than storage account.
- total
Bytes NumberTo Process - Total amount of data to be processed by the job.
- total
Files NumberTo Process - Total files to process
- transfer
Type 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 string - Account name.
- Copy
Log stringLink - Link for copy logs.
- Copy
Verbose stringLog Link - Link for copy verbose logs. This will be set only when LogCollectionLevel is set to Verbose.
- Account
Name string - Account name.
- Copy
Log stringLink - Link for copy logs.
- Copy
Verbose stringLog Link - Link for copy verbose logs. This will be set only when LogCollectionLevel is set to Verbose.
- account
Name String - Account name.
- copy
Log StringLink - Link for copy logs.
- copy
Verbose StringLog Link - Link for copy verbose logs. This will be set only when LogCollectionLevel is set to Verbose.
- account
Name string - Account name.
- copy
Log stringLink - Link for copy logs.
- copy
Verbose stringLog Link - Link for copy verbose logs. This will be set only when LogCollectionLevel is set to Verbose.
- account_
name str - Account name.
- copy_
log_ strlink - Link for copy logs.
- copy_
verbose_ strlog_ link - Link for copy verbose logs. This will be set only when LogCollectionLevel is set to Verbose.
- account
Name String - Account name.
- copy
Log StringLink - Link for copy logs.
- copy
Verbose StringLog Link - Link for copy verbose logs. This will be set only when LogCollectionLevel is set to Verbose.
DataBoxDiskCopyLogDetailsResponse, DataBoxDiskCopyLogDetailsResponseArgs
- Disk
Serial stringNumber - Disk Serial Number.
- Error
Log stringLink - Link for copy error logs.
- Verbose
Log stringLink - Link for copy verbose logs.
- Disk
Serial stringNumber - Disk Serial Number.
- Error
Log stringLink - Link for copy error logs.
- Verbose
Log stringLink - Link for copy verbose logs.
- disk
Serial StringNumber - Disk Serial Number.
- error
Log StringLink - Link for copy error logs.
- verbose
Log StringLink - Link for copy verbose logs.
- disk
Serial stringNumber - Disk Serial Number.
- error
Log stringLink - Link for copy error logs.
- verbose
Log stringLink - Link for copy verbose logs.
- disk_
serial_ strnumber - Disk Serial Number.
- error_
log_ strlink - Link for copy error logs.
- verbose_
log_ strlink - Link for copy verbose logs.
- disk
Serial StringNumber - Disk Serial Number.
- error
Log StringLink - Link for copy error logs.
- verbose
Log StringLink - Link for copy verbose logs.
DataBoxDiskCopyProgressResponse, DataBoxDiskCopyProgressResponseArgs
- Bytes
Copied double - Bytes copied during the copy of disk.
- Percent
Complete int - Indicates the percentage completed for the copy of the disk.
- Serial
Number string - The serial number of the disk
- Status string
- The Status of the copy
- Bytes
Copied float64 - Bytes copied during the copy of disk.
- Percent
Complete int - Indicates the percentage completed for the copy of the disk.
- Serial
Number string - The serial number of the disk
- Status string
- The Status of the copy
- bytes
Copied Double - Bytes copied during the copy of disk.
- percent
Complete Integer - Indicates the percentage completed for the copy of the disk.
- serial
Number String - The serial number of the disk
- status String
- The Status of the copy
- bytes
Copied number - Bytes copied during the copy of disk.
- percent
Complete number - Indicates the percentage completed for the copy of the disk.
- serial
Number string - The serial number of the disk
- status string
- The Status of the copy
- bytes_
copied float - Bytes copied during the copy of disk.
- percent_
complete int - Indicates the percentage completed for the copy of the disk.
- serial_
number str - The serial number of the disk
- status str
- The Status of the copy
- bytes
Copied Number - Bytes copied during the copy of disk.
- percent
Complete Number - Indicates the percentage completed for the copy of the disk.
- serial
Number String - The serial number of the disk
- status String
- The Status of the copy
DataBoxDiskJobDetails, DataBoxDiskJobDetailsArgs
- Contact
Details 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.
- Shipping
Address Pulumi.Azure Native. Data Box. Inputs. Shipping Address - Shipping address of the customer.
- Contact
Details 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.
- Shipping
Address ShippingAddress - Shipping address of the customer.
- contact
Details 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.
- shipping
Address ShippingAddress - Shipping address of the customer.
- contact
Details 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.
- shipping
Address ShippingAddress - Shipping address of the customer.
- contact_
details ContactDetails - Contact details for notification and shipping.
- data_
export_ Sequence[Datadetails Export Details] - Details of the data to be exported from azure.
- data_
import_ Sequence[Datadetails Import Details] - Details of the data to be imported into azure.
- expected_
data_ intsize_ in_ tera_ bytes - The expected size of the data, which needs to be transferred in this job, in terabytes.
- key_
encryption_ Keykey Encryption Key - Details about which key encryption type is being used.
- passkey str
- User entered passkey for DataBox Disk job.
- preferences Preferences
- Preferences for the order.
- preferred_
disks Mapping[str, int] - User preference on what size disks are needed for the job. The map is from the disk size in TB to the count. Eg. {2,5} means 5 disks of 2 TB size. Key is string but will be checked against an int.
- shipping_
address ShippingAddress - Shipping address of the customer.
- contact
Details 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.
- shipping
Address Property Map - Shipping address of the customer.
DataBoxDiskJobDetailsResponse, DataBoxDiskJobDetailsResponseArgs
- Chain
Of stringCustody Sas Key - Shared access key to download the chain of custody logs
- Contact
Details Pulumi.Azure Native. Data Box. Inputs. Contact Details Response - Contact details for notification and shipping.
- Copy
Log List<object>Details - List of copy log details.
- Copy
Progress List<Pulumi.Azure Native. Data Box. Inputs. Data Box Disk Copy Progress Response> - Copy progress per disk.
- Delivery
Package Pulumi.Azure Native. Data Box. Inputs. Package Shipping Details Response - Delivery package shipping details.
- Disks
And Dictionary<string, int>Size Details - Contains the map of disk serial number to the disk size being used for the job. Is returned only after the disks are shipped to the customer.
- Job
Stages List<Pulumi.Azure Native. Data Box. Inputs. Job Stages Response> - List of stages that run in the job.
- Return
Package Pulumi.Azure Native. Data Box. Inputs. Package Shipping Details Response - Return package shipping details.
- Reverse
Shipment stringLabel Sas Key - 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.
- Shipping
Address Pulumi.Azure Native. Data Box. Inputs. Shipping Address Response - Shipping address of the customer.
- Chain
Of stringCustody Sas Key - Shared access key to download the chain of custody logs
- Contact
Details ContactDetails Response - Contact details for notification and shipping.
- Copy
Log []interface{}Details - List of copy log details.
- Copy
Progress []DataBox Disk Copy Progress Response - Copy progress per disk.
- Delivery
Package PackageShipping Details Response - Delivery package shipping details.
- Disks
And map[string]intSize Details - Contains the map of disk serial number to the disk size being used for the job. Is returned only after the disks are shipped to the customer.
- Job
Stages []JobStages Response - List of stages that run in the job.
- Return
Package PackageShipping Details Response - Return package shipping details.
- Reverse
Shipment stringLabel Sas Key - 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.
- Shipping
Address ShippingAddress Response - Shipping address of the customer.
- chain
Of StringCustody Sas Key - Shared access key to download the chain of custody logs
- contact
Details ContactDetails Response - Contact details for notification and shipping.
- copy
Log List<Object>Details - List of copy log details.
- copy
Progress List<DataBox Disk Copy Progress Response> - Copy progress per disk.
- delivery
Package PackageShipping Details Response - Delivery package shipping details.
- disks
And Map<String,Integer>Size Details - Contains the map of disk serial number to the disk size being used for the job. Is returned only after the disks are shipped to the customer.
- job
Stages List<JobStages Response> - List of stages that run in the job.
- return
Package PackageShipping Details Response - Return package shipping details.
- reverse
Shipment StringLabel Sas Key - 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.
- shipping
Address ShippingAddress Response - Shipping address of the customer.
- chain
Of stringCustody Sas Key - Shared access key to download the chain of custody logs
- contact
Details ContactDetails Response - Contact details for notification and shipping.
- copy
Log (DataDetails Box Account 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 DataBox Disk Copy Progress Response[] - Copy progress per disk.
- delivery
Package PackageShipping Details Response - Delivery package shipping details.
- disks
And {[key: string]: number}Size Details - Contains the map of disk serial number to the disk size being used for the job. Is returned only after the disks are shipped to the customer.
- job
Stages JobStages Response[] - List of stages that run in the job.
- return
Package PackageShipping Details Response - Return package shipping details.
- reverse
Shipment stringLabel Sas Key - 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.
- shipping
Address ShippingAddress Response - Shipping address of the customer.
- chain_
of_ strcustody_ sas_ key - Shared access key to download the chain of custody logs
- contact_
details ContactDetails Response - Contact details for notification and shipping.
- copy_
log_ Sequence[Union[Datadetails Box Account Copy Log Details Response, Data Box Disk Copy Log Details Response, Data Box Heavy Account Copy Log Details Response]] - List of copy log details.
- copy_
progress Sequence[DataBox Disk Copy Progress Response] - Copy progress per disk.
- delivery_
package PackageShipping Details Response - Delivery package shipping details.
- disks_
and_ Mapping[str, int]size_ details - Contains the map of disk serial number to the disk size being used for the job. Is returned only after the disks are shipped to the customer.
- job_
stages Sequence[JobStages Response] - List of stages that run in the job.
- return_
package PackageShipping Details Response - Return package shipping details.
- reverse_
shipment_ strlabel_ sas_ key - Shared access key to download the return shipment label
- data_
export_ Sequence[Datadetails Export Details Response] - Details of the data to be exported from azure.
- data_
import_ Sequence[Datadetails Import Details Response] - Details of the data to be imported into azure.
- expected_
data_ intsize_ in_ tera_ bytes - The expected size of the data, which needs to be transferred in this job, in terabytes.
- key_
encryption_ Keykey Encryption Key Response - Details about which key encryption type is being used.
- passkey str
- User entered passkey for DataBox Disk job.
- preferences
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.
- shipping_
address ShippingAddress Response - Shipping address of the customer.
- chain
Of StringCustody Sas Key - Shared access key to download the chain of custody logs
- contact
Details Property Map - Contact details for notification and shipping.
- copy
Log List<Property Map | Property Map | Property Map>Details - List of copy log details.
- copy
Progress List<Property Map> - Copy progress per disk.
- delivery
Package Property Map - Delivery package shipping details.
- disks
And Map<Number>Size Details - Contains the map of disk serial number to the disk size being used for the job. Is returned only after the disks are shipped to the customer.
- job
Stages List<Property Map> - List of stages that run in the job.
- return
Package Property Map - Return package shipping details.
- reverse
Shipment StringLabel Sas Key - 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.
- shipping
Address Property Map - Shipping address of the customer.
DataBoxHeavyAccountCopyLogDetailsResponse, DataBoxHeavyAccountCopyLogDetailsResponseArgs
- Account
Name string - Account name.
- Copy
Log List<string>Link - Link for copy logs.
- Copy
Verbose List<string>Log Link - Link for copy verbose logs. This will be set only when the LogCollectionLevel is set to verbose.
- Account
Name string - Account name.
- Copy
Log []stringLink - Link for copy logs.
- Copy
Verbose []stringLog Link - Link for copy verbose logs. This will be set only when the LogCollectionLevel is set to verbose.
- account
Name String - Account name.
- copy
Log List<String>Link - Link for copy logs.
- copy
Verbose List<String>Log Link - Link for copy verbose logs. This will be set only when the LogCollectionLevel is set to verbose.
- account
Name string - Account name.
- copy
Log string[]Link - Link for copy logs.
- copy
Verbose string[]Log Link - Link for copy verbose logs. This will be set only when the LogCollectionLevel is set to verbose.
- account_
name str - Account name.
- copy_
log_ Sequence[str]link - Link for copy logs.
- copy_
verbose_ Sequence[str]log_ link - Link for copy verbose logs. This will be set only when the LogCollectionLevel is set to verbose.
- account
Name String - Account name.
- copy
Log List<String>Link - Link for copy logs.
- copy
Verbose List<String>Log Link - Link for copy verbose logs. This will be set only when the LogCollectionLevel is set to verbose.
DataBoxHeavyJobDetails, DataBoxHeavyJobDetailsArgs
- Contact
Details 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.
- Shipping
Address Pulumi.Azure Native. Data Box. Inputs. Shipping Address - Shipping address of the customer.
- Contact
Details 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.
- Shipping
Address ShippingAddress - Shipping address of the customer.
- contact
Details 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.
- shipping
Address ShippingAddress - Shipping address of the customer.
- contact
Details 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.
- shipping
Address ShippingAddress - Shipping address of the customer.
- contact_
details ContactDetails - Contact details for notification and shipping.
- data_
export_ Sequence[Datadetails Export Details] - Details of the data to be exported from azure.
- data_
import_ Sequence[Datadetails Import Details] - Details of the data to be imported into azure.
- device_
password str - Set Device password for unlocking Databox Heavy. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- expected_
data_ intsize_ in_ tera_ bytes - The expected size of the data, which needs to be transferred in this job, in terabytes.
- key_
encryption_ Keykey Encryption Key - Details about which key encryption type is being used.
- preferences Preferences
- Preferences for the order.
- shipping_
address ShippingAddress - Shipping address of the customer.
- contact
Details 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.
- shipping
Address Property Map - Shipping address of the customer.
DataBoxHeavyJobDetailsResponse, DataBoxHeavyJobDetailsResponseArgs
- Chain
Of stringCustody Sas Key - Shared access key to download the chain of custody logs
- Contact
Details Pulumi.Azure Native. Data Box. Inputs. Contact Details Response - Contact details for notification and shipping.
- Copy
Log List<object>Details - List of copy log details.
- Copy
Progress List<Pulumi.Azure Native. Data Box. Inputs. Copy Progress Response> - Copy progress per account.
- Delivery
Package Pulumi.Azure Native. Data Box. Inputs. Package Shipping Details Response - Delivery package shipping details.
- Job
Stages List<Pulumi.Azure Native. Data Box. Inputs. Job Stages Response> - List of stages that run in the job.
- Return
Package Pulumi.Azure Native. Data Box. Inputs. Package Shipping Details Response - Return package shipping details.
- Reverse
Shipment stringLabel Sas Key - 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.
- Shipping
Address Pulumi.Azure Native. Data Box. Inputs. Shipping Address Response - Shipping address of the customer.
- Chain
Of stringCustody Sas Key - Shared access key to download the chain of custody logs
- Contact
Details ContactDetails Response - Contact details for notification and shipping.
- Copy
Log []interface{}Details - List of copy log details.
- Copy
Progress []CopyProgress Response - Copy progress per account.
- Delivery
Package PackageShipping Details Response - Delivery package shipping details.
- Job
Stages []JobStages Response - List of stages that run in the job.
- Return
Package PackageShipping Details Response - Return package shipping details.
- Reverse
Shipment stringLabel Sas Key - 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.
- Shipping
Address ShippingAddress Response - Shipping address of the customer.
- chain
Of StringCustody Sas Key - Shared access key to download the chain of custody logs
- contact
Details ContactDetails Response - Contact details for notification and shipping.
- copy
Log List<Object>Details - List of copy log details.
- copy
Progress List<CopyProgress Response> - Copy progress per account.
- delivery
Package PackageShipping Details Response - Delivery package shipping details.
- job
Stages List<JobStages Response> - List of stages that run in the job.
- return
Package PackageShipping Details Response - Return package shipping details.
- reverse
Shipment StringLabel Sas Key - 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.
- shipping
Address ShippingAddress Response - Shipping address of the customer.
- chain
Of stringCustody Sas Key - Shared access key to download the chain of custody logs
- contact
Details ContactDetails Response - Contact details for notification and shipping.
- copy
Log (DataDetails Box Account 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 CopyProgress Response[] - Copy progress per account.
- delivery
Package PackageShipping Details Response - Delivery package shipping details.
- job
Stages JobStages Response[] - List of stages that run in the job.
- return
Package PackageShipping Details Response - Return package shipping details.
- reverse
Shipment stringLabel Sas Key - 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.
- shipping
Address ShippingAddress Response - Shipping address of the customer.
- chain_
of_ strcustody_ sas_ key - Shared access key to download the chain of custody logs
- contact_
details ContactDetails Response - Contact details for notification and shipping.
- copy_
log_ Sequence[Union[Datadetails Box Account Copy Log Details Response, Data Box Disk Copy Log Details Response, Data Box Heavy Account Copy Log Details Response]] - List of copy log details.
- copy_
progress Sequence[CopyProgress Response] - Copy progress per account.
- delivery_
package PackageShipping Details Response - Delivery package shipping details.
- job_
stages Sequence[JobStages Response] - List of stages that run in the job.
- return_
package PackageShipping Details Response - Return package shipping details.
- reverse_
shipment_ strlabel_ sas_ key - Shared access key to download the return shipment label
- data_
export_ Sequence[Datadetails Export Details Response] - Details of the data to be exported from azure.
- data_
import_ Sequence[Datadetails Import Details Response] - Details of the data to be imported into azure.
- device_
password str - Set Device password for unlocking Databox Heavy. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- expected_
data_ intsize_ in_ tera_ bytes - The expected size of the data, which needs to be transferred in this job, in terabytes.
- key_
encryption_ Keykey Encryption Key Response - Details about which key encryption type is being used.
- preferences
Preferences
Response - Preferences for the order.
- shipping_
address ShippingAddress Response - Shipping address of the customer.
- chain
Of StringCustody Sas Key - Shared access key to download the chain of custody logs
- contact
Details Property Map - Contact details for notification and shipping.
- copy
Log List<Property Map | Property Map | Property Map>Details - List of copy log details.
- copy
Progress List<Property Map> - Copy progress per account.
- delivery
Package Property Map - Delivery package shipping details.
- job
Stages List<Property Map> - List of stages that run in the job.
- return
Package Property Map - Return package shipping details.
- reverse
Shipment StringLabel Sas Key - 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.
- shipping
Address Property Map - Shipping address of the customer.
DataBoxJobDetails, DataBoxJobDetailsArgs
- Contact
Details 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.
- Shipping
Address Pulumi.Azure Native. Data Box. Inputs. Shipping Address - Shipping address of the customer.
- Contact
Details 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.
- Shipping
Address ShippingAddress - Shipping address of the customer.
- contact
Details 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.
- shipping
Address ShippingAddress - Shipping address of the customer.
- contact
Details 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.
- shipping
Address ShippingAddress - Shipping address of the customer.
- contact_
details ContactDetails - Contact details for notification and shipping.
- data_
export_ Sequence[Datadetails Export Details] - Details of the data to be exported from azure.
- data_
import_ Sequence[Datadetails Import Details] - Details of the data to be imported into azure.
- device_
password str - Set Device password for unlocking Databox. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- expected_
data_ intsize_ in_ tera_ bytes - The expected size of the data, which needs to be transferred in this job, in terabytes.
- key_
encryption_ Keykey Encryption Key - Details about which key encryption type is being used.
- preferences Preferences
- Preferences for the order.
- shipping_
address ShippingAddress - Shipping address of the customer.
- contact
Details 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.
- shipping
Address Property Map - Shipping address of the customer.
DataBoxJobDetailsResponse, DataBoxJobDetailsResponseArgs
- Chain
Of stringCustody Sas Key - Shared access key to download the chain of custody logs
- Contact
Details Pulumi.Azure Native. Data Box. Inputs. Contact Details Response - Contact details for notification and shipping.
- Copy
Log List<object>Details - List of copy log details.
- Copy
Progress List<Pulumi.Azure Native. Data Box. Inputs. Copy Progress Response> - Copy progress per storage account.
- Delivery
Package Pulumi.Azure Native. Data Box. Inputs. Package Shipping Details Response - Delivery package shipping details.
- Job
Stages List<Pulumi.Azure Native. Data Box. Inputs. Job Stages Response> - List of stages that run in the job.
- Return
Package Pulumi.Azure Native. Data Box. Inputs. Package Shipping Details Response - Return package shipping details.
- Reverse
Shipment stringLabel Sas Key - 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.
- Shipping
Address Pulumi.Azure Native. Data Box. Inputs. Shipping Address Response - Shipping address of the customer.
- Chain
Of stringCustody Sas Key - Shared access key to download the chain of custody logs
- Contact
Details ContactDetails Response - Contact details for notification and shipping.
- Copy
Log []interface{}Details - List of copy log details.
- Copy
Progress []CopyProgress Response - Copy progress per storage account.
- Delivery
Package PackageShipping Details Response - Delivery package shipping details.
- Job
Stages []JobStages Response - List of stages that run in the job.
- Return
Package PackageShipping Details Response - Return package shipping details.
- Reverse
Shipment stringLabel Sas Key - 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.
- Shipping
Address ShippingAddress Response - Shipping address of the customer.
- chain
Of StringCustody Sas Key - Shared access key to download the chain of custody logs
- contact
Details ContactDetails Response - Contact details for notification and shipping.
- copy
Log List<Object>Details - List of copy log details.
- copy
Progress List<CopyProgress Response> - Copy progress per storage account.
- delivery
Package PackageShipping Details Response - Delivery package shipping details.
- job
Stages List<JobStages Response> - List of stages that run in the job.
- return
Package PackageShipping Details Response - Return package shipping details.
- reverse
Shipment StringLabel Sas Key - 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.
- shipping
Address ShippingAddress Response - Shipping address of the customer.
- chain
Of stringCustody Sas Key - Shared access key to download the chain of custody logs
- contact
Details ContactDetails Response - Contact details for notification and shipping.
- copy
Log (DataDetails Box Account 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 CopyProgress Response[] - Copy progress per storage account.
- delivery
Package PackageShipping Details Response - Delivery package shipping details.
- job
Stages JobStages Response[] - List of stages that run in the job.
- return
Package PackageShipping Details Response - Return package shipping details.
- reverse
Shipment stringLabel Sas Key - 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.
- shipping
Address ShippingAddress Response - Shipping address of the customer.
- chain_
of_ strcustody_ sas_ key - Shared access key to download the chain of custody logs
- contact_
details ContactDetails Response - Contact details for notification and shipping.
- copy_
log_ Sequence[Union[Datadetails Box Account Copy Log Details Response, Data Box Disk Copy Log Details Response, Data Box Heavy Account Copy Log Details Response]] - List of copy log details.
- copy_
progress Sequence[CopyProgress Response] - Copy progress per storage account.
- delivery_
package PackageShipping Details Response - Delivery package shipping details.
- job_
stages Sequence[JobStages Response] - List of stages that run in the job.
- return_
package PackageShipping Details Response - Return package shipping details.
- reverse_
shipment_ strlabel_ sas_ key - Shared access key to download the return shipment label
- data_
export_ Sequence[Datadetails Export Details Response] - Details of the data to be exported from azure.
- data_
import_ Sequence[Datadetails Import Details Response] - Details of the data to be imported into azure.
- device_
password str - Set Device password for unlocking Databox. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- expected_
data_ intsize_ in_ tera_ bytes - The expected size of the data, which needs to be transferred in this job, in terabytes.
- key_
encryption_ Keykey Encryption Key Response - Details about which key encryption type is being used.
- preferences
Preferences
Response - Preferences for the order.
- shipping_
address ShippingAddress Response - Shipping address of the customer.
- chain
Of StringCustody Sas Key - Shared access key to download the chain of custody logs
- contact
Details Property Map - Contact details for notification and shipping.
- copy
Log List<Property Map | Property Map | Property Map>Details - List of copy log details.
- copy
Progress List<Property Map> - Copy progress per storage account.
- delivery
Package Property Map - Delivery package shipping details.
- job
Stages List<Property Map> - List of stages that run in the job.
- return
Package Property Map - Return package shipping details.
- reverse
Shipment StringLabel Sas Key - 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.
- shipping
Address Property Map - Shipping address of the customer.
DataExportDetails, DataExportDetailsArgs
- Account
Details 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 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 ManagedDisk | StorageDetails Account Details - Account details of the data to be transferred
- Transfer
Configuration TransferConfiguration - Configuration for the data transfer.
- Log
Collection string | LogLevel Collection Level - Level of the logs to be collected.
- account
Details ManagedDisk | StorageDetails Account Details - Account details of the data to be transferred
- transfer
Configuration TransferConfiguration - Configuration for the data transfer.
- log
Collection String | LogLevel Collection Level - Level of the logs to be collected.
- account
Details ManagedDisk | StorageDetails Account Details - Account details of the data to be transferred
- transfer
Configuration TransferConfiguration - Configuration for the data transfer.
- log
Collection string | LogLevel Collection Level - Level of the logs to be collected.
- account_
details ManagedDisk | StorageDetails Account Details - Account details of the data to be transferred
- transfer_
configuration TransferConfiguration - Configuration for the data transfer.
- log_
collection_ str | Loglevel Collection Level - Level of the logs to be collected.
- account
Details Property Map | Property Map - Account details of the data to be transferred
- transfer
Configuration Property Map - Configuration for the data transfer.
- log
Collection String | "Error" | "Verbose"Level - Level of the logs to be collected.
DataExportDetailsResponse, DataExportDetailsResponseArgs
- Account
Details 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 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 ManagedDisk | StorageDetails Response Account Details Response - Account details of the data to be transferred
- Transfer
Configuration TransferConfiguration Response - Configuration for the data transfer.
- Log
Collection stringLevel - Level of the logs to be collected.
- account
Details ManagedDisk | StorageDetails Response Account Details Response - Account details of the data to be transferred
- transfer
Configuration TransferConfiguration Response - Configuration for the data transfer.
- log
Collection StringLevel - Level of the logs to be collected.
- account
Details ManagedDisk | StorageDetails Response Account Details Response - Account details of the data to be transferred
- transfer
Configuration TransferConfiguration Response - Configuration for the data transfer.
- log
Collection stringLevel - Level of the logs to be collected.
- account_
details ManagedDisk | StorageDetails Response Account Details Response - Account details of the data to be transferred
- transfer_
configuration TransferConfiguration Response - Configuration for the data transfer.
- log_
collection_ strlevel - Level of the logs to be collected.
- account
Details Property Map | Property Map - Account details of the data to be transferred
- transfer
Configuration Property Map - Configuration for the data transfer.
- log
Collection StringLevel - Level of the logs to be collected.
DataImportDetails, DataImportDetailsArgs
- Account
Details 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
- Account
Details ManagedDisk | StorageDetails Account Details - Account details of the data to be transferred
- account
Details ManagedDisk | StorageDetails Account Details - Account details of the data to be transferred
- account
Details ManagedDisk | StorageDetails Account Details - Account details of the data to be transferred
- account_
details ManagedDisk | StorageDetails Account Details - Account details of the data to be transferred
- account
Details Property Map | Property Map - Account details of the data to be transferred
DataImportDetailsResponse, DataImportDetailsResponseArgs
- Account
Details 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
- Account
Details ManagedDisk | StorageDetails Response Account Details Response - Account details of the data to be transferred
- account
Details ManagedDisk | StorageDetails Response Account Details Response - Account details of the data to be transferred
- account
Details ManagedDisk | StorageDetails Response Account Details Response - Account details of the data to be transferred
- account_
details ManagedDisk | StorageDetails Response Account Details Response - Account details of the data to be transferred
- account
Details Property Map | Property Map - Account details of the data to be transferred
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.
- Double
Encryption string | DoubleEncryption - Defines secondary layer of software-based encryption enablement.
- double
Encryption String | DoubleEncryption - Defines secondary layer of software-based encryption enablement.
- double
Encryption string | DoubleEncryption - Defines secondary layer of software-based encryption enablement.
- double_
encryption str | DoubleEncryption - Defines secondary layer of software-based encryption enablement.
- double
Encryption String | "Enabled" | "Disabled" - Defines secondary layer of software-based encryption enablement.
EncryptionPreferencesResponse, EncryptionPreferencesResponseArgs
- Double
Encryption string - Defines secondary layer of software-based encryption enablement.
- Double
Encryption string - Defines secondary layer of software-based encryption enablement.
- double
Encryption String - Defines secondary layer of software-based encryption enablement.
- double
Encryption string - Defines secondary layer of software-based encryption enablement.
- double_
encryption str - Defines secondary layer of software-based encryption enablement.
- double
Encryption String - Defines secondary layer of software-based encryption enablement.
FilterFileDetails, FilterFileDetailsArgs
- Filter
File stringPath - Path of the file that contains the details of all items to transfer.
- Filter
File string | Pulumi.Type Azure Native. Data Box. Filter File Type - Type of the filter file.
- Filter
File stringPath - Path of the file that contains the details of all items to transfer.
- Filter
File string | FilterType File Type - Type of the filter file.
- filter
File StringPath - Path of the file that contains the details of all items to transfer.
- filter
File String | FilterType File Type - Type of the filter file.
- filter
File stringPath - Path of the file that contains the details of all items to transfer.
- filter
File string | FilterType File Type - Type of the filter file.
- filter_
file_ strpath - Path of the file that contains the details of all items to transfer.
- filter_
file_ str | Filtertype File Type - Type of the filter file.
- filter
File StringPath - Path of the file that contains the details of all items to transfer.
- filter
File String | "AzureType Blob" | "Azure File" - Type of the filter file.
FilterFileDetailsResponse, FilterFileDetailsResponseArgs
- Filter
File stringPath - Path of the file that contains the details of all items to transfer.
- Filter
File stringType - Type of the filter file.
- Filter
File stringPath - Path of the file that contains the details of all items to transfer.
- Filter
File stringType - Type of the filter file.
- filter
File StringPath - Path of the file that contains the details of all items to transfer.
- filter
File StringType - Type of the filter file.
- filter
File stringPath - Path of the file that contains the details of all items to transfer.
- filter
File stringType - Type of the filter file.
- filter_
file_ strpath - Path of the file that contains the details of all items to transfer.
- filter_
file_ strtype - Type of the filter file.
- filter
File StringPath - Path of the file that contains the details of all items to transfer.
- filter
File StringType - 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.
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.
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
- Display
Name string - Display name of the job stage.
- Job
Stage objectDetails - Job Stage Details
- Stage
Name string - Name of the job stage.
- Stage
Status string - Status of the job stage.
- Stage
Time string - Time for the job stage in UTC ISO 8601 format.
- Display
Name string - Display name of the job stage.
- Job
Stage interface{}Details - Job Stage Details
- Stage
Name string - Name of the job stage.
- Stage
Status string - Status of the job stage.
- Stage
Time string - Time for the job stage in UTC ISO 8601 format.
- display
Name String - Display name of the job stage.
- job
Stage ObjectDetails - Job Stage Details
- stage
Name String - Name of the job stage.
- stage
Status String - Status of the job stage.
- stage
Time String - Time for the job stage in UTC ISO 8601 format.
- display
Name string - Display name of the job stage.
- job
Stage anyDetails - Job Stage Details
- stage
Name string - Name of the job stage.
- stage
Status string - Status of the job stage.
- stage
Time string - Time for the job stage in UTC ISO 8601 format.
- display_
name str - Display name of the job stage.
- job_
stage_ Anydetails - Job Stage Details
- stage_
name str - Name of the job stage.
- stage_
status str - Status of the job stage.
- stage_
time str - Time for the job stage in UTC ISO 8601 format.
- display
Name String - Display name of the job stage.
- job
Stage AnyDetails - Job Stage Details
- stage
Name String - Name of the job stage.
- stage
Status String - Status of the job stage.
- stage
Time 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 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 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 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 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 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 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 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 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 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 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 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 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.
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 stringId - Resource Group Id of the compute disks.
- Staging
Storage stringAccount Id - Resource Id of the storage account that can be used to copy the vhd for staging.
- string
- Password for all the shares to be created on the device. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- Resource
Group stringId - Resource Group Id of the compute disks.
- Staging
Storage stringAccount Id - Resource Id of the storage account that can be used to copy the vhd for staging.
- string
- Password for all the shares to be created on the device. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- resource
Group StringId - Resource Group Id of the compute disks.
- staging
Storage StringAccount Id - Resource Id of the storage account that can be used to copy the vhd for staging.
- String
- Password for all the shares to be created on the device. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- resource
Group stringId - Resource Group Id of the compute disks.
- staging
Storage stringAccount Id - Resource Id of the storage account that can be used to copy the vhd for staging.
- string
- Password for all the shares to be created on the device. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- resource_
group_ strid - Resource Group Id of the compute disks.
- staging_
storage_ straccount_ id - Resource Id of the storage account that can be used to copy the vhd for staging.
- str
- Password for all the shares to be created on the device. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- resource
Group StringId - Resource Group Id of the compute disks.
- staging
Storage StringAccount Id - Resource Id of the storage account that can be used to copy the vhd for staging.
- String
- Password for all the shares to be created on the device. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
ManagedDiskDetailsResponse, ManagedDiskDetailsResponseArgs
- Resource
Group stringId - Resource Group Id of the compute disks.
- Staging
Storage stringAccount Id - Resource Id of the storage account that can be used to copy the vhd for staging.
- Resource
Group stringId - Resource Group Id of the compute disks.
- Staging
Storage stringAccount Id - Resource Id of the storage account that can be used to copy the vhd for staging.
- resource
Group StringId - Resource Group Id of the compute disks.
- staging
Storage StringAccount Id - Resource Id of the storage account that can be used to copy the vhd for staging.
- resource
Group stringId - Resource Group Id of the compute disks.
- staging
Storage stringAccount Id - Resource Id of the storage account that can be used to copy the vhd for staging.
- resource_
group_ strid - Resource Group Id of the compute disks.
- staging_
storage_ straccount_ id - Resource Id of the storage account that can be used to copy the vhd for staging.
- resource
Group StringId - Resource Group Id of the compute disks.
- staging
Storage StringAccount Id - Resource Id of the storage account that can be used to copy the vhd for staging.
NotificationPreference, NotificationPreferenceArgs
- Send
Notification bool - Notification is required or not.
- Stage
Name string | Pulumi.Azure Native. Data Box. Notification Stage Name - Name of the stage.
- Send
Notification bool - Notification is required or not.
- Stage
Name string | NotificationStage Name - Name of the stage.
- send
Notification Boolean - Notification is required or not.
- stage
Name String | NotificationStage Name - Name of the stage.
- send
Notification boolean - Notification is required or not.
- stage
Name string | NotificationStage Name - Name of the stage.
- send_
notification bool - Notification is required or not.
- stage_
name str | NotificationStage Name - Name of the stage.
- send
Notification Boolean - Notification is required or not.
- stage
Name String | "DevicePrepared" | "Dispatched" | "Delivered" | "Picked Up" | "At Azure DC" | "Data Copy" - Name of the stage.
NotificationPreferenceResponse, NotificationPreferenceResponseArgs
- Send
Notification bool - Notification is required or not.
- Stage
Name string - Name of the stage.
- Send
Notification bool - Notification is required or not.
- Stage
Name string - Name of the stage.
- send
Notification Boolean - Notification is required or not.
- stage
Name String - Name of the stage.
- send
Notification boolean - Notification is required or not.
- stage
Name string - Name of the stage.
- send_
notification bool - Notification is required or not.
- stage_
name str - Name of the stage.
- send
Notification Boolean - Notification is required or not.
- stage
Name 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.
- 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.
- 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.
- 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.
- 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.
- "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.
PackageShippingDetailsResponse, PackageShippingDetailsResponseArgs
- Carrier
Name string - Name of the carrier.
- Tracking
Id string - Tracking Id of shipment.
- Tracking
Url string - Url where shipment can be tracked.
- Carrier
Name string - Name of the carrier.
- Tracking
Id string - Tracking Id of shipment.
- Tracking
Url string - Url where shipment can be tracked.
- carrier
Name String - Name of the carrier.
- tracking
Id String - Tracking Id of shipment.
- tracking
Url String - Url where shipment can be tracked.
- carrier
Name string - Name of the carrier.
- tracking
Id string - Tracking Id of shipment.
- tracking
Url string - Url where shipment can be tracked.
- carrier_
name str - Name of the carrier.
- tracking_
id str - Tracking Id of shipment.
- tracking_
url str - Url where shipment can be tracked.
- carrier
Name String - Name of the carrier.
- tracking
Id String - Tracking Id of shipment.
- tracking
Url 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- transport
Preferences Property Map - Preferences related to the shipment logistics of the sku.
ResourceIdentity, ResourceIdentityArgs
- Type string
- Identity type
- User
Assigned Dictionary<string, object>Identities - User Assigned Identities
- Type string
- Identity type
- User
Assigned map[string]interface{}Identities - User Assigned Identities
- type String
- Identity type
- user
Assigned Map<String,Object>Identities - User Assigned Identities
- type string
- Identity type
- user
Assigned {[key: string]: any}Identities - User Assigned Identities
- type str
- Identity type
- user_
assigned_ Mapping[str, Any]identities - User Assigned Identities
- type String
- Identity type
- user
Assigned Map<Any>Identities - User Assigned Identities
ResourceIdentityResponse, ResourceIdentityResponseArgs
- Principal
Id string - Service Principal Id backing the Msi
- Tenant
Id 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 string - Service Principal Id backing the Msi
- Tenant
Id string - Home Tenant Id
- Type string
- Identity type
- User
Assigned map[string]UserIdentities Assigned Identity Response - User Assigned Identities
- principal
Id String - Service Principal Id backing the Msi
- tenant
Id String - Home Tenant Id
- type String
- Identity type
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - User Assigned Identities
- principal
Id string - Service Principal Id backing the Msi
- tenant
Id string - Home Tenant Id
- type string
- Identity type
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - User Assigned Identities
- principal_
id str - Service Principal Id backing the Msi
- tenant_
id str - Home Tenant Id
- type str
- Identity type
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Response] - User Assigned Identities
- principal
Id String - Service Principal Id backing the Msi
- tenant
Id String - Home Tenant Id
- type String
- Identity type
- user
Assigned Map<Property Map>Identities - User Assigned Identities
ShippingAddress, ShippingAddressArgs
- Country string
- Name of the Country.
- Street
Address1 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.
- State
Or stringProvince - Name of the State or Province.
- Street
Address2 string - Street Address line 2.
- Street
Address3 string - Street Address line 3.
- Zip
Extended stringCode - Extended Zip Code.
- Country string
- Name of the Country.
- Street
Address1 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.
- State
Or stringProvince - Name of the State or Province.
- Street
Address2 string - Street Address line 2.
- Street
Address3 string - Street Address line 3.
- Zip
Extended stringCode - Extended Zip Code.
- country String
- Name of the Country.
- street
Address1 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.
- state
Or StringProvince - Name of the State or Province.
- street
Address2 String - Street Address line 2.
- street
Address3 String - Street Address line 3.
- zip
Extended StringCode - Extended Zip Code.
- country string
- Name of the Country.
- street
Address1 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.
- state
Or stringProvince - Name of the State or Province.
- street
Address2 string - Street Address line 2.
- street
Address3 string - Street Address line 3.
- zip
Extended stringCode - Extended Zip Code.
- country str
- Name of the Country.
- street_
address1 str - Street Address line 1.
- address_
type str | AddressType - Type of address.
- city str
- Name of the City.
- company_
name str - Name of the company.
- postal_
code str - Postal code.
- state_
or_ strprovince - Name of the State or Province.
- street_
address2 str - Street Address line 2.
- street_
address3 str - Street Address line 3.
- zip_
extended_ strcode - Extended Zip Code.
- country String
- Name of the Country.
- street
Address1 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.
- state
Or StringProvince - Name of the State or Province.
- street
Address2 String - Street Address line 2.
- street
Address3 String - Street Address line 3.
- zip
Extended StringCode - Extended Zip Code.
ShippingAddressResponse, ShippingAddressResponseArgs
- Country string
- Name of the Country.
- Street
Address1 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.
- State
Or stringProvince - Name of the State or Province.
- Street
Address2 string - Street Address line 2.
- Street
Address3 string - Street Address line 3.
- Zip
Extended stringCode - Extended Zip Code.
- Country string
- Name of the Country.
- Street
Address1 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.
- State
Or stringProvince - Name of the State or Province.
- Street
Address2 string - Street Address line 2.
- Street
Address3 string - Street Address line 3.
- Zip
Extended stringCode - Extended Zip Code.
- country String
- Name of the Country.
- street
Address1 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.
- state
Or StringProvince - Name of the State or Province.
- street
Address2 String - Street Address line 2.
- street
Address3 String - Street Address line 3.
- zip
Extended StringCode - Extended Zip Code.
- country string
- Name of the Country.
- street
Address1 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.
- state
Or stringProvince - Name of the State or Province.
- street
Address2 string - Street Address line 2.
- street
Address3 string - Street Address line 3.
- zip
Extended stringCode - Extended Zip Code.
- country str
- Name of the Country.
- street_
address1 str - Street Address line 1.
- address_
type str - Type of address.
- city str
- Name of the City.
- company_
name str - Name of the company.
- postal_
code str - Postal code.
- state_
or_ strprovince - Name of the State or Province.
- street_
address2 str - Street Address line 2.
- street_
address3 str - Street Address line 3.
- zip_
extended_ strcode - Extended Zip Code.
- country String
- Name of the Country.
- street
Address1 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.
- state
Or StringProvince - Name of the State or Province.
- street
Address2 String - Street Address line 2.
- street
Address3 String - Street Address line 3.
- zip
Extended StringCode - Extended Zip Code.
Sku, SkuArgs
- Name
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
string | Sku
Name - The sku name.
- Display
Name string - The display name of the sku.
- Family string
- The sku family.
- name
String | Sku
Name - The sku name.
- display
Name String - The display name of the sku.
- family String
- The sku family.
- name
string | Sku
Name - The sku name.
- display
Name string - The display name of the sku.
- family string
- The sku family.
- name
str | Sku
Name - The sku name.
- display_
name str - The display name of the sku.
- family str
- The sku family.
- name
String | "Data
Box" | "Data Box Disk" | "Data Box Heavy" - 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.
- Sku
Name Data Box - DataBoxData Box.
- Sku
Name Data Box Disk - DataBoxDiskData Box Disk.
- Sku
Name Data Box Heavy - DataBoxHeavyData Box Heavy.
- Data
Box - DataBoxData Box.
- Data
Box Disk - DataBoxDiskData Box Disk.
- Data
Box Heavy - DataBoxHeavyData Box Heavy.
- Data
Box - DataBoxData Box.
- Data
Box Disk - DataBoxDiskData Box Disk.
- Data
Box Heavy - DataBoxHeavyData Box Heavy.
- DATA_BOX
- DataBoxData Box.
- DATA_BOX_DISK
- DataBoxDiskData Box Disk.
- DATA_BOX_HEAVY
- DataBoxHeavyData Box Heavy.
- "Data
Box" - DataBoxData Box.
- "Data
Box Disk" - DataBoxDiskData Box Disk.
- "Data
Box Heavy" - DataBoxHeavyData Box Heavy.
SkuResponse, SkuResponseArgs
- Name string
- The sku name.
- Display
Name string - The display name of the sku.
- Family string
- The sku family.
- Name string
- The sku name.
- Display
Name string - The display name of the sku.
- Family string
- The sku family.
- name String
- The sku name.
- display
Name String - The display name of the sku.
- family String
- The sku family.
- name string
- The sku name.
- display
Name string - The display name of the sku.
- family string
- The sku family.
- name str
- The sku name.
- display_
name str - The display name of the sku.
- family str
- The sku family.
- name String
- The sku name.
- display
Name String - The display name of the sku.
- family String
- The sku family.
StorageAccountDetails, StorageAccountDetailsArgs
- Storage
Account stringId - Storage Account Resource Id.
- string
- Password for all the shares to be created on the device. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- Storage
Account stringId - Storage Account Resource Id.
- string
- Password for all the shares to be created on the device. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- storage
Account StringId - Storage Account Resource Id.
- String
- Password for all the shares to be created on the device. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- storage
Account stringId - Storage Account Resource Id.
- string
- Password for all the shares to be created on the device. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- storage_
account_ strid - Storage Account Resource Id.
- str
- Password for all the shares to be created on the device. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
- storage
Account StringId - Storage Account Resource Id.
- String
- Password for all the shares to be created on the device. Should not be passed for TransferType:ExportFromAzure jobs. If this is not passed, the service will generate password itself. This will not be returned in Get Call. Password Requirements : Password must be minimum of 12 and maximum of 64 characters. Password must have at least one uppercase alphabet, one number and one special character. Password cannot have the following characters : IilLoO0 Password can have only alphabets, numbers and these characters : @#-$%^!+=;:_()]+
StorageAccountDetailsResponse, StorageAccountDetailsResponseArgs
- Storage
Account stringId - Storage Account Resource Id.
- Storage
Account stringId - Storage Account Resource Id.
- storage
Account StringId - Storage Account Resource Id.
- storage
Account stringId - Storage Account Resource Id.
- storage_
account_ strid - Storage Account Resource Id.
- storage
Account StringId - Storage Account Resource Id.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC)
- Created
By string - A string identifier for the identity that created the resource
- Created
By stringType - The type of identity that created the resource: user, application, managedIdentity
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - A string identifier for the identity that last modified the resource
- Last
Modified stringBy Type - The type of identity that last modified the resource: user, application, managedIdentity
- Created
At string - The timestamp of resource creation (UTC)
- Created
By string - A string identifier for the identity that created the resource
- Created
By stringType - The type of identity that created the resource: user, application, managedIdentity
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - A string identifier for the identity that last modified the resource
- Last
Modified stringBy Type - The type of identity that last modified the resource: user, application, managedIdentity
- created
At String - The timestamp of resource creation (UTC)
- created
By String - A string identifier for the identity that created the resource
- created
By StringType - The type of identity that created the resource: user, application, managedIdentity
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - A string identifier for the identity that last modified the resource
- last
Modified StringBy Type - The type of identity that last modified the resource: user, application, managedIdentity
- created
At string - The timestamp of resource creation (UTC)
- created
By string - A string identifier for the identity that created the resource
- created
By stringType - The type of identity that created the resource: user, application, managedIdentity
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - A string identifier for the identity that last modified the resource
- last
Modified stringBy Type - The type of identity that last modified the resource: user, application, managedIdentity
- created_
at str - The timestamp of resource creation (UTC)
- created_
by str - A string identifier for the identity that created the resource
- created_
by_ strtype - The type of identity that created the resource: user, application, managedIdentity
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - A string identifier for the identity that last modified the resource
- last_
modified_ strby_ type - The type of identity that last modified the resource: user, application, managedIdentity
- created
At String - The timestamp of resource creation (UTC)
- created
By String - A string identifier for the identity that created the resource
- created
By StringType - The type of identity that created the resource: user, application, managedIdentity
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - A string identifier for the identity that last modified the resource
- last
Modified StringBy Type - The type of identity that last modified the resource: user, application, managedIdentity
TransferAllDetails, TransferAllDetailsArgs
- Data
Account string | Pulumi.Type 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 string | DataType Account Type - Type of the account of data
- Transfer
All boolBlobs - To indicate if all Azure blobs have to be transferred
- Transfer
All boolFiles - To indicate if all Azure Files have to be transferred
- data
Account String | DataType Account 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 string | DataType Account 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_ str | Datatype Account Type - Type of the account of data
- transfer_
all_ boolblobs - To indicate if all Azure blobs have to be transferred
- transfer_
all_ boolfiles - To indicate if all Azure Files have to be transferred
- data
Account String | "StorageType Account" | "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 stringType - 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 stringType - 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 StringType - 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 stringType - 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_ strtype - Type of the account of data
- transfer_
all_ boolblobs - To indicate if all Azure blobs have to be transferred
- transfer_
all_ boolfiles - To indicate if all Azure Files have to be transferred
- data
Account StringType - 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 string | Pulumi.Type 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 string | TransferType Configuration Type - Type of the configuration for transfer.
- Transfer
All TransferDetails Configuration Transfer All Details - Map of filter type and the details to transfer all data. This field is required only if the TransferConfigurationType is given as TransferAll
- Transfer
Filter TransferDetails Configuration Transfer Filter Details - Map of filter type and the details to filter. This field is required only if the TransferConfigurationType is given as TransferUsingFilter.
- transfer
Configuration String | TransferType Configuration Type - Type of the configuration for transfer.
- transfer
All TransferDetails Configuration Transfer All Details - Map of filter type and the details to transfer all data. This field is required only if the TransferConfigurationType is given as TransferAll
- transfer
Filter TransferDetails Configuration Transfer Filter Details - Map of filter type and the details to filter. This field is required only if the TransferConfigurationType is given as TransferUsingFilter.
- transfer
Configuration string | TransferType Configuration Type - Type of the configuration for transfer.
- transfer
All TransferDetails Configuration Transfer All Details - Map of filter type and the details to transfer all data. This field is required only if the TransferConfigurationType is given as TransferAll
- transfer
Filter TransferDetails Configuration Transfer Filter Details - Map of filter type and the details to filter. This field is required only if the TransferConfigurationType is given as TransferUsingFilter.
- transfer_
configuration_ str | Transfertype Configuration Type - Type of the configuration for transfer.
- transfer_
all_ Transferdetails Configuration Transfer All Details - Map of filter type and the details to transfer all data. This field is required only if the TransferConfigurationType is given as TransferAll
- transfer_
filter_ Transferdetails Configuration Transfer Filter Details - Map of filter type and the details to filter. This field is required only if the TransferConfigurationType is given as TransferUsingFilter.
- transfer
Configuration String | "TransferType All" | "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 stringType - 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 stringType - 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 StringType - 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 stringType - 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_ strtype - Type of the configuration for transfer.
- transfer_
all_ Transferdetails Configuration Response Transfer All Details - Map of filter type and the details to transfer all data. This field is required only if the TransferConfigurationType is given as TransferAll
- transfer_
filter_ Transferdetails Configuration Response Transfer Filter Details - Map of filter type and the details to filter. This field is required only if the TransferConfigurationType is given as TransferUsingFilter.
- transfer
Configuration StringType - 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 string | Pulumi.Type 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 string | DataType Account Type - Type of the account of data.
- Azure
File AzureFilter Details File Filter Details - Filter details to transfer Azure files.
- Blob
Filter BlobDetails Filter Details - Filter details to transfer blobs.
- Filter
File []FilterDetails File Details - Details of the filter files to be used for data transfer.
- data
Account String | DataType Account Type - Type of the account of data.
- azure
File AzureFilter Details File Filter Details - Filter details to transfer Azure files.
- blob
Filter BlobDetails Filter Details - Filter details to transfer blobs.
- filter
File List<FilterDetails File Details> - Details of the filter files to be used for data transfer.
- data
Account string | DataType Account Type - Type of the account of data.
- azure
File AzureFilter Details File Filter Details - Filter details to transfer Azure files.
- blob
Filter BlobDetails Filter Details - Filter details to transfer blobs.
- filter
File FilterDetails File Details[] - Details of the filter files to be used for data transfer.
- data_
account_ str | Datatype Account Type - Type of the account of data.
- azure_
file_ Azurefilter_ details File Filter Details - Filter details to transfer Azure files.
- blob_
filter_ Blobdetails Filter Details - Filter details to transfer blobs.
- filter_
file_ Sequence[Filterdetails File Details] - Details of the filter files to be used for data transfer.
- data
Account String | "StorageType Account" | "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 stringType - 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 stringType - 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 StringType - 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 stringType - 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_ strtype - Type of the account of data.
- azure_
file_ Azurefilter_ details File Filter Details Response - Filter details to transfer Azure files.
- blob_
filter_ Blobdetails Filter Details Response - Filter details to transfer blobs.
- filter_
file_ Sequence[Filterdetails File Details Response] - Details of the filter files to be used for data transfer.
- data
Account StringType - 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 string | Pulumi.Type Azure Native. Data Box. Transport Shipment Types - Indicates Shipment Logistics type that the customer preferred.
- Preferred
Shipment string | TransportType Shipment Types - Indicates Shipment Logistics type that the customer preferred.
- preferred
Shipment String | TransportType Shipment Types - Indicates Shipment Logistics type that the customer preferred.
- preferred
Shipment string | TransportType Shipment Types - Indicates Shipment Logistics type that the customer preferred.
- preferred_
shipment_ str | Transporttype Shipment Types - Indicates Shipment Logistics type that the customer preferred.
- preferred
Shipment String | "CustomerType Managed" | "Microsoft Managed" - Indicates Shipment Logistics type that the customer preferred.
TransportPreferencesResponse, TransportPreferencesResponseArgs
- Preferred
Shipment stringType - Indicates Shipment Logistics type that the customer preferred.
- Preferred
Shipment stringType - Indicates Shipment Logistics type that the customer preferred.
- preferred
Shipment StringType - Indicates Shipment Logistics type that the customer preferred.
- preferred
Shipment stringType - Indicates Shipment Logistics type that the customer preferred.
- preferred_
shipment_ strtype - Indicates Shipment Logistics type that the customer preferred.
- preferred
Shipment StringType - 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 string - The client id of user assigned identity.
- Principal
Id string - The principal id of user assigned identity.
- Client
Id string - The client id of user assigned identity.
- Principal
Id string - The principal id of user assigned identity.
- client
Id String - The client id of user assigned identity.
- principal
Id String - The principal id of user assigned identity.
- client
Id string - The client id of user assigned identity.
- principal
Id string - The principal id of user assigned identity.
- client_
id str - The client id of user assigned identity.
- principal_
id str - The principal id of user assigned identity.
- client
Id String - The client id of user assigned identity.
- principal
Id 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/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.DataBox/jobs/TestJobName1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0