This repository has been archived by the owner on May 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 566
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AutoPR datafactory/resource-manager] Fix ssis execution credential (#…
…4547) * Generated from 8b1f253665d913fa9220085a4de852f5f3dcd66b Fix ssis execute credential issue * Generated from 8b1f253665d913fa9220085a4de852f5f3dcd66b Fix ssis execute credential issue
- Loading branch information
1 parent
a48358c
commit 904aab5
Showing
10 changed files
with
531 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 60 additions & 0 deletions
60
lib/services/datafactoryManagement/lib/models/exposureControlRequest.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/* | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
* Changes may cause incorrect behavior and will be lost if the code is | ||
* regenerated. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
/** | ||
* The exposure control request. | ||
* | ||
*/ | ||
class ExposureControlRequest { | ||
/** | ||
* Create a ExposureControlRequest. | ||
* @property {string} [featureName] The feature name. | ||
* @property {string} [featureType] The feature type. | ||
*/ | ||
constructor() { | ||
} | ||
|
||
/** | ||
* Defines the metadata of ExposureControlRequest | ||
* | ||
* @returns {object} metadata of ExposureControlRequest | ||
* | ||
*/ | ||
mapper() { | ||
return { | ||
required: false, | ||
serializedName: 'ExposureControlRequest', | ||
type: { | ||
name: 'Composite', | ||
className: 'ExposureControlRequest', | ||
modelProperties: { | ||
featureName: { | ||
required: false, | ||
serializedName: 'featureName', | ||
type: { | ||
name: 'String' | ||
} | ||
}, | ||
featureType: { | ||
required: false, | ||
serializedName: 'featureType', | ||
type: { | ||
name: 'String' | ||
} | ||
} | ||
} | ||
} | ||
}; | ||
} | ||
} | ||
|
||
module.exports = ExposureControlRequest; |
62 changes: 62 additions & 0 deletions
62
lib/services/datafactoryManagement/lib/models/exposureControlResponse.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
* Changes may cause incorrect behavior and will be lost if the code is | ||
* regenerated. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
/** | ||
* The exposure control response. | ||
* | ||
*/ | ||
class ExposureControlResponse { | ||
/** | ||
* Create a ExposureControlResponse. | ||
* @property {string} [featureName] The feature name. | ||
* @property {string} [value] The feature value. | ||
*/ | ||
constructor() { | ||
} | ||
|
||
/** | ||
* Defines the metadata of ExposureControlResponse | ||
* | ||
* @returns {object} metadata of ExposureControlResponse | ||
* | ||
*/ | ||
mapper() { | ||
return { | ||
required: false, | ||
serializedName: 'ExposureControlResponse', | ||
type: { | ||
name: 'Composite', | ||
className: 'ExposureControlResponse', | ||
modelProperties: { | ||
featureName: { | ||
required: false, | ||
readOnly: true, | ||
serializedName: 'featureName', | ||
type: { | ||
name: 'String' | ||
} | ||
}, | ||
value: { | ||
required: false, | ||
readOnly: true, | ||
serializedName: 'value', | ||
type: { | ||
name: 'String' | ||
} | ||
} | ||
} | ||
} | ||
}; | ||
} | ||
} | ||
|
||
module.exports = ExposureControlResponse; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.