Skip to content

Commit

Permalink
Added default values for parameters for Import Export (#14907)
Browse files Browse the repository at this point in the history
* Added default values for parameters

* added single multipath for go
  • Loading branch information
t-ammar authored Jul 13, 2021
1 parent 571282b commit 6e9525e
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 20 deletions.
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

0 comments on commit 6e9525e

Please sign in to comment.