Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

[AutoPR datafactory/resource-manager] Remove enum from catalogPricingTier #4766

Closed
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
3 changes: 1 addition & 2 deletions lib/services/datafactoryManagement/lib/models/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8395,8 +8395,7 @@ export interface IntegrationRuntimeSsisCatalogInfo {
catalogAdminPassword?: SecureString;
/**
* The pricing tier for the catalog database. The valid values could be found in
* https://azure.microsoft.com/en-us/pricing/details/sql-database/. Possible values include:
* 'Basic', 'Standard', 'Premium', 'PremiumRS'
* https://azure.microsoft.com/en-us/pricing/details/sql-database/
*/
catalogPricingTier?: string;
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ class IntegrationRuntimeSsisCatalogInfo {
* @property {string} [catalogAdminPassword.value] Value of secure string.
* @property {string} [catalogPricingTier] The pricing tier for the catalog
* database. The valid values could be found in
* https://azure.microsoft.com/en-us/pricing/details/sql-database/. Possible
* values include: 'Basic', 'Standard', 'Premium', 'PremiumRS'
* https://azure.microsoft.com/en-us/pricing/details/sql-database/
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ class IntegrationRuntimeSsisProperties {
* secure string.
* @property {string} [catalogInfo.catalogPricingTier] The pricing tier for
* the catalog database. The valid values could be found in
* https://azure.microsoft.com/en-us/pricing/details/sql-database/. Possible
* values include: 'Basic', 'Standard', 'Premium', 'PremiumRS'
* https://azure.microsoft.com/en-us/pricing/details/sql-database/
* @property {string} [licenseType] License type for bringing your own
* license scenario. Possible values include: 'BasePrice', 'LicenseIncluded'
* @property {object} [customSetupScriptProperties] Custom setup script
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,7 @@ class ManagedIntegrationRuntime extends models['IntegrationRuntime'] {
* Value of secure string.
* @property {string} [ssisProperties.catalogInfo.catalogPricingTier] The
* pricing tier for the catalog database. The valid values could be found in
* https://azure.microsoft.com/en-us/pricing/details/sql-database/. Possible
* values include: 'Basic', 'Standard', 'Premium', 'PremiumRS'
* https://azure.microsoft.com/en-us/pricing/details/sql-database/
* @property {string} [ssisProperties.licenseType] License type for bringing
* your own license scenario. Possible values include: 'BasePrice',
* 'LicenseIncluded'
Expand Down