azure-native.importexport.Job
Explore with Pulumi AI
Contains the job information. Azure REST API version: 2021-01-01. Prior API version in Azure Native 1.x: 2020-08-01.
Example Usage
Create export job
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var job = new AzureNative.ImportExport.Job("job", new()
{
JobName = "myExportJob",
Location = "West US",
Properties = new AzureNative.ImportExport.Inputs.JobDetailsArgs
{
BackupDriveManifest = true,
DiagnosticsPath = "waimportexport",
Export = new AzureNative.ImportExport.Inputs.ExportArgs
{
BlobPathPrefix = new[]
{
"/",
},
},
JobType = "Export",
LogLevel = "Verbose",
ReturnAddress = new AzureNative.ImportExport.Inputs.ReturnAddressArgs
{
City = "Redmond",
CountryOrRegion = "USA",
Email = "Test@contoso.com",
Phone = "4250000000",
PostalCode = "98007",
RecipientName = "Test",
StateOrProvince = "wa",
StreetAddress1 = "Street1",
StreetAddress2 = "street2",
},
ReturnShipping = new AzureNative.ImportExport.Inputs.ReturnShippingArgs
{
CarrierAccountNumber = "989ffff",
CarrierName = "FedEx",
},
StorageAccountId = "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/test",
},
ResourceGroupName = "myResourceGroup",
});
});
package main
import (
importexport "github.com/pulumi/pulumi-azure-native-sdk/importexport/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := importexport.NewJob(ctx, "job", &importexport.JobArgs{
JobName: pulumi.String("myExportJob"),
Location: pulumi.String("West US"),
Properties: &importexport.JobDetailsArgs{
BackupDriveManifest: pulumi.Bool(true),
DiagnosticsPath: pulumi.String("waimportexport"),
Export: &importexport.ExportArgs{
BlobPathPrefix: pulumi.StringArray{
pulumi.String("/"),
},
},
JobType: pulumi.String("Export"),
LogLevel: pulumi.String("Verbose"),
ReturnAddress: &importexport.ReturnAddressArgs{
City: pulumi.String("Redmond"),
CountryOrRegion: pulumi.String("USA"),
Email: pulumi.String("Test@contoso.com"),
Phone: pulumi.String("4250000000"),
PostalCode: pulumi.String("98007"),
RecipientName: pulumi.String("Test"),
StateOrProvince: pulumi.String("wa"),
StreetAddress1: pulumi.String("Street1"),
StreetAddress2: pulumi.String("street2"),
},
ReturnShipping: &importexport.ReturnShippingArgs{
CarrierAccountNumber: pulumi.String("989ffff"),
CarrierName: pulumi.String("FedEx"),
},
StorageAccountId: pulumi.String("/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/test"),
},
ResourceGroupName: pulumi.String("myResourceGroup"),
})
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.importexport.Job;
import com.pulumi.azurenative.importexport.JobArgs;
import com.pulumi.azurenative.importexport.inputs.JobDetailsArgs;
import com.pulumi.azurenative.importexport.inputs.ExportArgs;
import com.pulumi.azurenative.importexport.inputs.ReturnAddressArgs;
import com.pulumi.azurenative.importexport.inputs.ReturnShippingArgs;
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()
.jobName("myExportJob")
.location("West US")
.properties(JobDetailsArgs.builder()
.backupDriveManifest(true)
.diagnosticsPath("waimportexport")
.export(ExportArgs.builder()
.blobPathPrefix("/")
.build())
.jobType("Export")
.logLevel("Verbose")
.returnAddress(ReturnAddressArgs.builder()
.city("Redmond")
.countryOrRegion("USA")
.email("Test@contoso.com")
.phone("4250000000")
.postalCode("98007")
.recipientName("Test")
.stateOrProvince("wa")
.streetAddress1("Street1")
.streetAddress2("street2")
.build())
.returnShipping(ReturnShippingArgs.builder()
.carrierAccountNumber("989ffff")
.carrierName("FedEx")
.build())
.storageAccountId("/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/test")
.build())
.resourceGroupName("myResourceGroup")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
job = azure_native.importexport.Job("job",
job_name="myExportJob",
location="West US",
properties=azure_native.importexport.JobDetailsArgs(
backup_drive_manifest=True,
diagnostics_path="waimportexport",
export=azure_native.importexport.ExportArgs(
blob_path_prefix=["/"],
),
job_type="Export",
log_level="Verbose",
return_address=azure_native.importexport.ReturnAddressArgs(
city="Redmond",
country_or_region="USA",
email="Test@contoso.com",
phone="4250000000",
postal_code="98007",
recipient_name="Test",
state_or_province="wa",
street_address1="Street1",
street_address2="street2",
),
return_shipping=azure_native.importexport.ReturnShippingArgs(
carrier_account_number="989ffff",
carrier_name="FedEx",
),
storage_account_id="/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/test",
),
resource_group_name="myResourceGroup")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const job = new azure_native.importexport.Job("job", {
jobName: "myExportJob",
location: "West US",
properties: {
backupDriveManifest: true,
diagnosticsPath: "waimportexport",
"export": {
blobPathPrefix: ["/"],
},
jobType: "Export",
logLevel: "Verbose",
returnAddress: {
city: "Redmond",
countryOrRegion: "USA",
email: "Test@contoso.com",
phone: "4250000000",
postalCode: "98007",
recipientName: "Test",
stateOrProvince: "wa",
streetAddress1: "Street1",
streetAddress2: "street2",
},
returnShipping: {
carrierAccountNumber: "989ffff",
carrierName: "FedEx",
},
storageAccountId: "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/test",
},
resourceGroupName: "myResourceGroup",
});
resources:
job:
type: azure-native:importexport:Job
properties:
jobName: myExportJob
location: West US
properties:
backupDriveManifest: true
diagnosticsPath: waimportexport
export:
blobPathPrefix:
- /
jobType: Export
logLevel: Verbose
returnAddress:
city: Redmond
countryOrRegion: USA
email: Test@contoso.com
phone: '4250000000'
postalCode: '98007'
recipientName: Test
stateOrProvince: wa
streetAddress1: Street1
streetAddress2: street2
returnShipping:
carrierAccountNumber: 989ffff
carrierName: FedEx
storageAccountId: /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/test
resourceGroupName: myResourceGroup
Create import job
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var job = new AzureNative.ImportExport.Job("job", new()
{
JobName = "myJob",
Location = "West US",
Properties = new AzureNative.ImportExport.Inputs.JobDetailsArgs
{
BackupDriveManifest = true,
DiagnosticsPath = "waimportexport",
DriveList = new[]
{
new AzureNative.ImportExport.Inputs.DriveStatusArgs
{
BitLockerKey = "238810-662376-448998-450120-652806-203390-606320-483076",
DriveHeaderHash = "0:1048576:FB6B6ED500D49DA6E0D723C98D42C657F2881CC13357C28DCECA6A524F1292501571A321238540E621AB5BD9C9A32637615919A75593E6CB5C1515DAE341CABF;135266304:143360:C957A189AFC38C4E80731252301EB91427CE55E61448FA3C73C6FDDE70ABBC197947EC8D0249A2C639BB10B95957D5820A4BE8DFBBF76FFFA688AE5CE0D42EC3",
DriveId = "9CA995BB",
ManifestFile = "\\8a0c23f7-14b7-470a-9633-fcd46590a1bc.manifest",
ManifestHash = "4228EC5D8E048CB9B515338C789314BE8D0B2FDBC7C7A0308E1C826242CDE74E",
},
},
JobType = "Import",
LogLevel = "Verbose",
ReturnAddress = new AzureNative.ImportExport.Inputs.ReturnAddressArgs
{
City = "Redmond",
CountryOrRegion = "USA",
Email = "Test@contoso.com",
Phone = "4250000000",
PostalCode = "98007",
RecipientName = "Test",
StateOrProvince = "wa",
StreetAddress1 = "Street1",
StreetAddress2 = "street2",
},
ReturnShipping = new AzureNative.ImportExport.Inputs.ReturnShippingArgs
{
CarrierAccountNumber = "989ffff",
CarrierName = "FedEx",
},
StorageAccountId = "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/test",
},
ResourceGroupName = "myResourceGroup",
});
});
package main
import (
importexport "github.com/pulumi/pulumi-azure-native-sdk/importexport/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := importexport.NewJob(ctx, "job", &importexport.JobArgs{
JobName: pulumi.String("myJob"),
Location: pulumi.String("West US"),
Properties: &importexport.JobDetailsArgs{
BackupDriveManifest: pulumi.Bool(true),
DiagnosticsPath: pulumi.String("waimportexport"),
DriveList: importexport.DriveStatusArray{
&importexport.DriveStatusArgs{
BitLockerKey: pulumi.String("238810-662376-448998-450120-652806-203390-606320-483076"),
DriveHeaderHash: pulumi.String("0:1048576:FB6B6ED500D49DA6E0D723C98D42C657F2881CC13357C28DCECA6A524F1292501571A321238540E621AB5BD9C9A32637615919A75593E6CB5C1515DAE341CABF;135266304:143360:C957A189AFC38C4E80731252301EB91427CE55E61448FA3C73C6FDDE70ABBC197947EC8D0249A2C639BB10B95957D5820A4BE8DFBBF76FFFA688AE5CE0D42EC3"),
DriveId: pulumi.String("9CA995BB"),
ManifestFile: pulumi.String("\\8a0c23f7-14b7-470a-9633-fcd46590a1bc.manifest"),
ManifestHash: pulumi.String("4228EC5D8E048CB9B515338C789314BE8D0B2FDBC7C7A0308E1C826242CDE74E"),
},
},
JobType: pulumi.String("Import"),
LogLevel: pulumi.String("Verbose"),
ReturnAddress: &importexport.ReturnAddressArgs{
City: pulumi.String("Redmond"),
CountryOrRegion: pulumi.String("USA"),
Email: pulumi.String("Test@contoso.com"),
Phone: pulumi.String("4250000000"),
PostalCode: pulumi.String("98007"),
RecipientName: pulumi.String("Test"),
StateOrProvince: pulumi.String("wa"),
StreetAddress1: pulumi.String("Street1"),
StreetAddress2: pulumi.String("street2"),
},
ReturnShipping: &importexport.ReturnShippingArgs{
CarrierAccountNumber: pulumi.String("989ffff"),
CarrierName: pulumi.String("FedEx"),
},
StorageAccountId: pulumi.String("/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/test"),
},
ResourceGroupName: pulumi.String("myResourceGroup"),
})
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.importexport.Job;
import com.pulumi.azurenative.importexport.JobArgs;
import com.pulumi.azurenative.importexport.inputs.JobDetailsArgs;
import com.pulumi.azurenative.importexport.inputs.ReturnAddressArgs;
import com.pulumi.azurenative.importexport.inputs.ReturnShippingArgs;
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()
.jobName("myJob")
.location("West US")
.properties(JobDetailsArgs.builder()
.backupDriveManifest(true)
.diagnosticsPath("waimportexport")
.driveList(DriveStatusArgs.builder()
.bitLockerKey("238810-662376-448998-450120-652806-203390-606320-483076")
.driveHeaderHash("0:1048576:FB6B6ED500D49DA6E0D723C98D42C657F2881CC13357C28DCECA6A524F1292501571A321238540E621AB5BD9C9A32637615919A75593E6CB5C1515DAE341CABF;135266304:143360:C957A189AFC38C4E80731252301EB91427CE55E61448FA3C73C6FDDE70ABBC197947EC8D0249A2C639BB10B95957D5820A4BE8DFBBF76FFFA688AE5CE0D42EC3")
.driveId("9CA995BB")
.manifestFile("\\8a0c23f7-14b7-470a-9633-fcd46590a1bc.manifest")
.manifestHash("4228EC5D8E048CB9B515338C789314BE8D0B2FDBC7C7A0308E1C826242CDE74E")
.build())
.jobType("Import")
.logLevel("Verbose")
.returnAddress(ReturnAddressArgs.builder()
.city("Redmond")
.countryOrRegion("USA")
.email("Test@contoso.com")
.phone("4250000000")
.postalCode("98007")
.recipientName("Test")
.stateOrProvince("wa")
.streetAddress1("Street1")
.streetAddress2("street2")
.build())
.returnShipping(ReturnShippingArgs.builder()
.carrierAccountNumber("989ffff")
.carrierName("FedEx")
.build())
.storageAccountId("/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/test")
.build())
.resourceGroupName("myResourceGroup")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
job = azure_native.importexport.Job("job",
job_name="myJob",
location="West US",
properties=azure_native.importexport.JobDetailsArgs(
backup_drive_manifest=True,
diagnostics_path="waimportexport",
drive_list=[azure_native.importexport.DriveStatusArgs(
bit_locker_key="238810-662376-448998-450120-652806-203390-606320-483076",
drive_header_hash="0:1048576:FB6B6ED500D49DA6E0D723C98D42C657F2881CC13357C28DCECA6A524F1292501571A321238540E621AB5BD9C9A32637615919A75593E6CB5C1515DAE341CABF;135266304:143360:C957A189AFC38C4E80731252301EB91427CE55E61448FA3C73C6FDDE70ABBC197947EC8D0249A2C639BB10B95957D5820A4BE8DFBBF76FFFA688AE5CE0D42EC3",
drive_id="9CA995BB",
manifest_file="\\8a0c23f7-14b7-470a-9633-fcd46590a1bc.manifest",
manifest_hash="4228EC5D8E048CB9B515338C789314BE8D0B2FDBC7C7A0308E1C826242CDE74E",
)],
job_type="Import",
log_level="Verbose",
return_address=azure_native.importexport.ReturnAddressArgs(
city="Redmond",
country_or_region="USA",
email="Test@contoso.com",
phone="4250000000",
postal_code="98007",
recipient_name="Test",
state_or_province="wa",
street_address1="Street1",
street_address2="street2",
),
return_shipping=azure_native.importexport.ReturnShippingArgs(
carrier_account_number="989ffff",
carrier_name="FedEx",
),
storage_account_id="/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/test",
),
resource_group_name="myResourceGroup")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const job = new azure_native.importexport.Job("job", {
jobName: "myJob",
location: "West US",
properties: {
backupDriveManifest: true,
diagnosticsPath: "waimportexport",
driveList: [{
bitLockerKey: "238810-662376-448998-450120-652806-203390-606320-483076",
driveHeaderHash: "0:1048576:FB6B6ED500D49DA6E0D723C98D42C657F2881CC13357C28DCECA6A524F1292501571A321238540E621AB5BD9C9A32637615919A75593E6CB5C1515DAE341CABF;135266304:143360:C957A189AFC38C4E80731252301EB91427CE55E61448FA3C73C6FDDE70ABBC197947EC8D0249A2C639BB10B95957D5820A4BE8DFBBF76FFFA688AE5CE0D42EC3",
driveId: "9CA995BB",
manifestFile: "\\8a0c23f7-14b7-470a-9633-fcd46590a1bc.manifest",
manifestHash: "4228EC5D8E048CB9B515338C789314BE8D0B2FDBC7C7A0308E1C826242CDE74E",
}],
jobType: "Import",
logLevel: "Verbose",
returnAddress: {
city: "Redmond",
countryOrRegion: "USA",
email: "Test@contoso.com",
phone: "4250000000",
postalCode: "98007",
recipientName: "Test",
stateOrProvince: "wa",
streetAddress1: "Street1",
streetAddress2: "street2",
},
returnShipping: {
carrierAccountNumber: "989ffff",
carrierName: "FedEx",
},
storageAccountId: "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/test",
},
resourceGroupName: "myResourceGroup",
});
resources:
job:
type: azure-native:importexport:Job
properties:
jobName: myJob
location: West US
properties:
backupDriveManifest: true
diagnosticsPath: waimportexport
driveList:
- bitLockerKey: 238810-662376-448998-450120-652806-203390-606320-483076
driveHeaderHash: 0:1048576:FB6B6ED500D49DA6E0D723C98D42C657F2881CC13357C28DCECA6A524F1292501571A321238540E621AB5BD9C9A32637615919A75593E6CB5C1515DAE341CABF;135266304:143360:C957A189AFC38C4E80731252301EB91427CE55E61448FA3C73C6FDDE70ABBC197947EC8D0249A2C639BB10B95957D5820A4BE8DFBBF76FFFA688AE5CE0D42EC3
driveId: 9CA995BB
manifestFile: \8a0c23f7-14b7-470a-9633-fcd46590a1bc.manifest
manifestHash: 4228EC5D8E048CB9B515338C789314BE8D0B2FDBC7C7A0308E1C826242CDE74E
jobType: Import
logLevel: Verbose
returnAddress:
city: Redmond
countryOrRegion: USA
email: Test@contoso.com
phone: '4250000000'
postalCode: '98007'
recipientName: Test
stateOrProvince: wa
streetAddress1: Street1
streetAddress2: street2
returnShipping:
carrierAccountNumber: 989ffff
carrierName: FedEx
storageAccountId: /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/test
resourceGroupName: myResourceGroup
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,
job_name: Optional[str] = None,
location: Optional[str] = None,
properties: Optional[JobDetailsArgs] = None,
tags: Optional[Any] = 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:importexport: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 examplejobResourceResourceFromImportexport = new AzureNative.ImportExport.Job("examplejobResourceResourceFromImportexport", new()
{
ResourceGroupName = "string",
JobName = "string",
Location = "string",
Properties = new AzureNative.ImportExport.Inputs.JobDetailsArgs
{
BackupDriveManifest = false,
CancelRequested = false,
DeliveryPackage = new AzureNative.ImportExport.Inputs.DeliveryPackageInformationArgs
{
CarrierName = "string",
TrackingNumber = "string",
DriveCount = 0,
ShipDate = "string",
},
DiagnosticsPath = "string",
DriveList = new[]
{
new AzureNative.ImportExport.Inputs.DriveStatusArgs
{
BitLockerKey = "string",
BytesSucceeded = 0,
CopyStatus = "string",
DriveHeaderHash = "string",
DriveId = "string",
ErrorLogUri = "string",
ManifestFile = "string",
ManifestHash = "string",
ManifestUri = "string",
PercentComplete = 0,
State = "string",
VerboseLogUri = "string",
},
},
EncryptionKey = new AzureNative.ImportExport.Inputs.EncryptionKeyDetailsArgs
{
KekType = "string",
KekUrl = "string",
KekVaultResourceID = "string",
},
Export = new AzureNative.ImportExport.Inputs.ExportArgs
{
BlobListBlobPath = "string",
BlobPath = new[]
{
"string",
},
BlobPathPrefix = new[]
{
"string",
},
},
IncompleteBlobListUri = "string",
JobType = "string",
LogLevel = "string",
PercentComplete = 0,
ProvisioningState = "string",
ReturnAddress = new AzureNative.ImportExport.Inputs.ReturnAddressArgs
{
City = "string",
CountryOrRegion = "string",
Email = "string",
Phone = "string",
PostalCode = "string",
RecipientName = "string",
StreetAddress1 = "string",
StateOrProvince = "string",
StreetAddress2 = "string",
},
ReturnPackage = new AzureNative.ImportExport.Inputs.PackageInformationArgs
{
CarrierName = "string",
DriveCount = 0,
ShipDate = "string",
TrackingNumber = "string",
},
ReturnShipping = new AzureNative.ImportExport.Inputs.ReturnShippingArgs
{
CarrierAccountNumber = "string",
CarrierName = "string",
},
ShippingInformation = new AzureNative.ImportExport.Inputs.ShippingInformationArgs
{
City = "string",
CountryOrRegion = "string",
Phone = "string",
PostalCode = "string",
RecipientName = "string",
StateOrProvince = "string",
StreetAddress1 = "string",
StreetAddress2 = "string",
},
State = "string",
StorageAccountId = "string",
},
Tags = "any",
});
example, err := importexport.NewJob(ctx, "examplejobResourceResourceFromImportexport", &importexport.JobArgs{
ResourceGroupName: pulumi.String("string"),
JobName: pulumi.String("string"),
Location: pulumi.String("string"),
Properties: &importexport.JobDetailsArgs{
BackupDriveManifest: pulumi.Bool(false),
CancelRequested: pulumi.Bool(false),
DeliveryPackage: &importexport.DeliveryPackageInformationArgs{
CarrierName: pulumi.String("string"),
TrackingNumber: pulumi.String("string"),
DriveCount: pulumi.Float64(0),
ShipDate: pulumi.String("string"),
},
DiagnosticsPath: pulumi.String("string"),
DriveList: importexport.DriveStatusArray{
&importexport.DriveStatusArgs{
BitLockerKey: pulumi.String("string"),
BytesSucceeded: pulumi.Float64(0),
CopyStatus: pulumi.String("string"),
DriveHeaderHash: pulumi.String("string"),
DriveId: pulumi.String("string"),
ErrorLogUri: pulumi.String("string"),
ManifestFile: pulumi.String("string"),
ManifestHash: pulumi.String("string"),
ManifestUri: pulumi.String("string"),
PercentComplete: pulumi.Float64(0),
State: pulumi.String("string"),
VerboseLogUri: pulumi.String("string"),
},
},
EncryptionKey: &importexport.EncryptionKeyDetailsArgs{
KekType: pulumi.String("string"),
KekUrl: pulumi.String("string"),
KekVaultResourceID: pulumi.String("string"),
},
Export: &importexport.ExportArgs{
BlobListBlobPath: pulumi.String("string"),
BlobPath: pulumi.StringArray{
pulumi.String("string"),
},
BlobPathPrefix: pulumi.StringArray{
pulumi.String("string"),
},
},
IncompleteBlobListUri: pulumi.String("string"),
JobType: pulumi.String("string"),
LogLevel: pulumi.String("string"),
PercentComplete: pulumi.Float64(0),
ProvisioningState: pulumi.String("string"),
ReturnAddress: &importexport.ReturnAddressArgs{
City: pulumi.String("string"),
CountryOrRegion: pulumi.String("string"),
Email: pulumi.String("string"),
Phone: pulumi.String("string"),
PostalCode: pulumi.String("string"),
RecipientName: pulumi.String("string"),
StreetAddress1: pulumi.String("string"),
StateOrProvince: pulumi.String("string"),
StreetAddress2: pulumi.String("string"),
},
ReturnPackage: &importexport.PackageInformationArgs{
CarrierName: pulumi.String("string"),
DriveCount: pulumi.Float64(0),
ShipDate: pulumi.String("string"),
TrackingNumber: pulumi.String("string"),
},
ReturnShipping: &importexport.ReturnShippingArgs{
CarrierAccountNumber: pulumi.String("string"),
CarrierName: pulumi.String("string"),
},
ShippingInformation: &importexport.ShippingInformationArgs{
City: pulumi.String("string"),
CountryOrRegion: pulumi.String("string"),
Phone: pulumi.String("string"),
PostalCode: pulumi.String("string"),
RecipientName: pulumi.String("string"),
StateOrProvince: pulumi.String("string"),
StreetAddress1: pulumi.String("string"),
StreetAddress2: pulumi.String("string"),
},
State: pulumi.String("string"),
StorageAccountId: pulumi.String("string"),
},
Tags: pulumi.Any("any"),
})
var examplejobResourceResourceFromImportexport = new Job("examplejobResourceResourceFromImportexport", JobArgs.builder()
.resourceGroupName("string")
.jobName("string")
.location("string")
.properties(JobDetailsArgs.builder()
.backupDriveManifest(false)
.cancelRequested(false)
.deliveryPackage(DeliveryPackageInformationArgs.builder()
.carrierName("string")
.trackingNumber("string")
.driveCount(0)
.shipDate("string")
.build())
.diagnosticsPath("string")
.driveList(DriveStatusArgs.builder()
.bitLockerKey("string")
.bytesSucceeded(0)
.copyStatus("string")
.driveHeaderHash("string")
.driveId("string")
.errorLogUri("string")
.manifestFile("string")
.manifestHash("string")
.manifestUri("string")
.percentComplete(0)
.state("string")
.verboseLogUri("string")
.build())
.encryptionKey(EncryptionKeyDetailsArgs.builder()
.kekType("string")
.kekUrl("string")
.kekVaultResourceID("string")
.build())
.export(ExportArgs.builder()
.blobListBlobPath("string")
.blobPath("string")
.blobPathPrefix("string")
.build())
.incompleteBlobListUri("string")
.jobType("string")
.logLevel("string")
.percentComplete(0)
.provisioningState("string")
.returnAddress(ReturnAddressArgs.builder()
.city("string")
.countryOrRegion("string")
.email("string")
.phone("string")
.postalCode("string")
.recipientName("string")
.streetAddress1("string")
.stateOrProvince("string")
.streetAddress2("string")
.build())
.returnPackage(PackageInformationArgs.builder()
.carrierName("string")
.driveCount(0)
.shipDate("string")
.trackingNumber("string")
.build())
.returnShipping(ReturnShippingArgs.builder()
.carrierAccountNumber("string")
.carrierName("string")
.build())
.shippingInformation(ShippingInformationArgs.builder()
.city("string")
.countryOrRegion("string")
.phone("string")
.postalCode("string")
.recipientName("string")
.stateOrProvince("string")
.streetAddress1("string")
.streetAddress2("string")
.build())
.state("string")
.storageAccountId("string")
.build())
.tags("any")
.build());
examplejob_resource_resource_from_importexport = azure_native.importexport.Job("examplejobResourceResourceFromImportexport",
resource_group_name="string",
job_name="string",
location="string",
properties=azure_native.importexport.JobDetailsArgs(
backup_drive_manifest=False,
cancel_requested=False,
delivery_package=azure_native.importexport.DeliveryPackageInformationArgs(
carrier_name="string",
tracking_number="string",
drive_count=0,
ship_date="string",
),
diagnostics_path="string",
drive_list=[azure_native.importexport.DriveStatusArgs(
bit_locker_key="string",
bytes_succeeded=0,
copy_status="string",
drive_header_hash="string",
drive_id="string",
error_log_uri="string",
manifest_file="string",
manifest_hash="string",
manifest_uri="string",
percent_complete=0,
state="string",
verbose_log_uri="string",
)],
encryption_key=azure_native.importexport.EncryptionKeyDetailsArgs(
kek_type="string",
kek_url="string",
kek_vault_resource_id="string",
),
export=azure_native.importexport.ExportArgs(
blob_list_blob_path="string",
blob_path=["string"],
blob_path_prefix=["string"],
),
incomplete_blob_list_uri="string",
job_type="string",
log_level="string",
percent_complete=0,
provisioning_state="string",
return_address=azure_native.importexport.ReturnAddressArgs(
city="string",
country_or_region="string",
email="string",
phone="string",
postal_code="string",
recipient_name="string",
street_address1="string",
state_or_province="string",
street_address2="string",
),
return_package=azure_native.importexport.PackageInformationArgs(
carrier_name="string",
drive_count=0,
ship_date="string",
tracking_number="string",
),
return_shipping=azure_native.importexport.ReturnShippingArgs(
carrier_account_number="string",
carrier_name="string",
),
shipping_information=azure_native.importexport.ShippingInformationArgs(
city="string",
country_or_region="string",
phone="string",
postal_code="string",
recipient_name="string",
state_or_province="string",
street_address1="string",
street_address2="string",
),
state="string",
storage_account_id="string",
),
tags="any")
const examplejobResourceResourceFromImportexport = new azure_native.importexport.Job("examplejobResourceResourceFromImportexport", {
resourceGroupName: "string",
jobName: "string",
location: "string",
properties: {
backupDriveManifest: false,
cancelRequested: false,
deliveryPackage: {
carrierName: "string",
trackingNumber: "string",
driveCount: 0,
shipDate: "string",
},
diagnosticsPath: "string",
driveList: [{
bitLockerKey: "string",
bytesSucceeded: 0,
copyStatus: "string",
driveHeaderHash: "string",
driveId: "string",
errorLogUri: "string",
manifestFile: "string",
manifestHash: "string",
manifestUri: "string",
percentComplete: 0,
state: "string",
verboseLogUri: "string",
}],
encryptionKey: {
kekType: "string",
kekUrl: "string",
kekVaultResourceID: "string",
},
"export": {
blobListBlobPath: "string",
blobPath: ["string"],
blobPathPrefix: ["string"],
},
incompleteBlobListUri: "string",
jobType: "string",
logLevel: "string",
percentComplete: 0,
provisioningState: "string",
returnAddress: {
city: "string",
countryOrRegion: "string",
email: "string",
phone: "string",
postalCode: "string",
recipientName: "string",
streetAddress1: "string",
stateOrProvince: "string",
streetAddress2: "string",
},
returnPackage: {
carrierName: "string",
driveCount: 0,
shipDate: "string",
trackingNumber: "string",
},
returnShipping: {
carrierAccountNumber: "string",
carrierName: "string",
},
shippingInformation: {
city: "string",
countryOrRegion: "string",
phone: "string",
postalCode: "string",
recipientName: "string",
stateOrProvince: "string",
streetAddress1: "string",
streetAddress2: "string",
},
state: "string",
storageAccountId: "string",
},
tags: "any",
});
type: azure-native:importexport:Job
properties:
jobName: string
location: string
properties:
backupDriveManifest: false
cancelRequested: false
deliveryPackage:
carrierName: string
driveCount: 0
shipDate: string
trackingNumber: string
diagnosticsPath: string
driveList:
- bitLockerKey: string
bytesSucceeded: 0
copyStatus: string
driveHeaderHash: string
driveId: string
errorLogUri: string
manifestFile: string
manifestHash: string
manifestUri: string
percentComplete: 0
state: string
verboseLogUri: string
encryptionKey:
kekType: string
kekUrl: string
kekVaultResourceID: string
export:
blobListBlobPath: string
blobPath:
- string
blobPathPrefix:
- string
incompleteBlobListUri: string
jobType: string
logLevel: string
percentComplete: 0
provisioningState: string
returnAddress:
city: string
countryOrRegion: string
email: string
phone: string
postalCode: string
recipientName: string
stateOrProvince: string
streetAddress1: string
streetAddress2: string
returnPackage:
carrierName: string
driveCount: 0
shipDate: string
trackingNumber: string
returnShipping:
carrierAccountNumber: string
carrierName: string
shippingInformation:
city: string
countryOrRegion: string
phone: string
postalCode: string
recipientName: string
stateOrProvince: string
streetAddress1: string
streetAddress2: string
state: string
storageAccountId: string
resourceGroupName: string
tags: any
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
The Job resource accepts the following input properties:
- Resource
Group stringName - The resource group name uniquely identifies the resource group within the user subscription.
- Job
Name string - The name of the import/export job.
- Location string
- Specifies the supported Azure location where the job should be created
- Properties
Pulumi.
Azure Native. Import Export. Inputs. Job Details - Specifies the job properties
- object
- Specifies the tags that will be assigned to the job.
- Resource
Group stringName - The resource group name uniquely identifies the resource group within the user subscription.
- Job
Name string - The name of the import/export job.
- Location string
- Specifies the supported Azure location where the job should be created
- Properties
Job
Details Args - Specifies the job properties
- interface{}
- Specifies the tags that will be assigned to the job.
- resource
Group StringName - The resource group name uniquely identifies the resource group within the user subscription.
- job
Name String - The name of the import/export job.
- location String
- Specifies the supported Azure location where the job should be created
- properties
Job
Details - Specifies the job properties
- Object
- Specifies the tags that will be assigned to the job.
- resource
Group stringName - The resource group name uniquely identifies the resource group within the user subscription.
- job
Name string - The name of the import/export job.
- location string
- Specifies the supported Azure location where the job should be created
- properties
Job
Details - Specifies the job properties
- any
- Specifies the tags that will be assigned to the job.
- resource_
group_ strname - The resource group name uniquely identifies the resource group within the user subscription.
- job_
name str - The name of the import/export job.
- location str
- Specifies the supported Azure location where the job should be created
- properties
Job
Details Args - Specifies the job properties
- Any
- Specifies the tags that will be assigned to the job.
- resource
Group StringName - The resource group name uniquely identifies the resource group within the user subscription.
- job
Name String - The name of the import/export job.
- location String
- Specifies the supported Azure location where the job should be created
- properties Property Map
- Specifies the job properties
- Any
- Specifies the tags that will be assigned to the job.
Outputs
All input properties are implicitly available as output properties. Additionally, the Job resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Specifies the name of the job.
- System
Data Pulumi.Azure Native. Import Export. Outputs. System Data Response - SystemData of ImportExport Jobs.
- Type string
- Specifies the type of the job resource.
- Identity
Pulumi.
Azure Native. Import Export. Outputs. Identity Details Response - Specifies the job identity details
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Specifies the name of the job.
- System
Data SystemData Response - SystemData of ImportExport Jobs.
- Type string
- Specifies the type of the job resource.
- Identity
Identity
Details Response - Specifies the job identity details
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Specifies the name of the job.
- system
Data SystemData Response - SystemData of ImportExport Jobs.
- type String
- Specifies the type of the job resource.
- identity
Identity
Details Response - Specifies the job identity details
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Specifies the name of the job.
- system
Data SystemData Response - SystemData of ImportExport Jobs.
- type string
- Specifies the type of the job resource.
- identity
Identity
Details Response - Specifies the job identity details
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Specifies the name of the job.
- system_
data SystemData Response - SystemData of ImportExport Jobs.
- type str
- Specifies the type of the job resource.
- identity
Identity
Details Response - Specifies the job identity details
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Specifies the name of the job.
- system
Data Property Map - SystemData of ImportExport Jobs.
- type String
- Specifies the type of the job resource.
- identity Property Map
- Specifies the job identity details
Supporting Types
DeliveryPackageInformation, DeliveryPackageInformationArgs
- Carrier
Name string - The name of the carrier that is used to ship the import or export drives.
- Tracking
Number string - The tracking number of the package.
- Drive
Count double - The number of drives included in the package.
- Ship
Date string - The date when the package is shipped.
- Carrier
Name string - The name of the carrier that is used to ship the import or export drives.
- Tracking
Number string - The tracking number of the package.
- Drive
Count float64 - The number of drives included in the package.
- Ship
Date string - The date when the package is shipped.
- carrier
Name String - The name of the carrier that is used to ship the import or export drives.
- tracking
Number String - The tracking number of the package.
- drive
Count Double - The number of drives included in the package.
- ship
Date String - The date when the package is shipped.
- carrier
Name string - The name of the carrier that is used to ship the import or export drives.
- tracking
Number string - The tracking number of the package.
- drive
Count number - The number of drives included in the package.
- ship
Date string - The date when the package is shipped.
- carrier_
name str - The name of the carrier that is used to ship the import or export drives.
- tracking_
number str - The tracking number of the package.
- drive_
count float - The number of drives included in the package.
- ship_
date str - The date when the package is shipped.
- carrier
Name String - The name of the carrier that is used to ship the import or export drives.
- tracking
Number String - The tracking number of the package.
- drive
Count Number - The number of drives included in the package.
- ship
Date String - The date when the package is shipped.
DeliveryPackageInformationResponse, DeliveryPackageInformationResponseArgs
- Carrier
Name string - The name of the carrier that is used to ship the import or export drives.
- Tracking
Number string - The tracking number of the package.
- Drive
Count double - The number of drives included in the package.
- Ship
Date string - The date when the package is shipped.
- Carrier
Name string - The name of the carrier that is used to ship the import or export drives.
- Tracking
Number string - The tracking number of the package.
- Drive
Count float64 - The number of drives included in the package.
- Ship
Date string - The date when the package is shipped.
- carrier
Name String - The name of the carrier that is used to ship the import or export drives.
- tracking
Number String - The tracking number of the package.
- drive
Count Double - The number of drives included in the package.
- ship
Date String - The date when the package is shipped.
- carrier
Name string - The name of the carrier that is used to ship the import or export drives.
- tracking
Number string - The tracking number of the package.
- drive
Count number - The number of drives included in the package.
- ship
Date string - The date when the package is shipped.
- carrier_
name str - The name of the carrier that is used to ship the import or export drives.
- tracking_
number str - The tracking number of the package.
- drive_
count float - The number of drives included in the package.
- ship_
date str - The date when the package is shipped.
- carrier
Name String - The name of the carrier that is used to ship the import or export drives.
- tracking
Number String - The tracking number of the package.
- drive
Count Number - The number of drives included in the package.
- ship
Date String - The date when the package is shipped.
DriveState, DriveStateArgs
- Specified
- Specified
- Received
- Received
- Never
Received - NeverReceived
- Transferring
- Transferring
- Completed
- Completed
- Completed
More Info - CompletedMoreInfo
- Shipped
Back - ShippedBack
- Drive
State Specified - Specified
- Drive
State Received - Received
- Drive
State Never Received - NeverReceived
- Drive
State Transferring - Transferring
- Drive
State Completed - Completed
- Drive
State Completed More Info - CompletedMoreInfo
- Drive
State Shipped Back - ShippedBack
- Specified
- Specified
- Received
- Received
- Never
Received - NeverReceived
- Transferring
- Transferring
- Completed
- Completed
- Completed
More Info - CompletedMoreInfo
- Shipped
Back - ShippedBack
- Specified
- Specified
- Received
- Received
- Never
Received - NeverReceived
- Transferring
- Transferring
- Completed
- Completed
- Completed
More Info - CompletedMoreInfo
- Shipped
Back - ShippedBack
- SPECIFIED
- Specified
- RECEIVED
- Received
- NEVER_RECEIVED
- NeverReceived
- TRANSFERRING
- Transferring
- COMPLETED
- Completed
- COMPLETED_MORE_INFO
- CompletedMoreInfo
- SHIPPED_BACK
- ShippedBack
- "Specified"
- Specified
- "Received"
- Received
- "Never
Received" - NeverReceived
- "Transferring"
- Transferring
- "Completed"
- Completed
- "Completed
More Info" - CompletedMoreInfo
- "Shipped
Back" - ShippedBack
DriveStatus, DriveStatusArgs
- Bit
Locker stringKey - The BitLocker key used to encrypt the drive.
- Bytes
Succeeded double - Bytes successfully transferred for the drive.
- Copy
Status string - Detailed status about the data transfer process. This field is not returned in the response until the drive is in the Transferring state.
- Drive
Header stringHash - The drive header hash value.
- Drive
Id string - The drive's hardware serial number, without spaces.
- Error
Log stringUri - A URI that points to the blob containing the error log for the data transfer operation.
- Manifest
File string - The relative path of the manifest file on the drive.
- Manifest
Hash string - The Base16-encoded MD5 hash of the manifest file on the drive.
- Manifest
Uri string - A URI that points to the blob containing the drive manifest file.
- Percent
Complete double - Percentage completed for the drive.
- State
string | Pulumi.
Azure Native. Import Export. Drive State - The drive's current state.
- Verbose
Log stringUri - A URI that points to the blob containing the verbose log for the data transfer operation.
- Bit
Locker stringKey - The BitLocker key used to encrypt the drive.
- Bytes
Succeeded float64 - Bytes successfully transferred for the drive.
- Copy
Status string - Detailed status about the data transfer process. This field is not returned in the response until the drive is in the Transferring state.
- Drive
Header stringHash - The drive header hash value.
- Drive
Id string - The drive's hardware serial number, without spaces.
- Error
Log stringUri - A URI that points to the blob containing the error log for the data transfer operation.
- Manifest
File string - The relative path of the manifest file on the drive.
- Manifest
Hash string - The Base16-encoded MD5 hash of the manifest file on the drive.
- Manifest
Uri string - A URI that points to the blob containing the drive manifest file.
- Percent
Complete float64 - Percentage completed for the drive.
- State
string | Drive
State - The drive's current state.
- Verbose
Log stringUri - A URI that points to the blob containing the verbose log for the data transfer operation.
- bit
Locker StringKey - The BitLocker key used to encrypt the drive.
- bytes
Succeeded Double - Bytes successfully transferred for the drive.
- copy
Status String - Detailed status about the data transfer process. This field is not returned in the response until the drive is in the Transferring state.
- drive
Header StringHash - The drive header hash value.
- drive
Id String - The drive's hardware serial number, without spaces.
- error
Log StringUri - A URI that points to the blob containing the error log for the data transfer operation.
- manifest
File String - The relative path of the manifest file on the drive.
- manifest
Hash String - The Base16-encoded MD5 hash of the manifest file on the drive.
- manifest
Uri String - A URI that points to the blob containing the drive manifest file.
- percent
Complete Double - Percentage completed for the drive.
- state
String | Drive
State - The drive's current state.
- verbose
Log StringUri - A URI that points to the blob containing the verbose log for the data transfer operation.
- bit
Locker stringKey - The BitLocker key used to encrypt the drive.
- bytes
Succeeded number - Bytes successfully transferred for the drive.
- copy
Status string - Detailed status about the data transfer process. This field is not returned in the response until the drive is in the Transferring state.
- drive
Header stringHash - The drive header hash value.
- drive
Id string - The drive's hardware serial number, without spaces.
- error
Log stringUri - A URI that points to the blob containing the error log for the data transfer operation.
- manifest
File string - The relative path of the manifest file on the drive.
- manifest
Hash string - The Base16-encoded MD5 hash of the manifest file on the drive.
- manifest
Uri string - A URI that points to the blob containing the drive manifest file.
- percent
Complete number - Percentage completed for the drive.
- state
string | Drive
State - The drive's current state.
- verbose
Log stringUri - A URI that points to the blob containing the verbose log for the data transfer operation.
- bit_
locker_ strkey - The BitLocker key used to encrypt the drive.
- bytes_
succeeded float - Bytes successfully transferred for the drive.
- copy_
status str - Detailed status about the data transfer process. This field is not returned in the response until the drive is in the Transferring state.
- drive_
header_ strhash - The drive header hash value.
- drive_
id str - The drive's hardware serial number, without spaces.
- error_
log_ struri - A URI that points to the blob containing the error log for the data transfer operation.
- manifest_
file str - The relative path of the manifest file on the drive.
- manifest_
hash str - The Base16-encoded MD5 hash of the manifest file on the drive.
- manifest_
uri str - A URI that points to the blob containing the drive manifest file.
- percent_
complete float - Percentage completed for the drive.
- state
str | Drive
State - The drive's current state.
- verbose_
log_ struri - A URI that points to the blob containing the verbose log for the data transfer operation.
- bit
Locker StringKey - The BitLocker key used to encrypt the drive.
- bytes
Succeeded Number - Bytes successfully transferred for the drive.
- copy
Status String - Detailed status about the data transfer process. This field is not returned in the response until the drive is in the Transferring state.
- drive
Header StringHash - The drive header hash value.
- drive
Id String - The drive's hardware serial number, without spaces.
- error
Log StringUri - A URI that points to the blob containing the error log for the data transfer operation.
- manifest
File String - The relative path of the manifest file on the drive.
- manifest
Hash String - The Base16-encoded MD5 hash of the manifest file on the drive.
- manifest
Uri String - A URI that points to the blob containing the drive manifest file.
- percent
Complete Number - Percentage completed for the drive.
- state
String | "Specified" | "Received" | "Never
Received" | "Transferring" | "Completed" | "Completed More Info" | "Shipped Back" - The drive's current state.
- verbose
Log StringUri - A URI that points to the blob containing the verbose log for the data transfer operation.
DriveStatusResponse, DriveStatusResponseArgs
- Bit
Locker stringKey - The BitLocker key used to encrypt the drive.
- Bytes
Succeeded double - Bytes successfully transferred for the drive.
- Copy
Status string - Detailed status about the data transfer process. This field is not returned in the response until the drive is in the Transferring state.
- Drive
Header stringHash - The drive header hash value.
- Drive
Id string - The drive's hardware serial number, without spaces.
- Error
Log stringUri - A URI that points to the blob containing the error log for the data transfer operation.
- Manifest
File string - The relative path of the manifest file on the drive.
- Manifest
Hash string - The Base16-encoded MD5 hash of the manifest file on the drive.
- Manifest
Uri string - A URI that points to the blob containing the drive manifest file.
- Percent
Complete double - Percentage completed for the drive.
- State string
- The drive's current state.
- Verbose
Log stringUri - A URI that points to the blob containing the verbose log for the data transfer operation.
- Bit
Locker stringKey - The BitLocker key used to encrypt the drive.
- Bytes
Succeeded float64 - Bytes successfully transferred for the drive.
- Copy
Status string - Detailed status about the data transfer process. This field is not returned in the response until the drive is in the Transferring state.
- Drive
Header stringHash - The drive header hash value.
- Drive
Id string - The drive's hardware serial number, without spaces.
- Error
Log stringUri - A URI that points to the blob containing the error log for the data transfer operation.
- Manifest
File string - The relative path of the manifest file on the drive.
- Manifest
Hash string - The Base16-encoded MD5 hash of the manifest file on the drive.
- Manifest
Uri string - A URI that points to the blob containing the drive manifest file.
- Percent
Complete float64 - Percentage completed for the drive.
- State string
- The drive's current state.
- Verbose
Log stringUri - A URI that points to the blob containing the verbose log for the data transfer operation.
- bit
Locker StringKey - The BitLocker key used to encrypt the drive.
- bytes
Succeeded Double - Bytes successfully transferred for the drive.
- copy
Status String - Detailed status about the data transfer process. This field is not returned in the response until the drive is in the Transferring state.
- drive
Header StringHash - The drive header hash value.
- drive
Id String - The drive's hardware serial number, without spaces.
- error
Log StringUri - A URI that points to the blob containing the error log for the data transfer operation.
- manifest
File String - The relative path of the manifest file on the drive.
- manifest
Hash String - The Base16-encoded MD5 hash of the manifest file on the drive.
- manifest
Uri String - A URI that points to the blob containing the drive manifest file.
- percent
Complete Double - Percentage completed for the drive.
- state String
- The drive's current state.
- verbose
Log StringUri - A URI that points to the blob containing the verbose log for the data transfer operation.
- bit
Locker stringKey - The BitLocker key used to encrypt the drive.
- bytes
Succeeded number - Bytes successfully transferred for the drive.
- copy
Status string - Detailed status about the data transfer process. This field is not returned in the response until the drive is in the Transferring state.
- drive
Header stringHash - The drive header hash value.
- drive
Id string - The drive's hardware serial number, without spaces.
- error
Log stringUri - A URI that points to the blob containing the error log for the data transfer operation.
- manifest
File string - The relative path of the manifest file on the drive.
- manifest
Hash string - The Base16-encoded MD5 hash of the manifest file on the drive.
- manifest
Uri string - A URI that points to the blob containing the drive manifest file.
- percent
Complete number - Percentage completed for the drive.
- state string
- The drive's current state.
- verbose
Log stringUri - A URI that points to the blob containing the verbose log for the data transfer operation.
- bit_
locker_ strkey - The BitLocker key used to encrypt the drive.
- bytes_
succeeded float - Bytes successfully transferred for the drive.
- copy_
status str - Detailed status about the data transfer process. This field is not returned in the response until the drive is in the Transferring state.
- drive_
header_ strhash - The drive header hash value.
- drive_
id str - The drive's hardware serial number, without spaces.
- error_
log_ struri - A URI that points to the blob containing the error log for the data transfer operation.
- manifest_
file str - The relative path of the manifest file on the drive.
- manifest_
hash str - The Base16-encoded MD5 hash of the manifest file on the drive.
- manifest_
uri str - A URI that points to the blob containing the drive manifest file.
- percent_
complete float - Percentage completed for the drive.
- state str
- The drive's current state.
- verbose_
log_ struri - A URI that points to the blob containing the verbose log for the data transfer operation.
- bit
Locker StringKey - The BitLocker key used to encrypt the drive.
- bytes
Succeeded Number - Bytes successfully transferred for the drive.
- copy
Status String - Detailed status about the data transfer process. This field is not returned in the response until the drive is in the Transferring state.
- drive
Header StringHash - The drive header hash value.
- drive
Id String - The drive's hardware serial number, without spaces.
- error
Log StringUri - A URI that points to the blob containing the error log for the data transfer operation.
- manifest
File String - The relative path of the manifest file on the drive.
- manifest
Hash String - The Base16-encoded MD5 hash of the manifest file on the drive.
- manifest
Uri String - A URI that points to the blob containing the drive manifest file.
- percent
Complete Number - Percentage completed for the drive.
- state String
- The drive's current state.
- verbose
Log StringUri - A URI that points to the blob containing the verbose log for the data transfer operation.
EncryptionKekType, EncryptionKekTypeArgs
- Microsoft
Managed - MicrosoftManaged
- Customer
Managed - CustomerManaged
- Encryption
Kek Type Microsoft Managed - MicrosoftManaged
- Encryption
Kek Type Customer Managed - CustomerManaged
- Microsoft
Managed - MicrosoftManaged
- Customer
Managed - CustomerManaged
- Microsoft
Managed - MicrosoftManaged
- Customer
Managed - CustomerManaged
- MICROSOFT_MANAGED
- MicrosoftManaged
- CUSTOMER_MANAGED
- CustomerManaged
- "Microsoft
Managed" - MicrosoftManaged
- "Customer
Managed" - CustomerManaged
EncryptionKeyDetails, EncryptionKeyDetailsArgs
- Kek
Type string | Pulumi.Azure Native. Import Export. Encryption Kek Type - The type of kek encryption key
- Kek
Url string - Specifies the url for kek encryption key.
- Kek
Vault stringResource ID - Specifies the keyvault resource id for kek encryption key.
- Kek
Type string | EncryptionKek Type - The type of kek encryption key
- Kek
Url string - Specifies the url for kek encryption key.
- Kek
Vault stringResource ID - Specifies the keyvault resource id for kek encryption key.
- kek
Type String | EncryptionKek Type - The type of kek encryption key
- kek
Url String - Specifies the url for kek encryption key.
- kek
Vault StringResource ID - Specifies the keyvault resource id for kek encryption key.
- kek
Type string | EncryptionKek Type - The type of kek encryption key
- kek
Url string - Specifies the url for kek encryption key.
- kek
Vault stringResource ID - Specifies the keyvault resource id for kek encryption key.
- kek_
type str | EncryptionKek Type - The type of kek encryption key
- kek_
url str - Specifies the url for kek encryption key.
- kek_
vault_ strresource_ id - Specifies the keyvault resource id for kek encryption key.
- kek
Type String | "MicrosoftManaged" | "Customer Managed" - The type of kek encryption key
- kek
Url String - Specifies the url for kek encryption key.
- kek
Vault StringResource ID - Specifies the keyvault resource id for kek encryption key.
EncryptionKeyDetailsResponse, EncryptionKeyDetailsResponseArgs
- Kek
Type string - The type of kek encryption key
- Kek
Url string - Specifies the url for kek encryption key.
- Kek
Vault stringResource ID - Specifies the keyvault resource id for kek encryption key.
- Kek
Type string - The type of kek encryption key
- Kek
Url string - Specifies the url for kek encryption key.
- Kek
Vault stringResource ID - Specifies the keyvault resource id for kek encryption key.
- kek
Type String - The type of kek encryption key
- kek
Url String - Specifies the url for kek encryption key.
- kek
Vault StringResource ID - Specifies the keyvault resource id for kek encryption key.
- kek
Type string - The type of kek encryption key
- kek
Url string - Specifies the url for kek encryption key.
- kek
Vault stringResource ID - Specifies the keyvault resource id for kek encryption key.
- kek_
type str - The type of kek encryption key
- kek_
url str - Specifies the url for kek encryption key.
- kek_
vault_ strresource_ id - Specifies the keyvault resource id for kek encryption key.
- kek
Type String - The type of kek encryption key
- kek
Url String - Specifies the url for kek encryption key.
- kek
Vault StringResource ID - Specifies the keyvault resource id for kek encryption key.
Export, ExportArgs
- Blob
List stringBlob Path - The relative URI to the block blob that contains the list of blob paths or blob path prefixes as defined above, beginning with the container name. If the blob is in root container, the URI must begin with $root.
- Blob
Path List<string> - A collection of blob-path strings.
- Blob
Path List<string>Prefix - A collection of blob-prefix strings.
- Blob
List stringBlob Path - The relative URI to the block blob that contains the list of blob paths or blob path prefixes as defined above, beginning with the container name. If the blob is in root container, the URI must begin with $root.
- Blob
Path []string - A collection of blob-path strings.
- Blob
Path []stringPrefix - A collection of blob-prefix strings.
- blob
List StringBlob Path - The relative URI to the block blob that contains the list of blob paths or blob path prefixes as defined above, beginning with the container name. If the blob is in root container, the URI must begin with $root.
- blob
Path List<String> - A collection of blob-path strings.
- blob
Path List<String>Prefix - A collection of blob-prefix strings.
- blob
List stringBlob Path - The relative URI to the block blob that contains the list of blob paths or blob path prefixes as defined above, beginning with the container name. If the blob is in root container, the URI must begin with $root.
- blob
Path string[] - A collection of blob-path strings.
- blob
Path string[]Prefix - A collection of blob-prefix strings.
- blob_
list_ strblob_ path - The relative URI to the block blob that contains the list of blob paths or blob path prefixes as defined above, beginning with the container name. If the blob is in root container, the URI must begin with $root.
- blob_
path Sequence[str] - A collection of blob-path strings.
- blob_
path_ Sequence[str]prefix - A collection of blob-prefix strings.
- blob
List StringBlob Path - The relative URI to the block blob that contains the list of blob paths or blob path prefixes as defined above, beginning with the container name. If the blob is in root container, the URI must begin with $root.
- blob
Path List<String> - A collection of blob-path strings.
- blob
Path List<String>Prefix - A collection of blob-prefix strings.
ExportResponse, ExportResponseArgs
- Blob
List stringBlob Path - The relative URI to the block blob that contains the list of blob paths or blob path prefixes as defined above, beginning with the container name. If the blob is in root container, the URI must begin with $root.
- Blob
Path List<string> - A collection of blob-path strings.
- Blob
Path List<string>Prefix - A collection of blob-prefix strings.
- Blob
List stringBlob Path - The relative URI to the block blob that contains the list of blob paths or blob path prefixes as defined above, beginning with the container name. If the blob is in root container, the URI must begin with $root.
- Blob
Path []string - A collection of blob-path strings.
- Blob
Path []stringPrefix - A collection of blob-prefix strings.
- blob
List StringBlob Path - The relative URI to the block blob that contains the list of blob paths or blob path prefixes as defined above, beginning with the container name. If the blob is in root container, the URI must begin with $root.
- blob
Path List<String> - A collection of blob-path strings.
- blob
Path List<String>Prefix - A collection of blob-prefix strings.
- blob
List stringBlob Path - The relative URI to the block blob that contains the list of blob paths or blob path prefixes as defined above, beginning with the container name. If the blob is in root container, the URI must begin with $root.
- blob
Path string[] - A collection of blob-path strings.
- blob
Path string[]Prefix - A collection of blob-prefix strings.
- blob_
list_ strblob_ path - The relative URI to the block blob that contains the list of blob paths or blob path prefixes as defined above, beginning with the container name. If the blob is in root container, the URI must begin with $root.
- blob_
path Sequence[str] - A collection of blob-path strings.
- blob_
path_ Sequence[str]prefix - A collection of blob-prefix strings.
- blob
List StringBlob Path - The relative URI to the block blob that contains the list of blob paths or blob path prefixes as defined above, beginning with the container name. If the blob is in root container, the URI must begin with $root.
- blob
Path List<String> - A collection of blob-path strings.
- blob
Path List<String>Prefix - A collection of blob-prefix strings.
IdentityDetailsResponse, IdentityDetailsResponseArgs
- Principal
Id string - Specifies the principal id for the identity for the job.
- Tenant
Id string - Specifies the tenant id for the identity for the job.
- Type string
- The type of identity
- Principal
Id string - Specifies the principal id for the identity for the job.
- Tenant
Id string - Specifies the tenant id for the identity for the job.
- Type string
- The type of identity
- principal
Id String - Specifies the principal id for the identity for the job.
- tenant
Id String - Specifies the tenant id for the identity for the job.
- type String
- The type of identity
- principal
Id string - Specifies the principal id for the identity for the job.
- tenant
Id string - Specifies the tenant id for the identity for the job.
- type string
- The type of identity
- principal_
id str - Specifies the principal id for the identity for the job.
- tenant_
id str - Specifies the tenant id for the identity for the job.
- type str
- The type of identity
- principal
Id String - Specifies the principal id for the identity for the job.
- tenant
Id String - Specifies the tenant id for the identity for the job.
- type String
- The type of identity
JobDetails, JobDetailsArgs
- Backup
Drive boolManifest - Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs.
- Cancel
Requested bool - Indicates whether a request has been submitted to cancel the job.
- Delivery
Package Pulumi.Azure Native. Import Export. Inputs. Delivery Package Information - Contains information about the package being shipped by the customer to the Microsoft data center.
- Diagnostics
Path string - The virtual blob directory to which the copy logs and backups of drive manifest files (if enabled) will be stored.
- Drive
List List<Pulumi.Azure Native. Import Export. Inputs. Drive Status> - List of up to ten drives that comprise the job. The drive list is a required element for an import job; it is not specified for export jobs.
- Encryption
Key Pulumi.Azure Native. Import Export. Inputs. Encryption Key Details - Contains information about the encryption key.
- Export
Pulumi.
Azure Native. Import Export. Inputs. Export - A property containing information about the blobs to be exported for an export job. This property is included for export jobs only.
- Incomplete
Blob stringList Uri - A blob path that points to a block blob containing a list of blob names that were not exported due to insufficient drive space. If all blobs were exported successfully, then this element is not included in the response.
- Job
Type string - The type of job
- Log
Level string - Default value is Error. Indicates whether error logging or verbose logging will be enabled.
- Percent
Complete double - Overall percentage completed for the job.
- Provisioning
State string - Specifies the provisioning state of the job.
- Return
Address Pulumi.Azure Native. Import Export. Inputs. Return Address - Specifies the return address information for the job.
- Return
Package Pulumi.Azure Native. Import Export. Inputs. Package Information - Contains information about the package being shipped from the Microsoft data center to the customer to return the drives. The format is the same as the deliveryPackage property above. This property is not included if the drives have not yet been returned.
- Return
Shipping Pulumi.Azure Native. Import Export. Inputs. Return Shipping - Specifies the return carrier and customer's account with the carrier.
- Shipping
Information Pulumi.Azure Native. Import Export. Inputs. Shipping Information - Contains information about the Microsoft datacenter to which the drives should be shipped.
- State string
- Current state of the job.
- Storage
Account stringId - The resource identifier of the storage account where data will be imported to or exported from.
- Backup
Drive boolManifest - Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs.
- Cancel
Requested bool - Indicates whether a request has been submitted to cancel the job.
- Delivery
Package DeliveryPackage Information - Contains information about the package being shipped by the customer to the Microsoft data center.
- Diagnostics
Path string - The virtual blob directory to which the copy logs and backups of drive manifest files (if enabled) will be stored.
- Drive
List []DriveStatus - List of up to ten drives that comprise the job. The drive list is a required element for an import job; it is not specified for export jobs.
- Encryption
Key EncryptionKey Details - Contains information about the encryption key.
- Export Export
- A property containing information about the blobs to be exported for an export job. This property is included for export jobs only.
- Incomplete
Blob stringList Uri - A blob path that points to a block blob containing a list of blob names that were not exported due to insufficient drive space. If all blobs were exported successfully, then this element is not included in the response.
- Job
Type string - The type of job
- Log
Level string - Default value is Error. Indicates whether error logging or verbose logging will be enabled.
- Percent
Complete float64 - Overall percentage completed for the job.
- Provisioning
State string - Specifies the provisioning state of the job.
- Return
Address ReturnAddress - Specifies the return address information for the job.
- Return
Package PackageInformation - Contains information about the package being shipped from the Microsoft data center to the customer to return the drives. The format is the same as the deliveryPackage property above. This property is not included if the drives have not yet been returned.
- Return
Shipping ReturnShipping - Specifies the return carrier and customer's account with the carrier.
- Shipping
Information ShippingInformation - Contains information about the Microsoft datacenter to which the drives should be shipped.
- State string
- Current state of the job.
- Storage
Account stringId - The resource identifier of the storage account where data will be imported to or exported from.
- backup
Drive BooleanManifest - Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs.
- cancel
Requested Boolean - Indicates whether a request has been submitted to cancel the job.
- delivery
Package DeliveryPackage Information - Contains information about the package being shipped by the customer to the Microsoft data center.
- diagnostics
Path String - The virtual blob directory to which the copy logs and backups of drive manifest files (if enabled) will be stored.
- drive
List List<DriveStatus> - List of up to ten drives that comprise the job. The drive list is a required element for an import job; it is not specified for export jobs.
- encryption
Key EncryptionKey Details - Contains information about the encryption key.
- export Export
- A property containing information about the blobs to be exported for an export job. This property is included for export jobs only.
- incomplete
Blob StringList Uri - A blob path that points to a block blob containing a list of blob names that were not exported due to insufficient drive space. If all blobs were exported successfully, then this element is not included in the response.
- job
Type String - The type of job
- log
Level String - Default value is Error. Indicates whether error logging or verbose logging will be enabled.
- percent
Complete Double - Overall percentage completed for the job.
- provisioning
State String - Specifies the provisioning state of the job.
- return
Address ReturnAddress - Specifies the return address information for the job.
- return
Package PackageInformation - Contains information about the package being shipped from the Microsoft data center to the customer to return the drives. The format is the same as the deliveryPackage property above. This property is not included if the drives have not yet been returned.
- return
Shipping ReturnShipping - Specifies the return carrier and customer's account with the carrier.
- shipping
Information ShippingInformation - Contains information about the Microsoft datacenter to which the drives should be shipped.
- state String
- Current state of the job.
- storage
Account StringId - The resource identifier of the storage account where data will be imported to or exported from.
- backup
Drive booleanManifest - Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs.
- cancel
Requested boolean - Indicates whether a request has been submitted to cancel the job.
- delivery
Package DeliveryPackage Information - Contains information about the package being shipped by the customer to the Microsoft data center.
- diagnostics
Path string - The virtual blob directory to which the copy logs and backups of drive manifest files (if enabled) will be stored.
- drive
List DriveStatus[] - List of up to ten drives that comprise the job. The drive list is a required element for an import job; it is not specified for export jobs.
- encryption
Key EncryptionKey Details - Contains information about the encryption key.
- export Export
- A property containing information about the blobs to be exported for an export job. This property is included for export jobs only.
- incomplete
Blob stringList Uri - A blob path that points to a block blob containing a list of blob names that were not exported due to insufficient drive space. If all blobs were exported successfully, then this element is not included in the response.
- job
Type string - The type of job
- log
Level string - Default value is Error. Indicates whether error logging or verbose logging will be enabled.
- percent
Complete number - Overall percentage completed for the job.
- provisioning
State string - Specifies the provisioning state of the job.
- return
Address ReturnAddress - Specifies the return address information for the job.
- return
Package PackageInformation - Contains information about the package being shipped from the Microsoft data center to the customer to return the drives. The format is the same as the deliveryPackage property above. This property is not included if the drives have not yet been returned.
- return
Shipping ReturnShipping - Specifies the return carrier and customer's account with the carrier.
- shipping
Information ShippingInformation - Contains information about the Microsoft datacenter to which the drives should be shipped.
- state string
- Current state of the job.
- storage
Account stringId - The resource identifier of the storage account where data will be imported to or exported from.
- backup_
drive_ boolmanifest - Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs.
- cancel_
requested bool - Indicates whether a request has been submitted to cancel the job.
- delivery_
package DeliveryPackage Information - Contains information about the package being shipped by the customer to the Microsoft data center.
- diagnostics_
path str - The virtual blob directory to which the copy logs and backups of drive manifest files (if enabled) will be stored.
- drive_
list Sequence[DriveStatus] - List of up to ten drives that comprise the job. The drive list is a required element for an import job; it is not specified for export jobs.
- encryption_
key EncryptionKey Details - Contains information about the encryption key.
- export Export
- A property containing information about the blobs to be exported for an export job. This property is included for export jobs only.
- incomplete_
blob_ strlist_ uri - A blob path that points to a block blob containing a list of blob names that were not exported due to insufficient drive space. If all blobs were exported successfully, then this element is not included in the response.
- job_
type str - The type of job
- log_
level str - Default value is Error. Indicates whether error logging or verbose logging will be enabled.
- percent_
complete float - Overall percentage completed for the job.
- provisioning_
state str - Specifies the provisioning state of the job.
- return_
address ReturnAddress - Specifies the return address information for the job.
- return_
package PackageInformation - Contains information about the package being shipped from the Microsoft data center to the customer to return the drives. The format is the same as the deliveryPackage property above. This property is not included if the drives have not yet been returned.
- return_
shipping ReturnShipping - Specifies the return carrier and customer's account with the carrier.
- shipping_
information ShippingInformation - Contains information about the Microsoft datacenter to which the drives should be shipped.
- state str
- Current state of the job.
- storage_
account_ strid - The resource identifier of the storage account where data will be imported to or exported from.
- backup
Drive BooleanManifest - Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs.
- cancel
Requested Boolean - Indicates whether a request has been submitted to cancel the job.
- delivery
Package Property Map - Contains information about the package being shipped by the customer to the Microsoft data center.
- diagnostics
Path String - The virtual blob directory to which the copy logs and backups of drive manifest files (if enabled) will be stored.
- drive
List List<Property Map> - List of up to ten drives that comprise the job. The drive list is a required element for an import job; it is not specified for export jobs.
- encryption
Key Property Map - Contains information about the encryption key.
- export Property Map
- A property containing information about the blobs to be exported for an export job. This property is included for export jobs only.
- incomplete
Blob StringList Uri - A blob path that points to a block blob containing a list of blob names that were not exported due to insufficient drive space. If all blobs were exported successfully, then this element is not included in the response.
- job
Type String - The type of job
- log
Level String - Default value is Error. Indicates whether error logging or verbose logging will be enabled.
- percent
Complete Number - Overall percentage completed for the job.
- provisioning
State String - Specifies the provisioning state of the job.
- return
Address Property Map - Specifies the return address information for the job.
- return
Package Property Map - Contains information about the package being shipped from the Microsoft data center to the customer to return the drives. The format is the same as the deliveryPackage property above. This property is not included if the drives have not yet been returned.
- return
Shipping Property Map - Specifies the return carrier and customer's account with the carrier.
- shipping
Information Property Map - Contains information about the Microsoft datacenter to which the drives should be shipped.
- state String
- Current state of the job.
- storage
Account StringId - The resource identifier of the storage account where data will be imported to or exported from.
JobDetailsResponse, JobDetailsResponseArgs
- Backup
Drive boolManifest - Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs.
- Cancel
Requested bool - Indicates whether a request has been submitted to cancel the job.
- Delivery
Package Pulumi.Azure Native. Import Export. Inputs. Delivery Package Information Response - Contains information about the package being shipped by the customer to the Microsoft data center.
- Diagnostics
Path string - The virtual blob directory to which the copy logs and backups of drive manifest files (if enabled) will be stored.
- Drive
List List<Pulumi.Azure Native. Import Export. Inputs. Drive Status Response> - List of up to ten drives that comprise the job. The drive list is a required element for an import job; it is not specified for export jobs.
- Encryption
Key Pulumi.Azure Native. Import Export. Inputs. Encryption Key Details Response - Contains information about the encryption key.
- Export
Pulumi.
Azure Native. Import Export. Inputs. Export Response - A property containing information about the blobs to be exported for an export job. This property is included for export jobs only.
- Incomplete
Blob stringList Uri - A blob path that points to a block blob containing a list of blob names that were not exported due to insufficient drive space. If all blobs were exported successfully, then this element is not included in the response.
- Job
Type string - The type of job
- Log
Level string - Default value is Error. Indicates whether error logging or verbose logging will be enabled.
- Percent
Complete double - Overall percentage completed for the job.
- Provisioning
State string - Specifies the provisioning state of the job.
- Return
Address Pulumi.Azure Native. Import Export. Inputs. Return Address Response - Specifies the return address information for the job.
- Return
Package Pulumi.Azure Native. Import Export. Inputs. Package Information Response - Contains information about the package being shipped from the Microsoft data center to the customer to return the drives. The format is the same as the deliveryPackage property above. This property is not included if the drives have not yet been returned.
- Return
Shipping Pulumi.Azure Native. Import Export. Inputs. Return Shipping Response - Specifies the return carrier and customer's account with the carrier.
- Shipping
Information Pulumi.Azure Native. Import Export. Inputs. Shipping Information Response - Contains information about the Microsoft datacenter to which the drives should be shipped.
- State string
- Current state of the job.
- Storage
Account stringId - The resource identifier of the storage account where data will be imported to or exported from.
- Backup
Drive boolManifest - Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs.
- Cancel
Requested bool - Indicates whether a request has been submitted to cancel the job.
- Delivery
Package DeliveryPackage Information Response - Contains information about the package being shipped by the customer to the Microsoft data center.
- Diagnostics
Path string - The virtual blob directory to which the copy logs and backups of drive manifest files (if enabled) will be stored.
- Drive
List []DriveStatus Response - List of up to ten drives that comprise the job. The drive list is a required element for an import job; it is not specified for export jobs.
- Encryption
Key EncryptionKey Details Response - Contains information about the encryption key.
- Export
Export
Response - A property containing information about the blobs to be exported for an export job. This property is included for export jobs only.
- Incomplete
Blob stringList Uri - A blob path that points to a block blob containing a list of blob names that were not exported due to insufficient drive space. If all blobs were exported successfully, then this element is not included in the response.
- Job
Type string - The type of job
- Log
Level string - Default value is Error. Indicates whether error logging or verbose logging will be enabled.
- Percent
Complete float64 - Overall percentage completed for the job.
- Provisioning
State string - Specifies the provisioning state of the job.
- Return
Address ReturnAddress Response - Specifies the return address information for the job.
- Return
Package PackageInformation Response - Contains information about the package being shipped from the Microsoft data center to the customer to return the drives. The format is the same as the deliveryPackage property above. This property is not included if the drives have not yet been returned.
- Return
Shipping ReturnShipping Response - Specifies the return carrier and customer's account with the carrier.
- Shipping
Information ShippingInformation Response - Contains information about the Microsoft datacenter to which the drives should be shipped.
- State string
- Current state of the job.
- Storage
Account stringId - The resource identifier of the storage account where data will be imported to or exported from.
- backup
Drive BooleanManifest - Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs.
- cancel
Requested Boolean - Indicates whether a request has been submitted to cancel the job.
- delivery
Package DeliveryPackage Information Response - Contains information about the package being shipped by the customer to the Microsoft data center.
- diagnostics
Path String - The virtual blob directory to which the copy logs and backups of drive manifest files (if enabled) will be stored.
- drive
List List<DriveStatus Response> - List of up to ten drives that comprise the job. The drive list is a required element for an import job; it is not specified for export jobs.
- encryption
Key EncryptionKey Details Response - Contains information about the encryption key.
- export
Export
Response - A property containing information about the blobs to be exported for an export job. This property is included for export jobs only.
- incomplete
Blob StringList Uri - A blob path that points to a block blob containing a list of blob names that were not exported due to insufficient drive space. If all blobs were exported successfully, then this element is not included in the response.
- job
Type String - The type of job
- log
Level String - Default value is Error. Indicates whether error logging or verbose logging will be enabled.
- percent
Complete Double - Overall percentage completed for the job.
- provisioning
State String - Specifies the provisioning state of the job.
- return
Address ReturnAddress Response - Specifies the return address information for the job.
- return
Package PackageInformation Response - Contains information about the package being shipped from the Microsoft data center to the customer to return the drives. The format is the same as the deliveryPackage property above. This property is not included if the drives have not yet been returned.
- return
Shipping ReturnShipping Response - Specifies the return carrier and customer's account with the carrier.
- shipping
Information ShippingInformation Response - Contains information about the Microsoft datacenter to which the drives should be shipped.
- state String
- Current state of the job.
- storage
Account StringId - The resource identifier of the storage account where data will be imported to or exported from.
- backup
Drive booleanManifest - Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs.
- cancel
Requested boolean - Indicates whether a request has been submitted to cancel the job.
- delivery
Package DeliveryPackage Information Response - Contains information about the package being shipped by the customer to the Microsoft data center.
- diagnostics
Path string - The virtual blob directory to which the copy logs and backups of drive manifest files (if enabled) will be stored.
- drive
List DriveStatus Response[] - List of up to ten drives that comprise the job. The drive list is a required element for an import job; it is not specified for export jobs.
- encryption
Key EncryptionKey Details Response - Contains information about the encryption key.
- export
Export
Response - A property containing information about the blobs to be exported for an export job. This property is included for export jobs only.
- incomplete
Blob stringList Uri - A blob path that points to a block blob containing a list of blob names that were not exported due to insufficient drive space. If all blobs were exported successfully, then this element is not included in the response.
- job
Type string - The type of job
- log
Level string - Default value is Error. Indicates whether error logging or verbose logging will be enabled.
- percent
Complete number - Overall percentage completed for the job.
- provisioning
State string - Specifies the provisioning state of the job.
- return
Address ReturnAddress Response - Specifies the return address information for the job.
- return
Package PackageInformation Response - Contains information about the package being shipped from the Microsoft data center to the customer to return the drives. The format is the same as the deliveryPackage property above. This property is not included if the drives have not yet been returned.
- return
Shipping ReturnShipping Response - Specifies the return carrier and customer's account with the carrier.
- shipping
Information ShippingInformation Response - Contains information about the Microsoft datacenter to which the drives should be shipped.
- state string
- Current state of the job.
- storage
Account stringId - The resource identifier of the storage account where data will be imported to or exported from.
- backup_
drive_ boolmanifest - Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs.
- cancel_
requested bool - Indicates whether a request has been submitted to cancel the job.
- delivery_
package DeliveryPackage Information Response - Contains information about the package being shipped by the customer to the Microsoft data center.
- diagnostics_
path str - The virtual blob directory to which the copy logs and backups of drive manifest files (if enabled) will be stored.
- drive_
list Sequence[DriveStatus Response] - List of up to ten drives that comprise the job. The drive list is a required element for an import job; it is not specified for export jobs.
- encryption_
key EncryptionKey Details Response - Contains information about the encryption key.
- export
Export
Response - A property containing information about the blobs to be exported for an export job. This property is included for export jobs only.
- incomplete_
blob_ strlist_ uri - A blob path that points to a block blob containing a list of blob names that were not exported due to insufficient drive space. If all blobs were exported successfully, then this element is not included in the response.
- job_
type str - The type of job
- log_
level str - Default value is Error. Indicates whether error logging or verbose logging will be enabled.
- percent_
complete float - Overall percentage completed for the job.
- provisioning_
state str - Specifies the provisioning state of the job.
- return_
address ReturnAddress Response - Specifies the return address information for the job.
- return_
package PackageInformation Response - Contains information about the package being shipped from the Microsoft data center to the customer to return the drives. The format is the same as the deliveryPackage property above. This property is not included if the drives have not yet been returned.
- return_
shipping ReturnShipping Response - Specifies the return carrier and customer's account with the carrier.
- shipping_
information ShippingInformation Response - Contains information about the Microsoft datacenter to which the drives should be shipped.
- state str
- Current state of the job.
- storage_
account_ strid - The resource identifier of the storage account where data will be imported to or exported from.
- backup
Drive BooleanManifest - Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs.
- cancel
Requested Boolean - Indicates whether a request has been submitted to cancel the job.
- delivery
Package Property Map - Contains information about the package being shipped by the customer to the Microsoft data center.
- diagnostics
Path String - The virtual blob directory to which the copy logs and backups of drive manifest files (if enabled) will be stored.
- drive
List List<Property Map> - List of up to ten drives that comprise the job. The drive list is a required element for an import job; it is not specified for export jobs.
- encryption
Key Property Map - Contains information about the encryption key.
- export Property Map
- A property containing information about the blobs to be exported for an export job. This property is included for export jobs only.
- incomplete
Blob StringList Uri - A blob path that points to a block blob containing a list of blob names that were not exported due to insufficient drive space. If all blobs were exported successfully, then this element is not included in the response.
- job
Type String - The type of job
- log
Level String - Default value is Error. Indicates whether error logging or verbose logging will be enabled.
- percent
Complete Number - Overall percentage completed for the job.
- provisioning
State String - Specifies the provisioning state of the job.
- return
Address Property Map - Specifies the return address information for the job.
- return
Package Property Map - Contains information about the package being shipped from the Microsoft data center to the customer to return the drives. The format is the same as the deliveryPackage property above. This property is not included if the drives have not yet been returned.
- return
Shipping Property Map - Specifies the return carrier and customer's account with the carrier.
- shipping
Information Property Map - Contains information about the Microsoft datacenter to which the drives should be shipped.
- state String
- Current state of the job.
- storage
Account StringId - The resource identifier of the storage account where data will be imported to or exported from.
PackageInformation, PackageInformationArgs
- Carrier
Name string - The name of the carrier that is used to ship the import or export drives.
- Drive
Count double - The number of drives included in the package.
- Ship
Date string - The date when the package is shipped.
- Tracking
Number string - The tracking number of the package.
- Carrier
Name string - The name of the carrier that is used to ship the import or export drives.
- Drive
Count float64 - The number of drives included in the package.
- Ship
Date string - The date when the package is shipped.
- Tracking
Number string - The tracking number of the package.
- carrier
Name String - The name of the carrier that is used to ship the import or export drives.
- drive
Count Double - The number of drives included in the package.
- ship
Date String - The date when the package is shipped.
- tracking
Number String - The tracking number of the package.
- carrier
Name string - The name of the carrier that is used to ship the import or export drives.
- drive
Count number - The number of drives included in the package.
- ship
Date string - The date when the package is shipped.
- tracking
Number string - The tracking number of the package.
- carrier_
name str - The name of the carrier that is used to ship the import or export drives.
- drive_
count float - The number of drives included in the package.
- ship_
date str - The date when the package is shipped.
- tracking_
number str - The tracking number of the package.
- carrier
Name String - The name of the carrier that is used to ship the import or export drives.
- drive
Count Number - The number of drives included in the package.
- ship
Date String - The date when the package is shipped.
- tracking
Number String - The tracking number of the package.
PackageInformationResponse, PackageInformationResponseArgs
- Carrier
Name string - The name of the carrier that is used to ship the import or export drives.
- Drive
Count double - The number of drives included in the package.
- Ship
Date string - The date when the package is shipped.
- Tracking
Number string - The tracking number of the package.
- Carrier
Name string - The name of the carrier that is used to ship the import or export drives.
- Drive
Count float64 - The number of drives included in the package.
- Ship
Date string - The date when the package is shipped.
- Tracking
Number string - The tracking number of the package.
- carrier
Name String - The name of the carrier that is used to ship the import or export drives.
- drive
Count Double - The number of drives included in the package.
- ship
Date String - The date when the package is shipped.
- tracking
Number String - The tracking number of the package.
- carrier
Name string - The name of the carrier that is used to ship the import or export drives.
- drive
Count number - The number of drives included in the package.
- ship
Date string - The date when the package is shipped.
- tracking
Number string - The tracking number of the package.
- carrier_
name str - The name of the carrier that is used to ship the import or export drives.
- drive_
count float - The number of drives included in the package.
- ship_
date str - The date when the package is shipped.
- tracking_
number str - The tracking number of the package.
- carrier
Name String - The name of the carrier that is used to ship the import or export drives.
- drive
Count Number - The number of drives included in the package.
- ship
Date String - The date when the package is shipped.
- tracking
Number String - The tracking number of the package.
ReturnAddress, ReturnAddressArgs
- City string
- The city name to use when returning the drives.
- Country
Or stringRegion - The country or region to use when returning the drives.
- Email string
- Email address of the recipient of the returned drives.
- Phone string
- Phone number of the recipient of the returned drives.
- Postal
Code string - The postal code to use when returning the drives.
- Recipient
Name string - The name of the recipient who will receive the hard drives when they are returned.
- Street
Address1 string - The first line of the street address to use when returning the drives.
- State
Or stringProvince - The state or province to use when returning the drives.
- Street
Address2 string - The second line of the street address to use when returning the drives.
- City string
- The city name to use when returning the drives.
- Country
Or stringRegion - The country or region to use when returning the drives.
- Email string
- Email address of the recipient of the returned drives.
- Phone string
- Phone number of the recipient of the returned drives.
- Postal
Code string - The postal code to use when returning the drives.
- Recipient
Name string - The name of the recipient who will receive the hard drives when they are returned.
- Street
Address1 string - The first line of the street address to use when returning the drives.
- State
Or stringProvince - The state or province to use when returning the drives.
- Street
Address2 string - The second line of the street address to use when returning the drives.
- city String
- The city name to use when returning the drives.
- country
Or StringRegion - The country or region to use when returning the drives.
- email String
- Email address of the recipient of the returned drives.
- phone String
- Phone number of the recipient of the returned drives.
- postal
Code String - The postal code to use when returning the drives.
- recipient
Name String - The name of the recipient who will receive the hard drives when they are returned.
- street
Address1 String - The first line of the street address to use when returning the drives.
- state
Or StringProvince - The state or province to use when returning the drives.
- street
Address2 String - The second line of the street address to use when returning the drives.
- city string
- The city name to use when returning the drives.
- country
Or stringRegion - The country or region to use when returning the drives.
- email string
- Email address of the recipient of the returned drives.
- phone string
- Phone number of the recipient of the returned drives.
- postal
Code string - The postal code to use when returning the drives.
- recipient
Name string - The name of the recipient who will receive the hard drives when they are returned.
- street
Address1 string - The first line of the street address to use when returning the drives.
- state
Or stringProvince - The state or province to use when returning the drives.
- street
Address2 string - The second line of the street address to use when returning the drives.
- city str
- The city name to use when returning the drives.
- country_
or_ strregion - The country or region to use when returning the drives.
- email str
- Email address of the recipient of the returned drives.
- phone str
- Phone number of the recipient of the returned drives.
- postal_
code str - The postal code to use when returning the drives.
- recipient_
name str - The name of the recipient who will receive the hard drives when they are returned.
- street_
address1 str - The first line of the street address to use when returning the drives.
- state_
or_ strprovince - The state or province to use when returning the drives.
- street_
address2 str - The second line of the street address to use when returning the drives.
- city String
- The city name to use when returning the drives.
- country
Or StringRegion - The country or region to use when returning the drives.
- email String
- Email address of the recipient of the returned drives.
- phone String
- Phone number of the recipient of the returned drives.
- postal
Code String - The postal code to use when returning the drives.
- recipient
Name String - The name of the recipient who will receive the hard drives when they are returned.
- street
Address1 String - The first line of the street address to use when returning the drives.
- state
Or StringProvince - The state or province to use when returning the drives.
- street
Address2 String - The second line of the street address to use when returning the drives.
ReturnAddressResponse, ReturnAddressResponseArgs
- City string
- The city name to use when returning the drives.
- Country
Or stringRegion - The country or region to use when returning the drives.
- Email string
- Email address of the recipient of the returned drives.
- Phone string
- Phone number of the recipient of the returned drives.
- Postal
Code string - The postal code to use when returning the drives.
- Recipient
Name string - The name of the recipient who will receive the hard drives when they are returned.
- Street
Address1 string - The first line of the street address to use when returning the drives.
- State
Or stringProvince - The state or province to use when returning the drives.
- Street
Address2 string - The second line of the street address to use when returning the drives.
- City string
- The city name to use when returning the drives.
- Country
Or stringRegion - The country or region to use when returning the drives.
- Email string
- Email address of the recipient of the returned drives.
- Phone string
- Phone number of the recipient of the returned drives.
- Postal
Code string - The postal code to use when returning the drives.
- Recipient
Name string - The name of the recipient who will receive the hard drives when they are returned.
- Street
Address1 string - The first line of the street address to use when returning the drives.
- State
Or stringProvince - The state or province to use when returning the drives.
- Street
Address2 string - The second line of the street address to use when returning the drives.
- city String
- The city name to use when returning the drives.
- country
Or StringRegion - The country or region to use when returning the drives.
- email String
- Email address of the recipient of the returned drives.
- phone String
- Phone number of the recipient of the returned drives.
- postal
Code String - The postal code to use when returning the drives.
- recipient
Name String - The name of the recipient who will receive the hard drives when they are returned.
- street
Address1 String - The first line of the street address to use when returning the drives.
- state
Or StringProvince - The state or province to use when returning the drives.
- street
Address2 String - The second line of the street address to use when returning the drives.
- city string
- The city name to use when returning the drives.
- country
Or stringRegion - The country or region to use when returning the drives.
- email string
- Email address of the recipient of the returned drives.
- phone string
- Phone number of the recipient of the returned drives.
- postal
Code string - The postal code to use when returning the drives.
- recipient
Name string - The name of the recipient who will receive the hard drives when they are returned.
- street
Address1 string - The first line of the street address to use when returning the drives.
- state
Or stringProvince - The state or province to use when returning the drives.
- street
Address2 string - The second line of the street address to use when returning the drives.
- city str
- The city name to use when returning the drives.
- country_
or_ strregion - The country or region to use when returning the drives.
- email str
- Email address of the recipient of the returned drives.
- phone str
- Phone number of the recipient of the returned drives.
- postal_
code str - The postal code to use when returning the drives.
- recipient_
name str - The name of the recipient who will receive the hard drives when they are returned.
- street_
address1 str - The first line of the street address to use when returning the drives.
- state_
or_ strprovince - The state or province to use when returning the drives.
- street_
address2 str - The second line of the street address to use when returning the drives.
- city String
- The city name to use when returning the drives.
- country
Or StringRegion - The country or region to use when returning the drives.
- email String
- Email address of the recipient of the returned drives.
- phone String
- Phone number of the recipient of the returned drives.
- postal
Code String - The postal code to use when returning the drives.
- recipient
Name String - The name of the recipient who will receive the hard drives when they are returned.
- street
Address1 String - The first line of the street address to use when returning the drives.
- state
Or StringProvince - The state or province to use when returning the drives.
- street
Address2 String - The second line of the street address to use when returning the drives.
ReturnShipping, ReturnShippingArgs
- Carrier
Account stringNumber - The customer's account number with the carrier.
- Carrier
Name string - The carrier's name.
- Carrier
Account stringNumber - The customer's account number with the carrier.
- Carrier
Name string - The carrier's name.
- carrier
Account StringNumber - The customer's account number with the carrier.
- carrier
Name String - The carrier's name.
- carrier
Account stringNumber - The customer's account number with the carrier.
- carrier
Name string - The carrier's name.
- carrier_
account_ strnumber - The customer's account number with the carrier.
- carrier_
name str - The carrier's name.
- carrier
Account StringNumber - The customer's account number with the carrier.
- carrier
Name String - The carrier's name.
ReturnShippingResponse, ReturnShippingResponseArgs
- Carrier
Account stringNumber - The customer's account number with the carrier.
- Carrier
Name string - The carrier's name.
- Carrier
Account stringNumber - The customer's account number with the carrier.
- Carrier
Name string - The carrier's name.
- carrier
Account StringNumber - The customer's account number with the carrier.
- carrier
Name String - The carrier's name.
- carrier
Account stringNumber - The customer's account number with the carrier.
- carrier
Name string - The carrier's name.
- carrier_
account_ strnumber - The customer's account number with the carrier.
- carrier_
name str - The carrier's name.
- carrier
Account StringNumber - The customer's account number with the carrier.
- carrier
Name String - The carrier's name.
ShippingInformation, ShippingInformationArgs
- City string
- The city name to use when returning the drives.
- Country
Or stringRegion - The country or region to use when returning the drives.
- Phone string
- Phone number of the recipient of the returned drives.
- Postal
Code string - The postal code to use when returning the drives.
- Recipient
Name string - The name of the recipient who will receive the hard drives when they are returned.
- State
Or stringProvince - The state or province to use when returning the drives.
- Street
Address1 string - The first line of the street address to use when returning the drives.
- Street
Address2 string - The second line of the street address to use when returning the drives.
- City string
- The city name to use when returning the drives.
- Country
Or stringRegion - The country or region to use when returning the drives.
- Phone string
- Phone number of the recipient of the returned drives.
- Postal
Code string - The postal code to use when returning the drives.
- Recipient
Name string - The name of the recipient who will receive the hard drives when they are returned.
- State
Or stringProvince - The state or province to use when returning the drives.
- Street
Address1 string - The first line of the street address to use when returning the drives.
- Street
Address2 string - The second line of the street address to use when returning the drives.
- city String
- The city name to use when returning the drives.
- country
Or StringRegion - The country or region to use when returning the drives.
- phone String
- Phone number of the recipient of the returned drives.
- postal
Code String - The postal code to use when returning the drives.
- recipient
Name String - The name of the recipient who will receive the hard drives when they are returned.
- state
Or StringProvince - The state or province to use when returning the drives.
- street
Address1 String - The first line of the street address to use when returning the drives.
- street
Address2 String - The second line of the street address to use when returning the drives.
- city string
- The city name to use when returning the drives.
- country
Or stringRegion - The country or region to use when returning the drives.
- phone string
- Phone number of the recipient of the returned drives.
- postal
Code string - The postal code to use when returning the drives.
- recipient
Name string - The name of the recipient who will receive the hard drives when they are returned.
- state
Or stringProvince - The state or province to use when returning the drives.
- street
Address1 string - The first line of the street address to use when returning the drives.
- street
Address2 string - The second line of the street address to use when returning the drives.
- city str
- The city name to use when returning the drives.
- country_
or_ strregion - The country or region to use when returning the drives.
- phone str
- Phone number of the recipient of the returned drives.
- postal_
code str - The postal code to use when returning the drives.
- recipient_
name str - The name of the recipient who will receive the hard drives when they are returned.
- state_
or_ strprovince - The state or province to use when returning the drives.
- street_
address1 str - The first line of the street address to use when returning the drives.
- street_
address2 str - The second line of the street address to use when returning the drives.
- city String
- The city name to use when returning the drives.
- country
Or StringRegion - The country or region to use when returning the drives.
- phone String
- Phone number of the recipient of the returned drives.
- postal
Code String - The postal code to use when returning the drives.
- recipient
Name String - The name of the recipient who will receive the hard drives when they are returned.
- state
Or StringProvince - The state or province to use when returning the drives.
- street
Address1 String - The first line of the street address to use when returning the drives.
- street
Address2 String - The second line of the street address to use when returning the drives.
ShippingInformationResponse, ShippingInformationResponseArgs
- Additional
Information string - Additional shipping information for customer, specific to datacenter to which customer should send their disks.
- City string
- The city name to use when returning the drives.
- Country
Or stringRegion - The country or region to use when returning the drives.
- Phone string
- Phone number of the recipient of the returned drives.
- Postal
Code string - The postal code to use when returning the drives.
- Recipient
Name string - The name of the recipient who will receive the hard drives when they are returned.
- State
Or stringProvince - The state or province to use when returning the drives.
- Street
Address1 string - The first line of the street address to use when returning the drives.
- Street
Address2 string - The second line of the street address to use when returning the drives.
- Additional
Information string - Additional shipping information for customer, specific to datacenter to which customer should send their disks.
- City string
- The city name to use when returning the drives.
- Country
Or stringRegion - The country or region to use when returning the drives.
- Phone string
- Phone number of the recipient of the returned drives.
- Postal
Code string - The postal code to use when returning the drives.
- Recipient
Name string - The name of the recipient who will receive the hard drives when they are returned.
- State
Or stringProvince - The state or province to use when returning the drives.
- Street
Address1 string - The first line of the street address to use when returning the drives.
- Street
Address2 string - The second line of the street address to use when returning the drives.
- additional
Information String - Additional shipping information for customer, specific to datacenter to which customer should send their disks.
- city String
- The city name to use when returning the drives.
- country
Or StringRegion - The country or region to use when returning the drives.
- phone String
- Phone number of the recipient of the returned drives.
- postal
Code String - The postal code to use when returning the drives.
- recipient
Name String - The name of the recipient who will receive the hard drives when they are returned.
- state
Or StringProvince - The state or province to use when returning the drives.
- street
Address1 String - The first line of the street address to use when returning the drives.
- street
Address2 String - The second line of the street address to use when returning the drives.
- additional
Information string - Additional shipping information for customer, specific to datacenter to which customer should send their disks.
- city string
- The city name to use when returning the drives.
- country
Or stringRegion - The country or region to use when returning the drives.
- phone string
- Phone number of the recipient of the returned drives.
- postal
Code string - The postal code to use when returning the drives.
- recipient
Name string - The name of the recipient who will receive the hard drives when they are returned.
- state
Or stringProvince - The state or province to use when returning the drives.
- street
Address1 string - The first line of the street address to use when returning the drives.
- street
Address2 string - The second line of the street address to use when returning the drives.
- additional_
information str - Additional shipping information for customer, specific to datacenter to which customer should send their disks.
- city str
- The city name to use when returning the drives.
- country_
or_ strregion - The country or region to use when returning the drives.
- phone str
- Phone number of the recipient of the returned drives.
- postal_
code str - The postal code to use when returning the drives.
- recipient_
name str - The name of the recipient who will receive the hard drives when they are returned.
- state_
or_ strprovince - The state or province to use when returning the drives.
- street_
address1 str - The first line of the street address to use when returning the drives.
- street_
address2 str - The second line of the street address to use when returning the drives.
- additional
Information String - Additional shipping information for customer, specific to datacenter to which customer should send their disks.
- city String
- The city name to use when returning the drives.
- country
Or StringRegion - The country or region to use when returning the drives.
- phone String
- Phone number of the recipient of the returned drives.
- postal
Code String - The postal code to use when returning the drives.
- recipient
Name String - The name of the recipient who will receive the hard drives when they are returned.
- state
Or StringProvince - The state or province to use when returning the drives.
- street
Address1 String - The first line of the street address to use when returning the drives.
- street
Address2 String - The second line of the street address to use when returning the drives.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:importexport:Job myJob /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ImportExport/jobs/{jobName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0