Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.
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 @@ -34,11 +34,11 @@ export default class DataFactoryManagementClient extends AzureServiceClient {
*
* @param {boolean} [options.noRetryPolicy] - If set to true, turn off default retry policy
*
* @param {string} [options.acceptLanguage] - Gets or sets the preferred language for the response.
* @param {string} [options.acceptLanguage] - The preferred language for the response.
*
* @param {number} [options.longRunningOperationRetryTimeout] - Gets or sets the retry timeout in seconds for Long Running Operations. Default value is 30.
* @param {number} [options.longRunningOperationRetryTimeout] - The retry timeout in seconds for Long Running Operations. Default value is 30.
*
* @param {boolean} [options.generateClientRequestId] - When set to true a unique x-ms-client-request-id value is generated and included in each request. Default is true.
* @param {boolean} [options.generateClientRequestId] - Whether a unique x-ms-client-request-id should be generated. When set to true a unique x-ms-client-request-id value is generated and included in each request. Default is true.
*
*/
constructor(credentials: ServiceClientCredentials, subscriptionId: string, baseUri?: string, options?: AzureServiceClientOptions);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ class DataFactoryManagementClient extends ServiceClient {
* @param {object} [options.requestOptions] - Options for the underlying request object
* {@link https://github.com/request/request#requestoptions-callback Options doc}
* @param {boolean} [options.noRetryPolicy] - If set to true, turn off default retry policy
* @param {string} [options.acceptLanguage] - Gets or sets the preferred language for the response.
* @param {number} [options.longRunningOperationRetryTimeout] - Gets or sets the retry timeout in seconds for Long Running Operations. Default value is 30.
* @param {boolean} [options.generateClientRequestId] - When set to true a unique x-ms-client-request-id value is generated and included in each request. Default is true.
* @param {string} [options.acceptLanguage] - The preferred language for the response.
* @param {number} [options.longRunningOperationRetryTimeout] - The retry timeout in seconds for Long Running Operations. Default value is 30.
* @param {boolean} [options.generateClientRequestId] - Whether a unique x-ms-client-request-id should be generated. When set to true a unique x-ms-client-request-id value is generated and included in each request. Default is true.
*/
constructor(credentials, subscriptionId, baseUri, options) {
if (credentials === null || credentials === undefined) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class ActivityDependency {
name: 'Sequence',
element: {
required: false,
serializedName: 'StringElementType',
serializedName: 'DependencyConditionElementType',
type: {
name: 'String'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ class BlobEventsTrigger extends models['MultiplePipelineTrigger'] {
name: 'Sequence',
element: {
required: false,
serializedName: 'StringElementType',
serializedName: 'BlobEventTypesElementType',
type: {
name: 'String'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ const models = require('./index');
class FactoryGitHubConfiguration extends models['FactoryRepoConfiguration'] {
/**
* Create a FactoryGitHubConfiguration.
* @member {string} [hostName] GitHub repo host name.
* @member {string} [hostName] GitHub Enterprise host name. For example:
* https://github.mydomain.com
*/
constructor() {
super();
Expand Down Expand Up @@ -90,7 +91,6 @@ class FactoryGitHubConfiguration extends models['FactoryRepoConfiguration'] {
},
hostName: {
required: false,
readOnly: true,
serializedName: 'hostName',
type: {
name: 'String'
Expand Down
5 changes: 3 additions & 2 deletions lib/services/datafactoryManagement/lib/models/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -639,10 +639,11 @@ export interface FactoryVSTSConfiguration extends FactoryRepoConfiguration {
* @constructor
* Factory's GitHub repo information.
*
* @member {string} [hostName] GitHub repo host name.
* @member {string} [hostName] GitHub Enterprise host name. For example:
* https://github.mydomain.com
*/
export interface FactoryGitHubConfiguration extends FactoryRepoConfiguration {
readonly hostName?: string;
hostName?: string;
}

/**
Expand Down
4 changes: 2 additions & 2 deletions lib/services/datafactoryManagement/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
"license": "MIT",
"main": "./lib/dataFactoryManagementClient.js",
"types": "./lib/dataFactoryManagementClient.d.ts",
"homepage": "http://github.com/azure/azure-sdk-for-node",
"homepage": "https://github.com/azure/azure-sdk-for-node",
"repository": {
"type": "git",
"url": "https://github.com/azure/azure-sdk-for-node.git"
},
"bugs": {
"url": "http://github.com/Azure/azure-sdk-for-node/issues"
"url": "https://github.com/azure/azure-sdk-for-node/issues"
}
}