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

Added default values for parameters for Import Export #14907

Merged
Merged
Show file tree
Hide file tree
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 @@ -654,15 +654,18 @@
},
"backupDriveManifest": {
"type": "boolean",
"description": "Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs."
"description": "Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs.",
"default": false
},
"state": {
"type": "string",
"description": "Current state of the job."
"description": "Current state of the job.",
"default": "Creating"
},
"cancelRequested": {
"type": "boolean",
"description": "Indicates whether a request has been submitted to cancel the job."
"description": "Indicates whether a request has been submitted to cancel the job.",
"default": false
},
"percentComplete": {
"type": "integer",
Expand Down Expand Up @@ -761,7 +764,8 @@
"properties": {
"cancelRequested": {
"type": "boolean",
"description": "If specified, the value must be true. The service will attempt to cancel the job. "
"description": "If specified, the value must be true. The service will attempt to cancel the job. ",
"default": false
},
"state": {
"type": "string",
Expand All @@ -785,7 +789,8 @@
},
"backupDriveManifest": {
"type": "boolean",
"description": "Indicates whether the manifest files on the drives should be copied to block blobs."
"description": "Indicates whether the manifest files on the drives should be copied to block blobs.",
"default": false
},
"driveList": {
"description": "List of drives that comprise the job.",
Expand Down Expand Up @@ -1163,6 +1168,7 @@
"CompletedMoreInfo",
"ShippedBack"
],
"default": "Specified",
"x-ms-enum": {
"name": "DriveState",
"modelAsString": true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -684,15 +684,18 @@
},
"backupDriveManifest": {
"type": "boolean",
"description": "Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs."
"description": "Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs.",
"default": false
},
"state": {
"type": "string",
"description": "Current state of the job."
"description": "Current state of the job.",
"default": "Creating"
},
"cancelRequested": {
"type": "boolean",
"description": "Indicates whether a request has been submitted to cancel the job."
"description": "Indicates whether a request has been submitted to cancel the job.",
"default": false
},
"percentComplete": {
"type": "integer",
Expand Down Expand Up @@ -791,7 +794,8 @@
"properties": {
"cancelRequested": {
"type": "boolean",
"description": "If specified, the value must be true. The service will attempt to cancel the job. "
"description": "If specified, the value must be true. The service will attempt to cancel the job. ",
"default": false
},
"state": {
"type": "string",
Expand All @@ -815,7 +819,8 @@
},
"backupDriveManifest": {
"type": "boolean",
"description": "Indicates whether the manifest files on the drives should be copied to block blobs."
"description": "Indicates whether the manifest files on the drives should be copied to block blobs.",
"default": false
},
"driveList": {
"description": "List of drives that comprise the job.",
Expand Down Expand Up @@ -1193,6 +1198,7 @@
"CompletedMoreInfo",
"ShippedBack"
],
"default": "Specified",
"x-ms-enum": {
"name": "DriveState",
"modelAsString": true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -684,15 +684,18 @@
},
"backupDriveManifest": {
"type": "boolean",
"description": "Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs."
"description": "Default value is false. Indicates whether the manifest files on the drives should be copied to block blobs.",
"default": false
},
"state": {
"type": "string",
"description": "Current state of the job."
"description": "Current state of the job.",
"default": "Creating"
},
"cancelRequested": {
"type": "boolean",
"description": "Indicates whether a request has been submitted to cancel the job."
"description": "Indicates whether a request has been submitted to cancel the job.",
"default": false
},
"percentComplete": {
"type": "integer",
Expand Down Expand Up @@ -791,7 +794,8 @@
"properties": {
"cancelRequested": {
"type": "boolean",
"description": "If specified, the value must be true. The service will attempt to cancel the job. "
"description": "If specified, the value must be true. The service will attempt to cancel the job. ",
"default": false
},
"state": {
"type": "string",
Expand All @@ -815,7 +819,8 @@
},
"backupDriveManifest": {
"type": "boolean",
"description": "Indicates whether the manifest files on the drives should be copied to block blobs."
"description": "Indicates whether the manifest files on the drives should be copied to block blobs.",
"default": false
},
"driveList": {
"description": "List of drives that comprise the job.",
Expand Down Expand Up @@ -1193,6 +1198,7 @@
"CompletedMoreInfo",
"ShippedBack"
],
"default": "Specified",
"x-ms-enum": {
"name": "DriveState",
"modelAsString": true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@ go:
``` yaml $(go) && $(multiapi)
batch:
- tag: package-2016-11
```
or

``` yaml $(go) && $(multiapi)
batch:
- tag: package-2020-08
```

Expand Down