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 567
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2581 from Azure/daschult/analysisservices
Update analysisservices minor version and regenerate
- Loading branch information
Showing
14 changed files
with
1,315 additions
and
94 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
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
67 changes: 67 additions & 0 deletions
67
lib/services/analysisServices/lib/models/checkServerNameAvailabilityParameters.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,67 @@ | ||
/* | ||
* 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'; | ||
|
||
/** | ||
* Details of server name request body. | ||
* | ||
*/ | ||
class CheckServerNameAvailabilityParameters { | ||
/** | ||
* Create a CheckServerNameAvailabilityParameters. | ||
* @member {string} [name] Name for checking availability. | ||
* @member {string} [type] The resource type of azure analysis services. | ||
* Default value: 'Microsoft.AnalysisServices/servers' . | ||
*/ | ||
constructor() { | ||
} | ||
|
||
/** | ||
* Defines the metadata of CheckServerNameAvailabilityParameters | ||
* | ||
* @returns {object} metadata of CheckServerNameAvailabilityParameters | ||
* | ||
*/ | ||
mapper() { | ||
return { | ||
required: false, | ||
serializedName: 'CheckServerNameAvailabilityParameters', | ||
type: { | ||
name: 'Composite', | ||
className: 'CheckServerNameAvailabilityParameters', | ||
modelProperties: { | ||
name: { | ||
required: false, | ||
serializedName: 'name', | ||
constraints: { | ||
MaxLength: 63, | ||
MinLength: 3, | ||
Pattern: '^[a-z][a-z0-9]*$' | ||
}, | ||
type: { | ||
name: 'String' | ||
} | ||
}, | ||
type: { | ||
required: false, | ||
serializedName: 'type', | ||
defaultValue: 'Microsoft.AnalysisServices/servers', | ||
type: { | ||
name: 'String' | ||
} | ||
} | ||
} | ||
} | ||
}; | ||
} | ||
} | ||
|
||
module.exports = CheckServerNameAvailabilityParameters; |
70 changes: 70 additions & 0 deletions
70
lib/services/analysisServices/lib/models/checkServerNameAvailabilityResult.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,70 @@ | ||
/* | ||
* 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 checking result of server name availibility. | ||
* | ||
*/ | ||
class CheckServerNameAvailabilityResult { | ||
/** | ||
* Create a CheckServerNameAvailabilityResult. | ||
* @member {boolean} [nameAvailable] Indicator of available of the server | ||
* name. | ||
* @member {string} [reason] The reason of unavailability. | ||
* @member {string} [message] The detailed message of the request | ||
* unavailability. | ||
*/ | ||
constructor() { | ||
} | ||
|
||
/** | ||
* Defines the metadata of CheckServerNameAvailabilityResult | ||
* | ||
* @returns {object} metadata of CheckServerNameAvailabilityResult | ||
* | ||
*/ | ||
mapper() { | ||
return { | ||
required: false, | ||
serializedName: 'CheckServerNameAvailabilityResult', | ||
type: { | ||
name: 'Composite', | ||
className: 'CheckServerNameAvailabilityResult', | ||
modelProperties: { | ||
nameAvailable: { | ||
required: false, | ||
serializedName: 'nameAvailable', | ||
type: { | ||
name: 'Boolean' | ||
} | ||
}, | ||
reason: { | ||
required: false, | ||
serializedName: 'reason', | ||
type: { | ||
name: 'String' | ||
} | ||
}, | ||
message: { | ||
required: false, | ||
serializedName: 'message', | ||
type: { | ||
name: 'String' | ||
} | ||
} | ||
} | ||
} | ||
}; | ||
} | ||
} | ||
|
||
module.exports = CheckServerNameAvailabilityResult; |
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.