azure-native.importexport.Job
Explore with Pulumi AI
Contains the job information. API Version: 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"
	"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.JobDetailsResponse{
				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 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(Map.ofEntries(
                Map.entry("backupDriveManifest", true),
                Map.entry("diagnosticsPath", "waimportexport"),
                Map.entry("export", Map.of("blobPathPrefix", "/")),
                Map.entry("jobType", "Export"),
                Map.entry("logLevel", "Verbose"),
                Map.entry("returnAddress", Map.ofEntries(
                    Map.entry("city", "Redmond"),
                    Map.entry("countryOrRegion", "USA"),
                    Map.entry("email", "Test@contoso.com"),
                    Map.entry("phone", "4250000000"),
                    Map.entry("postalCode", "98007"),
                    Map.entry("recipientName", "Test"),
                    Map.entry("stateOrProvince", "wa"),
                    Map.entry("streetAddress1", "Street1"),
                    Map.entry("streetAddress2", "street2")
                )),
                Map.entry("returnShipping", Map.ofEntries(
                    Map.entry("carrierAccountNumber", "989ffff"),
                    Map.entry("carrierName", "FedEx")
                )),
                Map.entry("storageAccountId", "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/test")
            ))
            .resourceGroupName("myResourceGroup")
            .build());
    }
}
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",
});
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.JobDetailsResponseArgs(
        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")
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"
	"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.JobDetailsResponse{
				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 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(Map.ofEntries(
                Map.entry("backupDriveManifest", true),
                Map.entry("diagnosticsPath", "waimportexport"),
                Map.entry("driveList", Map.ofEntries(
                    Map.entry("bitLockerKey", "238810-662376-448998-450120-652806-203390-606320-483076"),
                    Map.entry("driveHeaderHash", "0:1048576:FB6B6ED500D49DA6E0D723C98D42C657F2881CC13357C28DCECA6A524F1292501571A321238540E621AB5BD9C9A32637615919A75593E6CB5C1515DAE341CABF;135266304:143360:C957A189AFC38C4E80731252301EB91427CE55E61448FA3C73C6FDDE70ABBC197947EC8D0249A2C639BB10B95957D5820A4BE8DFBBF76FFFA688AE5CE0D42EC3"),
                    Map.entry("driveId", "9CA995BB"),
                    Map.entry("manifestFile", "\\8a0c23f7-14b7-470a-9633-fcd46590a1bc.manifest"),
                    Map.entry("manifestHash", "4228EC5D8E048CB9B515338C789314BE8D0B2FDBC7C7A0308E1C826242CDE74E")
                )),
                Map.entry("jobType", "Import"),
                Map.entry("logLevel", "Verbose"),
                Map.entry("returnAddress", Map.ofEntries(
                    Map.entry("city", "Redmond"),
                    Map.entry("countryOrRegion", "USA"),
                    Map.entry("email", "Test@contoso.com"),
                    Map.entry("phone", "4250000000"),
                    Map.entry("postalCode", "98007"),
                    Map.entry("recipientName", "Test"),
                    Map.entry("stateOrProvince", "wa"),
                    Map.entry("streetAddress1", "Street1"),
                    Map.entry("streetAddress2", "street2")
                )),
                Map.entry("returnShipping", Map.ofEntries(
                    Map.entry("carrierAccountNumber", "989ffff"),
                    Map.entry("carrierName", "FedEx")
                )),
                Map.entry("storageAccountId", "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/test")
            ))
            .resourceGroupName("myResourceGroup")
            .build());
    }
}
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",
});
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.JobDetailsResponseArgs(
        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")
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 azure_nativeJobResource = new AzureNative.Importexport.Job("azure-nativeJobResource", new()
{
    ResourceGroupName = "string",
    JobName = "string",
    Location = "string",
    Properties = 
    {
        { "backupDriveManifest", false },
        { "cancelRequested", false },
        { "deliveryPackage", 
        {
            { "carrierName", "string" },
            { "trackingNumber", "string" },
            { "driveCount", 0 },
            { "shipDate", "string" },
        } },
        { "diagnosticsPath", "string" },
        { "driveList", new[]
        {
            
            {
                { "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", new[]
            {
                "string",
            } },
            { "blobPathPrefix", new[]
            {
                "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",
});
example, err := importexport.NewJob(ctx, "azure-nativeJobResource", &importexport.JobArgs{
	ResourceGroupName: "string",
	JobName:           "string",
	Location:          "string",
	Properties: map[string]interface{}{
		"backupDriveManifest": false,
		"cancelRequested":     false,
		"deliveryPackage": map[string]interface{}{
			"carrierName":    "string",
			"trackingNumber": "string",
			"driveCount":     0,
			"shipDate":       "string",
		},
		"diagnosticsPath": "string",
		"driveList": []map[string]interface{}{
			map[string]interface{}{
				"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": map[string]interface{}{
			"kekType":            "string",
			"kekUrl":             "string",
			"kekVaultResourceID": "string",
		},
		"export": map[string]interface{}{
			"blobListBlobPath": "string",
			"blobPath": []string{
				"string",
			},
			"blobPathPrefix": []string{
				"string",
			},
		},
		"incompleteBlobListUri": "string",
		"jobType":               "string",
		"logLevel":              "string",
		"percentComplete":       0,
		"provisioningState":     "string",
		"returnAddress": map[string]interface{}{
			"city":            "string",
			"countryOrRegion": "string",
			"email":           "string",
			"phone":           "string",
			"postalCode":      "string",
			"recipientName":   "string",
			"streetAddress1":  "string",
			"stateOrProvince": "string",
			"streetAddress2":  "string",
		},
		"returnPackage": map[string]interface{}{
			"carrierName":    "string",
			"driveCount":     0,
			"shipDate":       "string",
			"trackingNumber": "string",
		},
		"returnShipping": map[string]interface{}{
			"carrierAccountNumber": "string",
			"carrierName":          "string",
		},
		"shippingInformation": map[string]interface{}{
			"city":            "string",
			"countryOrRegion": "string",
			"phone":           "string",
			"postalCode":      "string",
			"recipientName":   "string",
			"stateOrProvince": "string",
			"streetAddress1":  "string",
			"streetAddress2":  "string",
		},
		"state":            "string",
		"storageAccountId": "string",
	},
	Tags: "any",
})
var azure_nativeJobResource = new Job("azure-nativeJobResource", JobArgs.builder()
    .resourceGroupName("string")
    .jobName("string")
    .location("string")
    .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .tags("any")
    .build());
azure_native_job_resource = azure_native.importexport.Job("azure-nativeJobResource",
    resource_group_name=string,
    job_name=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)
const azure_nativeJobResource = new azure_native.importexport.Job("azure-nativeJobResource", {
    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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Job resource accepts the following input properties:
- ResourceGroup stringName 
- The resource group name uniquely identifies the resource group within the user subscription.
- JobName 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.
- ResourceGroup stringName 
- The resource group name uniquely identifies the resource group within the user subscription.
- JobName string
- The name of the import/export job.
- Location string
- Specifies the supported Azure location where the job should be created
- Properties
JobDetails Args 
- Specifies the job properties
- interface{}
- Specifies the tags that will be assigned to the job.
- resourceGroup StringName 
- The resource group name uniquely identifies the resource group within the user subscription.
- jobName String
- The name of the import/export job.
- location String
- Specifies the supported Azure location where the job should be created
- properties
JobDetails 
- Specifies the job properties
- Object
- Specifies the tags that will be assigned to the job.
- resourceGroup stringName 
- The resource group name uniquely identifies the resource group within the user subscription.
- jobName string
- The name of the import/export job.
- location string
- Specifies the supported Azure location where the job should be created
- properties
JobDetails 
- 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
JobDetails Args 
- Specifies the job properties
- Any
- Specifies the tags that will be assigned to the job.
- resourceGroup StringName 
- The resource group name uniquely identifies the resource group within the user subscription.
- jobName 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.
- SystemData 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.
- SystemData SystemData Response 
- SystemData of ImportExport Jobs.
- Type string
- Specifies the type of the job resource.
- Identity
IdentityDetails 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.
- systemData SystemData Response 
- SystemData of ImportExport Jobs.
- type String
- Specifies the type of the job resource.
- identity
IdentityDetails 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.
- systemData SystemData Response 
- SystemData of ImportExport Jobs.
- type string
- Specifies the type of the job resource.
- identity
IdentityDetails 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
IdentityDetails 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.
- systemData 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      
- CarrierName string
- The name of the carrier that is used to ship the import or export drives.
- TrackingNumber string
- The tracking number of the package.
- DriveCount double
- The number of drives included in the package.
- ShipDate string
- The date when the package is shipped.
- CarrierName string
- The name of the carrier that is used to ship the import or export drives.
- TrackingNumber string
- The tracking number of the package.
- DriveCount float64
- The number of drives included in the package.
- ShipDate string
- The date when the package is shipped.
- carrierName String
- The name of the carrier that is used to ship the import or export drives.
- trackingNumber String
- The tracking number of the package.
- driveCount Double
- The number of drives included in the package.
- shipDate String
- The date when the package is shipped.
- carrierName string
- The name of the carrier that is used to ship the import or export drives.
- trackingNumber string
- The tracking number of the package.
- driveCount number
- The number of drives included in the package.
- shipDate 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.
- carrierName String
- The name of the carrier that is used to ship the import or export drives.
- trackingNumber String
- The tracking number of the package.
- driveCount Number
- The number of drives included in the package.
- shipDate String
- The date when the package is shipped.
DeliveryPackageInformationResponse, DeliveryPackageInformationResponseArgs        
- CarrierName string
- The name of the carrier that is used to ship the import or export drives.
- TrackingNumber string
- The tracking number of the package.
- DriveCount double
- The number of drives included in the package.
- ShipDate string
- The date when the package is shipped.
- CarrierName string
- The name of the carrier that is used to ship the import or export drives.
- TrackingNumber string
- The tracking number of the package.
- DriveCount float64
- The number of drives included in the package.
- ShipDate string
- The date when the package is shipped.
- carrierName String
- The name of the carrier that is used to ship the import or export drives.
- trackingNumber String
- The tracking number of the package.
- driveCount Double
- The number of drives included in the package.
- shipDate String
- The date when the package is shipped.
- carrierName string
- The name of the carrier that is used to ship the import or export drives.
- trackingNumber string
- The tracking number of the package.
- driveCount number
- The number of drives included in the package.
- shipDate 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.
- carrierName String
- The name of the carrier that is used to ship the import or export drives.
- trackingNumber String
- The tracking number of the package.
- driveCount Number
- The number of drives included in the package.
- shipDate String
- The date when the package is shipped.
DriveState, DriveStateArgs    
- Specified
- Specified
- Received
- Received
- NeverReceived 
- NeverReceived
- Transferring
- Transferring
- Completed
- Completed
- CompletedMore Info 
- CompletedMoreInfo
- ShippedBack 
- ShippedBack
- DriveState Specified 
- Specified
- DriveState Received 
- Received
- DriveState Never Received 
- NeverReceived
- DriveState Transferring 
- Transferring
- DriveState Completed 
- Completed
- DriveState Completed More Info 
- CompletedMoreInfo
- DriveState Shipped Back 
- ShippedBack
- Specified
- Specified
- Received
- Received
- NeverReceived 
- NeverReceived
- Transferring
- Transferring
- Completed
- Completed
- CompletedMore Info 
- CompletedMoreInfo
- ShippedBack 
- ShippedBack
- Specified
- Specified
- Received
- Received
- NeverReceived 
- NeverReceived
- Transferring
- Transferring
- Completed
- Completed
- CompletedMore Info 
- CompletedMoreInfo
- ShippedBack 
- ShippedBack
- SPECIFIED
- Specified
- RECEIVED
- Received
- NEVER_RECEIVED
- NeverReceived
- TRANSFERRING
- Transferring
- COMPLETED
- Completed
- COMPLETED_MORE_INFO
- CompletedMoreInfo
- SHIPPED_BACK
- ShippedBack
- "Specified"
- Specified
- "Received"
- Received
- "NeverReceived" 
- NeverReceived
- "Transferring"
- Transferring
- "Completed"
- Completed
- "CompletedMore Info" 
- CompletedMoreInfo
- "ShippedBack" 
- ShippedBack
DriveStatus, DriveStatusArgs    
- BitLocker stringKey 
- The BitLocker key used to encrypt the drive.
- BytesSucceeded double
- Bytes successfully transferred for the drive.
- CopyStatus string
- Detailed status about the data transfer process. This field is not returned in the response until the drive is in the Transferring state.
- DriveHeader stringHash 
- The drive header hash value.
- DriveId string
- The drive's hardware serial number, without spaces.
- ErrorLog stringUri 
- A URI that points to the blob containing the error log for the data transfer operation.
- ManifestFile string
- The relative path of the manifest file on the drive.
- ManifestHash string
- The Base16-encoded MD5 hash of the manifest file on the drive.
- ManifestUri string
- A URI that points to the blob containing the drive manifest file.
- PercentComplete int
- Percentage completed for the drive.
- State
string | Pulumi.Azure Native. Import Export. Drive State 
- The drive's current state.
- VerboseLog stringUri 
- A URI that points to the blob containing the verbose log for the data transfer operation.
- BitLocker stringKey 
- The BitLocker key used to encrypt the drive.
- BytesSucceeded float64
- Bytes successfully transferred for the drive.
- CopyStatus string
- Detailed status about the data transfer process. This field is not returned in the response until the drive is in the Transferring state.
- DriveHeader stringHash 
- The drive header hash value.
- DriveId string
- The drive's hardware serial number, without spaces.
- ErrorLog stringUri 
- A URI that points to the blob containing the error log for the data transfer operation.
- ManifestFile string
- The relative path of the manifest file on the drive.
- ManifestHash string
- The Base16-encoded MD5 hash of the manifest file on the drive.
- ManifestUri string
- A URI that points to the blob containing the drive manifest file.
- PercentComplete int
- Percentage completed for the drive.
- State
string | DriveState 
- The drive's current state.
- VerboseLog stringUri 
- A URI that points to the blob containing the verbose log for the data transfer operation.
- bitLocker StringKey 
- The BitLocker key used to encrypt the drive.
- bytesSucceeded Double
- Bytes successfully transferred for the drive.
- copyStatus String
- Detailed status about the data transfer process. This field is not returned in the response until the drive is in the Transferring state.
- driveHeader StringHash 
- The drive header hash value.
- driveId String
- The drive's hardware serial number, without spaces.
- errorLog StringUri 
- A URI that points to the blob containing the error log for the data transfer operation.
- manifestFile String
- The relative path of the manifest file on the drive.
- manifestHash String
- The Base16-encoded MD5 hash of the manifest file on the drive.
- manifestUri String
- A URI that points to the blob containing the drive manifest file.
- percentComplete Integer
- Percentage completed for the drive.
- state
String | DriveState 
- The drive's current state.
- verboseLog StringUri 
- A URI that points to the blob containing the verbose log for the data transfer operation.
- bitLocker stringKey 
- The BitLocker key used to encrypt the drive.
- bytesSucceeded number
- Bytes successfully transferred for the drive.
- copyStatus string
- Detailed status about the data transfer process. This field is not returned in the response until the drive is in the Transferring state.
- driveHeader stringHash 
- The drive header hash value.
- driveId string
- The drive's hardware serial number, without spaces.
- errorLog stringUri 
- A URI that points to the blob containing the error log for the data transfer operation.
- manifestFile string
- The relative path of the manifest file on the drive.
- manifestHash string
- The Base16-encoded MD5 hash of the manifest file on the drive.
- manifestUri string
- A URI that points to the blob containing the drive manifest file.
- percentComplete number
- Percentage completed for the drive.
- state
string | DriveState 
- The drive's current state.
- verboseLog 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 int
- Percentage completed for the drive.
- state
str | DriveState 
- The drive's current state.
- verbose_log_ struri 
- A URI that points to the blob containing the verbose log for the data transfer operation.
- bitLocker StringKey 
- The BitLocker key used to encrypt the drive.
- bytesSucceeded Number
- Bytes successfully transferred for the drive.
- copyStatus String
- Detailed status about the data transfer process. This field is not returned in the response until the drive is in the Transferring state.
- driveHeader StringHash 
- The drive header hash value.
- driveId String
- The drive's hardware serial number, without spaces.
- errorLog StringUri 
- A URI that points to the blob containing the error log for the data transfer operation.
- manifestFile String
- The relative path of the manifest file on the drive.
- manifestHash String
- The Base16-encoded MD5 hash of the manifest file on the drive.
- manifestUri String
- A URI that points to the blob containing the drive manifest file.
- percentComplete Number
- Percentage completed for the drive.
- state
String | "Specified" | "Received" | "NeverReceived" | "Transferring" | "Completed" | "Completed More Info" | "Shipped Back" 
- The drive's current state.
- verboseLog StringUri 
- A URI that points to the blob containing the verbose log for the data transfer operation.
DriveStatusResponse, DriveStatusResponseArgs      
- BitLocker stringKey 
- The BitLocker key used to encrypt the drive.
- BytesSucceeded double
- Bytes successfully transferred for the drive.
- CopyStatus string
- Detailed status about the data transfer process. This field is not returned in the response until the drive is in the Transferring state.
- DriveHeader stringHash 
- The drive header hash value.
- DriveId string
- The drive's hardware serial number, without spaces.
- ErrorLog stringUri 
- A URI that points to the blob containing the error log for the data transfer operation.
- ManifestFile string
- The relative path of the manifest file on the drive.
- ManifestHash string
- The Base16-encoded MD5 hash of the manifest file on the drive.
- ManifestUri string
- A URI that points to the blob containing the drive manifest file.
- PercentComplete int
- Percentage completed for the drive.
- State string
- The drive's current state.
- VerboseLog stringUri 
- A URI that points to the blob containing the verbose log for the data transfer operation.
- BitLocker stringKey 
- The BitLocker key used to encrypt the drive.
- BytesSucceeded float64
- Bytes successfully transferred for the drive.
- CopyStatus string
- Detailed status about the data transfer process. This field is not returned in the response until the drive is in the Transferring state.
- DriveHeader stringHash 
- The drive header hash value.
- DriveId string
- The drive's hardware serial number, without spaces.
- ErrorLog stringUri 
- A URI that points to the blob containing the error log for the data transfer operation.
- ManifestFile string
- The relative path of the manifest file on the drive.
- ManifestHash string
- The Base16-encoded MD5 hash of the manifest file on the drive.
- ManifestUri string
- A URI that points to the blob containing the drive manifest file.
- PercentComplete int
- Percentage completed for the drive.
- State string
- The drive's current state.
- VerboseLog stringUri 
- A URI that points to the blob containing the verbose log for the data transfer operation.
- bitLocker StringKey 
- The BitLocker key used to encrypt the drive.
- bytesSucceeded Double
- Bytes successfully transferred for the drive.
- copyStatus String
- Detailed status about the data transfer process. This field is not returned in the response until the drive is in the Transferring state.
- driveHeader StringHash 
- The drive header hash value.
- driveId String
- The drive's hardware serial number, without spaces.
- errorLog StringUri 
- A URI that points to the blob containing the error log for the data transfer operation.
- manifestFile String
- The relative path of the manifest file on the drive.
- manifestHash String
- The Base16-encoded MD5 hash of the manifest file on the drive.
- manifestUri String
- A URI that points to the blob containing the drive manifest file.
- percentComplete Integer
- Percentage completed for the drive.
- state String
- The drive's current state.
- verboseLog StringUri 
- A URI that points to the blob containing the verbose log for the data transfer operation.
- bitLocker stringKey 
- The BitLocker key used to encrypt the drive.
- bytesSucceeded number
- Bytes successfully transferred for the drive.
- copyStatus string
- Detailed status about the data transfer process. This field is not returned in the response until the drive is in the Transferring state.
- driveHeader stringHash 
- The drive header hash value.
- driveId string
- The drive's hardware serial number, without spaces.
- errorLog stringUri 
- A URI that points to the blob containing the error log for the data transfer operation.
- manifestFile string
- The relative path of the manifest file on the drive.
- manifestHash string
- The Base16-encoded MD5 hash of the manifest file on the drive.
- manifestUri string
- A URI that points to the blob containing the drive manifest file.
- percentComplete number
- Percentage completed for the drive.
- state string
- The drive's current state.
- verboseLog 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 int
- 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.
- bitLocker StringKey 
- The BitLocker key used to encrypt the drive.
- bytesSucceeded Number
- Bytes successfully transferred for the drive.
- copyStatus String
- Detailed status about the data transfer process. This field is not returned in the response until the drive is in the Transferring state.
- driveHeader StringHash 
- The drive header hash value.
- driveId String
- The drive's hardware serial number, without spaces.
- errorLog StringUri 
- A URI that points to the blob containing the error log for the data transfer operation.
- manifestFile String
- The relative path of the manifest file on the drive.
- manifestHash String
- The Base16-encoded MD5 hash of the manifest file on the drive.
- manifestUri String
- A URI that points to the blob containing the drive manifest file.
- percentComplete Number
- Percentage completed for the drive.
- state String
- The drive's current state.
- verboseLog StringUri 
- A URI that points to the blob containing the verbose log for the data transfer operation.
EncryptionKekType, EncryptionKekTypeArgs      
- MicrosoftManaged 
- MicrosoftManaged
- CustomerManaged 
- CustomerManaged
- EncryptionKek Type Microsoft Managed 
- MicrosoftManaged
- EncryptionKek Type Customer Managed 
- CustomerManaged
- MicrosoftManaged 
- MicrosoftManaged
- CustomerManaged 
- CustomerManaged
- MicrosoftManaged 
- MicrosoftManaged
- CustomerManaged 
- CustomerManaged
- MICROSOFT_MANAGED
- MicrosoftManaged
- CUSTOMER_MANAGED
- CustomerManaged
- "MicrosoftManaged" 
- MicrosoftManaged
- "CustomerManaged" 
- CustomerManaged
EncryptionKeyDetails, EncryptionKeyDetailsArgs      
- KekType string | Pulumi.Azure Native. Import Export. Encryption Kek Type 
- The type of kek encryption key
- KekUrl string
- Specifies the url for kek encryption key.
- KekVault stringResource ID 
- Specifies the keyvault resource id for kek encryption key.
- KekType string | EncryptionKek Type 
- The type of kek encryption key
- KekUrl string
- Specifies the url for kek encryption key.
- KekVault stringResource ID 
- Specifies the keyvault resource id for kek encryption key.
- kekType String | EncryptionKek Type 
- The type of kek encryption key
- kekUrl String
- Specifies the url for kek encryption key.
- kekVault StringResource ID 
- Specifies the keyvault resource id for kek encryption key.
- kekType string | EncryptionKek Type 
- The type of kek encryption key
- kekUrl string
- Specifies the url for kek encryption key.
- kekVault 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.
- kekType String | "MicrosoftManaged" | "Customer Managed" 
- The type of kek encryption key
- kekUrl String
- Specifies the url for kek encryption key.
- kekVault StringResource ID 
- Specifies the keyvault resource id for kek encryption key.
EncryptionKeyDetailsResponse, EncryptionKeyDetailsResponseArgs        
- KekType string
- The type of kek encryption key
- KekUrl string
- Specifies the url for kek encryption key.
- KekVault stringResource ID 
- Specifies the keyvault resource id for kek encryption key.
- KekType string
- The type of kek encryption key
- KekUrl string
- Specifies the url for kek encryption key.
- KekVault stringResource ID 
- Specifies the keyvault resource id for kek encryption key.
- kekType String
- The type of kek encryption key
- kekUrl String
- Specifies the url for kek encryption key.
- kekVault StringResource ID 
- Specifies the keyvault resource id for kek encryption key.
- kekType string
- The type of kek encryption key
- kekUrl string
- Specifies the url for kek encryption key.
- kekVault 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.
- kekType String
- The type of kek encryption key
- kekUrl String
- Specifies the url for kek encryption key.
- kekVault StringResource ID 
- Specifies the keyvault resource id for kek encryption key.
Export, ExportArgs  
- BlobList 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.
- BlobPath List<string>
- A collection of blob-path strings.
- BlobPath List<string>Prefix 
- A collection of blob-prefix strings.
- BlobList 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.
- BlobPath []string
- A collection of blob-path strings.
- BlobPath []stringPrefix 
- A collection of blob-prefix strings.
- blobList 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.
- blobPath List<String>
- A collection of blob-path strings.
- blobPath List<String>Prefix 
- A collection of blob-prefix strings.
- blobList 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.
- blobPath string[]
- A collection of blob-path strings.
- blobPath 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.
- blobList 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.
- blobPath List<String>
- A collection of blob-path strings.
- blobPath List<String>Prefix 
- A collection of blob-prefix strings.
ExportResponse, ExportResponseArgs    
- BlobList 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.
- BlobPath List<string>
- A collection of blob-path strings.
- BlobPath List<string>Prefix 
- A collection of blob-prefix strings.
- BlobList 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.
- BlobPath []string
- A collection of blob-path strings.
- BlobPath []stringPrefix 
- A collection of blob-prefix strings.
- blobList 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.
- blobPath List<String>
- A collection of blob-path strings.
- blobPath List<String>Prefix 
- A collection of blob-prefix strings.
- blobList 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.
- blobPath string[]
- A collection of blob-path strings.
- blobPath 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.
- blobList 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.
- blobPath List<String>
- A collection of blob-path strings.
- blobPath List<String>Prefix 
- A collection of blob-prefix strings.
IdentityDetailsResponse, IdentityDetailsResponseArgs      
- PrincipalId string
- Specifies the principal id for the identity for the job.
- TenantId string
- Specifies the tenant id for the identity for the job.
- Type string
- The type of identity
- PrincipalId string
- Specifies the principal id for the identity for the job.
- TenantId string
- Specifies the tenant id for the identity for the job.
- Type string
- The type of identity
- principalId String
- Specifies the principal id for the identity for the job.
- tenantId String
- Specifies the tenant id for the identity for the job.
- type String
- The type of identity
- principalId string
- Specifies the principal id for the identity for the job.
- tenantId 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
- principalId String
- Specifies the principal id for the identity for the job.
- tenantId String
- Specifies the tenant id for the identity for the job.
- type String
- The type of identity
JobDetails, JobDetailsArgs    
- BackupDrive boolManifest 
- Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs.
- CancelRequested bool
- Indicates whether a request has been submitted to cancel the job.
- DeliveryPackage Pulumi.Azure Native. Import Export. Inputs. Delivery Package Information 
- Contains information about the package being shipped by the customer to the Microsoft data center.
- DiagnosticsPath string
- The virtual blob directory to which the copy logs and backups of drive manifest files (if enabled) will be stored.
- DriveList 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.
- EncryptionKey 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.
- IncompleteBlob 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.
- JobType string
- The type of job
- LogLevel string
- Default value is Error. Indicates whether error logging or verbose logging will be enabled.
- PercentComplete int
- Overall percentage completed for the job.
- ProvisioningState string
- Specifies the provisioning state of the job.
- ReturnAddress Pulumi.Azure Native. Import Export. Inputs. Return Address 
- Specifies the return address information for the job.
- ReturnPackage 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.
- ReturnShipping Pulumi.Azure Native. Import Export. Inputs. Return Shipping 
- Specifies the return carrier and customer's account with the carrier.
- ShippingInformation 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.
- StorageAccount stringId 
- The resource identifier of the storage account where data will be imported to or exported from.
- BackupDrive boolManifest 
- Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs.
- CancelRequested bool
- Indicates whether a request has been submitted to cancel the job.
- DeliveryPackage DeliveryPackage Information 
- Contains information about the package being shipped by the customer to the Microsoft data center.
- DiagnosticsPath string
- The virtual blob directory to which the copy logs and backups of drive manifest files (if enabled) will be stored.
- DriveList []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.
- EncryptionKey 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.
- IncompleteBlob 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.
- JobType string
- The type of job
- LogLevel string
- Default value is Error. Indicates whether error logging or verbose logging will be enabled.
- PercentComplete int
- Overall percentage completed for the job.
- ProvisioningState string
- Specifies the provisioning state of the job.
- ReturnAddress ReturnAddress 
- Specifies the return address information for the job.
- ReturnPackage 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.
- ReturnShipping ReturnShipping 
- Specifies the return carrier and customer's account with the carrier.
- ShippingInformation ShippingInformation 
- Contains information about the Microsoft datacenter to which the drives should be shipped.
- State string
- Current state of the job.
- StorageAccount stringId 
- The resource identifier of the storage account where data will be imported to or exported from.
- backupDrive BooleanManifest 
- Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs.
- cancelRequested Boolean
- Indicates whether a request has been submitted to cancel the job.
- deliveryPackage DeliveryPackage Information 
- Contains information about the package being shipped by the customer to the Microsoft data center.
- diagnosticsPath String
- The virtual blob directory to which the copy logs and backups of drive manifest files (if enabled) will be stored.
- driveList 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.
- encryptionKey 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.
- incompleteBlob 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.
- jobType String
- The type of job
- logLevel String
- Default value is Error. Indicates whether error logging or verbose logging will be enabled.
- percentComplete Integer
- Overall percentage completed for the job.
- provisioningState String
- Specifies the provisioning state of the job.
- returnAddress ReturnAddress 
- Specifies the return address information for the job.
- returnPackage 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.
- returnShipping ReturnShipping 
- Specifies the return carrier and customer's account with the carrier.
- shippingInformation ShippingInformation 
- Contains information about the Microsoft datacenter to which the drives should be shipped.
- state String
- Current state of the job.
- storageAccount StringId 
- The resource identifier of the storage account where data will be imported to or exported from.
- backupDrive booleanManifest 
- Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs.
- cancelRequested boolean
- Indicates whether a request has been submitted to cancel the job.
- deliveryPackage DeliveryPackage Information 
- Contains information about the package being shipped by the customer to the Microsoft data center.
- diagnosticsPath string
- The virtual blob directory to which the copy logs and backups of drive manifest files (if enabled) will be stored.
- driveList 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.
- encryptionKey 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.
- incompleteBlob 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.
- jobType string
- The type of job
- logLevel string
- Default value is Error. Indicates whether error logging or verbose logging will be enabled.
- percentComplete number
- Overall percentage completed for the job.
- provisioningState string
- Specifies the provisioning state of the job.
- returnAddress ReturnAddress 
- Specifies the return address information for the job.
- returnPackage 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.
- returnShipping ReturnShipping 
- Specifies the return carrier and customer's account with the carrier.
- shippingInformation ShippingInformation 
- Contains information about the Microsoft datacenter to which the drives should be shipped.
- state string
- Current state of the job.
- storageAccount 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 int
- 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.
- backupDrive BooleanManifest 
- Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs.
- cancelRequested Boolean
- Indicates whether a request has been submitted to cancel the job.
- deliveryPackage Property Map
- Contains information about the package being shipped by the customer to the Microsoft data center.
- diagnosticsPath String
- The virtual blob directory to which the copy logs and backups of drive manifest files (if enabled) will be stored.
- driveList 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.
- encryptionKey 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.
- incompleteBlob 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.
- jobType String
- The type of job
- logLevel String
- Default value is Error. Indicates whether error logging or verbose logging will be enabled.
- percentComplete Number
- Overall percentage completed for the job.
- provisioningState String
- Specifies the provisioning state of the job.
- returnAddress Property Map
- Specifies the return address information for the job.
- returnPackage 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.
- returnShipping Property Map
- Specifies the return carrier and customer's account with the carrier.
- shippingInformation Property Map
- Contains information about the Microsoft datacenter to which the drives should be shipped.
- state String
- Current state of the job.
- storageAccount StringId 
- The resource identifier of the storage account where data will be imported to or exported from.
JobDetailsResponse, JobDetailsResponseArgs      
- BackupDrive boolManifest 
- Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs.
- CancelRequested bool
- Indicates whether a request has been submitted to cancel the job.
- DeliveryPackage 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.
- DiagnosticsPath string
- The virtual blob directory to which the copy logs and backups of drive manifest files (if enabled) will be stored.
- DriveList 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.
- EncryptionKey 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.
- IncompleteBlob 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.
- JobType string
- The type of job
- LogLevel string
- Default value is Error. Indicates whether error logging or verbose logging will be enabled.
- PercentComplete int
- Overall percentage completed for the job.
- ProvisioningState string
- Specifies the provisioning state of the job.
- ReturnAddress Pulumi.Azure Native. Import Export. Inputs. Return Address Response 
- Specifies the return address information for the job.
- ReturnPackage 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.
- ReturnShipping Pulumi.Azure Native. Import Export. Inputs. Return Shipping Response 
- Specifies the return carrier and customer's account with the carrier.
- ShippingInformation 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.
- StorageAccount stringId 
- The resource identifier of the storage account where data will be imported to or exported from.
- BackupDrive boolManifest 
- Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs.
- CancelRequested bool
- Indicates whether a request has been submitted to cancel the job.
- DeliveryPackage DeliveryPackage Information Response 
- Contains information about the package being shipped by the customer to the Microsoft data center.
- DiagnosticsPath string
- The virtual blob directory to which the copy logs and backups of drive manifest files (if enabled) will be stored.
- DriveList []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.
- EncryptionKey EncryptionKey Details Response 
- Contains information about the encryption key.
- Export
ExportResponse 
- A property containing information about the blobs to be exported for an export job. This property is included for export jobs only.
- IncompleteBlob 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.
- JobType string
- The type of job
- LogLevel string
- Default value is Error. Indicates whether error logging or verbose logging will be enabled.
- PercentComplete int
- Overall percentage completed for the job.
- ProvisioningState string
- Specifies the provisioning state of the job.
- ReturnAddress ReturnAddress Response 
- Specifies the return address information for the job.
- ReturnPackage 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.
- ReturnShipping ReturnShipping Response 
- Specifies the return carrier and customer's account with the carrier.
- ShippingInformation ShippingInformation Response 
- Contains information about the Microsoft datacenter to which the drives should be shipped.
- State string
- Current state of the job.
- StorageAccount stringId 
- The resource identifier of the storage account where data will be imported to or exported from.
- backupDrive BooleanManifest 
- Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs.
- cancelRequested Boolean
- Indicates whether a request has been submitted to cancel the job.
- deliveryPackage DeliveryPackage Information Response 
- Contains information about the package being shipped by the customer to the Microsoft data center.
- diagnosticsPath String
- The virtual blob directory to which the copy logs and backups of drive manifest files (if enabled) will be stored.
- driveList 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.
- encryptionKey EncryptionKey Details Response 
- Contains information about the encryption key.
- export
ExportResponse 
- A property containing information about the blobs to be exported for an export job. This property is included for export jobs only.
- incompleteBlob 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.
- jobType String
- The type of job
- logLevel String
- Default value is Error. Indicates whether error logging or verbose logging will be enabled.
- percentComplete Integer
- Overall percentage completed for the job.
- provisioningState String
- Specifies the provisioning state of the job.
- returnAddress ReturnAddress Response 
- Specifies the return address information for the job.
- returnPackage 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.
- returnShipping ReturnShipping Response 
- Specifies the return carrier and customer's account with the carrier.
- shippingInformation ShippingInformation Response 
- Contains information about the Microsoft datacenter to which the drives should be shipped.
- state String
- Current state of the job.
- storageAccount StringId 
- The resource identifier of the storage account where data will be imported to or exported from.
- backupDrive booleanManifest 
- Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs.
- cancelRequested boolean
- Indicates whether a request has been submitted to cancel the job.
- deliveryPackage DeliveryPackage Information Response 
- Contains information about the package being shipped by the customer to the Microsoft data center.
- diagnosticsPath string
- The virtual blob directory to which the copy logs and backups of drive manifest files (if enabled) will be stored.
- driveList 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.
- encryptionKey EncryptionKey Details Response 
- Contains information about the encryption key.
- export
ExportResponse 
- A property containing information about the blobs to be exported for an export job. This property is included for export jobs only.
- incompleteBlob 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.
- jobType string
- The type of job
- logLevel string
- Default value is Error. Indicates whether error logging or verbose logging will be enabled.
- percentComplete number
- Overall percentage completed for the job.
- provisioningState string
- Specifies the provisioning state of the job.
- returnAddress ReturnAddress Response 
- Specifies the return address information for the job.
- returnPackage 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.
- returnShipping ReturnShipping Response 
- Specifies the return carrier and customer's account with the carrier.
- shippingInformation ShippingInformation Response 
- Contains information about the Microsoft datacenter to which the drives should be shipped.
- state string
- Current state of the job.
- storageAccount 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
ExportResponse 
- 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 int
- 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.
- backupDrive BooleanManifest 
- Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs.
- cancelRequested Boolean
- Indicates whether a request has been submitted to cancel the job.
- deliveryPackage Property Map
- Contains information about the package being shipped by the customer to the Microsoft data center.
- diagnosticsPath String
- The virtual blob directory to which the copy logs and backups of drive manifest files (if enabled) will be stored.
- driveList 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.
- encryptionKey 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.
- incompleteBlob 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.
- jobType String
- The type of job
- logLevel String
- Default value is Error. Indicates whether error logging or verbose logging will be enabled.
- percentComplete Number
- Overall percentage completed for the job.
- provisioningState String
- Specifies the provisioning state of the job.
- returnAddress Property Map
- Specifies the return address information for the job.
- returnPackage 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.
- returnShipping Property Map
- Specifies the return carrier and customer's account with the carrier.
- shippingInformation Property Map
- Contains information about the Microsoft datacenter to which the drives should be shipped.
- state String
- Current state of the job.
- storageAccount StringId 
- The resource identifier of the storage account where data will be imported to or exported from.
PackageInformation, PackageInformationArgs    
- CarrierName string
- The name of the carrier that is used to ship the import or export drives.
- DriveCount double
- The number of drives included in the package.
- ShipDate string
- The date when the package is shipped.
- TrackingNumber string
- The tracking number of the package.
- CarrierName string
- The name of the carrier that is used to ship the import or export drives.
- DriveCount float64
- The number of drives included in the package.
- ShipDate string
- The date when the package is shipped.
- TrackingNumber string
- The tracking number of the package.
- carrierName String
- The name of the carrier that is used to ship the import or export drives.
- driveCount Double
- The number of drives included in the package.
- shipDate String
- The date when the package is shipped.
- trackingNumber String
- The tracking number of the package.
- carrierName string
- The name of the carrier that is used to ship the import or export drives.
- driveCount number
- The number of drives included in the package.
- shipDate string
- The date when the package is shipped.
- trackingNumber 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.
- carrierName String
- The name of the carrier that is used to ship the import or export drives.
- driveCount Number
- The number of drives included in the package.
- shipDate String
- The date when the package is shipped.
- trackingNumber String
- The tracking number of the package.
PackageInformationResponse, PackageInformationResponseArgs      
- CarrierName string
- The name of the carrier that is used to ship the import or export drives.
- DriveCount double
- The number of drives included in the package.
- ShipDate string
- The date when the package is shipped.
- TrackingNumber string
- The tracking number of the package.
- CarrierName string
- The name of the carrier that is used to ship the import or export drives.
- DriveCount float64
- The number of drives included in the package.
- ShipDate string
- The date when the package is shipped.
- TrackingNumber string
- The tracking number of the package.
- carrierName String
- The name of the carrier that is used to ship the import or export drives.
- driveCount Double
- The number of drives included in the package.
- shipDate String
- The date when the package is shipped.
- trackingNumber String
- The tracking number of the package.
- carrierName string
- The name of the carrier that is used to ship the import or export drives.
- driveCount number
- The number of drives included in the package.
- shipDate string
- The date when the package is shipped.
- trackingNumber 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.
- carrierName String
- The name of the carrier that is used to ship the import or export drives.
- driveCount Number
- The number of drives included in the package.
- shipDate String
- The date when the package is shipped.
- trackingNumber String
- The tracking number of the package.
ReturnAddress, ReturnAddressArgs    
- City string
- The city name to use when returning the drives.
- CountryOr 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.
- PostalCode string
- The postal code to use when returning the drives.
- RecipientName string
- The name of the recipient who will receive the hard drives when they are returned.
- StreetAddress1 string
- The first line of the street address to use when returning the drives.
- StateOr stringProvince 
- The state or province to use when returning the drives.
- StreetAddress2 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.
- CountryOr 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.
- PostalCode string
- The postal code to use when returning the drives.
- RecipientName string
- The name of the recipient who will receive the hard drives when they are returned.
- StreetAddress1 string
- The first line of the street address to use when returning the drives.
- StateOr stringProvince 
- The state or province to use when returning the drives.
- StreetAddress2 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.
- countryOr 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.
- postalCode String
- The postal code to use when returning the drives.
- recipientName String
- The name of the recipient who will receive the hard drives when they are returned.
- streetAddress1 String
- The first line of the street address to use when returning the drives.
- stateOr StringProvince 
- The state or province to use when returning the drives.
- streetAddress2 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.
- countryOr 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.
- postalCode string
- The postal code to use when returning the drives.
- recipientName string
- The name of the recipient who will receive the hard drives when they are returned.
- streetAddress1 string
- The first line of the street address to use when returning the drives.
- stateOr stringProvince 
- The state or province to use when returning the drives.
- streetAddress2 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.
- countryOr 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.
- postalCode String
- The postal code to use when returning the drives.
- recipientName String
- The name of the recipient who will receive the hard drives when they are returned.
- streetAddress1 String
- The first line of the street address to use when returning the drives.
- stateOr StringProvince 
- The state or province to use when returning the drives.
- streetAddress2 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.
- CountryOr 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.
- PostalCode string
- The postal code to use when returning the drives.
- RecipientName string
- The name of the recipient who will receive the hard drives when they are returned.
- StreetAddress1 string
- The first line of the street address to use when returning the drives.
- StateOr stringProvince 
- The state or province to use when returning the drives.
- StreetAddress2 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.
- CountryOr 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.
- PostalCode string
- The postal code to use when returning the drives.
- RecipientName string
- The name of the recipient who will receive the hard drives when they are returned.
- StreetAddress1 string
- The first line of the street address to use when returning the drives.
- StateOr stringProvince 
- The state or province to use when returning the drives.
- StreetAddress2 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.
- countryOr 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.
- postalCode String
- The postal code to use when returning the drives.
- recipientName String
- The name of the recipient who will receive the hard drives when they are returned.
- streetAddress1 String
- The first line of the street address to use when returning the drives.
- stateOr StringProvince 
- The state or province to use when returning the drives.
- streetAddress2 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.
- countryOr 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.
- postalCode string
- The postal code to use when returning the drives.
- recipientName string
- The name of the recipient who will receive the hard drives when they are returned.
- streetAddress1 string
- The first line of the street address to use when returning the drives.
- stateOr stringProvince 
- The state or province to use when returning the drives.
- streetAddress2 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.
- countryOr 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.
- postalCode String
- The postal code to use when returning the drives.
- recipientName String
- The name of the recipient who will receive the hard drives when they are returned.
- streetAddress1 String
- The first line of the street address to use when returning the drives.
- stateOr StringProvince 
- The state or province to use when returning the drives.
- streetAddress2 String
- The second line of the street address to use when returning the drives.
ReturnShipping, ReturnShippingArgs    
- CarrierAccount stringNumber 
- The customer's account number with the carrier.
- CarrierName string
- The carrier's name.
- CarrierAccount stringNumber 
- The customer's account number with the carrier.
- CarrierName string
- The carrier's name.
- carrierAccount StringNumber 
- The customer's account number with the carrier.
- carrierName String
- The carrier's name.
- carrierAccount stringNumber 
- The customer's account number with the carrier.
- carrierName string
- The carrier's name.
- carrier_account_ strnumber 
- The customer's account number with the carrier.
- carrier_name str
- The carrier's name.
- carrierAccount StringNumber 
- The customer's account number with the carrier.
- carrierName String
- The carrier's name.
ReturnShippingResponse, ReturnShippingResponseArgs      
- CarrierAccount stringNumber 
- The customer's account number with the carrier.
- CarrierName string
- The carrier's name.
- CarrierAccount stringNumber 
- The customer's account number with the carrier.
- CarrierName string
- The carrier's name.
- carrierAccount StringNumber 
- The customer's account number with the carrier.
- carrierName String
- The carrier's name.
- carrierAccount stringNumber 
- The customer's account number with the carrier.
- carrierName string
- The carrier's name.
- carrier_account_ strnumber 
- The customer's account number with the carrier.
- carrier_name str
- The carrier's name.
- carrierAccount StringNumber 
- The customer's account number with the carrier.
- carrierName String
- The carrier's name.
ShippingInformation, ShippingInformationArgs    
- City string
- The city name to use when returning the drives.
- CountryOr stringRegion 
- The country or region to use when returning the drives.
- Phone string
- Phone number of the recipient of the returned drives.
- PostalCode string
- The postal code to use when returning the drives.
- RecipientName string
- The name of the recipient who will receive the hard drives when they are returned.
- StateOr stringProvince 
- The state or province to use when returning the drives.
- StreetAddress1 string
- The first line of the street address to use when returning the drives.
- StreetAddress2 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.
- CountryOr stringRegion 
- The country or region to use when returning the drives.
- Phone string
- Phone number of the recipient of the returned drives.
- PostalCode string
- The postal code to use when returning the drives.
- RecipientName string
- The name of the recipient who will receive the hard drives when they are returned.
- StateOr stringProvince 
- The state or province to use when returning the drives.
- StreetAddress1 string
- The first line of the street address to use when returning the drives.
- StreetAddress2 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.
- countryOr StringRegion 
- The country or region to use when returning the drives.
- phone String
- Phone number of the recipient of the returned drives.
- postalCode String
- The postal code to use when returning the drives.
- recipientName String
- The name of the recipient who will receive the hard drives when they are returned.
- stateOr StringProvince 
- The state or province to use when returning the drives.
- streetAddress1 String
- The first line of the street address to use when returning the drives.
- streetAddress2 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.
- countryOr stringRegion 
- The country or region to use when returning the drives.
- phone string
- Phone number of the recipient of the returned drives.
- postalCode string
- The postal code to use when returning the drives.
- recipientName string
- The name of the recipient who will receive the hard drives when they are returned.
- stateOr stringProvince 
- The state or province to use when returning the drives.
- streetAddress1 string
- The first line of the street address to use when returning the drives.
- streetAddress2 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.
- countryOr StringRegion 
- The country or region to use when returning the drives.
- phone String
- Phone number of the recipient of the returned drives.
- postalCode String
- The postal code to use when returning the drives.
- recipientName String
- The name of the recipient who will receive the hard drives when they are returned.
- stateOr StringProvince 
- The state or province to use when returning the drives.
- streetAddress1 String
- The first line of the street address to use when returning the drives.
- streetAddress2 String
- The second line of the street address to use when returning the drives.
ShippingInformationResponse, ShippingInformationResponseArgs      
- AdditionalInformation 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.
- CountryOr stringRegion 
- The country or region to use when returning the drives.
- Phone string
- Phone number of the recipient of the returned drives.
- PostalCode string
- The postal code to use when returning the drives.
- RecipientName string
- The name of the recipient who will receive the hard drives when they are returned.
- StateOr stringProvince 
- The state or province to use when returning the drives.
- StreetAddress1 string
- The first line of the street address to use when returning the drives.
- StreetAddress2 string
- The second line of the street address to use when returning the drives.
- AdditionalInformation 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.
- CountryOr stringRegion 
- The country or region to use when returning the drives.
- Phone string
- Phone number of the recipient of the returned drives.
- PostalCode string
- The postal code to use when returning the drives.
- RecipientName string
- The name of the recipient who will receive the hard drives when they are returned.
- StateOr stringProvince 
- The state or province to use when returning the drives.
- StreetAddress1 string
- The first line of the street address to use when returning the drives.
- StreetAddress2 string
- The second line of the street address to use when returning the drives.
- additionalInformation 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.
- countryOr StringRegion 
- The country or region to use when returning the drives.
- phone String
- Phone number of the recipient of the returned drives.
- postalCode String
- The postal code to use when returning the drives.
- recipientName String
- The name of the recipient who will receive the hard drives when they are returned.
- stateOr StringProvince 
- The state or province to use when returning the drives.
- streetAddress1 String
- The first line of the street address to use when returning the drives.
- streetAddress2 String
- The second line of the street address to use when returning the drives.
- additionalInformation 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.
- countryOr stringRegion 
- The country or region to use when returning the drives.
- phone string
- Phone number of the recipient of the returned drives.
- postalCode string
- The postal code to use when returning the drives.
- recipientName string
- The name of the recipient who will receive the hard drives when they are returned.
- stateOr stringProvince 
- The state or province to use when returning the drives.
- streetAddress1 string
- The first line of the street address to use when returning the drives.
- streetAddress2 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.
- additionalInformation 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.
- countryOr StringRegion 
- The country or region to use when returning the drives.
- phone String
- Phone number of the recipient of the returned drives.
- postalCode String
- The postal code to use when returning the drives.
- recipientName String
- The name of the recipient who will receive the hard drives when they are returned.
- stateOr StringProvince 
- The state or province to use when returning the drives.
- streetAddress1 String
- The first line of the street address to use when returning the drives.
- streetAddress2 String
- The second line of the street address to use when returning the drives.
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified 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/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.ImportExport/jobs/myJob 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0