Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Hub Generated] Review request for Microsoft.ImportExport to add version stable/2016-11-01 #10870

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@
},
"deliveryPackage": {
"description": "Contains information about the package being shipped by the customer to the Microsoft data center. ",
"$ref": "#/definitions/PackageInformation"
"$ref": "#/definitions/DeliveryPackageInformation"
},
"returnPackage": {
"description": "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. ",
Expand Down Expand Up @@ -796,7 +796,7 @@
},
"deliveryPackage": {
"description": "Contains information about the package being shipped by the customer to the Microsoft data center.",
"$ref": "#/definitions/PackageInformation"
"$ref": "#/definitions/DeliveryPackageInformation"
},
"logLevel": {
"type": "string",
Expand Down Expand Up @@ -1120,6 +1120,32 @@
}
}
},
"DeliveryPackageInformation": {
"description": "Contains information about the delivery package being shipped by the customer to the Microsoft data center.",
"required": [
"carrierName",
"trackingNumber"
],
"properties": {
"carrierName": {
"type": "string",
"description": "The name of the carrier that is used to ship the import or export drives."
},
"trackingNumber": {
"type": "string",
"description": "The tracking number of the package."
},
"driveCount": {
"type": "integer",
"format": "int64",
"description": "The number of drives included in the package."
},
"shipDate": {
"type": "string",
"description": "The date when the package is shipped."
}
}
},
"DriveStatus": {
"description": "Provides information about the drive's status",
"properties": {
Expand Down